html {
  font-size: 14px;
}

.nav-item.active {
    color: #e8b746 !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

.alert.validation-summary-errors ul {
    margin-bottom: 0;
    padding-left: 16px;
}

.menu-padding {
    padding-top: 58px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .menu-padding {
        padding-top: 80px;
        margin-bottom: 60px;
    }
}

.navStyle li{
    border-right-style: solid;
    border-right-width: 1px;
    border-color: cadetblue;
}

.navStyle a{
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.navStyle a:hover {
    color: #e8b746;
    text-decoration: none;
}

.nav-item.active a {
    color: #e8b746 !important;
}

.active:hover {
    filter: brightness(85%);
}


.nav_top_bar {
    top: -10px;
    background-color: white;
    text-decoration: none;
}

.nav_top_bar_contacts {
    font-weight: 500;
    justify-content: start;
}

.nav_top_bar_service, .nav_top_bar_login {
    text-decoration: none;
    color: white;
    font-weight: 500;
}

    .nav_top_bar_service span:hover, .nav_top_bar_login span:hover {
        color: white;
    }

.subnav {
    margin: 0em;
    background-color: #054067;
}

.topnav {
    background-color: white;
}

.point {
    background-color: white;
    padding: 20px, 5px;
}

.blue-bg {
    background-color: #054067;
}

.yellow_bg {
    background-color: #e8b738;
}

    .yellow_bg:hover {
        filter: brightness(85%);
        color: white;
    }

.green_bg {
    background-color: #92bb33;
}

    .green_bg:hover {
        filter: brightness(85%);
        color: white;
    }

.cyan-bg {
    background-color: #22acdc;
}

    .cyan-bg:hover {
        filter: brightness(85%);
        color: white;
    }

.navbar-toggler-icon {
    padding: 1em;
}

.navbar-toggler {
    margin: 0.1em;
}

.mw-1500 {
    min-width: 1500px;
}

.table-orange {
    --bs-table-bg: #f8e8d7;
    --bs-table-striped-bg: #ecdecc;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #dfd1c2;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #e5d5c7;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #dfd0c2;
}

.table-success {
    --bs-table-bg: #b3e3cd;
    --bs-table-striped-bg: #a9d7c2;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #9eccb7;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #a3d2bc;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #9eccb7;
}

@media only screen and (min-width: 1148px) {
    .logo-container {
        max-width: 200px;
        background-color: white;
    }

    .logo-fluid {
        max-height: 100px;
    }

    .navbar-responsive {
        width: 95%;
    }

}

@media only screen and (min-width: 768px) {
    .logo-container {
        background-color: white;
        max-height: 120px;
        height: 80px;
    }

    .logo-fluid {
        max-width: 144px;
    }
}


@media only screen and (max-width: 767px) {
    .logo-fluid, .logo-container {
        display: none;
    }

    .navbar-responsive {
        width: 100%;
    }
}
@media (min-width: 576px) {
    .w-sm-auto{
        width: auto!important;
    }
}

.cursor-pointer{
    cursor: pointer;
}

.field-validation-error {
    color: #dc3545;
}

.form-max-width {
    max-width: 720px;
}

h1 {
    font-size: 1.5rem;
}

h2 {
    font-size: 1.25rem;
}

.processing-bar-spacing {
    margin-top:0.4rem;
}

.processing-bar::after {
    content: '';
    position: absolute;
    top: -0.4rem;
    height: 0.4rem;
    background: #054067;
    animation: processing 1.5s infinite ease-in-out;
}

@keyframes processing {
    0% {
        left: 0;
        width: 0;
    }

    50% {
        width: 100%;
    }

    100% {
        right: 0;
        width: 0;
    }
}