.error {
    color: var(--bs-danger);
    font-weight: 600;
}

.text-justify {
    text-align: justify;
}

:root{
    --custom-scroll-left: 0;
    --custom-scroll-width: 0;
}

#layout-rooms-hotel .custom-scroll::after {
    content: '';
    position: absolute;
    top: 0;
    left: var(--custom-scroll-left, 0%);
    height: 7px;
    width: var(--custom-scroll-width, 0%);
    background-color: var(--bs-danger);
    z-index: 3;
    border-radius: 5px;
    transition: left .4s ease-out;
}

.transparent-scrollbar {
    overflow: auto;

    @media screen and (-webkit-min-device-pixel-ratio:0) {
        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }

        ::-webkit-scrollbar-track {
            background: transparent;
        }

        ::-webkit-scrollbar-thumb {
            background: transparent;
            border: none;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: transparent;
        }
    }

    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}

.header-result {
    background-color: var(--bs-body-bg) !important;
    top: 0 !important;
    left: 0 !important;
}

.multiline-ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.multiline-ellipsis-hotel {
    display: -webkit-box;
    -webkit-line-clamp: 10;
    line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.gallery-item img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.item1 {
    grid-column: 1 / span 1;
    grid-row: 1 / span 2;
}

.item2 {
    grid-column: 1 / span 1;
    grid-row: 3 / span 2;
}

.item3 {
    grid-column: 2 / span 3;
    grid-row: 1 / span 3;
}

.item4 {
    grid-column: 2 / span 1;
    grid-row: 4 / span 1;
}

.item5 {
    grid-column: 3 / span 1;
    grid-row: 4 / span 1;
}

.item6 {
    grid-column: 4 / span 1;
    grid-row: 4 / span 1;
}

.item6 img {
    filter: brightness(0.5);
}


.stepp-wizard {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stepp-wizard-list {
    margin: 0px;
    padding: 0px;
    width: 100%;
    color: var(--bs-dark);
    list-style-type: none;
    border-radius: 10px;
    display: flex;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.stepp-wizard-item {
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    transition: all .5s ease-in-out;
    box-sizing: border-box;
}

.skeleton-loader .stepp-wizard-item + .stepp-wizard-item:after {
    content: "";
    position: absolute;
    left: 0;
    top: 19px;
    background: lightgray;
    width: 100%;
    height: 3px;
    transform: translateX(-50%);
    z-index: -10;
    transition: all .5s ease-in-out;
}

.stepp-wizard-item + .stepp-wizard-item:after {
    content: "";
    position: absolute;
    left: 0;
    top: 19px;
    background: #87cb87;
    width: 100%;
    height: 3px;
    transform: translateX(-50%);
    z-index: -10;
    transition: all .5s ease-in-out;
}

.current-item + .stepp-wizard-item:after {
    background: gray;
}

.progress-count {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    color: transparent;
    transition: all .5s ease-in-out;
}

.progress-count:after {
    content: "";
    height: 40px;
    width: 40px;
    background: #87cb87;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -10;
    transition: all .5s ease-in-out;
}

.progress-count:before {
    content: "";
    height: 10px;
    width: 20px;
    border-left: 3px solid var(--bs-white);
    border-bottom: 3px solid var(--bs-white);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -60%) rotate(-45deg);
    transform-origin: center center;
    transition: all .5s ease-in-out;
}

.progress-label {
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.current-item .progress-count:before,
.current-item ~ .stepp-wizard-item .progress-count:before {
    display: none;
}

.current-item ~ .stepp-wizard-item .progress-count:after {
    height: 10px;
    width: 10px;
}

.current-item ~ .stepp-wizard-item .progress-label {
    opacity: 0.5;
}

.current-item .progress-count:after {
    background: var(--bs-white);
    border: 2px solid #87cb87;
}

.current-item .progress-count {
    color: var(--bs-dark);
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.payment-section {
    border: 1px solid #f0f0f0;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}
.section-title {
    font-weight: bold;
    color: #e00000;
    text-align: center;
    font-size: 1.5rem;
}
.bank-box {
    border-right: 1px solid #e7e7e7;
    padding-right: 20px;
}

.vertical-line {
    width: 2px;
    height: 150px;
    background-color: #ddd8d8;
    margin: 0 auto;
}

.footer-info {
    font-size: 0.85rem;
    margin-top: 15px;
}
.badge-custom {
    background-color: #ffeb3b;
    color: #e00000;
}

.img-pagos-offline-md{
    width: 90px;
}
.img-pagos-offline-lg{
    width: 200px;
}
.img-pagos-offline-sm{
    width: 50px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (min-width: 576px) {
    .popover-detail-container {
        position: absolute;
        left: 0;
        border-radius: var(--bs-border-radius-lg);
        z-index: 10;
        background-color: var(--bs-white);
        --bs-border-opacity: 0.5;
        border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
        border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
    }

    .arrow-wrapper {
        position: relative;
        height: 0;
    }

    .arrow-up {
        position: absolute;
        top: -10px;
        right: 20px;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid white;
    }

    .popover-detail-container .body-popover {
        min-height: 150px !important;
        max-height: 300px !important;
        -webkit-overflow-scrolling: touch;
    }

    .popover-detail-container .popover-detail-footer{
        box-shadow: 0px -1px 2px #707070;
    }
}

@media (min-width: 768px) {
    .gallery {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 80px 80px 80px 80px;
        gap: 10px;
        max-width: 100%;
        margin: auto;
    }

    #layout-flights .flight:has(.acordeon-vuelo.show) {
        background: linear-gradient(to bottom, rgba(var(--bs-danger-rgb), 1) 0%, rgba(var(--bs-danger-rgb), 1) 23.5%, rgba(var(--bs-danger-rgb), .7) 23.5%, rgba(var(--bs-danger-rgb), .7) 100%) !important;
    }
}

@media (min-width: 992px) {
    .img-tour {
        width: 476px !important;
        height: 400px !important;
        object-fit: fill;
        object-position: center center;
    }

    .gallery {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 130px 130px 130px 130px;
        gap: 10px;
        max-width: 72%;
        margin: auto;
    }

    .stepp-wizard-item {
        padding: 0 20px;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        text-align: center;
        position: relative;
        transition: all .5s ease-in-out;
        box-sizing: border-box;
    }

    .div-layout::before {
        position: absolute;
        content: '';
        bottom: 0;
        left: 34%;
        width: 66%;
        border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .grid-resultados .div-layout::before {
        content: none !important;
    }

    .div-layout.grid-resultados::before {
        content: none !important;
    }

    .grid-resultados {
        grid-template-columns: repeat(3, 1fr) !important;
        grid-template-rows: repeat(1, 1fr);
    }

    .custom-accordion.accordion-button {
        width: auto;
    }

    .custom-accordion.accordion-button::after {
        margin-left: 15px;
    }

    .view-more-flights {
        display: flex !important;
        width: 100%;
        margin-right: 34px;
    }

    .description-progress {
        max-height: 280px !important;
    }

    #layout-flights .flight:has(.acordeon-vuelo.show) {
        background: linear-gradient(to bottom, rgba(var(--bs-danger-rgb), 1) 0%, rgba(var(--bs-danger-rgb), 1) 34%, rgba(var(--bs-danger-rgb), .7) 34%, rgba(var(--bs-danger-rgb), .7) 100%) !important;
    }
}

@media (min-width: 1200px) {
    .gallery {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 140px 140px 140px 140px;
        gap: 10px;
        max-width: 72%;
        margin: auto;
    }

    .boarding-pass-container {
        position: relative;
    }

    .boarding-pass-container.vuelo-comercial::before {
        content: '';
        position: absolute;
        top: 0%;
        right: 0;
        width: 100%;
        height: 100%;
        --bs-border-opacity: 0.3;
        --bs-border-width: 1px;
        border: none !important;
        transition: all 0.2s ease-in-out;
    }
    
    #layout-flights label.active.show .boarding-pass-container.vuelo-comercial::before {
        content: '';
        position: absolute;
        background-color: var(--bs-white);
        z-index: 0;
        transition: all 0.2s ease-in-out;
    }

    .bg-dark-lg {
        --bs-bg-opacity: 1;
        background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
    }
}

#layout-tipo-alimentacion .tipo-alimentacion {
    position: relative;
}

#layout-tipo-alimentacion .tipo-alimentacion.active {
    --bs-border-opacity: 1 !important;
    border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

#layout-tipo-alimentacion .tipo-alimentacion::before {
    content: '';
    position: absolute;
    top: 0;
    width: 0px;
    height: 100%;
    left: 0;
    --bs-bg-opacity: 0.25;
    background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
    transition: all 0.2s ease-in-out;
}

input.custom-checkbox[type=radio] {
    --bs-border-opacity: 0.25;
    border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
    background-color: transparent !important;
    width: 35px !important;
    height: 35px !important;
    min-height: 35px;
    min-width: 35px;
    transition: all 0.5s ease-in-out;
}

table input.custom-checkbox[type=radio] {
    --bs-border-opacity: 0.25;
    border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
    background-color: transparent !important;
    width: 20px !important;
    height: 20px !important;
    min-height: 20px;
    min-width: 20px;
    transition: all 0.5s ease-in-out;
}

.custom-checkbox-comercial[type=radio] {
    padding: 0;
    margin: 0;
    width: 25px !important;
    height: 25px !important;
    min-height: 25px;
    min-width: 25px;
    --bs-border-opacity: 0.25;
    border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
    background-color: transparent !important;
    border-radius: 0px 0px 0px 5px !important;
}

.custom-checkbox.form-check-input:checked[type=radio] {
    background-image: url('data:image/svg+xml,%3Csvg viewBox=\'0 0 20 20\' xmlns=\'http://www.w3.org/2000/svg\' fill=\'none\'%3E%3Cpath fill=\'%23dc3545\' fill-rule=\'evenodd\' d=\'M3 10a7 7 0 019.307-6.611 1 1 0 00.658-1.889 9 9 0 105.98 7.501 1 1 0 00-1.988.22A7 7 0 113 10zm14.75-5.338a1 1 0 00-1.5-1.324l-6.435 7.28-3.183-2.593a1 1 0 00-1.264 1.55l3.929 3.2a1 1 0 001.38-.113l7.072-8z\'/%3E%3C/svg%3E') !important;
    border: 0;
    transition: all 0.5s ease-in-out;
}

.custom-checkbox-comercial.form-check-input:checked[type=radio] {
    --bs-bg-custom-radio: rgba(var(--bs-danger-rgb), 0.9);
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%dc354580'/%3e%3c/svg%3e");
    background-color: var(--bs-bg-custom-radio) !important;
}

input.cunstom-radio[type=radio] {
    --bs-bg-opacity: 0.25;
    background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
    height: 25px !important;
    width: 25px !important;
}

input.custom-radio-2[type=radio] {
    --bs-bg-opacity: 0.25;
    background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

input.cunstom-radio-3[type=radio] {
    --bs-bg-opacity: 0.25;
    background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
    height: 20px !important;
    width: 20px !important;
}

input.cunstom-radio-3:checked[type=radio] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23e53935' stroke-width='2' d='M4 8l2.5 2.5L12 5'/%3e%3c/svg%3e") !important;
    background-color: transparent !important;
    --bs-border-opacity: 1;
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.form-check-input.cunstom-radio:checked[type=radio],
input.custom-radio-2:checked[type=radio] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2300000070'/%3e%3c/svg%3e") !important;
    --bs-bg-opacity: 0.25;
    background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.gallery-modal {
    margin: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 0.5rem;
    grid-auto-flow: dense;
}

.gallery-modal .image {
    min-height: 150px;
}

.gallery-modal .image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
}

.gallery-container .carousel-control-prev,
.gallery-container .carousel-control-next {
    width: 5%;
}

.gallery-container .main-image img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border: 2px solid #ccc;
    max-width: 100%;
    cursor: default;
}

.gallery-container .thumbnails {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
}

.gallery-container .thumbnails img {
    opacity: .4;
}

.gallery-container .thumbnail {
    height: 90px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.gallery-container .thumbnail:hover,
.gallery-container .thumbnail.active {
    opacity: 1;
}

.gallery-container .thumbnail:hover,
.gallery-container .thumbnail img:hover {
    opacity: 1;
    transition: all 0.5 ease-in-out;
}

@media (min-width: 1200px) {
    .gallery-container .thumbnails {
        width: 50vw;
    }
}

.modal-title:has(.back-gallery-modal) {
    cursor: pointer;
}

.modal-title:has(.back-gallery-modal):hover {
    color: var(--bs-danger);
    user-select: none;
}

.fs-1 .icons {
    width: 5rem !important;
}

.fs-2 .icons {
    width: 4.5rem !important;
    ;
}

.fs-3 .icons {
    width: 4rem !important;
    ;
}

.fs-4 .icons {
    width: 3.5rem !important;
}

.fs-5 .icons {
    width: 3rem !important;
}

.fs-6 .icons {
    width: 2.5rem !important;
}

.fs-7 .icons {
    width: 2rem !important;
}

.icons {
    width: 1.5rem !important;
}

.form-floating-custom {
    position: relative;
    margin-bottom: 1rem;
}

.form-floating-custom>label {
    position: absolute;
    top: -0.75rem;
    left: 0.75rem;
    background-color: white;
    padding: 0 0.25rem;
    font-size: 0.875rem;
}

.form-floating-custom>input {
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
}

.table-responsive-stack tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.table-responsive-stack td,
.table-responsive-stack th {
    display: block;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.table-responsive-stack .table-responsive-stack-thead {
    font-weight: bold;
}

.lazy {
    object-fit: cover;
}

.form-control {
    display: block;
    width: 100% !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-color: var(--bs-body-bg) !important;
    background-clip: padding-box !important;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius) !important;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !important;
}

.form-control:focus {
    color: var(--bs-body-color) !important;
    background-color: var(--bs-body-bg) !important;
    border-color: rgba(var(--bs-primary-rgb), .30) !important;
    outline: 0 !important;
    box-shadow: 0 0 0 .15rem rgba(var(--bs-primary-rgb), .25) !important;
}

.form-control-is-invalid:focus {
    color: var(--bs-body-color) !important;
    background-color: var(--bs-body-bg) !important;
    border-color: rgba(var(--bs-danger-rgb), .30) !important;
    outline: 0 !important;
    box-shadow: 0 0 0 .15rem rgba(var(--bs-danger-rgb), .25) !important;
}

.form-control-is-valid:focus {
    color: var(--bs-body-color) !important;
    background-color: var(--bs-body-bg) !important;
    border-color: rgba(var(--bs-danger-rgb), .30) !important;
    outline: 0 !important;
    box-shadow: 0 0 0 .15rem rgba(var(--bs-success-rgb), .25) !important;
}

fieldset.form-register-pax {
    display: block;
    margin-inline-start: 2px;
    margin-inline-end: 2px;
    padding-block-start: 0.35em;
    padding-inline-start: 0.75em;
    padding-inline-end: 0.75em;
    padding-block-end: 0.625em;
    min-inline-size: min-content;
    border-width: 2px;
    border-style: groove;
    border-color: rgb(192, 192, 192);
    border-image: initial;
}

fieldset.form-register-pax legend {
    display: block;
    padding-inline-start: 2px;
    padding-inline-end: 2px;
    unicode-bidi: isolate;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    float: none;
    width: auto;
    margin-bottom: auto;
}

.nav-link.active {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 10px;
}

.overlay-content-text {
    padding: 20px;
    margin-top: 10px;
    background-color: rgba(0, 0, 0, 0.65);
    border-radius: 10px;
}

.disabled {
    pointer-events: none;
}

.overlay-content-spinner {
    height: 55px;
    aspect-ratio: 2.5;
    --_g: no-repeat radial-gradient(farthest-side, #dc3545 90%, #0000);
    background: var(--_g), var(--_g), var(--_g), var(--_g);
    background-size: 20% 50%;
    animation: l44 1s infinite linear alternate;
}

@keyframes l44 {

    0%,
    5% {
        background-position: calc(0*100%/3) 50%, calc(1*100%/3) 50%, calc(2*100%/3) 50%, calc(3*100%/3) 50%
    }

    12.5% {
        background-position: calc(0*100%/3) 0, calc(1*100%/3) 50%, calc(2*100%/3) 50%, calc(3*100%/3) 50%
    }

    25% {
        background-position: calc(0*100%/3) 0, calc(1*100%/3) 0, calc(2*100%/3) 50%, calc(3*100%/3) 50%
    }

    37.5% {
        background-position: calc(0*100%/3) 100%, calc(1*100%/3) 0, calc(2*100%/3) 0, calc(3*100%/3) 50%
    }

    50% {
        background-position: calc(0*100%/3) 100%, calc(1*100%/3) 100%, calc(2*100%/3) 0, calc(3*100%/3) 0
    }

    62.5% {
        background-position: calc(0*100%/3) 50%, calc(1*100%/3) 100%, calc(2*100%/3) 100%, calc(3*100%/3) 0
    }

    75% {
        background-position: calc(0*100%/3) 50%, calc(1*100%/3) 50%, calc(2*100%/3) 100%, calc(3*100%/3) 100%
    }

    87.5% {
        background-position: calc(0*100%/3) 50%, calc(1*100%/3) 50%, calc(2*100%/3) 50%, calc(3*100%/3) 100%
    }

    95%,
    100% {
        background-position: calc(0*100%/3) 50%, calc(1*100%/3) 50%, calc(2*100%/3) 50%, calc(3*100%/3) 50%
    }
}

.success-animation {
    margin: 150px auto;
}
  
.checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #4bb71b;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #4bb71b;
    animation: fill 0.4s ease-in-out 0.4s forwards,
      scale 0.3s ease-in-out 0.9s both;
    position: relative;
    top: 5px;
    right: 5px;
    margin: 0 auto;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #4bb71b;
    fill: #fff;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
  
@keyframes stroke {
    100% {
      stroke-dashoffset: 0;
    }
}
  
@keyframes scale {
    0%,
    100% {
      transform: none;
    }
  
    50% {
      transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
      box-shadow: inset 0px 0px 0px 30px #4bb71b;
    }
}

.ui-success,
.ui-error {
    width: 40px;
    height: 40px;
}

.ui-success-circle {
    stroke-dasharray: 260.75219025px, 260.75219025px;
    stroke-dashoffset: 260.75219025px;
    transform: rotate(220deg);
    transform-origin: center center;
    stroke-linecap: round;
    animation: ani-success-circle 1s ease-in both;
}

.ui-success-path {
    stroke-dasharray: 60px 64px;
    stroke-dashoffset: 62px;
    stroke-linecap: round;
    animation: ani-success-path 0.4s 1s ease-in both;
}

@keyframes ani-success-circle {
    to {
        stroke-dashoffset: 782.25657074px;
    }
}

@keyframes ani-success-path {
    0% {
        stroke-dashoffset: 62px;
    }
    65% {
        stroke-dashoffset: -5px;
    }
    84% {
        stroke-dashoffset: 4px;
    }
    100% {
        stroke-dashoffset: -2px;
    }
}

.ui-error-circle {
    stroke-dasharray: 260.75219025px, 260.75219025px;
    stroke-dashoffset: 260.75219025px;
    animation: ani-error-circle 1.2s linear;
}
.ui-error-line1 {
    stroke-dasharray: 54px 55px;
    stroke-dashoffset: 55px;
    stroke-linecap: round;
    animation: ani-error-line 0.15s 1.2s linear both;
}
.ui-error-line2 {
    stroke-dasharray: 54px 55px;
    stroke-dashoffset: 55px;
    stroke-linecap: round;
    animation: ani-error-line 0.2s 0.9s linear both;
}

@keyframes ani-error-line {
    to {
        stroke-dashoffset: 0;
    }
}
@keyframes ani-error-circle {
    0% {
        stroke-dasharray: 0, 260.75219025px;
        stroke-dashoffset: 0;
    }
    35% {
        stroke-dasharray: 120px, 120px;
        stroke-dashoffset: -120px;
    }
    70% {
        stroke-dasharray: 0, 260.75219025px;
        stroke-dashoffset: -260.75219025px;
    }
    100% {
        stroke-dasharray: 260.75219025px, 0;
        stroke-dashoffset: -260.75219025px;
    }
}

#dropdown-tipo-alimentacion .dropdown-toggle::after,
#dropdown-ordenar-hoteles .dropdown-toggle::after,
#dropdown-ordenar-vuelos .dropdown-toggle::after {
    position: absolute;
    right: 4%;
    top: 56%;
    vertical-align: middle !important;
}

#dropdown-tipo-alimentacion .dropdown-toggle:empty::after,
#dropdown-ordenar-hoteles .dropdown-toggle:empty::after,
#dropdown-ordenar-vuelos .dropdown-toggle:empty::after {
    margin-left: 100%;
}

#dropdown-tipo-alimentacion .dropdown-menu li:last-child,
#dropdown-ordenar-hoteles .dropdown-menu li:last-child,
#dropdown-ordenar-vuelos .dropdown-menu li:last-child {
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

#dropdown-tipo-alimentacion .dropdown-toggle::after {
    content: "";
    border-top: .3em solid var(--bs-danger) !important;
}

.img-placeholder {
    background-color: #e0e0e0;
    object-fit: cover;
}

#layout-gallery-hotel .carousel-controls {
    text-align: center;
    margin-top: 10px;
}

#layout-gallery-hotel .carousel-indicators {
    position: static;
    display: inline-block;
}

#layout-gallery-hotel .carousel-control-prev,
#layout-gallery-hotel .carousel-control-next {
    position: static;
    margin: 0 10px;
    display: inline-block;
}

#div-selected-hotel .carousel-control-prev,
#div-selected-hotel .carousel-control-next {
    width: 12% !important;
}

.rounded-indicator {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
}

#layout-gallery-hotel .carousel-indicators .active {
    background-color: #DD183B !important;
}

#div-stepps .item-stepp {
    position: relative;
}

#div-stepps .item-stepp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    transition: all .5s ease-in-out;
}

#div-stepps .item-stepp:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    --bs-border-opacity: 0.3;
    --bs-border-width: 1px;
    border: var(--bs-border-width) solid rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

#div-stepps .item-stepp .item-counter {
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
    transition: all .5s ease-in-out;
    white-space: nowrap !important;
}

#div-stepps .item-stepp.cursor-pointer:hover {
    transition: all .1s ease-in-out;
}

#div-stepps .item-stepp.active .item-counter {
    color: var(--bs-white);
    background-color: var(--bs-danger);
    font-weight: 800 !important;
    border-color: var(--bs-danger) !important;
    z-index: 1;
    transition: all .5s ease-in-out;
}

#div-stepps .item-stepp.active .title-stepp {
    font-weight: bold !important;
}

#div-stepps .item-stepp.activated {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

#div-stepps .item-stepp.activated .item-counter {
    background-color: var(--bs-white);
    border-color: var(--bs-danger) !important;
    color: var(--bs-danger);
    font-weight: 800 !important;
}

#div-stepps .item-stepp.activated .title-stepp,
#div-stepps .item-stepp.activated .description-stepp,
#div-stepps .item-stepp.activated .text-dark,
#div-stepps .item-stepp.activated span {
    color: var(--bs-white) !important;
}

.skeleton-loader:empty {
    width: 100%;
    height: 15px;
    display: inline-block;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0) 80%
      ),
      lightgray;
    background-repeat: repeat-y;
    background-size: 20px 500px;
    background-position: 0 0;
    border-radius: 3px;
    animation: shine 1.6s ease-in-out infinite;
}

@keyframes shine {
    to {
        background-position: 100vw 0;
    }
}

.div-layout {
    position: relative;
    box-shadow: none;
    border-radius: var(--bs-border-radius) !important;
    transition: all .1s ease-in-out;
}

.div-layout:hover {
    box-shadow: var(--bs-box-shadow-sm) !important;
    transition: all .1s ease-in-out;
}

.grid-resultados {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(1, 1fr);
    gap: 10px 10px;
    align-items: center;
    justify-content: center;
}

.img-tour {
    width: 100%;
    height: 300px;
    object-fit: fill;
    object-position: center center;
}

.img-tour-slides {
    width: 100%;
    height: 300px !important;
    object-fit: fill;
    object-position: center center;
}

.img-tour.radius {
    border-radius: 0px 30px 0px 30px;
}

#elementor-filter > div {
    border-radius: var(--bs-border-radius-lg) !important;
    --bs-border-opacity: 0.6;
    border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

#layout-resume-search:not(:empty) {
    display: block;
}

#search_form > div.row {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.style-valor-reserva,
.style-valor-vuelo {
    letter-spacing: -1px !important;
    color: gray !important;
}

.style-valor-final {
    letter-spacing: -1px;
    font-weight: 800;
    --bs-text-opacity: 0.8;
}

#layout-flights table tbody tr {
    position: relative;
}

#layout-flights .flight {
    --bs-border-opacity: 0.5;
    --bs-border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    /* cursor: default !important;
    border: none !important; */
}

#layout-flights table tbody tr.flight {
    --bs-border-opacity: 0.5;
    --bs-border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    cursor: default !important;
    border: none !important;
}

#layout-flights table tfoot tr {
    position: relative;
}

#layout-flights table tfoot tr::after {
    content: "";
    position: absolute;
    top: 1px;
    bottom: 1px;
    left: 0px;
    right: 0px;
    border-radius: 0px 0px 12px 12px;
    border: 1px solid transparent;
    pointer-events: none;
    border-color: rgba(var(--bs-dark-rgb), .3);
    transition: border .2s ease, box-shadow .2s ease, background-color .2s ease;
}

#layout-flights table tbody tr.active::after {
    content: "";
    position: absolute;
    top: 1px;
    bottom: 1px;
    left: 0px;
    right: 0px;
    border-radius: 12px;
    border: 1px solid transparent;
    pointer-events: none;
    border-color: rgba(var(--bs-danger-rgb), .8);
    transition: border .2s ease, box-shadow .2s ease, background-color .2s ease;
}

#layout-flights table tbody .flight-container::after {
    content: "";
    position: absolute;
    top: 1px;
    bottom: 1px;
    left: 0px;
    right: 0px;

    border-radius: 12px;
    border: 1px solid transparent;

    pointer-events: none;

    transition: border .2s ease, box-shadow .2s ease, background-color .2s ease;
}

#layout-flights table tbody .flight-container:hover::after {
    border-color: rgba(var(--bs-dark-rgb), .5);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

#layout-flights .flight.active {
    --bs-border-opacity: 0;
    --bs-border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
    --bs-bg-opacity: 1;
    background: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity));
    transition: all 0.5s ease-in-out;
}

#layout-flights .flight:has(.acordeon-vuelo.show) {
    background: linear-gradient(to bottom, rgba(var(--bs-danger-rgb), 1) 0%, rgba(var(--bs-danger-rgb), 1) 26.5%, rgba(var(--bs-danger-rgb), .7) 26.5%, rgba(var(--bs-danger-rgb), .7) 100%);
}

#layout-flights .flight.active #flight-value,
#layout-flights .flight.active .style-valor-vuelo,
#layout-flights .flight.active .lbl-txt-select-flight,
#layout-flights .flight.active .total-flight,
#layout-flights .flight.active .class-flight,
#layout-flights .flight.active .total-flight-passanger,
#layout-flights .flight.active .container-custom-checkbox,
#layout-flights .flight.active .fin-operta {
    color: var(--bs-white) !important;
}

#layout-flights .flight.active .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF' stroke='%23FFFFFF' stroke-width='1.5'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#layout-flights .flight.active .border-flight-value {
    --bs-border-opacity: 1;
    border-color: var(--bs-white) !important;
}

#layout-flights .flight input.custom-checkbox[type=radio] {
    --bs-border-opacity: 1;
    border-width: 2px !important;
    border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGNpcmNsZSBjeD0iMTIiIGN5PSIxMiIgcj0iMTAiIGZpbGw9IiNmZmYiIHN0cm9rZT0iI2JiYiIgc3Ryb2tlLXdpZHRoPSIxLjUiLz48L3N2Zz4=') !important;
}

#layout-flights .flight.active .custom-checkbox.form-check-input:checked[type=radio] {
    background-color: var(--bs-white) !important;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGNpcmNsZSBjeD0iMTIiIGN5PSIxMiIgcj0iMTEiIGZpbGw9IiNkYzM1NDUiLz48Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSI4IiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTggMTJsMyAzIDUtNSIgc3Ryb2tlPSIjZGMzNTQ1IiBzdHJva2Utd2lkdGg9IjEuNCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBmaWxsPSJub25lIi8+PC9zdmc+') !important;
    transition: all 0.5s ease-in-out;
}

.badge-resumen {
    display: inline-block;
    height: 25px;
    --bs-bg-opacity: .05;
    background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
    --bs-text-opacity: 1;
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
    padding-left: .5rem !important;
    padding-right: 1rem !important;
    border-radius: var(--bs-border-radius-sm) !important;
}

.btn-select-flight {
    position: relative;
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
    --bs-border-opacity: 1;
    border-width: 2px !important;
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
    border-radius: var(--bs-border-radius-lg) !important;
    --bs-text-opacity: 1;
    color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.btn-select-flight span {
    position: absolute;
    left: 30%;
}

.btn-select-flight.active {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.btn-select-flight input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(var(--bs-danger-rgb), 1);
    border-radius: 50%;
    background: white;
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

.btn-select-flight input[type="radio"]:checked {
    background: rgba(var(--bs-danger-rgb), 1);
    border-color: white;
}

.btn-select-flight input[type="radio"]::before {
    content: "";
    position: absolute;
    inset: 50%;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: 0.3s;
}

.btn-select-flight input[type="radio"]:checked::before {
    opacity: 1;
}

.custom-modal .modal-content {
    border-radius: 15px;
    text-align: center;
    border: none;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: scale(0.7); }
    100% { opacity: 1; transform: scale(1); }
}

.swal-icon {
    width: 80px;
    height: 80px;
    margin: 10px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.swal-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    stroke-width: 4;
    fill: none;
    stroke-dasharray: 251.2;
    stroke-dashoffset: 251.2;
    animation: drawCircle 0.5s ease-out forwards;
}

@keyframes drawCircle {
    0% { stroke-dashoffset: 251.2; }
    100% { stroke-dashoffset: 0; }
}

.swal-success path {
    stroke: #28a745;
    stroke-width: 6;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 60, 120;
    stroke-dashoffset: 60;
    opacity: 0;
    animation: drawCheck 0.5s ease-out forwards 0.5s;
}

@keyframes drawCheck {
    0% { stroke-dashoffset: 60; opacity: 0; }
    10% { opacity: 1; } 
    100% { stroke-dashoffset: 0; opacity: 1; }
}

.swal-error line {
    stroke: #dc3545;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 45, 90;
    stroke-dashoffset: 45;
    animation: drawError 0.5s ease-out forwards 0.5s;
}

@keyframes drawError {
    0% { stroke-dashoffset: 45; }
    100% { stroke-dashoffset: 0; }
}

.swal-warning circle {
    stroke: #ffc107;
}

.swal-warning text,
.swal-info text {
    font-size: 60px;
    transform-origin: center 60%;
}

.swal-warning text {
    fill: #ffc107;
    animation: bellShake 0.6s ease-in-out;
}

.swal-info circle {
    stroke: #17a2b8;
}

.swal-info text {
    fill: #17a2b8;
    animation: bellShakeInverse 0.6s ease-in-out;
}

.swal-question circle { stroke: #87adbd; }
.swal-question text {
    fill: #87adbd;
    font-size: 60px;
    transform-origin: center center;
    animation: rotate360 0.8s ease-in-out forwards;
    dominant-baseline: middle;
}

@keyframes bellShake {
    0% { transform: rotate(0); }
    20% { transform: rotate(15deg); }
    40% { transform: rotate(-10deg); }
    60% { transform: rotate(7deg); }
    80% { transform: rotate(-4deg); }
    100% { transform: rotate(0); }
}

@keyframes bellShakeInverse {
    0% { transform: rotate(0); }
    20% { transform: rotate(-15deg); }
    40% { transform: rotate(10deg); }
    60% { transform: rotate(-7deg); }
    80% { transform: rotate(4deg); }
    100% { transform: rotate(0); }
}

@keyframes rotate360 {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: none;
    outline: none;
}

#form-cupon #codigo_promocional-error {
    position: absolute;
    bottom: -20px;
    left: 13px;
}

.custom-placeholder::placeholder {
    color: var(--bs-bg-body) !important;
}

.description-class {
    font-size: .900rem;
    font-weight: 500;
    line-height: 1.323;
}

#layout-flights .class-container {
    padding: 0px;
    margin: 0px;
    border: 1px solid transparent;
    transition: all .4s ease-out;
}

#layout-flights .class-container:hover .card {
    background-image: var(--bs-gradient) !important;
    --bs-bg-opacity: .96 !important;
    background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

#layout-flights .class-container:hover .card .btn-outline-danger {
    color: var(--bs-dark) !important;
    background-color: var(--bs-white) !important;
    border-color: var(--bs-white) !important;
    transition: all .4s ease-out;
}

#layout-flights .class-container:hover .card,
#layout-flights .class-container:hover .card .list-unstyled,
#layout-flights .class-container:hover .card .list-unstyled li,
#layout-flights .class-container:hover .card .list-unstyled li span,
#layout-flights .class-container:hover .card .list-unstyled li .text-dark {
    color: var(--bs-white) !important;
    transition: color .4s ease-out;
}

.selected-flight-class {
    border: 1px solid var(--bs-danger) !important;
}

.selected-flight-class .btn-outline-danger {
    background-color: var(--bs-danger) !important;
    color: var(--bs-white) !important;
}

.selected-flight-class:hover {
    border: 1px solid var(--bs-dark) !important;
}

#layout-flights .accordion-button:not(.collapsed)::after,
#layout-flights .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF0000' stroke='%23212529' stroke-width='1.5'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-accordion-button.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF0000' stroke='%23212529' stroke-width='1.5'%3e%3cpath d='M2 2l12 12M14 2L2 14'/%3e%3c/svg%3e") !important;
}

.view-more-flights {
    margin-right: 34px;
    transition: all .4s ease-out;
}

.view-more-flights.show {
    color: transparent !important;
}

.view-more-flights::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 30%;
    right: 3px;
    cursor: pointer;
    background-repeat: no-repeat;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF0000' stroke='%23212529' stroke-width='1.5'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	transform: rotate(0deg);
    transition: all .4s ease-out;
}

.view-more-flights.show::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 30%;
    right: 3px;
    cursor: pointer;
    background-repeat: no-repeat;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF0000' stroke='%23212529' stroke-width='1.5'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: var(--bs-accordion-btn-icon-transform);
    transition: all .4s ease-out;
}

#layout-flights .accordion-collapse {
    transition: height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}

#layout-flights .accordion-collapse.collapsing {
    height: 0;
    opacity: 0;
}

#layout-flights .accordion-collapse.show {
    height: auto;
    opacity: 1;
}

.btn-confirm {
    --bs-btn-hover-bg: var(--bs-danger) !important;
    --bs-btn-hover-border-color: var(--bs-danger) !important;
    --bs-btn-active-bg: var(--bs-danger) !important;
    --bs-btn-active-border-color: var(--bs-danger) !important;
}

.resumen-step {
    overflow-y: auto;
    max-height: 75px;
}

.btn-edit:hover {
    --bs-btn-active-color: var(--bs-white) !important;
    --bs-btn-hover-bg: var(--bs-dark) !important;
    --bs-btn-active-bg: var(--bs-dark) !important;
    --bs-btn-hover-color: var(--bs-white) !important;
    color: var(--bs-white) !important;
    text-decoration: none !important;
}

.shadow-services {
    position: relative;
    box-shadow: 0px 2px 3px 0px rgba(var(--bs-dark-rgb), .5);
}

.card-flight-service {
    position: relative;
}

.shadow-services.service-selected::after,
.card-flight-service.service-selected::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 25px !important;
    height: 25px !important;
    min-height: 25px;
    min-width: 25px;
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml,%3Csvg viewBox=\'0 0 20 20\' xmlns=\'http://www.w3.org/2000/svg\' fill=\'none\'%3E%3Cpath fill=\'%23dc3545\' fill-rule=\'evenodd\' d=\'M3 10a7 7 0 019.307-6.611 1 1 0 00.658-1.889 9 9 0 105.98 7.501 1 1 0 00-1.988.22A7 7 0 113 10zm14.75-5.338a1 1 0 00-1.5-1.324l-6.435 7.28-3.183-2.593a1 1 0 00-1.264 1.55l3.929 3.2a1 1 0 001.38-.113l7.072-8z\'/%3E%3C/svg%3E') !important;
}

#tours-track .imagen-tour.selected-tour::after {
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    width: 25px !important;
    height: 25px !important;
    min-height: 25px;
    min-width: 25px;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23e53935' stroke-width='2' d='M4 8l2.5 2.5L12 5'/%3e%3c/svg%3e") !important;
    background-color: white;
    border-radius: 50px;
    box-shadow: 1px 1px 3px 0px #0000008c;
}

#layout-tours #tours-track .imagen-tour.selected-tour::after {
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    width: 25px !important;
    height: 25px !important;
    min-height: 25px;
    min-width: 25px;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23e53935' stroke-width='2' d='M4 8l2.5 2.5L12 5'/%3e%3c/svg%3e") !important;
    background-color: white;
    border-radius: 50px;
    box-shadow: 1px 1px 3px 0px #0000008c;
}

.imagen-tour.selected-tour::after {
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    width: 25px !important;
    height: 25px !important;
    min-height: 25px;
    min-width: 25px;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23e53935' stroke-width='2' d='M4 8l2.5 2.5L12 5'/%3e%3c/svg%3e") !important;
    background-color: white;
    border-radius: 50px;
    box-shadow: 1px 1px 3px 0px #0000008c;
}

.special-bg {
    position: relative;
}

.special-bg img {
    z-index: 2;
    height: 60px !important;
}

.special-bg::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: #d1d1d1;
    border-radius: 71% 29% 20% 80% / 63% 83% 17% 37%;
}

.services-flight-control .remove-services-control,
.services-flight-control .add-services-control {
    width: 25px;
    height: 25px;
    min-width: 25px;
    min-height: 25px;
}

.popover-detail-container {
    position: absolute;
    left: 0;
    border-radius: var(--bs-border-radius-lg);
    z-index: 10;
    background-color: var(--bs-white);
    --bs-border-opacity: 0.5;
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.arrow-wrapper {
    position: relative;
    height: 0;
}

.arrow-up {
    position: absolute;
    top: -10px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
}

.popover-detail-container .body-popover {
    max-height: 300px !important;
    -webkit-overflow-scrolling: touch;
}

.popover-detail-container .popover-detail-footer {
    box-shadow: 0px -1px 2px #707070;
}

.pague-cuotas {
    display: inline-block;
    font-weight: 600 !important;
    padding: 4px 10px;
    border-radius: 5px;
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
    font-size: 0.8rem !important;
    -webkit-user-select: none !important;
    -moz-user-select: none!important;
    user-select: none !important;
}

#carouselTours.no-transition .carousel-item {
    transition: none !important;
}

#modal-services-description .item-controls,
.popover-detail-body .item-controls {
    --bs-bg-opacity: .1;
    padding: 2px;
    border-radius: 5px;
    width: 80px;
}

#modal-services-description .remove,
#modal-services-description .add,
.popover-detail-body .remove,
.popover-detail-body .add {
    height: 20px;
    width: 20px;
    min-width: 20px;
    min-height: 20px;
}

#modal-services-description .input-control {
    line-height: 0px;
    display: flex;
    align-items: center;
}

.description-tour {
    max-height: 210px;
    white-space: pre-line;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0 10%;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

#layout-servicios-adicionales .grid-resultados .carousel-item-custom {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .carousel-wrapper {
        padding: 0px;
    }

    #layout-servicios-adicionales .grid-resultados .carousel-item-custom {
        flex: 0 0 calc(100% / 2);
        max-width: calc(100% / 2);
    }

    #div-selected-hotel .carousel-control-prev,
    #div-selected-hotel .carousel-control-next {
        width: 8% !important;
    }
}

@media (min-width: 992px) {
    #layout-servicios-adicionales .grid-resultados .carousel-item-custom {
        flex: 0 0 calc(100% / 3);
        max-width: calc(100% / 3);
    }

    #div-selected-hotel .carousel-control-prev,
    #div-selected-hotel .carousel-control-next {
        width: 6% !important;
    }
}

.carousel-btn {
    z-index: 2;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    opacity: 0.8;
}

.carousel-btn.prev{
    left: 3px;
}

.carousel-btn.next {
    right: 3px;
}

.carousel-btn:hover {
    opacity: 1;
}

#table-financiacion {
    --bs-table-bg: transparent;
}

#table-financiacion thead tr {
    background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20378.13%2065.410004%22%20fill%3D%22currentColor%22%20class%3D%22icon%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%20%7Bfill%3A%20url(%23linear-gradient)%3B%7D%3C%2Fstyle%3E%3ClinearGradient%20id%3D%22linear-gradient%22%20x1%3D%229351.2695%22%20y1%3D%22721.42999%22%20x2%3D%229729.4004%22%20y2%3D%22721.42999%22%20gradientTransform%3D%22translate(-9729.4%2C-754.13)%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20offset%3D%220%22%20stop-color%3D%22%23f08e37%22%2F%3E%3Cstop%20offset%3D%22.21%22%20stop-color%3D%22%23ee7751%22%2F%3E%3Cstop%20offset%3D%22.46%22%20stop-color%3D%22%23ed606c%22%2F%3E%3Cstop%20offset%3D%22.69%22%20stop-color%3D%22%23ec527c%22%2F%3E%3Cstop%20offset%3D%22.87%22%20stop-color%3D%22%23ec4e82%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3Crect%20class%3D%22cls-1%22%20x%3D%22-378.13%22%20y%3D%22-65.410004%22%20width%3D%22378.13%22%20height%3D%2265.410004%22%20rx%3D%224.54%22%20ry%3D%224.54%22%20transform%3D%22scale(-1)%22%20style%3D%22fill%3Aurl(%23linear-gradient)%22%2F%3E%3C%2Fsvg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#table-financiacion thead th:first-child {
    border-left: 1px solid transparent;
    border-top: 1px solid transparent;

}

#table-financiacion thead th:last-child {
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
}

#table-financiacion thead tr:first-child th:first-child {
    border-top-left-radius: 8px;
}

#table-financiacion thead tr:first-child th:last-child {
    border-top-right-radius: 8px;
}

#table-financiacion tfoot td:first-child {
    border-left: 1px solid transparent;
    border-bottom: 1px solid transparent;
}

#table-financiacion tfoot td:last-child {
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
}

#table-financiacion tfoot tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}

#table-financiacion tfoot tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}

.description-progress {
    max-height: 500px;
}