/********** Template CSS **********/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@100..900&display=swap');

:root {
    --primary: #F67C36;
    --secondary: #333333;
    --light: #EFFDF5;
    --dark: #131313;
    --color: oklch(86.63% 0.25 148.01);
    --line-border-empty: oklch(76.63% 0.25 148.01);
    --text-empty: oklch(71.63% 0.25 148.01);
    --line-border-fill: oklch(64.29% 0.26 360);
    --text-fill: oklch(46.63% 0.25 148.01);
    --card-line-height: 1.2em;
    --card-padding: 1em;
    --card-radius: 0.5em;
    --color-green: #558309;
    --color-gray: #e2ebf6;
    --color-dark-gray: #c4d1e1;
    --radio-border-width: 2px;
    --radio-size: 1.5em;
}

body,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: "Montserrat", sans-serif;
}

body {
    background-color: #ffffff;
    overflow-x: hidden;
}

.text-dark {
    color: var(--dark) !important
}

.display-6,
.display-5 {
    font-weight: 500;
    text-transform: uppercase;
}

.section-title {
    color: var(--primary);
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.like.active,
.dislike.active {
    background-color: var(--primary);
    color: #ffffff;
    border-color: #ffffff;
}

.btn-check:focus+.btn,
.btn:focus {
    box-shadow: 0 0 0 .0 rgba(0, 185, 142, 0.25);
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    border-radius: 50px;
    font-size: 13.5px;
}

.btn.btn-primary,
.btn.btn-secondary,
.btn-warning {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

.btn-warning {
    background-color: var(--primary);
    border-color: var(--primary);
}

/*** Navbar ***/
.nav-bar {
    position: relative;
    margin-top: 45px;
    padding: 0 3rem;
    transition: .5s;
    z-index: 9999;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
}

.nav-bar.sticky-top .navbar {
    border-radius: 0;
}

.nav-bar.sticky-top .dropdown-menu {
    right: 0;
    left: auto;
}

.navbar {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    border-radius: 20px;
    background: #33333380;
    position: relative;
    z-index: 2;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.navbar .dropdown-menu {
    background: #0000008f;
    border-radius: 5px;
    border: 0;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.icon-dropdown {
    background: #0000004D;
    border-radius: 5px;
}

.icon-dropdown i {
    font-weight: bold;
    font-size: 21px;
}

.navbar-collapse {
    justify-content: space-between;
}

.icon-menu {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.icon-menu a {
    font-weight: bold;
    font-size: 18px;
}

.dropdown-item {
    color: #ffffff;
    font-weight: 400 !important;
    font-size: 15px !important;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.dropdown-item i {
    margin-right: 0.5rem;
}

.lang-link {
    font-family: "Noto Sans Arabic", sans-serif;
}

.profile-item {}

.profile-item i {
    background: #F67C361A;
    padding: 0.5em;
    border-radius: 50px;
}

.profile-item .profile-email {
    color: #cfcecec2;
    font-weight: 300;
}

.dropdown-item a {
    font-weight: 300;
    color: #E0E0E0;
    font-size: 15px;
}

.dropdown-item.logout {
    color: #E33A3A;
}

.dropdown-item.logout:hover {
    color: #6e1d1d;
}

.dropdown-item hr {
    margin: 0.5rem 0;
    color: inherit;
    /* background-color: #4F4F4F; */
    border-bottom: 0.5px solid #4F4F4F;
    opacity: 1;
    width: 100%;
}

.dropdown-item a.active {
    color: #F67C36;
}

.dropdown-item:hover {
    color: #ffffff9d;
    background: transparent;
}


.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    /* text-transform: uppercase; */
    outline: none;
    display: flex;
    align-items: center;
    font-weight: 400;
    transition: 0.5s;
}


.navbar-light .navbar-nav .nav-link.active {
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;

}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: #ffffff !important;
    font-weight: 400;
}



.navbar-light .navbar-brand {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 100;
}



/*** Header ***/


.header {
    background: url('../img/header.png') center center;
    background-size: cover;
    text-align: center;
    position: relative;
    padding: 5rem 0;
    background-attachment: fixed;
}

.header .background {
    content: " ";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.header .background::before {
    content: " ";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(28.32deg, rgba(0, 0, 0, 0) -13.26%, rgba(0, 0, 0, 0.0851425) 0.52%, rgba(0, 0, 0, 0.5) 60.95%);
}

.header .main-header-col {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.header .main-header-col p {
    width: 60%;
}

.header .background::after {
    content: " ";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url('../img/header-waves.png') center center no-repeat;
    background-size: cover;
}

.header .background.without-waves::after {
    background: none;
}

.header-carousel {
    background: #0C111173;
    border-radius: 16px;
    overflow: hidden;
}

.header-carousel h3 {
    color: #F5F5F5;
    text-align: center;
}

.header-carousel p {
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 3em;
}

.header-carousel .owl-item .owl-carousel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    align-items: stretch;
    padding: 2rem;
}

.header-carousel .owl-stage {
    display: flex;
}

.header-carousel .owl-nav {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    /* flex-direction: column; */
    width: 20%;
    justify-content: space-around;
    margin-top: 1rem;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    /* background: var(--primary); */
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    /* background: var(--dark); */
    color: var(--primary);
}



.breadcrumb-item+.breadcrumb-item::before {
    color: #DDDDDD;
}


/*** Icon ***/
nav .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

nav .icon .img-fluid {
    height: 70%;
    padding: 20px;
}

/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: skew(20deg);
    z-index: 1;
}


/*** Category ***/
.cat-item div {
    background: #FFFFFF;
    border: 1px dashed rgba(0, 185, 142, .3);
    transition: .5s;
}

.cat-item:hover div {
    background: var(--primary);
    border-color: transparent;
}

.cat-item div * {
    transition: .5s;
}

.cat-item:hover div * {
    color: #FFFFFF !important;
}


/*** Property List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.property-item {
    border: 1px solid #E0E0E0;
    border-radius: 20px;
    height: 100%;
}

.property-item img {
    transition: .5s;
    width: 100%;
    max-height: 237px;
    min-height: 237px;
    object-fit: cover;
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px solid #E0E0E0 !important;
}

.hotel-country {
    font-size: 13px;
    color: #333333;
    font-weight: 700;
}

.property-item .border-end {
    border-right: 1px solid #E0E0E0 !important;
}

.hotel-actions {
    display: flex;
    gap: 10px
}

.like,
.dislike {
    color: var(--primary);
    border: #E0E0E0 1px solid;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dislike i {
    transform: rotateY(180deg);
}

.hotel-title p {
    font-size: 11px;
    color: #ffffff;
    margin-bottom: 3px;
    font-weight: 600;
}

.hotel-icons {
    position: relative;
    color: var(--primary);
}

.hotel-icons i:nth-child(2) {
    position: absolute;
    left: 4px;
    z-index: 1;
    opacity: 0.3;
}

.hotel-icons i:nth-child(1) {
    position: relative;
    z-index: 2;
}

.hotel-desc {
    font-size: 12px;
    height: 89px;
}

.hotel-bottom small {
    font-size: 12px;
}

/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .5s;
}

.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}


.testimonial-item h6 {
    color: #07080F
}

.testimonial-item p {
    color: #131313
}

.testimonial-carousel .testimonial-item .border {
    border: 1px solid #E0E0E0 !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

/* hotels Sections */

/*** Footer ***/
.footer {
    background: #131313;
}

.footer .icon .img-fluid {
    padding-bottom: 30px;
    width: 60%;
}

.list-title {
    font-weight: 600;
}

.footer .links i {
    padding: 0.5rem;
    border-radius: 4px;
    background: #66656526;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-desc {
    font-size: 12px;
}

.footer .btn.btn-social {
    margin-right: 15px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 0px solid rgba(255, 255, 255, 0.5);
    background-color: #66656526;
    border-radius: 5px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    /* display: block; */
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: start;
}

.contact-footer a {
    margin-bottom: 1rem !important;
    font-weight: 500;
}

.footer .btn.btn-link:hover {
    color: var(--primary) !important;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255, 255, 255, 0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid #E1E4ED;
    margin-top: 3rem;
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* vars */
.nav-link:hover,
.nav-link:focus {
    color: #92471c !important;
}

/* rating stars */
.rating-container .caption,
.rating-container .clear-rating {
    display: none !important;
}

.rating-container .filled-stars {
    color: #F8B319 !important;
    -webkit-text-stroke: 0px #777;
    text-shadow: 0px 0px #999;
}

.rating-container .empty-stars {
    color: #E0E0E0 !important;
}

.rating-xs {
    font-size: 1em;
    margin-top: 2em;
    margin-bottom: 0.5em;
}

/* progres steps */
.radio-section {
    display: none;
}

.steps-form .progress-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
    max-width: 100%;
    margin-top: 4rem;
}

.steps-form .progress-container::before {
    content: '';
    background-color: #DED8D0;
    position: absolute;
    top: 18px;
    left: 20px;
    right: 20px;
    transform: translateY(-50%);
    height: 2px;
    /* width: 80%; */
    z-index: 1;
}

.steps-form .progress {
    font-family: inter;
    background-color: var(--primary);
    position: absolute;
    top: 18px;
    left: 20px;
    right: 20px;
    transform: translateY(-50%);
    height: 4px;
    max-width: 92%;
    width: 0%;
    z-index: 1;
    transition: 400ms ease;
}

.steps-form .text-wrap {
    display: inline-block;
    text-align: center;
    width: 75px;
}

.steps-form .text-wrap p {
    font-weight: 400;
    font-size: 12px;
    color: #828282;
    margin-top: 1em;
}

.steps-form .text-wrap.active p {
    font-weight: 600;
    color: var(--primary);
    transition: 400ms ease;
}

.steps-form .text-wrap.finished p {
    font-weight: 600;
    color: var(--primary) !important;
    transition: 400ms ease;
}

.steps-form .circle {
    background: #ffffff;
    position: relative;
    z-index: 2;
    border: 2px solid #DED8D0;
    color: #828282;
    font-weight: 400;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    position: relative;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 400ms ease;
    font-size: 13px;
}

.steps-form .text-wrap.active div.circle {
    border-color: var(--primary);
    color: var(--primary);
}

.steps-form .text-wrap.finished div.circle {
    border-color: var(--primary);
    color: var(--primary);
    background-color: var(--primary);
    position: relative;
}

.steps-form .text-wrap.finished div.circle:after {
    position: absolute;
    content: "✓";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
}

/* radio button cards */
.grid {
    display: grid;
    grid-gap: var(--card-padding);
    margin: 0 auto;
    max-width: 60em;
    padding: 0;
}



.grid .card {
    background-color: #fff;
    border-radius: var(--card-radius);
    position: relative;
    border: 0px;
}

.grid .card:hover {
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
}

.grid .radio {
    font-size: inherit;
    margin: 0;
    position: absolute;
    right: calc(var(--card-padding) + var(--radio-border-width));
    top: calc(var(--card-padding) + var(--radio-border-width));
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    .grid .radio {
        -webkit-appearance: none;
        -moz-appearance: none;
        background: #fff;
        border: var(--radio-border-width) solid var(--color-gray);
        border-radius: 50%;
        cursor: pointer;
        height: var(--radio-size);
        outline: none;
        transition: background 0.2s ease-out, border-color 0.2s ease-out;
        width: var(--radio-size);
        visibility: hidden;
    }

}

.grid .plan-details {
    border: 1px solid #828282;
    border-radius: var(--card-radius);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    padding: var(--card-padding);
    transition: border-color 0.2s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-weight: 500;
    font-size: 12px;
    gap: 15px
}

.grid .card:hover .plan-details {
    border-color: var(--color-dark-gray);
}

.grid .radio:checked~.plan-details {
    border-color: #FAAF77;
    background-color: #FAAF77;
    color: #07080F;
}

.grid .radio:focus~.plan-details {
    box-shadow: 0 0 0 2px var(--color-dark-gray);
}

.grid .radio:disabled~.plan-details {
    color: var(--color-dark-gray);
    cursor: default;
}

.grid .card:hover .radio:disabled~.plan-details {
    border-color: #FAAF77;
    box-shadow: none;
}

.grid .card:hover .radio:disabled {
    border-color: var(--color-gray);
}

.grid .hidden-visually {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

/* form label */
label {
    color: #07080F;
    text-align: start;
    width: 100%;
    font-weight: 500;
    font-size: 15px;
}

/* form inputs */
.form-inputs.bg-grey {
    background-color: #FCFCFC;
    padding: 1.5rem;
    border-radius: 10px;
    /* overflow-y: hidden; */
}

select {
    background: #ffffff !important;
}

.select2-container {
    display: block;
}

.select2-container--default .select2-selection--single {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    position: relative;
}

.select2-container--default .select2-selection--single .select2-selection__arrow::after {
    content: '\F282';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: #000;
    pointer-events: none;
    font-family: 'bootstrap-icons';
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

/* calendar input */
.date-div {
    position: relative;
}

.date-div::before {
    content: '\F214';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: #000;
    pointer-events: none;
    font-family: 'bootstrap-icons';
    display: none;
}

input,
.form-control {
    font-size: 14px !important;
    padding: 0.8em .75rem;
}

/* number inputs */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.custom-number-input {
    display: flex;
    align-items: center;
    position: relative;
}


.custom-number-input button {
    background-color: transparent;
    cursor: pointer;
    font-size: 18px;
    user-select: none;
    position: absolute;
    right: 0;
    border: 0;
    display: inline-block;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50%;
    font-size: 12px;
    padding-right: 20px;
    padding-left: 20px;
}

.custom-number-input button:focus {
    outline: none;
}

.custom-number-input .decrement-btn {
    border-radius: 5px 0 0 5px;

    bottom: 0;
}

.custom-number-input .increment-btn {
    border-radius: 0 5px 5px 0;
    top: 0;
}

/* price rang inputs */
#F1F1F1 .asRange .asRange-selected,
.asRange {
    width: 100%;
    background-color: #F1F1F1;
}

.asRange .asRange-selected,
.asRange .asRange-pointer:after,
.asRange .asRange-pointer:before {
    background-color: #FAAF77;
}

.asRange .asRange-pointer .asRange-tip {
    bottom: -33px;
    top: auto;
    background-color: transparent;
    border: 0;
    color: #000000;
    width: 200px;
    left: 50%;
    right: 50%;
    transform: translate(-40%, 0);
    font-family: Arial, Helvetica, sans-serif
}

.asRange .asRange-pointer .asRange-tip:before {
    display: none !important;
}

/* loading animation in preparing page */
.prepare-page {
    margin-top: 5rem;
}

.prepare-page .form-inputs {
    padding-top: 10em;
    padding-bottom: 10em;
}

#wrap {
    position: relative;
    height: 100px;
    width: 20%;
}

.ball {
    position: absolute;
    bottom: 0px;
    display: block;
    height: 30px;
    width: 30px;
    border: 1px solid var(--primary);
    background-color: var(--primary);
    border-radius: 50%;
    bottom: 50%;
    float: left;
    -webki-animation: bounce 3.5s infinite;
    -moz-animation: bounce 3.5s infinite;
    -ms-animation: bounce 3.5s infinite;
    -o-animation: bounce 3.5s infinite;
    animation: bounce 3.5s infinite;
}

.ball:nth-child(2) {
    margin-left: 40%;
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -ms-animation-delay: 0.5s;
    -o-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.ball:nth-child(3) {
    margin-left: 80%;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -ms-animation-delay: 1s;
    -o-animation-delay: 1s;
    animation-delay: 1s;
}

@-webkit-keyframes bounce {
    0% {
        margin-bottom: 0px;
    }

    50% {
        margin-bottom: 50px;
    }

    100% {
        margin-bottom: 0px;
    }
}

@-moz-keyframes bounce {
    0% {
        margin-bottom: 0px;
    }

    50% {
        margin-bottom: 50px;
    }

    100% {
        margin-bottom: 0px;
    }
}

@-o-keyframes bounce {
    0% {
        margin-bottom: 0px;
    }

    50% {
        margin-bottom: 50px;
    }

    100% {
        margin-bottom: 0px;
    }
}

@-ms-keyframes bounce {
    0% {
        margin-bottom: 0px;
    }

    50% {
        margin-bottom: 50px;
    }

    100% {
        margin-bottom: 0px;
    }
}

@-keyframes bounce {
    0% {
        margin-bottom: 0px;
    }

    50% {
        margin-bottom: 50px;
    }

    100% {
        margin-bottom: 0px;
    }
}

.prepare-title,
.propare-desc {
    color: #333333 !important;
}

.propare-desc {
    margin-top: 2em;
    line-height: 2;
    width: 60%;
    display: inline-block;
}

/* map page */
.map-image {
    width: 100%;
    object-fit: contain;
}

/* lined section title */
.lined-title {
    text-transform: uppercase;
    color: #333333;
    border-bottom: 3px solid var(--primary);
    display: inline-block;
    font-size: 25px;
    font-weight: 800;
}

div:has(> .aftrer-title) {
    position: relative;
}

div:has(> .aftrer-title)::after {
    width: 100%;
    position: absolute;
    content: " ";
    bottom: 4px;
    right: 0;
    left: 0;
    height: 1px;
    background-color: #E0E0E0;
}

/* plan page */
/* plan gallery */
.gallery-container {
    display: grid;
    grid-template-columns: 7% 10% repeat(auto-fill, 25%);
    /* grid-template-rows: repeat(auto-fill, 50%); */
    grid-gap: 0.8rem;
    justify-content: space-between;
    height: 400px;
}
.hotel-content-tabs{
    margin-top: 1em;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.gallery-item:nth-child(1) {
    grid-column: 1 / 4;
    /* (6) */
    grid-row: 1 / 3;
    /* (7) */
    height: auto;
}

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

#dynamic-mode-images {
    position: absolute;
    right: 12px;
    bottom: 0;
    color: #ffffff;
    padding: 0.5em 1.5em;
    background-color: rgba(3, 3, 3, 0.3);
}

/* end gallery */
/* paln title */
.plan-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 1em;
}

.plan-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-title h1 {
    color: #333333;
    font-size: 28px;
    margin-right: 1em;
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: 800;
}

.plan-title a {
    background: #FBFBFB;
    border: 1px solid #F1F1F1;
    padding: 0.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin-right: 0.3em;
    width: 40px;
    height: 40px;
}

.plan-title a.active {
    color: #FBFBFB;
    background: var(--primary);
}

.plan-details {}

.plan-details .plan-details-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5em;
}

.plan-details .plan-details-title h6 {
    margin-bottom: 0;
    color: #333333;
    font-weight: 600;
}

.plan-details .plan-details-title a {
    text-decoration: underline;
}

.plan-details p {
    font-size: 15px;
}

/* place item */
.place-item img {
    object-fit: cover;
}

.places a {
    color: #05073C;
    font-size: 16px;
    font-weight: 500;
}

/* adult form */
.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-input {
    width: 0.5em;
    height: 0.5em;
}

.form-check-label {
    color: #171A1F;
    font-size: 12px;
}

.form-group {
    margin-top: 1em;
}

/* search page */
.search-page {
    padding-top: 2em;
}

.search-page .search-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px
}

.search-page .search-top-bar .flight-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #07080F;
    border: 1px solid #B5B5B5;
    padding: 0.5em 1.2em;
    border-radius: 10px;
}

.search-page .search-top-bar .flight-box p {
    margin: 0;
}

.search-page .search-top-bar .flight-box i {
    margin-right: 0.5em;
    font-size: 25px;
}

.search-page .search-top-bar .flight-box .location-info p:first-child,
.search-page .search-top-bar .flight-box .date-info p:first-child {
    font-size: 12px;
    font-weight: 600;
    color: #07080F;
}

.search-page .search-top-bar .flight-box .location-info p:last-child,
.search-page .search-top-bar .flight-box .date-info p:last-child {
    font-size: 15px;
    font-weight: 600;
    color: #07080F;
}

.search-btn button {
    gap: 10px
}

.flight-arrow {
    font-size: 20px;
    font-weight: 600;
}

div:has(> .search-sidebar) {
    border-right: 1px solid #CED0D4;
}

.price-tracking {
    padding: 1em 1em;
    border: 1px solid #F67C36;
    border-radius: 15px;
    background-color: #F67C3605;
    overflow: hidden;
    margin-bottom: 1em;
}

.price-tracking img {
    width: 40px;
    object-fit: contain;
}

.price-tracking h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.search-sidebar .form-switch {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.search-sidebar .price-tracking p {
    margin: 0.5em 0 0 0;
    width: 90%;
}

.search-sidebar .price-tracking hr {
    color: var(--primary);
    opacity: 1;
}

.form-switch .form-check-input {
    width: 3em;
}

.search-sidebar .general-hr {
    color: #DED8D0;
    opacity: 1;
}

.filter-card {
    margin-bottom: 2em;

}

.filter-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.filter-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5em;
    align-items: center;
}

.filter-list li.hidden {
    display: none;
}

.filter-list li label {
    color: #07080F;
    font-size: 12px;
    padding: 0;
}

.filter-list li label small {
    color: #A4A4A4;
    font-weight: 400;
}

.filter-list li span {
    color: #07080F;
    font-size: 13px;
    padding: 0;
}

.see-more-btn {
    background-color: transparent;
    border: 0;
    color: #3166DB;
    padding: 0;
    font-weight: 700;
}

.filter-title {
    font-size: 17px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1em;
}

.filter-card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--primary)
}

.filter-card-title h3 {
    font-size: 15px;
    color: var(--primary);
    font-weight: 700;
}

.filter-card-title p {
    font-size: 12px;
    font-weight: 400;
}

.filter-card .grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-card .grid .plan-details {
    display: flex;
    flex-direction: column;
    border-radius: 15px;
}

.filter-card .grid .plan-details {
    display: flex;
    flex-direction: row;
}

.filter-card .grid .plan-details .plan-title {
    display: flex;
    flex-direction: column;
}

.filter-card .grid .plan-details .plan-title h5 {
    font-weight: 600;
    font-size: 13px;
    color: #07080FB2;
}

.filter-card .grid .plan-details .plan-title p {
    font-weight: 400;
    font-size: 11px;
    color: #07080FB2;
    margin-bottom: 0;
}

.filter-path {
    list-style: none;
    padding-right: 0;
    padding-left: 0;
}

.filter-path li {
    /* padding-right: 15px; */
    color: #07080FCC;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.filter-path li::after {
    content: "\F285";
    font-family: 'bootstrap-icons';
    padding: 0 15px;
}

.filter-path li:last-child::after {
    display: none !important;
}

.filter-path li.bold {
    font-weight: 700;
}


.big-section .grid {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.big-section .grid .plan-details {
    display: flex;
    flex-direction: column;
    border-radius: 15px;
}

.big-section .grid .plan-details {
    display: flex;
    flex-direction: row;
}

.big-section .grid .plan-details .plan-title {
    display: flex;
    flex-direction: column;
}

.big-section .grid .plan-details .plan-title h5 {
    font-weight: 700;
    font-size: 13px;
    color: #07080F;
    margin-bottom: 0;
}

.big-section .grid .plan-details .plan-title p {
    font-weight: 500;
    font-size: 11px;
    color: #07080F;
    margin-bottom: 0.5em;
}

.big-section .grid .radio:checked~.plan-details {
    background-color: #F67C360D !important;
    border-color: #F67C36;
}

.sort-section .alert {
    font-weight: 500;
    font-size: 12px;
    border-radius: 8px;
}

.sort-section .select2-container--default .select2-selection--single {
    height: 68px;
    border-radius: 8px;
}

.sort-section .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-top: 2%;
    font-weight: 600;
}

.sort-section .form-group {
    position: relative;
}

.sort-section .form-group label {
    position: absolute;
    top: 10px;
    z-index: 9;
    right: 10px;
    left: 10px;
    font-size: 12px;
    font-weight: 600;
}

.filter-results {}

.filter-results h3 {
    color: #07080F;
    font-weight: 600;
    font-size: 25px;
}

.filter-results p {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.result-cards {}

.result-cards .result-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #DED8D0;
    border-radius: 15px;
    padding: 0em 0em 0 0em;
    flex-wrap: wrap;
    overflow: hidden;
    margin-bottom: 1.5em;
}

.result-cards .result-card .card-section {
    padding: 0 1.5rem;
    border-right: 1px solid #DED8D0;
    flex: 0 0 auto;
    display: block;
    align-self: stretch;
    margin: 1em;
}

.result-cards .result-card .card-section:nth-child(3) {
    border-right: 0px solid #DED8D0;
}

.result-cards .result-card .card-section .result-card-title {
    font-weight: 700;
    color: #07080F;
    font-size: 18px;
    margin-bottom: 0.2em;
}

.result-cards .result-card .card-section .result-card-sub {
    font-weight: 400;
    color: #07080F;
    font-size: 12px;
    margin-bottom: 0.5em;
}

.result-cards .btn {
    flex-basis: 100%;
    padding: 1em 3em;
    font-weight: 600;
    font-size: 20px;
}


#sidebar {
    border-top: 20px solid var(--primary);
    position: fixed;
    top: 0px;
    bottom: 0;
    height: 100vh;
    overflow-y: auto;
    right: -65%;
    width: 65%;
    height: 100%;
    background: #ffff;
    transition: all 300ms linear;
    z-index: 999999;
    display: none;
    padding: 2em;
}

.search-page.hide::after {
    content: " ";
    position: absolute;
    top: 0px;
    left: -20%;
    right: 0;
    width: 91vw;
    height: 100%;
    background: rgba(3, 3, 3, 0.5);
    transition: all 300ms linear;
    z-index: 9999;
}

#sidebar.active {
    right: 0;
    display: block;
}

#sidebar .item-head {
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
    background-color: #FBFBFB;
    border-radius: 15px;
    padding: 1em 2em;
}

#sidebar .item-head .item-options {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px
}

#sidebar .item-head .item-options i {
    background-color: #F6F6F6;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50px;
}

#sidebar .item-head .note-alert {
    background-color: #3166DB;
    border-radius: 5px;
    padding: 0.3em;
    color: #ffffff;
}

.item-more {
    color: #3166DB;
    font-weight: 600;
    transition: 0.5s;
}

.item-time h3 {
    color: #000000;
    font-size: 25px;
}

#sidebar .list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

#sidebar .item {
    flex: 48%;
    border-radius: 20px;
    border: 1px solid #E5E5E5;
    overflow: hidden;
    padding-bottom: 1em;
    margin-top: 1.5em;
}

#sidebar .item .item-header {
    background: var(--primary);
    color: #ffffff;
    padding: 1em;
}

#sidebar .item .item-header h3 {
    color: #ffffff;
    font-size: 30px;
}

#sidebar .item .item-header span {
    color: #ffffff;
    font-size: 16px;
}

#sidebar .item .item-body {
    padding: 1em;
}

#sidebar .item .item-body ul {
    list-style: none;
    padding-left: 0;
    padding-right: 0;
}

#sidebar .item .item-body ul li {
    padding-left: 0;
    padding-right: 0;
}

#sidebar .item .item-body ul.options-ul li.head {
    font-weight: 600;
    color: #07080F;
}

#sidebar .item .item-body ul.options-ul li.option {
    font-weight: 400;
    font-size: 14px;
    color: #07080F;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

#sidebar .item .item-body ul.options-ul li.option i {
    width: 15px;
    height: 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 10px;
}

#sidebar .item .item-body ul.options-ul li.option i.green {
    background-color: #009636;
}

#sidebar .item .item-body ul.options-ul li.option i.red {
    background-color: #992235;
}

#sidebar .item .item-body ul.options-ul li.option i.yellow {
    background-color: #FFDF3A;
}

#sidebar .item .item-body ul.note-ul li.option {
    font-weight: 400;
    font-size: 14px;
    color: #07080F;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

#sidebar .form-check label {
    display: flex;
    align-items: end;
    justify-content: space-between;
    font-weight: 600;
    font-size: 13px;
}

#sidebar .btn {
    margin-top: 1.5em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    font-weight: 700;
    font-size: 15px;
}

.hotel-page .asRange .asRange-selected,
.hotel-page .asRange {
    height: 3px;
}

.hotel-page .asRange .asRange-pointer:before {
    top: -8px;
}

.hotel-page .asRange .asRange-pointer {
    height: 5px;
}

.hotel-page .asRange .asRange-selected,
.hotel-page .asRange .asRange-pointer:after,
.hotel-page .asRange .asRange-pointer:before {
    background-color: var(--primary);
}

.hotel-page .asRange .asRange-pointer .asRange-tip,
.hotel-page .asRange .asRange-pointer .asRange-tip {
    position: relative;
    width: 200px;
    display: block;
    bottom: 30px;
}

.meals-plans.filter-card .grid {
    flex-direction: row;
}

.meals-plans.filter-card .grid .radio:checked~.plan-details {
    flex-direction: row;
    border-color: #FAAF77;
    background-color: transparent;
    opacity: 1;
}

.meals-plans.filter-card .grid .plan-details {
    opacity: 0.4;
}

.meals-plans.filter-card .grid .plan-details .plan-title {
    flex-direction: row;
    gap: 10px
}

.sort-section small {
    color: #07080F;
    font-size: 12px;
}

.hotels-carousel {
    background-color: #FBFBFB;
    border-radius: 20px;
    padding: 2em 0;
}

.hotel-filter-title h3 {
    padding: 0 1em;
    color: var(--primary);
    font-size: 23px;
    font-weight: 600;
}

.owl-filter-bar {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    margin: 0 1.5em 1.5em 1.5em;
}

.owl-filter-bar .item {
    color: #07080F;
    font-weight: 500;
    cursor: pointer;
    padding: 0.7em 0;
}

.owl-filter-bar .item.active {
    border-bottom: 1px solid var(--primary);
    color: var(--primary)
}

.hotels-carousel .property-item {
    background-color: #ffffff;
}

.hotels-carousel img {
    height: 120px;
    width: 100%;
    object-fit: cover;
}

.hotels-carousel .hotel-title {
    flex-direction: column;
    align-items: start !important;
}

.hotels-carousel .hotel-title p {
    font-weight: 400;
    color: #07080F;
    font-size: 12px;
}

.hotels-carousel .hotel-title>div p {
    color: #07080F;
    font-weight: 600;
}

.hotels-cards {
    margin: 2em 0;
}

.hotels-cards .row>* {
    margin-bottom: 1.5em;
}

.hotels-cards .card {
    margin-bottom: 1.5em;
    height: 100%;
}

.hotels-cards .card {
    background-color: #fff;
    max-width: 100%;
    border-radius: 20px;
    display: grid;
    border-color: #DED8D0;
    overflow: hidden;
}

.hotels-cards .card .img-container {
    width: 260px;
    height: 100%;
    grid-column: 2;
    background-color: #c1b7b4;
    background-size: cover;
    background-position: center center;
}

.hotels-cards .card .hotel-image-carousel {
    width: 260px;
    height: 100%;
    grid-column: 2;
    background-color: #c1b7b4;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.hotels-cards .card .owl-carousel.owl-drag .owl-item,
.hotels-cards .card .owl-carousel .owl-stage,
.hotels-cards .card .owl-carousel .owl-stage-outer,
.hotels-cards .card .owl-carousel-item,
.hotels-cards .card .owl-carousel-item img {
    height: 100%;
    object-fit: cover;
    max-height: 260px;
}

.hotels-cards .card-content p {
    text-align: center !important;
}

.hotels-cards .owl-nav {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    transform: translate(0, -50%);
    width: 100%;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1em;
}

.hotels-cards .owl-nav .owl-prev i,
.hotels-cards .owl-nav .owl-next i {
    background-color: #07080FB2;
    padding: 0.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    color: #ffffff;
    transition: 0.5s;
}

.hotels-cards .owl-nav .owl-prev i:hover,
.hotels-cards .owl-nav .owl-next i:hover {
    background-color: #ffffff;
    color: #07080FB2
}

.hotels-cards .card-content {
    grid-column: 3/ 5;
    padding: 10px 20px;
    border-left: 1px solid #ccc;
    display: grid;
    height: 100%;
}

.hotels-cards .card-content .btn-warning {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotels-cards .fav-vip {
    position: absolute;
    left: 0;
    width: 260px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 1em;
    z-index: 99;
    padding: 0 1em;
}

.hotels-cards .fav-vip .fav {
    background: #ffffff;
    border: 0;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.hotels-cards .fav-vip .fav.active i::before {
    content: "\F59D";
    color: #DA0101;
}

.hotels-cards .fav-vip .fav i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotels-cards .fav-vip .vip {
    padding: 0.3em 0.7em;
    border-radius: 5px;
    color: #ffffff;
    font-weight: 500;
    font-size: 13px;
}


.hotels-cards h2 {
    color: #07080F;
    font-weight: 600;
    font-size: 25px;
    margin-top: 0.5em;
}

.hotels-cards .hotel-list-options {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 5px;
    margin: 0em 0;
    justify-content: center;
}

.hotels-cards .hotel-list-options li {
    font-size: 14px;
    font-weight: 500;
    color: #07080F;
    padding: 4px 1em;
}

.hotels-cards .small-title {
    font-size: 14px;
    font-weight: 700;
    color: #07080F;
    margin-bottom: 0.5em;
}

.hotels-cards .excerpt {
    font-size: 14px;
    font-weight: 300;
    color: #07080F;
    margin-bottom: 0.5em;
}

.hotels-cards .collection-sections {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hotels-cards .collection-sections .section-first {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    flex-wrap: wrap;
}

.hotels-cards .collection-sections .section-first .offer-refund {
    color: #009636;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0.5em;
}

.hotels-cards .collection-sections .section-first .hotel-rate {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 0.5em;
}

.hotels-cards .collection-sections .section-first .rate-box {
    background-color: #009636;
    color: #ffffff;
    padding: 0.2em 1em;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
}

.hotels-cards .collection-sections .section-first .rate-title {
    font-size: 14px;
    font-weight: 600;
    color: #07080F;
}

.hotels-cards .collection-sections .section-first .review-count {
    color: #585858;
    font-size: 12px;
    font-weight: 400;
}

.hotels-cards .collection-sections .section-first .hotel-location {
    display: grid;
    align-items: center;
    justify-content: start;
    font-size: 14px;
    gap: 10px
}

.hotels-cards .collection-sections .section-first .hotel-location .location-title {
    font-weight: 400;
    color: #07080F;
}

.hotels-cards .collection-sections .section-first .hotel-location .location-desc {
    font-weight: 600;
    color: #07080F;
}

.hotels-cards .collection-sections .section-second {
    display: flex;
    align-items: end;
    justify-content: start;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1em;
}

.hotels-cards .collection-sections .offer-off {

    color: #ffffff;
    padding: 0.2em 1em;
    border-radius: 5px;
}

.green {
    background-color: #009636;
}

.blue {
    background-color: #3166DB;
}

.yellow {
    background-color: rgb(204, 204, 46);
}

.orange {
    background-color: var(--primary);
}

.brown {
    background-color: #C87328;
}

.hotels-cards .collection-sections .hotel-price {
    font-size: 20px;
    font-weight: 600;
    color: #07080F;
}

.hotels-cards .collection-sections .hotel-fees {
    color: #585858;
    font-size: 12px;
    font-weight: 400;
    text-align: end;
}



/* hotel single page */
.hotel-single .hotel-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hotel-single .hotel-buttons .back-button {
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    border-radius: 50px;
    box-shadow: 0px 0px 10px 2px #0000000D;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-single .hotel-buttons i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-single .hotel-buttons .options-buttons {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

.hotel-single .hotel-buttons .options-buttons>* {
    border: 1px solid var(--primary);
    border-radius: 50px;
    padding: 0.3em 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hotel-single .hotel-buttons .options-buttons>* {
    background-color: #ffffff;
    color: var(--primary);
    transition: 0.5s;
    font-size: 13px;
    font-weight: 700;
}

.hotel-single .hotel-buttons .options-buttons>*:hover {
    background-color: var(--primary);
    color: #ffffff
}

.hotel-single .hotel-buttons .options-buttons .fav.active {
    background-color: var(--primary);
    color: #ffffff
}

.hotel-tabs {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    margin: 0 0 1.5em 0;
    border-bottom: 2px solid #dee2e6;
}

.hotel-tabs .nav-link {
    border: 0;
    color: #07080F;
    font-weight: 500;
    cursor: pointer;
    padding: 0.7em 0;
    border-bottom: 2px solid transparent;

}

.hotel-tabs .nav-link.active {
    border: 0;
    border-bottom: 2px solid var(--primary);
    color: var(--primary);
    background-color: transparent;

}

.hotel-tabs .nav-link:hover,
.hotel-tabs .nav-link:focus {
    border: 0;
    border-bottom: 2px solid var(--primary);
    color: var(--primary);
    background-color: transparent;

}

.hotel-stars .rating-container .filled-stars {
    color: #F67C36 !important;
    -webkit-text-stroke: 0px #777;
    text-shadow: 0px 0px #999;
}

.hotel-stars .rating-container .empty-stars {
    color: #F67C3666 !important;
}

.hotel-stars .rating-xs {
    margin-top: 1em;
}

.hotel-name {
    color: #07080F;
    font-size: 45px;
    font-weight: 500;
}

.hotel-payment {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 20px;
    align-items: center;
    justify-content: strat;
    padding: 0;

}

.hotel-payment li {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: strat;
    padding: 0;
    font-size: 14px;
    color: #009636;
    font-weight: 500;
}

.hotel-content-tabs .see-all {
    color: #3166DB;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.5s;
    margin: 0.5em 0;
}

.hotel-content-tabs .see-all:hover {
    color: var(--primary);
}

.hotel-note {
    color: #07080FCC;
    font-weight: 500;
    font-size: 15px;
}

.hotel-content-tabs .offer-refund {
    color: #009636;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0.5em;
}

.hotel-content-tabs .hotel-rate {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 12px;
    margin-bottom: 0.5em;
}

.hotel-content-tabs .rate-box {
    background-color: #009636;
    color: #ffffff;
    padding: 0.2em 1em;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
}

.hotel-content-tabs .rate-title {
    font-size: 14px;
    font-weight: 600;
    color: #07080F;
}


.amenities {
    margin-top: 1.5em;
}

.amenities .title {
    color: #07080F;
    font-size: 20px;
    font-weight: 600;
}

.amenities .list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 13px
}

.amenities .list span {
    box-sizing: border-box;
    flex: 50%;
    color: #07080F;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.map-title {
    color: #07080F;
    font-size: 20px;
    font-weight: 600;
}

.hotel-content-tabs .map {
    border: 1px solid #D7D7D7;
    border-radius: 10px;
    padding-bottom: 1em;
}

.hotel-content-tabs .map img {
    object-fit: cover;
    border-radius: 12px;
    margin: 0 0 1em 0;
}

.hotel-content-tabs .map-desc {
    color: #7F7F7F;
    font-weight: 500;
    font-size: 13px;
    display: block;
    margin-bottom: 0.5em;
    padding-right: 1.5em;
    padding-left: 1.5em;
}

.hotel-content-tabs .see-map {
    font-weight: 600;
    font-size: 15px;
    padding-right: 1.5em;
    padding-left: 1.5em;
}

.hotel-locations {
    list-style: none;
    padding: 0;
    margin-top: 1em;
}

.hotel-locations li {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    color: #07080FCC;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 0.5em;
}

.hotel-locations li i {
    font-size: 16px;
}

.check-time {
    background-color: #FBFBFB;
    border: 1px solid #ECECEC;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1em;
    padding-bottom: 1em;
    margin-bottom: 1.5em;
    margin-top: 1em;
}

.check-time>* {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    flex: 50%;
    color: #07080F;
    gap: 5px;
    position: relative;
}

.check-time>div:first-child::after {
    height: 100%;
    position: absolute;
    right: 0;
    width: 1px;
    background-color: #E5E5E5;
    content: " ";
}

.check-time p {
    margin: 0;
    font-weight: 600;
}

.check-time span {
    font-size: 13px;
    font-weight: 500;
}

.check-time i {
    font-size: 25px;
}

.alert-hotel {
    border-radius: 15px;
    font-weight: 600;
    font-size: 15px;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
}

.rooms.search-page .search-top-bar {
    flex-wrap: wrap;
    gap: 2em;
}

.rooms.search-page .search-top-bar>* {
    flex: 30%;
    justify-content: start;
}

.hotel-typical {
    border: 1px solid #B5B5B5;
    padding: 1em;
    border-radius: 15px;
}

.hotel-typical {
    border: 1px solid #B5B5B5;
    padding: 1em;
    border-radius: 15px;
}

.hotels-cards.rooms-cards .card {
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: space-between;
}

.hotels-cards.rooms-cards .card .hotel-image-carousel {
    width: 100%;
    height: 200px;
}

.hotels-cards.rooms-cards .card .img-container {
    width: 100%;
    height: 200px;
}

.hotels-cards.rooms-cards h2 {
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.hotels-cards.rooms-cards span {
    font-size: 11px;
    font-weight: 400;
    color: #DA0101;
}

.hotels-cards.rooms-cards .hotel-list-options {
    flex-direction: column;
}

.hotels-cards.rooms-cards .hotel-list-options li {
    gap: 10px
}

.hotels-cards.rooms-cards .collection-sections {
    flex-direction: column;
    align-items: start;
}

.hotels-cards.rooms-cards .collection-sections .section-second {
    align-items: start;
    justify-content: start;
    text-align: start;
    margin: 0;
}

.hotels-cards.rooms-cards .collection-sections .section-second>* {
    text-align: start;
}

.hotels-cards.rooms-cards .fav-vip {
    width: 100%;
    padding: 0;
    top: 0
}

.hotels-cards.rooms-cards .fav-vip .vip {
    width: 100%;
    border-radius: 0;
}

.hotels-cards.rooms-cards .owl-nav .owl-prev i,
.hotels-cards.rooms-cards .owl-nav .owl-next i {
    background-color: #ffffff;
    color: var(--primary);
    opacity: 0.7;
}

.hotels-cards.rooms-cards .owl-nav .owl-prev i:hover,
.hotels-cards.rooms-cards .owl-nav .owl-next i:hover {
    background-color: #07080FB2;
    color: #ffffff;
    opacity: 1;
}

.span-ex {
    color: #07080F !important;
    font-size: 12px !important;
}

.see-all {
    color: #3166DB;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.5s;
    margin: 0.5em 0;
}

.see-all:hover {
    color: var(--primary);
}

.nav-filter-rooms {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.nav-filter-rooms>* {
    border: 1px solid var(--primary);
    border-radius: 50px;
    padding: 0.7em 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #ffffff;
    color: var(--primary);
    transition: 0.5s;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.nav-filter-rooms>*:hover {
    background-color: var(--primary);
    color: #ffffff
}

.nav-filter-rooms span.active {
    background-color: var(--primary);
    color: #ffffff
}

.images_count {
    position: absolute;
    z-index: 99;
    top: 20%;
    right: 10px;
    background: rgba(3, 3, 3, 0.5);
    color: #ffffff;
    padding: 0.2em 0.5em;
    border-radius: 20px;
}

.hotels-cards .collection-sections .hotel-price .old_price {
    font-size: 20px !important;
    font-weight: 400 !important;
    color: #B0AFAF !important;
    text-decoration: line-through !important;
}

.hotels-cards .collection-sections .hotel-price .new_price {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #07080F !important;
}

.rooms-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2em;
}

.rooms-filter-header h3 {
    color: #07080FB2;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.rooms .form-check-label {
    width: 20%;
}

.rooms .form-check-label p,
.hotel-typical span {
    font-size: 15px;
    font-weight: 600 !important;
    color: #07080F !important;
}

/* third step (summary) */

.last-step .gallery-item img {
    height: 100%;
}

.last-step .gallery-container {
    display: block;
    height: 300px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.last-step .header-summery {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFD0B566;
    padding: 1em 1em 1em 2em;
    border-radius: 10px;
    margin-bottom: 1em;
}

.last-step .header-summery h3 {
    margin: 0;
    text-transform: uppercase;
    font-weight: 800;
}

.last-step .header-summery .summery-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px
}

.last-step .header-summery .summery-options a {
    font-weight: bold;
    font-size: 18px;
}

.last-step .header-summery .summery-options a i {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background-color: #E33A3A24;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.last-step .header-summery .summery-options a:hover i {
    color: #ffffff;
    background-color: #e33a3a;
}

.passenger-table tr th {
    background-color: #FBFBFB;
    padding: 1em 0;
    font-weight: 500;
}

.passenger-table tr td {
    padding: 1em;
    font-weight: 500;
    color: #000000;
    font-size: 14px;
}

.top-title {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 9;
}

.bottom-title {
    position: absolute;
    bottom: 5px;
    left: 10px;
    right: 10px;
    z-index: 9;
}

.top-title h3 {
    font-weight: 500;
    font-size: 20px;
    color: #ffffff
}

.bottom-title h3 {
    font-weight: 600;
    font-size: 14px;
    color: #ffffff
}

.bottom-title p,
.top-title p {
    font-weight: 300;
    font-size: 14px;
    color: #ffffff
}

.hotel-detailss .gallery-container::after {
    content: " ";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(3, 3, 3, 0.4);
    z-index: 5;
}

.hotel-table {
    border-radius: 0 0 15px 15px;
    overflow: hidden;
    /* border: 1px solid; */
}

.hotel-table tr th {
    background-color: #FBFBFB;
    padding: 1em 0;
    font-weight: 500;
    color: #000000;
}

.hotel-table tr td {
    padding: 1em 0;
    font-weight: 500;
    color: #000000;
    font-size: 12px;
}

.hotel-details-form {
    border-radius: 15px;
    border: 1px solid #D9D9D9;
    padding: 1em 1em 0 1em;
}

.flight-details {
    border: 1px solid #E0E0E0;
    border-radius: 15px;
    padding: 2em 3em 0 3em;
    background-color: #FDFDFD;
}

.airway-details {
    display: flex;
    align-items: center;
    justify-content: stretch;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2em;
}

.airway-details>* {
    flex: 16%
}

.airway-details .airway-logo {
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px
}

.flight-road {
    display: flex;
    align-items: center;
    justify-content: stretch;
    gap: 10px;
    text-align: center;
    flex: 30%
}

.flight-road .road {
    color: #9095A1;
    font-weight: 400;
    font-size: 13px;
    flex: 90%
}

.flight-road i {
    color: var(--primary);
}

.flight-time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 5px;
    text-align: center;
}

.flight-time .time {
    font-weight: 700;
    font-size: 20px;
    color: #565D6D
}

.flight-time .time-code {
    font-weight: 600;
    font-size: 14px;
    color: #9095A1
}

.bags-list {
    list-style: none;
    padding: 0;
}

.bags-list li {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: start;
    color: #07080F;
    margin-bottom: 0.3em;
}

.bags-list li span {
    font-weight: 400;
    font-size: 12px;
    display: block;
}

.bags-list li i {
    width: 20px;
    height: 20px;
    border-radius: 50px;
    background-color: #009636;
    display: flex;
    color: #ffffff;
    align-items: center;
    justify-content: center;
}

.summary-calculate {
    background-color: #FCFCFCFC;
    padding: 1.5em;
    border-radius: 10px;
}

.summary-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 0.7em;
    margin-bottom: 0.7em;
}

.summary-list {
    list-style: none;
    padding: 0;
}

.summary-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    color: #07080F;
    padding: 0.7em 0.5em;
    background-color: #FFECE180;
    margin-bottom: 0.8em;
    border-radius: 8px;
}

.summary-list li.total-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
}

.summary-subtitle h6 {
    color: #07080F;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 0;
    margin-top: 1.5em;
}

.summary-calculate label,
.summary-calculate input {
    font-size: 10px;
}

.summary-calculate .form-group {
    margin-top: 0.4em;
}

.summary-calculate .form-check-input[type="checkbox"] {
    border-radius: 50px;
    background-image: none;
    padding: 0.5em;
}

.summary-calculate .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5em;
}

.summary-calculate .form-check label {
    margin-top: 0.1em;
}

/* .form-check-input:checked[type="checkbox"]{
    background: none;
} */
/* success trip info */
.summary-prices-list {
    list-style: none;
    padding: 0;
}

.summary-prices-list {
    list-style: none;
    padding: 0;
}

.summary-prices-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 600;
    color: #07080F;
    margin-bottom: 1em;
    border-radius: 8px;
}

.summary-prices-list li.total-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
}

.last-step .title-success {
    color: var(--primary);
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    margin: 2em 0;
}

.last-step .title-success span {
    display: block;
    color: #B9612F
}

/* my trip */
.header-summery .badge {
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
}

/* reservations page */
.reservations-page {}

.reservations-page .badge {
    border-radius: 50px;
    font-weight: 400 !important;
    font-size: 12px !important;
    color: #ffffff !important;
}

.red {
    background-color: #E33A3A;
}

.reservations-page .span-ex {
    color: var(--primary) !important
}

.reservations-page .airway-logo {
    display: flex;
    align-items: center;
    justify-content: start;
    font-weight: 500;
    font-size: 15px;
    color: #07080F;
    gap: 6px;
    margin-top: 0.5em;
}

.reservations-page .bags-list li span {
    color: #07080F;
    display: inline-block;
}

.reservations-page .bags-list li i {
    font-size: 9px;
    width: 15px;
    height: 15px;
}

.reservations-page .title,
.trip-p {
    font-size: 15px;
}

.rooms-filter-header h1 {
    color: #333333;
    font-size: 20px;
    margin: 0;
}

.reservations-page .rooms-filter-header {
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 1.5em;
}

.reservations-page .nav-filter-rooms>* {
    color: #B8B8B8;
    border-color: #B8B8B8;
}

.reservations-page .nav-filter-rooms>*.active {
    border-color: var(--primary);
}

/* contact page */
/* .contact-image{
    width: 100%;
    height:  100vh;
    object-fit: cover;
} */
.contact-page {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

.contact-page>* {
    flex: 50%;
    flex-grow: 1;
}

.contact-image-section {
    background: url('../img/flights.jpg') center center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contact-image-section .background {
    background-color: rgba(3, 3, 3, 0.3);
    -webkit-backdrop-filter: blur(1.5px);
    backdrop-filter: blur(1.5px);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.contact-page .contact-form {
    padding: 3em;
}



.contact-info {
    position: relative;
    z-index: 2;
    color: #ffffff;
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 15px;
    flex-direction: column;
    padding: 4em;
}

.contact-info h1 {
    color: #ffffff;
    font-size: 35px;
    text-align: start;
    font-weight: 600;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin-top: 4em;
}

.contact-list li {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    width: 70%;
    margin-bottom: 2em;
}

.contact-list li i {
    font-size: 25px;
}

.contact-page .section-title {
    text-transform: uppercase;
    font-size: 30px;
}

/* pervious visited page */
.vsited-options-list {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 3em;
    padding: 0;
    list-style: none;
    margin-top: 4em;
}

.vsited-options-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.vsited-options-list li img {
    width: 75px;
    object-fit: contain;
    margin-bottom: 1em;
}

.vsited-options-list li .title {
    font-weight: 700;
    font-size: 30px;
    color: #05073C;

}

.vsited-options-list li .subtitle {
    font-weight: 400;
    font-size: 12px;
    color: #05073C;

}

/* previous page single */
.previous-page.last-step .header-summery {
    background-color: transparent;
    padding: 0;
}

/* about page */
.about-section-first {
    position: relative;
    margin-top: 4em;
}

.about-section-first img {
    width: 80%;
    border-radius: 10px;
    height: 500px;
    object-fit: cover;
}

.about-section-first .about-section-content {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: 40%;
    background-color: #ffffff;
    border: #E1E4ED 1px solid;
    border-radius: 15px;
    padding: 2em;
}

.about-section-first .about-section-content h3 {
    margin-bottom: 1em;
}

.about-section-first .about-section-content p {
    font-size: 14px;
    font-weight: 500;
}

.about-section-second {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: url('../img/roma.jpg') center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 5em 3em;
    position: relative;
    margin-top: 3em;
}

.about-section-second::after {
    background-color: rgba(3, 3, 3, 0.6);
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: " ";
    z-index: 1;
}

.about-section-second>* {
    position: relative;
    z-index: 2;
}

.about-section-second h3 {
    font-weight: 400;
    font-size: 20px;
    color: #ffffff;
    width: 30%;
    margin: 0;
    text-transform: capitalize;
}

.about-section-second ul {
    display: flex;
    align-items: stretch;
    justify-content: end;
    align-self: stretch;
    gap: 20px;
    margin: 0;
}

.about-section-second li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid #FFFFFF;
    border-radius: 10px;
    padding: 1em;
    height: 100%;
    width: 23%;
    text-align: center;
}

.about-section-second li span {
    text-shadow: 1px 0px 5px #FFFFFF75;
    color: #ffffff;
    font-weight: 500;
    font-size: 18px;
}

.about-section-third {
    margin-bottom: 4em;
    margin-top: 4em;
}

.about-section-third img {
    width: 100%;
}

.about-tabs .nav-tabs {
    border-bottom: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
    padding-bottom: 1.5em;
    margin-bottom: 1em;
}

.about-tabs .nav-link.active,
.about-tabs .nav-link:hover {
    background-color: var(--primary);
    color: #ffffff !important;
    border-radius: 50px;
    padding: 0.5em 3em;
    border-color: transparent;
}

.about-tabs .nav-link {
    background-color: #E8E8E880;
    color: #1F1F1F;
    border-radius: 50px;
    padding: 0.5em 3em;
    border-color: transparent;
}

.about-section-third p,
.about-section-third .tab-pane {
    font-size: 14px;
    font-weight: 500;
}

/* single page (privacy - terms) */
.single-page .page-name {
    color: var(--primary);
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 1em;
    position: relative;
    margin-top: 1em;
}

.single-page .page-name abbr {
    background-color: #ffffff;
    position: relative;
    z-index: 1;
    padding: 0 1em 0 0;
}

.single-page .page-name::after {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
    content: " ";
    width: 100%;
    height: 1px;
    background-color: var(--primary);
    opacity: 1;
}

.section-content {
    margin-bottom: 2em;
}

.single-page .content-title {
    color: #333333;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0.4em;
}

.single-page .content-desc {
    font-size: 13px;
    font-weight: 500;
    color: #4F4F4F
}

/* ai single page */
.map-iframe {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin: 2em 0;
}

.ai-stay-places .hotels-cards .card {
    max-width: 100%;
    margin-bottom: 1.5em;
}

.ai-stay-places .hotels-cards {
    height: 100vh;
    overflow-y: scroll;
    padding: 0.5em;
}

.ai-stay-places .hotels-cards::-webkit-scrollbar {
    width: 5px;
}

.ai-stay-places .hotels-cards::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.ai-stay-places .hotels-cards::-webkit-scrollbar-thumb {
    background: #888;
}

.ai-stay-places .hotels-cards::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.ai-stay-places .hotels-cards::-webkit-scrollbar-button {
    display: none;
}

.ai-stay-places .title,
.ai-visit-places .title {
    font-weight: 600;
    font-size: 25px;
    color: #333333;
}

.ai-stay-places p.subtitle,
.ai-visit-places p.subtitle {
    font-weight: 600;
    font-size: 16px;
    color: #333333;
}

.day-title {
    color: #333333;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 1.5em;
}

.day a {
    display: inline-flex;
    justify-content: center;
    justify-content: center;
    /* padding: 1em; */
    width: 50px;
    height: 50px;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.select2-container {
    width: 100% !important;
}

.day .collapse-div p>span {
    font-weight: 600;
    color: #333333;
    margin-left: 1.5em;
}

.day .collapse,
.day .collapsing {
    margin-left: 4em;
}

.day .collapse .card,
.day .collapsing .card {
    border: 0;
    background-color: #FCFCFC;
    padding: 3em;
    border-radius: 20px;
}


.day img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.day .card-title {
    font-size: 25px;
    font-weight: 600;
}

.day .card-text {
    color: #333333;
    font-weight: 500;
}

.day .card-text {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
}

.day .card-text small {
    font-weight: 500;
    color: #9095A1;
    font-size: 17px;
    font-size: 12px;
}

.collapse-div {
    position: relative;

}

.collapse-div::before {
    position: absolute;
    left: 4em;
    height: 1px;
    bottom: -0.5em;
    width: 100%;
    background-color: #E0E0E0;
    content: " ";
}

.collapse-div::after {
    position: absolute;
    left: 1.5em;
    height: 100%;
    width: 2px;
    top: 21px;
    background-color: #E0E0E0;
    content: " ";
}

.collapse-div p:has(> a.collapsed) span {
    display: inline-block
}

.collapse-div p:has(> a) span {
    display: none
}

/* ai form page */
.ai-form {}

.ai-form .form-group,
.ai-form .grid {
    margin-top: 0.5em;
    margin-bottom: 3em;
}

.budget {}

.budget .plan-details p {
    margin: 0;
    font-size: 16px;

}

.budget .plan-details span {

    color: #828282
}

.ai-form .grid .plan-details {
    border: solid 2px #b5b5b5dc
}

.food-option .big-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px
}

.food-option .form-check-label {
    padding-top: 0.2em;
    font-size: 14px;
}

.ai-form .text-start .fw-bold {
    font-size: 17px;
}

.submit-btn {
    padding: 1em 4em;
    margin-top: 3em;
}

/* auth pages */
.auth-page {
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-bottom: 2em;
}

.auth-page::before {
    background-color: rgba(3, 3, 3, 0.5);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    content: " ";
    z-index: 1;
}

/* .auth-page .steps-form{
    padding: 3em 0;
} */

.auth-page .steps-form .step-form-bg {
    border-radius: 15px;
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.4);
    /* display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column; */
    gap: 10px;
    padding: 1em 0;
}



.auth-link {
    color: #ffffff;
    font-weight: 300;
    font-size: 12px;
    margin-top: 2em;
}

.auth-link a {
    color: #ffffff;
    font-weight: 500;
    font-size: 12px;
}

.forget_password {
    color: #ffffff;
    font-weight: 300;
    font-size: 12px;
    margin-top: 1em;
    text-align: center;
    width: 100%;
    display: flex;
}

.auth-page label {
    color: #ffffff;
    font-weight: 400;
    font-size: 14px;
}

.auth-page input {
    background: rgba(3, 3, 3, 0.2);
    color: #ffffff;
}

.auth-page .submit-btn {
    margin-bottom: 2em;
}

.auth-page .form-control:focus {
    color: #ffffff;
    background-color: transparent;
    border-color: #dcad80;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(185, 111, 0, 0.25);
}

.form-control:focus {
    border-color: #dcad80;
    box-shadow: 0 0 0 .25rem rgba(185, 111, 0, 0.15);
}

.auth-subtitle {
    width: 60%;
    color: #FFFFFF;
    text-align: center;
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 0;
}

.auth-page .iti {
    width: 100%;
}

.auth-page .radios {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 25px;
    padding: 1em 0;
}

.auth-page .radios input {
    background: #ffffff;
    padding: 5px;
}

.auth-page .radios .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
    background-image: none
}

/* payment page */

.payment-card .field {
    margin-bottom: 25px;
}

.payment-card .field.full {
    width: 100%;
}

.payment-card .field.half {
    width: calc(50% - 12px);
}

.payment-card .field label {
    display: block;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 8px;
}

.payment-card .field input {
    padding: 12px;
    border-radius: 6px;
    border: 2px solid #e8ebed;
    display: block;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.payment-card .field input:placeholder {
    color: #e8ebed !important;
}

.payment-card .flex {
    display: flex;
    flex-direction: row wrap;
    align-items: start;
}

.payment-card .flex.justify-space-between {
    justify-content: space-between;
}

.card.payment-card {
    padding: 50px;
    margin: 50px 0;
    max-width: 100%;
    background: #fff;
    border-radius: 6px;
    box-sizing: border-box;
    box-shadow: 0px 24px 60px -1px rgba(37, 44, 54, 0.14);
}

.card.payment-card .card-title {
    margin-bottom: 50px;
}

.card.payment-card .card-title h2 {
    margin: 0;
}

.card.payment-card .card-body .payment-type,
.card.payment-card .card-body .payment-info {
    margin-bottom: 25px;
}

.card.payment-card .card-body .payment-type h4 {
    margin: 0;
}

.card.payment-card .card-body .payment-type .types {
    margin: 25px 0;
    gap: 1em
}

.card.payment-card .card-body .payment-type .types .type {
    width: 30%;
    position: relative;
    background: #f2f4f7;
    border: 2px solid #e8ebed;
    padding: 25px 0;
    box-sizing: border-box;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s ease;
}

.card.payment-card .card-body .payment-type .types .type:hover {
    border-color: #28333b;
}

.card.payment-card .card-body .payment-type .types .type:hover .logo,
.card.payment-card .card-body .payment-type .types .type:hover p {
    color: #28333b;
}

.card.payment-card .card-body .payment-type .types .type.selected {
    border-color: var(--primary);
    background: #f67d3613
}

.card.payment-card .card-body .payment-type .types .type .logo img {
    max-width: 50%;
    width: auto;
    height: 60px;
    object-fit: contain;
    margin-bottom: 0.4em;

}

.card.payment-card .card-body .payment-type .types .type.selected p {
    color: #28333b;
}

.card.payment-card .card-body .payment-type .types .type .logo,
.card.payment-card .card-body .payment-type .types .type p {
    transition: all 0.5s ease;
}

.card.payment-card .card-body .payment-type .types .type .logo {
    font-size: 48px;
    color: #8a959c;
}

.card.payment-card .card-body .payment-type .types .type p {
    margin-bottom: 0;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #8a959c;
}

.card.payment-card .card-body .payment-info .column {
    width: calc(50% - 25px);
}

.card.payment-card .card-body .payment-info .title {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.card.payment-card .card-body .payment-info .title .num {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-right: 12px;
    font-size: 12px;
}

.payment-card .button {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    padding: 15px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.5s ease;
    background: transparent;
    border: 2px solid transparent;
}

.shipping {
    display: none;
}

.shipping.visa {
    display: block;
}

/* filter sidebar */

.filter-btn {
    display: none;
}

/* .filter-sidebar{
    display: inline-block;
} */
.remove-class {
    display: none !important;
}


/* dropdown input */
.form-group .dropdown .dropdown-input {
    background-color: #ffffff;
}

.input-dropdown {
    width: 300px;
    right: 0;
}

.search-page.hotel-page .hotels-cards .card .owl-carousel.owl-drag .owl-item,
.search-page.hotel-page .hotels-cards .card .owl-carousel .owl-stage,
.search-page.hotel-page .hotels-cards .card .owl-carousel .owl-stage-outer,
.search-page.hotel-page .hotels-cards .card .owl-carousel-item,
.search-page.hotel-page .hotels-cards .card .owl-carousel-item img {
    max-height: none;
}

.search-page.hotel-page .hotels-cards .card .owl-carousel-item img {
    object-fit: cover;
}

@media (max-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        top: 100%;
        left: -170%;
        right: auto;
        transform: translate(0, 0);
        margin-top: .125rem;
        position: absolute;
    }

    .input-dropdown {
        width: 100%;
        right: auto;
    }
}

.travel-interests {
    background: black;
    padding: 5px;
    border-radius: 4px;
    box-shadow: black 1px 1px;
    margin-left: 2px;
    margin-right: 2px;
    /* white-space: pre; */
}

.group-travel-interests {
    display: flex !important;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: space-around;
}



@media (max-width: 768px) {

    .nav-bar {
        position: absolute;
        margin-top: 0;
        padding: 0;
        top: 7px;
        z-index: 9999;
        width: 100% !important;
        border-radius: 0 !important;
    }

    .search-page {
        overflow: hidden;
    }

    .hotels-cards .hotel-list-options,
    .hotels-cards .card {
        display: block !important;
    }


    .hotels-cards .card li {
        margin: 0 0 8px;
    }

    .hotels-cards .card .hotel-image-carousel {
        width: 100% !important;
    }

    .hotels-cards .card .img-container {
        width: 100% !important;

        display: table !important;
    }

    .search-sidebar .btn {
        margin-bottom: 15px;
    }

}


.collapse-div p::after {
    content: "\f107"; 
    font-family: "Font Awesome 5 Free";
    position: absolute;
    left: 20px;
    top: 25%;
    font-size: 20px;
    font-weight: bold;
}
.collapse-div p.toggled::after {
    content: '-';
}
