@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900; /* Range to support weights from 100 to 900 */
    src: url('/lib/fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: italic;
    font-weight: 100 900; /* Range to support weights from 100 to 900 */
    src: url('/lib/fonts/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
}

html {
  font-size: 14px;
}

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

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

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

footer {
    background: #363636;
    color: #a5a5a5;
    font-size: 14px;
}
    footer a {
        color: #2c6ee7;
        z-index: 1000;
    }

footer a:hover {
    color: #cb0606;
}

:root {
    --bs-font-sans-serif: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}

header {
    background: #fff;
    z-index: 200080001;
}
main
{
    min-height: calc(100vh - 300px);
}
*.hidden, *.hide {
    display: none;
}
b6, strong6 {
    font-weight: 600;
}
b5, strong5 {
    font-weight: 600;
}
b4, strong4 {
    font-weight: 600;
}
.box {
    padding: 15px;
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.22);
}
.btn-mb {
    min-height: inherit;
    line-height: 2em;
    font-size: 1em;
    padding: 6px 12px;
    border-radius: 8px;
}
main {
    min-height: calc(100vh - 260px);
}
.uppercase {
    text-transform: uppercase;
}
.ui-pnotify .ui-pnotify-icon {
    margin-top: .25em;
    font-size: 1.25em;
}

.notification-info .alert-warning {
    color: var(--color-mb-blue-800);
    background-color: var(--color-mb-blue-100);
    border-color: var(--color-mb-blue-100);
}

.notification-error .alert-warning {
    color: var(--color-mb-red-800);
    background-color: var(--color-mb-red-100);
    border-color: var(--color-mb-red-100);
}

.notification-warning .alert-warning {
    color: var(--color-mb-orange-800);
    background-color: var(--color-mb-orange-100);
    border-color: var(--color-mb-orange-100);
}

.notification-success .alert-warning {
    color: var(--color-mb-green-800);
    background-color: var(--color-mb-green-100);
    border-color: var(--color-mb-green-100);
}

    .notification-success .alert-warning hr {
        border-top-color: #c9e2b3;
    }

    .notification-success .alert-warning .alert-link {
        color: #2b542c;
    }

.notification-error .alert-warning hr {
    border-top-color: #e4b9c0;
}

.notification-error .alert-warning .alert-link {
    color: #843534;
}
.matbao-check-ok {
    background-image: url("/images/shared/checked.svg");
    background-size: cover;
    display: inline-block;
    width: 21px;
    height: 21px;
}

.matbao-cancel-red {
    background-image: url("/images/shared/cancel-01.svg");
    background-size: cover;
    display: inline-block;
    width: 21px;
    height: 21px;
}
.form-check.checkbox-hidden {
    padding-left: 0;
}
.form-check.checkbox-hidden input {
    display: none;
}
.parallax {
    overflow: hidden;
    position: relative;
}

.parallax_image, .parallax_pattern {
    background-position: center center;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    will-change: transform;
}

.parallax_image {
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax_pattern {
    background-repeat: repeat;
}

.parallax_cnt {
    position: relative;
}

.parallax a.link {
    text-decoration: underline;
}
#loadingaction {
    display:none;
}
textarea {
    max-width: 100%;
    outline: none;
    border-radius: 0;
    outline: none !important;
}
/*#region toogle price services */
.toggle-container {
    position: relative;
    display: flex;
    background-color: #e0e0e0;
    border-radius: 20px;
    padding: 3px;
    width: fit-content;
    font-family: sans-serif;
    overflow: hidden;
    margin-bottom: 20px;
}

.toggle-option {
    z-index: 2;
    padding: 6px 16px;
    border-radius: 20px;
    cursor: pointer;
    color: #333;
    font-size: 10px;
    font-weight: 600;
    line-height: normal;
    min-width: 80px;
    text-align: center;
    transition: color 0.3s ease;
}

    .toggle-option.active {
        font-weight: bold;
        color: #000;
    }

.toggle-container:after {
    content:'';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 50%;
    height: calc(100% - 6px);
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 1;
}

.toggle-container:after {
    left: 3px;
    border-radius: 50px;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.toggle-container.checked:after {
    left: calc(50% - 3px);
    animation: slideTab width 0.3s ease-in-out, left 0.3s ease-in-out;
}
/*#endregion */