/* GENERAL */
section {
    aspect-ratio: unset;
}
.border-radius-xs-small{
    border-radius: 2px !important;
}
.border-right {
    border-right: 1.5px solid black;
}
.hotel-title {
    width: 90%;
    margin: 1rem auto;
    font-size: 1.65rem;
}

.hotel-title.top {
    font-family: 'Stella', sans-serif;
    margin-bottom: 0.5rem;
}

.btn-book {
    background: rgb(var(--gotifi-orange-rgb) / 100%);
    border: 1.5px solid var(--gotifi-yellow);
    color: var(--white);
    border-radius: 10rem;
}

.btn-search {
    background: var(--gotifi-yellow);
    border: 2px solid var(--black);
    color: var(--black);
    font-weight: bold;
    border-radius: 10rem;
}

.btn-primary {
    background: rgb(var(--gotifi-orange-rgb) / 100%)!important;
    border: 1.5px solid var(--gotifi-orange);
    color: var(--white)!important;
}

.cursor-pointer {
    cursor: pointer;
}

/* Counter Input */
.counter-container .btn-outline-secondary {
    background-color: var(--gotifi-yellow);
    border: 1.5px solid var(--black);
    color: var(--black);
}

/* SEARCH SECTION */
.section-search {
    margin-top: 128px;
}
.search-content-div {
    border: 2px solid var(--black);
    border-radius: 6px;
}
div.search-content-div:not(:first-child) {
    border-left: none;
}

.search-content {
    border: 4px solid var(--black);
    border-radius: 6px;
}
.search-content > div {
    width: 25%;
    padding-right: 1rem;
    padding-block: 0.25rem;
    border-right: 2px solid var(--black);
}
.search-content .field-input, 
.search-content .field-select,
.search-content > div:nth-of-type(4) {
    border: none;
    border-radius: 16px;
}
.search-content .field-input:focus-visible, 
.search-content .field-select:focus-visible, 
.search-content .field-date:focus {
    outline: none;
    box-shadow: none;
}


/* ADS SECTION */
.ads-container .ads {
    width: 100%;
    background-color: black;
    aspect-ratio: 3/1.5;
    border-radius: 12px;
}


/* TICKET LIST SECTION */
.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 10rem;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gotifi-orange);
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gotifi-orange);
    cursor: pointer;
}
[type="radio"]:checked,
[type="radio"]:not(:checked) {
    visibility: hidden;
}
input[type='radio']:after {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    top: 1px;
    left: -1px;
    position: relative;
    /* background-color: #d1d3d1; */
    content: '';
    display: inline-block;
    visibility: visible;
    cursor: pointer;
    border: 1.5px solid #D1D3D1;
    transition: all 0.2s ease;
}
input[type='radio']:checked:after {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    top: 1px;
    left: -1px;
    position: relative;
    background-color: #ffa500;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 1.5px solid #D1D3D1;
    opacity: 1;
}
    
.btn-reset {
    font-size: 14px;
    text-decoration: underline;
    cursor:pointer;
}
.list-container > div:nth-of-type(1) {
    border-right: 1.5px solid black;
}
.ticket-option-container {
    border: 1.5px solid black;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s linear;
}
.ticket-option-container .left-content .ticket-option-img {
    background-color: black;
    aspect-ratio: 3/2;
}
.ticket-option-container .right-content {
    border-left: 1.5px solid black;
    background-color: var(--gotifi-yellow);
}
.ticket-option-container:hover {
    box-shadow: 0px 5px 20px 4px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 5px 20px 4px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 5px 20px 4px rgba(0,0,0,0.5);
    transform: translateY(-2px);
}
.show-mobile {
    display: none;
}
.accordion-header .itinenariesticket-font-black-big {
    font-size: 18px;
}
.accordion-header .itinenariesticket-font-black-big span {
    font-size: 16px;
}
.accordion-body {
    max-height: 0;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}
.accordion-show {
    max-height: 100rem;
    padding-bottom: 1rem;
}

/* PAGINATION */
.list-pagination .page-link {
    color: var(--gotifi-orange);
}
.page-item.active .page-link {
    background-color: var(--gotifi-orange);
    border-color: var(--gotifi-orange);
}

@media only screen and (max-width: 992px) and (min-width: 718px) {
    div.search-content-div:not(:first-child) {
        border-left: 2px solid black;
    }
    /* TICKET LIST SECTION */
    .list-container > div:nth-of-type(1) {
        width: 30%!important;
    }
    .list-container > div:nth-of-type(2) {
        width: 70%!important;
    }
    .ticket-option-container {
        flex-direction: column;
    }
    .ticket-option-container .left-content, .ticket-option-container .right-content {
        width: 100%!important;
    }
    .ticket-option-container .right-content {
        border-left: none;
        border-top: 1.5px solid black;
    }


}
@media only screen and (min-width:460px) and (max-width: 760px) {
    div.search-content-div:not(:first-child) {
        border-left: 2px solid black;
    }

    .btn-search {
        width: 100%;
        margin-top: 0.5rem;
    }
}
@media screen and (max-width:480px) {
    div.search-content-div:not(:first-child) {
        border-left: 2px solid black;
    }
    /* SEARCH SECTION */
    .section-search > div, .search-content {
        flex-direction: column;
        margin-right: 0!important;
    }
    .search-content > div {
        width: 100%!important;
        border-right: none;
        border-bottom: 2px solid var(--black);
    }
    .search-content ~ div {
        width: 100%;
    }
    .btn-search {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    /* ADS SECTION */
    .section-ads {
        width: 100%!important;
    }

    /* TICKET LIST SECTION */
    .show-mobile {
        display: block;
    }
    .list-container > div:nth-of-type(1) {
        display: none!important;
    }
    .list-container > div:nth-of-type(2) {
        width: 100%!important;
    }
    .ticket-option-container {
        flex-direction: column;
        align-items: center!important;
    }
    .ticket-option-container .left-content, .ticket-option-container .right-content {
        width: 100%!important;
    }
    .ticket-option-container .left-content h2 {
        font-size: 1.25rem;
    }
    .ticket-option-container .left-content p {
        font-size: 14px!important;
        padding-right: 0.5rem;
    }
    .ticket-option-container .right-content {
        border-left: none;
        border-top: 1.5px solid black;
    }

    /* MODAL */
    .pax-modal .modal-title {
        font-size: 24px;
    }
    .pax-modal .modal-dialog {
        width: 90%;
    }
    .counter-container {
        width: 65% !important;
    }
}