﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
   
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* BREAD CUMBS */

@media (max-width: 1766px) {
    .content-to-hide {
        display: none;
    }
}

.breadcrumb.wizard {
    padding: 0px;
    background: #fff;
    list-style: none;
    overflow: hidden;
    margin-top: 20px;
    font-size: 10px;
}

.breadcrumb.wizard > li + li:before {
    padding: 0;
}

.breadcrumb.wizard li {
    float: center;
}

.breadcrumb.wizard li.active a {
    background: brown; /* fallback color */
    background: #ffc107;
}

.breadcrumb.wizard li.completed a {
    background: brown; /* fallback color */
    background: #1b6ec2;
}

.breadcrumb.wizard li.active a:after {
    border-left: 30px solid #ffc107;
}

.breadcrumb.wizard li.completed a:after {
    border-left: 30px solid #1b6ec2;
}

.breadcrumb.wizard li a {
    color: white;
    text-decoration: none;
    padding: 10px 0 10px 45px;
    position: relative;
    display: block;
    float: left;
    border-top-left-radius: 1em 3em;
    border-bottom-left-radius: 1em 3em;
    background: rgb(255, 174, 0);
}

.breadcrumb.wizard li a:after {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 50px solid transparent; /* Go big on the size, and let overflow hide */
    border-bottom: 50px solid transparent;
    border-left: 30px solid rgb(255, 174, 0);
    position: absolute;
    top: 50%;
    margin-top: -50px;
    left: 100%;
    z-index: 2;
}

.breadcrumb.wizard li a:before {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 50px solid transparent; /* Go big on the size, and let overflow hide */
    border-bottom: 50px solid transparent;
    border-left: 30px solid white;
    position: absolute;
    top: 50%;
    margin-top: -50px;
    margin-left: 1px;
    left: 100%;
    z-index: 1;
}

.breadcrumb.wizard li:first-child a {
    padding-left: 15px;
}

/* .breadcrumb.wizard li a:hover { background: #ffc107  ; } */
/* .breadcrumb.wizard li a:hover:after { border-left-color: #ffc107   !important; } */

/* html,body {
  height: 100%;
} */
html {
    position: relative;
    min-height: 100%;
}
body {
    margin-bottom: 75px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    height:125px;
    border-top: 1px solid #e5e5e5!important;
}


.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }


  .icon {
    position: absolute;
    transform: translate(-50%,-50%);
    width: 80px;
    height: 60px;
    cursor: pointer;
  }
  
  .arrow {
    position: absolute;
    width: 90%;
    height: 10px;
    background-color: #0366d6;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
    animation: arrow 700ms linear infinite;
  }
  
  .arrow::after, .arrow::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 10px;
    right: 40px;
    background-color: #0366d6;
  }
  
  .arrow::after {
    top: -12px;
    transform: rotate(135deg);
  }
  
  .arrow::before {
    top: 12px;
    box-shadow: 3 0px 5px rgba(0, 0, 0, .2);
    transform: rotate(-135deg);
  }

.downtime-notice {
    background-color: #dc3545; /* Bootstrap's alert-danger background color */
    color: #fff; /* Text color for the notice */
    text-align: center; /* Center text within the notice */
    padding: 10px; /* Padding around the notice */
    position: fixed; /* Fixed position at the top of the page */
    width: 100%; /* Full width */
    z-index: 1000; /* Set a high z-index to make sure it's above other elements */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); /* Optional: Add a subtle shadow for better visibility */
}

.maintenance-container {
    text-align: center;
    margin-top: 100px;
}