.material-symbols-rounded {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    font-size: 24px !important;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "Ha ocurrido un error."
    }

.loader-container {
    position: relative;
}

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #0052F6;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: 400;
    top: 55px;
    width: 100%;
    font-size: 14px;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Cargando...");
    }

:root {
    --rz-white: #ffffff;
    --rz-black: #000000;
    --rz-primary: #0d6efd;
    --rz-primary-dark: #0052F6;
    --rz-secondary: #ef3030;
    --rz-secondary-dark: #da1313;
    --rz-info: #0d6efd;
    --rz-info-lighter: #c7ddff;
    --rz-danger: #f44336;
    --rz-danger-lighter: #f2b7b3;
    --rz-warning: #ff9800;
    --rz-warning-lighter: #ebd3b0;
    --rz-success: #4caf50;
    --rz-success-lighter: #c1e3c2;
}

* {
    padding: 0;
    margin: 0;
}

html,
body {
    width: 100vw !important;
    height: 100vh;
    font-family: 'Open Sans', sans-serif !important;
    overflow-x: hidden;
}

#app {
    width: 100%;
    height: 100%;
}

small {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 11px;
    line-height: 12px;
    color: #777777;
}

td {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px !important;
    -webkit-font-smoothing: antialiased !important;
}

span {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px !important;
    -webkit-font-smoothing: antialiased !important;
}

label {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px !important;
    -webkit-font-smoothing: antialiased !important;
}

p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px !important;
    -webkit-font-smoothing: antialiased !important;
    font-weight: 300;
    margin: 0 !important;
}

a {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px !important;
    -webkit-font-smoothing: antialiased !important;
    font-weight: 300;
}

strong {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px !important;
    font-weight: bolder !important;
}

h1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 46px;
    margin: 0;
}

    h1:focus {
        outline: none;
    }

h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 44px;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 23px;
    font-weight: 400;
    line-height: 33px;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 32px;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

h5 {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

select {
    width: 100%;
    height: 34px;
    padding: 0 !important;
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid #d6d6d6 !important;
    border-radius: 0 !important;
    font-size: 13px !important;
    box-shadow: none !important;
}

    select:invalid {
        border-bottom: solid 2px #ff5283 !important;
        border-color: #ff5283 !important;
        background-color: transparent !important;
        -moz-background-color: transparent !important;
        outline: 0 !important;
    }

    select:focus {
        border: none !important;
        border-bottom: solid 2px #528BFF !important;
        border-color: #528BFF !important;
        background-color: transparent !important;
        -moz-background-color: transparent !important;
        outline: 0 !important;
        box-shadow: none !important;
    }

    select:hover {
        cursor: pointer !important;
    }

input {
    width: 100%;
    height: 34px;
    padding: 0 !important;
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid #d6d6d6 !important;
    border-radius: 0 !important;
    font-size: 13px !important;
    box-shadow: none !important;
}

    input:invalid {
        border-bottom: solid 2px #ff5283 !important;
        border-color: #ff5283 !important;
        background-color: transparent !important;
        -moz-background-color: transparent !important;
        outline: 0 !important;
    }

    input:focus {
        border: none !important;
        border-bottom: solid 2px #528BFF !important;
        border-color: #528BFF !important;
        background-color: transparent !important;
        -moz-background-color: transparent !important;
        outline: 0 !important;
        box-shadow: none !important;
    }

    input::placeholder {
        font-size: 14px !important;
        -webkit-font-smoothing: antialiased !important;
        font-weight: 300 !important;
    }

    input:-webkit-autofill,
    input:-webkit-autofill:focus {
        transition: background-color 600000s 0s, color 600000s 0s !important;
    }

    input[data-autocompleted] {
        background-color: transparent !important;
        font-family: 'Open Sans', sans-serif !important;
        font-size: 13px !important;
    }

.input-type {
    width: 100px !important;
    margin-top: 6px;
}

.input-cont {
    width: 100%;
    height: 44px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.input {
    width: 100% !important;
    height: 34px !important;
    background-color: transparent;
    border: none !important;
    border-bottom: 1px solid #d6d6d6 !important;
    border-radius: 0 !important;
    font-size: 13px !important;
}

    .input:invalid {
        border-bottom: solid 2px #ff5283 !important;
        border-color: #ff5283 !important;
        background-color: transparent !important;
        -moz-background-color: transparent !important;
        outline: 0 !important;
    }

    .input:focus {
        border-bottom: solid 2px #528BFF !important;
        border-color: #528BFF !important;
        background-color: transparent !important;
        -moz-background-color: transparent !important;
        outline: 0 !important;
    }

    .input::placeholder {
        font-size: 13px !important;
    }

.floating-label {
    position: absolute;
    top: -6px;
    left: -6px;
    font-size: 11px !important;
    opacity: 1;
    font-weight: 500;
}

.card {
    width: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border: none;
    border-radius: 4px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.btn-default {
    padding: 0 10px 0 10px !important;
    width: max-content !important;
    min-width: 86px !important;
    height: 36px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    column-gap: 10px !important;
    background-color: #0d6efd !important;
    color: white !important;
    font-family: 'Open Sans', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px !important;
    border: none !important;
    border-radius: 4px !important;
    -webkit-font-smoothing: antialiased !important;
    text-align: center !important;
    text-decoration: none !important;
    text-transform: none !important;
    transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: none !important;
}

    .btn-default:hover {
        background-color: #0052F6 !important;
        cursor: pointer;
    }

    .btn-default:focus {
        box-shadow: none !important;
    }

    .btn-default[disabled] {
        background-color: #93b7ff !important;
        cursor: not-allowed !important;
        opacity: 0.65 !important;
    }

.btn-cancel {
    padding: 0 10px 0 10px !important;
    width: max-content !important;
    min-width: 86px !important;
    height: 36px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    column-gap: 10px !important;
    background-color: #ef3030 !important;
    color: white !important;
    font-family: 'Open Sans', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px !important;
    border: none !important;
    border-radius: 4px !important;
    -webkit-font-smoothing: antialiased !important;
    text-align: center !important;
    text-decoration: none !important;
    text-transform: none !important;
    transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: none !important;
}

    .btn-cancel:hover {
        background-color: #da1313 !important;
        cursor: pointer;
    }

    .btn-cancel:focus {
        box-shadow: none !important;
    }

.btn-aux {
    width: max-content !important;
    height: 36px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    column-gap: 10px !important;
    background-color: transparent !important;
    color: #5e5e5e !important;
    font-family: 'Open Sans', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px !important;
    -webkit-font-smoothing: antialiased !important;
    text-align: center !important;
    text-decoration: none !important;
    text-transform: none !important;
    border: none !important;
    border-radius: 4px !important;
    transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: none !important;
}

    .btn-aux:hover {
        cursor: pointer;
        color: black !important;
    }

.btn-disabled {
    padding: 0 16px 0 16px !important;
    width: max-content !important;
    min-width: 100px !important;
    height: 40px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    column-gap: 10px !important;
    background-color: #93b7ff !important;
    color: white !important;
    font-family: 'Open Sans', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px !important;
    border: none !important;
    border-radius: 4px !important;
    -webkit-font-smoothing: antialiased !important;
    text-align: center !important;
    text-decoration: none !important;
    text-transform: none !important;
    transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: none !important;
}

.hidden-box {
    display: none;
}

.powered-by {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 9px;
    position: absolute;
    bottom: 10px;
}

    .powered-by h5 {
        color: #5e5e5e;
    }

.awc-logo {
    height: 32px;
    width: auto;
    margin: 0 !important;
    padding: 0 !important;
}

.netviax-logo {
    width: 90px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Estilos personalizados para los componentes de Radzen */

/* RadzenButton */

.btn-primary {
    padding: 0 16px 0 16px !important;
    width: max-content !important;
    min-width: 100px !important;
    height: 40px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    column-gap: 10px !important;
    background-color: var(--rz-primary) !important;
    color: white !important;
    font-family: 'Open Sans', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px !important;
    border: none !important;
    border-radius: 4px !important;
    -webkit-font-smoothing: antialiased !important;
    text-align: center !important;
    text-decoration: none !important;
    text-transform: none !important;
    transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: none !important;
}

    .btn-primary:hover {
        background-color: var(--rz-primary-dark) !important;
        cursor: pointer;
    }

    .btn-primary:focus {
        box-shadow: none !important;
    }

    .btn-primary[disabled] {
        background-color: #93b7ff !important;
        cursor: not-allowed !important;
        opacity: 0.65 !important;
    }

.rz-primary {
    padding: 0 16px 0 16px !important;
    min-width: 100px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    background-color: var(--rz-primary) !important;
    color: white;
    font-family: 'Open Sans', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px !important;
    border: none !important;
    border-radius: 4px;
    -webkit-font-smoothing: antialiased;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none !important;
}

    .rz-primary:hover {
        background-color: var(--rz-primary-dark) !important;
        cursor: pointer;
    }

    .rz-primary:focus {
        box-shadow: none !important;
    }

    .rz-primary[disabled] {
        background-color: #93b7ff !important;
        cursor: not-allowed !important;
        opacity: 0.65 !important;
    }

    .rz-primary .rz-button-text {
        font-family: 'Open Sans', sans-serif !important;
        font-size: 14px !important;
        font-weight: 400 !important;
        letter-spacing: 0.5px !important;
    }

.rz-secondary {
    padding: 0 16px 0 16px !important;
    min-width: 100px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    background-color: var(--rz-secondary) !important;
    color: white;
    font-family: 'Open Sans', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px !important;
    border: none !important;
    border-radius: 4px;
    -webkit-font-smoothing: antialiased;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none !important;
}

    .rz-secondary:hover {
        background-color: var(--rz-secondary-dark) !important;
        cursor: pointer;
    }

    .rz-secondary:focus {
        box-shadow: none !important;
    }

    .rz-secondary[disabled] {
        background-color: #fa8787 !important;
        cursor: not-allowed !important;
        opacity: 0.65 !important;
    }

    .rz-secondary .rz-button-text {
        font-family: 'Open Sans', sans-serif !important;
        font-size: 14px !important;
        font-weight: 400 !important;
        letter-spacing: 0.5px !important;
    }

.btn-white {
    width: max-content !important;
    height: 40px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    column-gap: 10px !important;
    background-color: white !important;
    color: #5e5e5e !important;
    font-family: 'Open Sans', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px !important;
    -webkit-font-smoothing: antialiased !important;
    text-align: center !important;
    text-decoration: none !important;
    text-transform: none !important;
    border-color: #ccc;
    border-radius: 4px !important;
    transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: none !important;
}

    .btn-white:hover {
        background-color: #ccc !important;
    }


/*Toast Error Component*/


.rz-notification .rz-growl-item {
    opacity: unset !important;
}

.rz-autocomplete {
    box-shadow: none !important;
    border: none !important;
}

.rz-autocomplete-input {
    width: 100% !important;
    height: 34px !important;
    padding-left: 10px !important;
    border-bottom: none !important;
    border: 1px solid #d6d6d6 !important;
    border-radius: 4px !important;
}

    .rz-autocomplete-input:focus {
        border-bottom: none !important;
        border: 1px solid #528BFF !important;
    }


/* New Nav Styles */

.main-header {
    background-color: #F5F5F5;
    border-bottom: 1px solid #BFBFBF;
    height: 50px;
    display: flex;
    align-items: center;
}

    .main-header a {
        color: #666666;
    }

/* New Button Styles */

.alternative-btn {
    background-color: transparent;
    border: 1px solid #D9D9D9;
    color: #000;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 4px !important;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    padding: 6px 8px;
}

    .alternative-btn:hover {
        box-shadow: 0 0 8px rgba(0,0,0,0.25);
        transition: all 0.2s;
        background-color: #FAFAFA;
    }

    .alternative-btn.disabled {
        background-color: #efefef;
        color: #aaa;
    }

        .alternative-btn.disabled:hover {
            box-shadow: none;
        }

.vertical-divisor {
    border-left: 1px solid #BFBFBF;
    width: 1px;
    height: 100%;
    margin-left: 10px;
    margin-right: 10px;
}


/* Screen Guide Styles */

.screen-guide {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 30px 20px 0 20px;
    text-align: center;
}

/*.screen-guide .icon-circle-bg{
    background-color: rgba(0,82,246,0.12);
    width: 95px;
    height: 95px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom:15px;
    cursor:pointer;
}

.screen-guide .icon-circle-bg:hover {
    background-color: rgba(0,82,246,0.20);
    transform:scale(0.92);
    transition:all ease 0.2s;
}

.screen-guide .icon-circle-bg span{
    align-items:center;
    font-size:30px !important;
    color: #0052F6;
}

.screen-guide p {max-width:440px; margin:15px 0 30px 0 !important;}

*/


/* Screen Loader Styles */

.screen-loader {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 85px 20px 0 20px;
}

    .screen-loader span {
        align-items: center;
        font-size: 30px !important;
        color: #0052F6;
    }

    .screen-loader p {
        max-width: 440px;
        text-align: center;
        margin: 15px 0 30px 0 !important;
    }

/* Secondary header Styles */

.secondary-header {
    height: 45px;
    border-bottom: 1px solid #BFBFBF;
}

    .secondary-header h4 {
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 5px;
    }

/* New Progress bar Styles */

.progress-status-bar {
    width: 100%;
}

    .progress-status-bar .step {
        background-color: #fff;
    }

        .progress-status-bar .step .dot {
            background-color: #C5C5C5;
            border: 3px solid #fff;
            border-radius: 16px;
            height: 16px;
            width: 16px;
        }

        .progress-status-bar .step.completed .dot {
            background-color: #00C853;
        }

        .progress-status-bar .step h5 {
            font-size: 13px;
            color: #666666;
            font-weight: 400;
        }

    .progress-status-bar .progress-line {
        border-bottom: 1px solid #BFBFBF;
        width: 100%;
        position: absolute;
        z-index: -1;
        top: 17px;
    }

/* Fares Selection Styles */

.fares-table-selection table {
    table-layout: fixed;
}

    .fares-table-selection table th {
        font-size: 11px;
        font-weight: 600;
        padding: 5px 10px;
    }

    .fares-table-selection table td {
        font-weight: 400;
        padding: 5px 10px;
        border-top: 1px solid #BFBFBF;
        width: 100%;
        position: relative;
        font-size: 11px !important;
    }

.fares-table-selection .striped td {
    background-color: #F7F7F7;
}

.fares-table-selection input[type='checkbox'] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    vertical-align: middle;
}

.fares-table-selection .badge {
    text-transform: uppercase;
    color: #000;
    border-radius: 20px;
    font-weight: 600;
    cursor: default;
}

    .fares-table-selection .badge.pri {
        background-color: #FFBACB;
    }

    .fares-table-selection .badge.pub {
        background-color: #FDF8C0;
    }

    .fares-table-selection .badge.neg {
        background-color: #ACEAF9;
    }

.fares-table-selection .expand {
    color: #000;
    cursor: pointer;
}

.fares-table-selection .fare-featured-msg {
    color: #FF6D00;
    border-radius: 20px 0 0 20px;
    border-left: 5px solid #FF6D00;
}

    .fares-table-selection .fare-featured-msg td {
        padding: 6px 12px;
        background-color: #fff;
        font-size: 11px !important;
    }

    .fares-table-selection .fare-featured-msg span {
        vertical-align: middle;
        font-size: 16px !important;
    }

.fares-table-detail th {
    background-color: #F5F5F5;
    font-weight: 600;
    padding: 5px 10px !important;
}

.fares-table-detail .airline-logo {
    max-width: 25px;
}

.fares-table-detail .airline-code {
    bottom: 5px;
    left: 4px;
}

.fares-table-detail .airline-code2 {
    bottom: 15px;
    left: 30px;
}

.fare-msg td {
    padding: 5px 10px !important;
    color: #666666;
}

.fare-msg span {
    vertical-align: middle;
}

.fare-detail-separator td {
    background-color: rgba(0,82,246,0.10) !important;
    padding: 3px !important;
}

.fares-table-selection .selected-fare {
    border: 2px solid #0052F6;
    box-shadow: 0 0 10px rgba(0,0,0,0.10)
}


.fares-table-detail .baggage-data span {
    color: #00C853;
    vertical-align: middle;
}

.fares-table-detail .no-baggage span {
    color: #909090;
    vertical-align: middle;
}

.small-td {
    width: 45px !important;
}


/* Booking Page Styles */

.border-container {
    border: 1px solid #CCCCCC;
}

    .border-container h4, .border-container h3 {
        font-weight: 600;
        font-size: 14px;
    }

.ancillaries-btns .selected {
    background: #0052F6;
    color: #fff;
}

.passenger-box span, .itinerary-box span {
    vertical-align: middle;
}

.stored-fare-card {
    box-shadow: 0 0 10px rgba(0,0,0,0.12)
}

    .stored-fare-card header h4 {
        font-size: 18px;
        font-weight: 400;
    }

    .stored-fare-card header a {
        color: #000;
    }

    .stored-fare-card .ticketing {
        border-top: 1px solid #CCCCCC;
        border-bottom: 1px solid #CCCCCC;
    }

        .stored-fare-card .ticketing h5 {
            font-size: 14px;
            font-weight: 400;
            color: #000;
            margin: 0;
        }

        .stored-fare-card .ticketing .ticketing-process {
            position: relative;
        }

            .stored-fare-card .ticketing .ticketing-process .dot {
                width: 7px;
                height: 7px;
                border-radius: 20px;
                background-color: #C4C4C4;
            }

                .stored-fare-card .ticketing .ticketing-process .dot.completed {
                    background-color: #00C853;
                }

            .stored-fare-card .ticketing .ticketing-process .line {
                border-top: 1px solid #999999;
                position: absolute;
                top: 3px;
                right: -2px;
                height: 1px;
                width: 110%;
                z-index: -1
            }

    .stored-fare-card h5 {
        font-weight: 400;
        font-size: 12px;
        color: #909090;
        margin-bottom: -8px;
    }

    .stored-fare-card span abbr {
        color: #FF1515;
    }

    .stored-fare-card .open-fare-detail {
        border-top: 1px solid #CCCCCC;
        border-bottom: 1px solid #CCCCCC;
        font-weight: 600;
    }

    .stored-fare-card strong {
        font-weight: 600 !important;
    }


/* Selection Table Styles */

.custom-modal h3 {
    font-size: 14px;
    font-weight: 600;
}

.custom-modal header span {
    color: #000;
}

.selection-table th {
    font-size: 13px !important;
    font-weight: 600;
    padding: 5px 10px;
}

.selection-table td {
    font-size: 13px !important;
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
    padding: 5px 10px;
}

.selection-table .data {
    color: #5E5E5E;
}

    .selection-table .data .name {
        color: #000;
    }

.selection-table td span {
    vertical-align: middle;
}

.selection-table tr:nth-child(even) {
    background-color: #F7F7F7;
}

.selection-table input[type='checkbox'] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    vertical-align: middle;
}

.selection-table td a {
    font-weight: 600;
}

.itinerary-table td {
    padding: 5px 10px;
}

    .itinerary-table td table td {
        padding: 3px 12px;
        border: none;
    }

        .itinerary-table td table td strong {
            font-weight: 400 !important;
            font-size: 13px !important;
        }

.itinerary-table .airline-logo {
    max-width: 25px;
    height: 100%;
}

.itinerary-table .airline-code {
    top: 6px;
    left: 5px;
    cursor: default;
}

.itinerary-table table tr:nth-child(even) {
    background: none !important;
}

/* Ancillaries modal Styles */
.ancillaries input[type='checkbox'], .pax-info input[type='checkbox'] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    vertical-align: middle;
}

.ancillaries input[type='radio'], .pax-info input[type='radio'] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    vertical-align: middle;
}

/* Availability messages Styles */

.gwc-flight-messages-fare-cont {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #bdbdbd;
}

.gwc-flight-messagge-cont {
    position: fixed;
    bottom: 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.10);
    width: 100%;
}

.gwc-flight-messages-close-cont {
    background-color: #EEF1FE;
}

.gwc-flight-messages {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.gwc-flight-message {
    width: 100%;
    padding: 10px 10px 10px 25px;
    align-items: center;
    column-gap: 6px;
    border-bottom: 1px solid #fff;
}

.close-message-btn {
    font-size: 18px !important;
    padding: 5px;
    color: #666;
}

    .close-message-btn:hover {
        cursor: pointer;
    }

.gwc-flight-message .icon {
    width: 18px;
    height: 18px;
    margin-top: 1px;
}

.gwc-flight-message .message {
    color: white;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 6px;
}

    .gwc-flight-message .message .bold {
        font-size: 13px !important;
        margin-bottom: 2px !important;
    }

.gwc-flight-message .gwc-flight-message-alert {
    background-image: url('../img/message/i-alert.svg');
    color: #f16562 !important;
}

.gwc-flight-message .gwc-flight-message-communication {
    background-image: url('../img/message/i-communication.svg');
}

.gwc-flight-text-communication, .gwc-flight-text-time {
    color: #666;
}

.gwc-flight-message .gwc-flight-message-time {
    background-image: url('../img/message/i-time.svg');
}

.gwc-flight-message .gwc-flight-text-alert {
    color: #FF1515 !important;
}

/* Retrieve PNR Styles */

.retrieved-pnr h4 {
    font-size: 14px;
    font-weight: 600;
}

.retrieved-pnr header span {
    font-size: 14px;
}

    .retrieved-pnr header span span {
        vertical-align: middle;
    }

.retrieved-pnr table {
    table-layout: fixed;
}

    .retrieved-pnr table td {
        font-size: 13px !important;
        border-top: 1px solid #CCCCCC;
        border-bottom: 1px solid #CCCCCC;
        padding: 5px 10px;
    }

    .retrieved-pnr table th {
        font-size: 12px;
        font-weight: 600;
        padding: 5px 10px;
    }

.retrieved-pnr .airline-logo-code img {
    max-width: 25px;
}

/* Custom toaster Styles */

.rz-notification-message.rz-growl {
    width: 220px !important;
    min-width: auto;
}

.rz-growl-icon-close {
    font-size: 16px;
    margin-top: 5px;
}

.rz-growl-item {
    margin: 10px 0;
    padding: 10px;
}

.rz-growl-message p {
    font-size: 12px !important;
    font-weight: 600;
}

.rz-growl-image {
    float: left;
    margin: 7px 5px 5px 0;
}

.rz-growl-message-error .rz-growl-item {
    color: #B15959;
    background-color: #FFD1D1;
}

.rz-growl-message-success .rz-growl-item {
    color: #30975B;
    background-color: #76F3AA;
}

.rz-growl-message-warn .rz-growl-item {
    color: #9C7457;
    background-color: #F5FFB6;
}

.rz-growl-message-info .rz-growl-item {
    color: #586595;
    background-color: #C7D3F2;
}

.rz-growl-item .rzi-check {
    color: #30975B;
}

.rz-growl-item .rzi-exclamation-triangle {
    color: #B15959;
}

.rz-growl-item .rzi-info-circle {
    color: #586595;
}

.rz-growl-item .rzi-times {
    color: #B15959;
}

.rz-dialog-titlebar-close .rzi-times {
    font-size: 24px !important;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #ddd;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #000;
    cursor: pointer;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
        cursor: pointer;
    }

.fares-table-selection .messagge-cont {
    margin: 10px 0;
}

.user-profile {
    background: #FFD6F8;
    color: #A4769D;
    border-radius: 24px;
    font-size: 12px;
    padding: 5px;
    height: 26px;
    font-weight: 600;
    margin-left: 5px;
    cursor: default
}

@media (max-width: 830px) {
    .itinerary-table {
        display: block !important;
    }
}
