/* General CSS */
* {
    font-family: 'Poppins', sans-serif;
}

html {
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased
}

a,
abbr,
acronym,
address,
b,
bdo,
big,
blockquote,
body,
br,
button,
cite,
code,
dd,
del,
dfn,
div,
dl,
dt,
em,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
html,
i,
iframe,
img,
ins,
kbd,
legend,
li,
map,
object,
ol,
p,
pre,
q,
samp,
small,
span,
strong,
sub,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
tr,
tt,
ul,
var {
    margin: 0;
    padding: 0;
    border: none
}

a,
input,
select,
textarea {
    outline: 0;
    margin: 0;
    padding: 0
}

.btn,
a {
    -webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.btn.focus,
.btn:focus,
.btn:active,
.btn:hover,
a:focus,
a:hover,
button:focus,
input:focus,
textarea:focus {
    text-decoration: none;
    outline: 0;
    color: inherit;
    text-decoration: none !important;
    transition: all .3s ease 0s;
    box-shadow: none !important;
}

a {
    text-decoration: none;
}

/* Global CSS */
h1 {
    font-size: 72px;
    line-height: 82px;
    font-weight: 700;
}

h2 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    color: #222;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    color: #222;
}

p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #717171;
}

p:last-child {
    margin-bottom: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
}

.btn-primary {
    background: #FF004E;
    border-color: #FF004E;
    color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #7B0328;
    border-color: #7B0328;
    color: #fff;
}

.btn-primary span {
    color: #fff;
    margin-right: 10px;
}

.section {
    padding: 70px 0;
}

.section-70 {
    padding: 70px 0;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1140px;
}

.bg-light-gray {
    background-color: #f9f9f9;
}

/* header CSS */
header {
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    margin-bottom: 3rem;
}

header .navbar {
    padding-top: 0;
    padding-bottom: 0;
    background-color: transparent;
}

header .navbar .container-fluid {
    max-width: 1850px;
    margin: 0 auto;
}

header .navbar li.nav-item .nav-link {
    color: #222;
    font-size: 16px;
    transition: 0.3s all;
    position: relative;
    padding: 35px 0;
    font-weight: 400;
}

header .navbar li.nav-item {
    margin: 0 17px;
    position: relative;
}

header .navbar li.nav-item:last-child {
    margin-right: 0;
}

header .navbar li.nav-item .nav-link:hover,
header .navbar li.nav-item .nav-link.active {
    color: #FF004E;
}

header .navbar li.nav-item .nav-link.btn {
    padding: 10px 24px !important;
    color: #fff;
}

header .navbar li.nav-item .nav-link:after {
    content: "";
    border-radius: 900px;
    background: #FF004E;
    width: 0;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 28px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all;
}

header .navbar li.nav-item .nav-link:hover:after,
header .navbar li.nav-item .nav-link.active:after {
    width: 24px;
    opacity: 1;
    visibility: visible;
}

header .navbar li.nav-item .nav-link.btn:after {
    display: none;
}

.navbar-brand {
    width: 210px;
    margin: 0;
    padding: 0;
    transition: 0.3s all;
}

.navbar-brand img {
    width: 100%;
}

.navbar-nav .dropdown-menu {
    top: 80px;
    border: none;
    box-shadow: 0 0px 6px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
    border-radius: 6px;
    min-width: 235px;
}

.dropdown-toggle::before {
    border: none;
    content: "";
    background-image: url(../images/down-arrow.svg);
    position: absolute;
    width: 12px;
    height: 12px;
    background-size: contain;
    right: 0;
    top: 43%;
}

header .navbar li.nav-item.dropdown a.nav-link {
    padding-right: 18px;
}

.dropdown-item {
    padding: 5px 6px;
    font-size: 14px;
    white-space: break-spaces;
    text-transform: capitalize;
}

.dropdown-item:hover,
.dropdown-item.active {
    color: #FF004E;
    background-color: transparent;
}

.dropdown-toggle::after {
    border: none;
}

.dropdown:hover .dropdown-menu {
    display: flex;
    padding: 0;
}

.navbar-nav .dropdown-menu ul li {
    list-style: none;
    position: relative;
}

.navbar-nav .dropdown-menu ul li:after {
    content: "";
    background: #f7f7f7;
    height: 1px;
    width: calc(100% - 48px);
    left: 24px;
    bottom: -1px;
    position: absolute;
}

.navbar-nav .dropdown-menu ul li:last-child::after {
    display: none;
}

.dropdown-toggle::before {
    border: none;
    content: "";
    background-image: url(../images/icon-down.svg);
    position: absolute;
    width: 12px;
    height: 12px;
    background-size: contain;
    right: 0;
    top: 44%;
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(78%) hue-rotate(58deg) brightness(117%) contrast(100%);
}

.dropdown-menu {
    animation: 0.5s slideup;
}

@keyframes slideup {
    from {
        transform: translateY(10%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar-nav .dropdown-menu.full-width ul {
    width: 100%;
}

header .navbar.is-sticky {
    position: fixed;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    backdrop-filter: blur(2px);
    animation: slideDown 0.35s ease-out;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0;
    background: #fff;
}

header .navbar.is-sticky li.nav-item .nav-link,
header.normal-header-posion li.nav-item .nav-link {
    padding: 28px 0;
    color: #222222;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

header .navbar.is-sticky li.nav-item .nav-link::after {
    bottom: 25px;
}

header .navbar.is-sticky .dropdown-menu {
    top: 75px;
}

header .navbar li.nav-item.dropdown .dropdown-toggle-icon {
    display: none;
}

header .offcanvas {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    visibility: visible;
    border-left: none;
    flex-direction: row;
    background: transparent;
}

header.scrolling_down .navbar.is-sticky {
    transform: translateY(-100%);
    transition: 0.3s all;
}

header.scrolling_up .navbar.is-sticky {
    transform: translateY(0);
    transition: 0.3s all;
}

.navbar-brand img.sticky-logo,
header .navbar.is-sticky .navbar-brand .normal-logo,
header.normal-header-posion .navbar-brand .normal-logo {
    display: none;
}

header .navbar.is-sticky .navbar-brand .sticky-logo,
header.normal-header-posion .navbar-brand .sticky-logo {
    display: block;
}

/* Footer CSS */
footer {
    background: #F6F6F6;
    padding: 72px 0 0;
}

.top-main-footer {
    padding-bottom: 60px;
}

.footer-logo {
    margin-bottom: 60px;
}

.footer-logo img {
    width: 228px;
}

ul.social-icons {
    display: flex;
    align-items: center;
    margin-top: 8px;
}

ul.social-icons li {
    list-style: none;
    margin: 0 5px;
}

ul.social-icons li:first-child {
    margin-left: 0;
}

.footer-links-wrap {
    padding-left: 50px;
    margin-top: 128px;
}

.footer-links li {
    list-style: none;
    margin: 0 0 13px;
    line-height: 20px;
}

.footer-links ul li a {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    transition: 0.3s all;
    color: #575757;
}

.footer-links ul li a:hover {
    color: #FF004E;
}

ul.social-icons a img {
    transition: 0.3s all;
}

ul.social-icons a:hover img {
    opacity: 0.6;
}

footer p {
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    color: #001233;
    max-width: 317px;
}

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-info img {
    margin-right: 5px;
}

.contact-info a {
    font-weight: 500;
    color: #000;
    font-size: 14px;
}

.contact-info a:hover {
    color: #FF004E;
}

.contact-form-wrap .contact-form {
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.06);
    padding: 24px 16px;
}

.contact-form-wrap h6,
.footer-links h5 {
    font-size: 16px;
    color: #222;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 24px;
}

.contact-form-wrap {
    max-width: 450px;
    margin-left: auto;
    margin-top: 123px;
}

.form-control {
    border-radius: 6px;
    border: 1px solid #E8E9F3;
    background: #F9FCFE;
    height: 45px;
    font-size: 14px;
    padding: 12px 15px;
}

.form-control::placeholder {
    color: #E2E2E2;
}

textarea.form-control {
    height: 80px;
    resize: none;
}

.bottom-footer {
    background: #252525;
    padding: 8px 0 10px;
}

.bottom-footer ul {
    display: flex;
    align-items: center;
}

.bottom-footer ul li {
    list-style: none;
    position: relative;
    padding: 0 12px;
}

.bottom-footer ul li p,
.bottom-footer ul li a {
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    font-weight: 600;
}

.bottom-footer ul li p {
    margin: 0;
    position: relative;
    top: 2px;
    max-width: 100%;
}

.bottom-footer ul li:after {
    content: "";
    position: absolute;
    right: 0;
    height: 16px;
    width: 1px;
    background: #fff;
    top: 6px;
}

.bottom-footer ul li:first-child:after {
    top: 4px;
}

.bottom-footer ul li:first-child {
    padding-left: 0;
}

.bottom-footer ul li:last-child:after {
    display: none;
}

.bottom-footer .text-xl-end ul {
    justify-content: end;
}

.bottom-footer .text-xl-end ul li:last-child {
    padding: 0;
}

/* Main CSS */
.home-hero-section {
    height: 720px;
}

.heroSwiper,
.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide,
.heroSwiper .swiper-slide .container,
.heroSwiper .swiper-slide .row,
.heroSwiper .swiper-slide .col-12 {
    width: 100%;
    height: 100%;
}

.heroSwiper .swiper-slide {
    background-position: center 20%;
    background-size: cover;
    position: relative;
}

.heroSwiper .swiper-slide img {
    display: block;
    width: 100%;
}

.heroSwiper .pagination-wrapper {
    position: absolute;
    top: 50px;
    left: calc(50% - 605px);
    width: 50px;
    height: calc(100% - 105px);
    display: flex;
    align-items: center;
    flex-direction: column;
}

.heroSwiper .swiper-pagination {
    width: 50px !important;
    height: calc(100% - 180px);
    display: flex;
    flex-direction: column;
    top: 60px !important;
    bottom: 0 !important;
    left: 40px !important;
    right: 0 !important;
    justify-content: space-between;
    counter-reset: my-sec-counter;
    padding: 75px 0;
}

.heroSwiper .swiper-pagination-bullet {
    opacity: 1;
    background: rgb(255 255 255 / 60%);
    width: 10px;
    height: 10px;
    transition: 0.3s all;
    transform: scale(1);
    margin: 0 !important;
    transition: 0.9s all;
}

.heroSwiper .swiper-pagination:before {
    content: "";
    background: rgb(255 255 255 / 50%);
    width: 1px;
    height: 100%;
    position: absolute;
    left: 4.5px;
    top: 0
}

.heroSwiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    transform: scale(2.5);
    background: rgb(255 255 255 / 55%);
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.08);
}

.heroSwiper .swiper-pagination-bullet:before {
    counter-increment: my-sec-counter;
    content: "0" counter(my-sec-counter) "";
    font-size: 0;
    color: #fff;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding-top: 1px;
}

.heroSwiper .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    font-size: 6px;
    font-family: 'circular_stdlight';
}

.heroSwiper .swiper-counter {
    position: absolute;
    color: #fff;
    bottom: 70px;
    z-index: 1;
    transform: rotate(-90deg);
    left: 24px;
}

.heroSwiper .swiper-counter span {
    color: #fff;
}

.heroSwiper .slider-text {
    position: relative;
    top: 40%;
    max-width: 550px;
    left: 100px;
}

.heroSwiper .slider-text h2 {
    color: #fff;
    font-size: 72px;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 108px;
}

.heroSwiper .slider-text p {
    color: #fff;
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 25px;
}

.heroSwiper .slider-text .btn {
    font-size: 20px;
    padding: 13px 24px;
}

.heroSwiper .slider-text .btn span {
    margin-right: 15px;
}

.heroSwiper .swiper-slide.swiper-slide-active .slider-text h2 {
    animation: fadeInUp 0.8s ease-in-out 0s forwards;
}

.heroSwiper .swiper-slide.swiper-slide-active .slider-text p {
    animation: fadeInUp 0.9s ease-in-out 0s forwards;
}

/* .heroSwiper .swiper-slide.swiper-slide-active .slider-text .btn {animation: fadeInUp 1.2s ease-in-out 0s forwards;} */
@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.search-box-wrap {
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.12);
    padding: 50px;
    position: relative;
    z-index: 2;
}

.search-box-section {
    margin-top: -90px;
    background-color: #f9f9f9;
}

#search-tab {
    padding: 0 100px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-bottom: 15px;
    gap: 8px;
    margin-bottom: 30px !important;
}

#search-tab.nav-pills .nav-link {
    padding: 0 10px;
    color: #222;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
}

#search-tab.nav-pills .nav-link.active {
    background: transparent;
}

#search-tab.nav-pills .nav-item:nth-child(2) .nav-link {
    color: #FF004E;
    font-size: 24px;
    font-family: 'cakecaferegular';
    line-height: 27px;
}

#search-tab:after {
    content: "";
    width: calc(100% - 200px);
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.16);
    height: 1px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

#search-tab.nav-pills .nav-link:after,
.filter-box-wrap #filter-tab .nav-link:after {
    content: "";
    position: absolute;
    height: 5px;
    bottom: -17px;
    width: 100%;
    left: 0;
    border-radius: 90px;
    background: #FF004E;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s all;
}

#search-tab.nav-pills .nav-link.active:after,
.filter-box-wrap #filter-tab .nav-link.active:after {
    visibility: visible;
    opacity: 1;
}

.top-destination-info {
    border-radius: 16px;
    border: 1px solid #DBDBDB;
    background: #FFF;
    padding: 25px;
    display: flex;
    align-items: center;
}

.select2-container--bootstrap-5 .select2-selection--single {
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    background-image: none !important;
    height: 50px !important;
}

.top-destination-info span.select2-selection__placeholder,
.top-destination-info .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    font-size: 30px;
    font-weight: 700 !important;
    color: #222 !important;
}

.select2-container--open span.select2-selection.select2-selection--single,
.select2-container--bootstrap-5 .select2-dropdown {
    border-color: transparent !important;
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.15);
    border-radius: 12px !important;
}

.select2-container--bootstrap-5 .select2-dropdown.select2-dropdown--below {
    border-top-width: 1px;
    border-radius: 0.25em;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-search {
    padding-top: 14px;
}

.search-box-wrap .form-wrapper .col {
    position: relative;
    flex: initial;
}

.search-box-wrap .form-wrapper .col:after,
.t-datepicker .t-check-in:after {
    content: "";
    background: #DBDBDB;
    width: 1px;
    height: 87px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.search-box-wrap .form-wrapper .col:nth-child(4):after,
.search-box-wrap .form-wrapper .col:nth-child(3):after {
    display: none;
}

.search-box-wrap .form-wrapper .col:last-child {
    width: 200px;
    flex: 0 0 0%;
    padding: 0;
}

.search-box-wrap .form-wrapper .col {
    width: 26%;
}

.t-datepicker .t-check-in:after {
    right: -40px;
    top: -48px;
}

.search-box-wrap .form-wrapper button.btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
}

.search-box-wrap .form-wrapper .col:nth-last-child(2) {
    padding: 0 30px;
}

.search-box-wrap .form-wrapper .col:nth-last-child(3) {
    width: 40%;
    padding: 0 30px;
}

.t-datepicker-day {
    border-radius: 12px;
    border: none;
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.15);
}

.t-day,
.t-next,
.t-prev,
.t-table-condensed td,
.t-table-condensed th {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    min-width: 45px;
    margin: 0 !important;
}

.t-table-condensed {
    border-spacing: 0;
    border-collapse: separate;
}

span.t-hover-day-content {
    font-size: 10px !important;
    display: none !important;
}

.t-hover-day::after {
    display: none;
}

.t-dates.t-date-check-in:before,
.t-dates.t-date-check-out:before {
    content: "Check In";
    position: absolute;
    top: -43px;
    color: #717171;
    font-size: 18px;
    font-weight: 500;
    left: 0;
}

.t-dates.t-date-check-out:before {
    content: "Check Out";
}

.top-destination-info label {
    color: #717171;
    font-size: 18px;
    font-weight: 500;
}

.t-check-in,
.t-check-out {
    border-color: transparent;
}

.t-check-in .t-dates.t-date-check-in,
.t-check-out .t-dates.t-date-check-out,
.t-check-in .t-dates.t-date-check-in span,
.t-check-out .t-dates.t-date-check-out span {
    color: #222;
    font-size: 30px;
    font-weight: 700;
    /* height: auto; */
    padding: 0;
}

.t-check-in .t-dates.t-date-check-in span.t-year-check-in,
.t-check-out .t-dates.t-date-check-out span.t-year-check-out {
    display: none;
}

.t-datepicker {
    margin-top: 45px;
    display: flex;
    gap: 70px;
}

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

.section-heading h2 {
    margin-bottom: 15px;
}

.section-heading h2 span {
    color: #FF004E;
}

.section-heading h2~p {
    color: #717171;
    font-weight: 500;
}

.section-heading {
    margin-bottom: 22px;
    max-width: 779px;
}

.section-heading.w-100 {
    max-width: 100%;
}

.package-box {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
    overflow: hidden;
    margin-top: 20px;
    transition: 0.3s all;
    display: block;
}

.package-box:hover {
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.08) !important;
}

.package-box .package-info {
    padding: 16px;
}

.package-box .package-info h3 {
    font-size: 18px;
    transition: 0.3s all;
}

.package-box .package-info ul {
    display: flex;
    margin: 10px 0 14px;
}

.package-box .package-info ul li {
    list-style: none;
    position: relative;
    display: flex;
    align-items: center;
    padding-right: 12px;
}

.package-box .package-info ul li span {
    font-size: 14px;
}

.package-box .package-info ul li img {
    margin-right: 6px;
}

.package-box .package-info ul li:before {
    content: "";
    background: #717171;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    right: 4px;
    position: absolute;
}

.package-box .package-info ul li:last-child:before {
    display: none;
}

.package-box .package-info ul li:last-child {
    padding-right: 0;
}

.package-box .package-info .package-tag {
    border-radius: 90px;
    background: rgba(255, 0, 78, 0.10);
    padding: 6px 12px;
    display: inline-block;
    color: #FF004E;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 10px;
}

.package-box .package-info p {
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-box .package-info h4 {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.package-box .package-info h4 span.main-price {
    font-weight: 600;
    color: #222;
}

.package-box .package-info h4 span.old-price {
    color: #717171;
    font-weight: 400;
    text-decoration: line-through;
}

.package-box .package-image {
    height: 180px;
    overflow: hidden;
}

.package-box .package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.3s all;
    transform: scale(1);
}

.package-box:hover .package-image img {
    transform: scale(1.1);
}

.package-box:hover .package-info h3 {
    color: #ff004e;
}

/* .explore-popular-destinations {overflow: hidden;} */
.destinationsSwiper,
.testimonialSwiper {
    max-width: 3000px;
    margin: 0 auto 0;
    padding: 0 30px 70px 70px;
    /* max-width: 2000px;
    margin: 15px auto 0;
    padding: 0 30px 70px 70px; */
}

.explore-popular-destinations .container-fluid,
.testimonial-section .container-fluid {
    padding: 0;
}

.destinations-box .img-wrap {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.destinations-box .img-wrap img {
    width: 100%;
    height: 100%;
    transition: 0.3s all;
    transform: scale(1);
    object-fit: cover;
}

.destinations-box .img-wrap:before {
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 59.03%, rgba(0, 0, 0, 0.90) 99.68%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.destinations-box {
    position: relative;
    transition: 0.3s all;
    overflow: hidden;
    height: 220px;
    display: block;
    margin-top: 15px;
}

.destinations-box h4 {
    position: absolute;
    left: 0;
    bottom: 12px;
    width: 100%;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    font-family: 'circular_stdmedium';
    transition: 0.3s all;
    transform: translate(0, 0px);
    z-index: 2;
}

.destinations-box:hover .img-wrap img {
    transform: scale(1.1);
}

.destinations-box:hover h4 {
    transform: translate(0, -3px);
}

.global-pagination .swiper-horizontal>.swiper-pagination-bullets,
.global-pagination .swiper-pagination-bullets.swiper-pagination-horizontal,
.global-pagination .swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0;
}

.global-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 90px;
    background: #222;
    opacity: 0.2;
    transition: 0.3s all;
}

.global-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 42px;
    opacity: 1;
}

.holiday-box {
    border-radius: 16px;
    background: #FFF;
    padding: 24px 12px;
    text-align: center;
    height: calc(100% - 30px);
    margin-top: 30px;
    transition: 0.3s all;
}

.holiday-box:hover {
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.08);
}

.holiday-box .icon-box {
    margin-bottom: 24px;
}

.holiday-box h4 {
    font-size: 16px;
    color: #222;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.holiday-box p {
    font-size: 14px;
    line-height: 21px;
}

.news-box .img-wrap {
    height: 354px;
    margin-bottom: 18px;
    border-radius: 16px;
    overflow: hidden;
}

.news-box .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s all;
    transform: scale(1);
}

.news-box .date-and-by {
    font-size: 12px;
    line-height: 24px;
    padding-right: 0;
    margin-bottom: 5px;
}

.news-box a {
    display: block;
}

.news-box h4 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
    transition: 0.3s 1ll;
}

.news-box p {
    padding-right: 10px;
}

.news-box {
    margin-top: 22px;
}

.news-box:hover .img-wrap img {
    transform: scale(1.05);
}

.news-box:hover h4 {
    color: #FF004E;
}

.journey-starts-section {
    padding: 60px 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.journey-starts-section:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.38);
}

.journey-starts-section h2 {
    color: #fff;
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 25px;
}

.journey-starts-section .section-heading {
    text-align: center;
    max-width: 100%;
}

.journey-starts-section h2~p {
    color: #fff;
    font-size: 20px;
}

.form-subscribe {
    max-width: 600px;
    margin: 0 auto;
    justify-content: center;
}

.form-subscribe input {
    width: 337px;
    background: transparent;
    border-radius: 6px;
    border: 1px solid #FFF;
    font-size: 16px;
    height: 48px;
    color: #fff;
}

.form-subscribe button {
    border-radius: 6px;
    height: 100%;
    height: 48px;
}

.form-subscribe input:focus {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.form-subscribe input:focus::placeholder {
    font-size: 0;
}

.testimonial-box {
    border-radius: 16px;
    background: #FFF;
    padding: 30px 16px 80px;
    text-align: center;
    margin-top: 20px;
    height: 100%;
}

.testimonial-box .stars-wrap {
    margin-bottom: 24px;
}

.testimonial-box .stars-wrap img {
    width: 30px;
    margin: 0 6px;
}

.testimonial-box p {
    font-size: 16px;
    color: #222;
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 10px;
}

.testimonial-user img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 16px;
}

.testimonial-user h5 {
    color: #222;
    font-size: 16px;
    font-weight: 600;
}

.testimonialSwiper .swiper-slide {
    height: auto;
}

.heading-ov-h {
    height: 100px;
    overflow: hidden;
}

.paragraph-ov-h {
    height: 85px;
    overflow: hidden;
    margin-bottom: 25px;
}

.paragraph-ov-h p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bottom-budget-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
    margin-top: 24px;
}

.bottom-budget-info ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.bottom-budget-info ul li {
    list-style: none;
}

.bottom-budget-info ul li label.btn.btn-budget {
    border-radius: 8px;
    border: 0.5px solid #DBDBDB;
    padding: 7px 24px 7px 62px;
    display: block;
    text-align: left;
    position: relative;
    color: #222;
    font-weight: 600;
    font-size: 16px;
    min-width: 155px;
}

.bottom-budget-info ul li label.btn.btn-budget span {
    display: block;
    width: 100%;
    font-size: 12px;
    font-weight: 400;
    color: #717171;
}

.bottom-budget-info ul li label.btn.btn-budget:before {
    content: "";
    background: transparent;
    border: 2px solid #222222;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: absolute;
    left: 24px;
    top: 15px;
}

.bottom-budget-info ul li label.btn.btn-budget:after {
    content: "";
    background: #222;
    width: 14px;
    height: 14px;
    position: absolute;
    left: 29px;
    top: 20px;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
}

.bottom-budget-info ul li .btn-check:checked+label.btn:after {
    opacity: 1;
    visibility: visible;
}

/* body.darknav header .navbar li.nav-item .nav-link {color: #fff;}
body.darknav header .navbar li.nav-item .nav-link.dropdown-toggle::before {filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(78%) hue-rotate(58deg) brightness(117%) contrast(100%);}
body.darknav header .navbar.is-sticky li.nav-item .nav-link {color: #142640;}
body.darknav header .navbar.is-sticky li.nav-item .nav-link.dropdown-toggle::before, body.menu-open.darknav header .navbar li.nav-item .nav-link.dropdown-toggle::before {filter: invert(0)} */

.budget-form-box {
    padding: 35px 48px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 90px;
    margin-top: -90px;
    position: relative;
    display: none;
}

.budget-form-box:before {
    content: "";
    background: #000;
    opacity: 0.54;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.budget-form-box form.budget-form {
    position: relative;
    z-index: 1;
}

.budget-form-box form.budget-form h4 {
    color: #fff;
    text-align: center;
    margin: 0 0 25px;
}

.budget-form-box form.budget-form label.btn.btn-budget {
    background: #fff;
}

/* .what-is-new-section {padding-bottom: 173px;} */
img.img-pin {
    width: 38px;
    background: #f3f3f3;
    padding: 8px;
    border-radius: 5px;
    margin-right: 10px;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected span,
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted) span {
    color: #fff !important;
}

.select2-dropdown.bigdrop-destination {
    width: 320px !important;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--highlighted {
    background-color: #f8f8f8;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option {
    padding: 15px 20px;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected,
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted) {
    background-color: #ff004e;
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
    border: none;
    box-shadow: none;
}

body.menu-open.darknav header .navbar li.nav-item .nav-link {
    color: #142640;
}

body.menu-open.darknav header .navbar li.nav-item .nav-link.btn {
    color: #fff;
}

.inner-tour-section {
    padding: 315px 0 100px;
    min-height: 560px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.inner-tour-section:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.82) 86.43%);
}

.inner-tour-section .container {
    position: relative;
    z-index: 1;
}

.inner-tour-section h1 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}

.inner-tour-section h5.hashtag-tag {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.inner-tour-section~.search-box-section {
    margin-top: -80px;
}

.filter-box-wrap {
    padding: 90px 0 120px;
}

.filter-box-wrap #filter-tab {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 885px;
    margin: 0 auto;
    gap: 16px;
}

.filter-box-wrap #filter-tab .nav-link {
    padding: 0;
    position: relative;
    color: #222;
    font-size: 18px;
    font-weight: 500;
}

.filter-box-wrap #filter-tab:after {
    content: "";
    width: 100%;
    position: absolute;
    bottom: -16px;
    background: rgba(0, 0, 0, 0.16);
    height: 1px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.filter-box-wrap #filter-tab .nav-link.active {
    background: transparent;
    color: #FF004E;
}

.left-listing-wrapper {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
    padding: 16px 24px 48px;
}

.listing-box-wrap {
    display: flex;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
    /* box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.12); */
    overflow: hidden;
    margin-top: 25px;
    transition: 0.3s all;
}

.listing-box-wrap:hover {
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.12);
}

#filter-tabContent {
    margin-top: 60px;
}

.listing-box-wrap .img-box {
    width: 220px;
    /* height: 294px; */
    min-width: 220px;
}

.listing-box-wrap .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-price-box {
    border-radius: 0px 12px 12px 0px;
    background: #F6F6F6;
    width: 162px;
    min-width: 162px;
    padding: 33px 12px;
    text-align: center;
}

.list-price-box .discount-price-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.list-price-box .discount-price-wrap h5 {
    font-size: 16px;
    font-weight: 400;
    text-decoration: line-through;
}

.discount-tag {
    border-radius: 90px;
    background: #03831F;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    padding: 2px 6px;
    margin-left: 8px;
}

.list-price-box h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 32px;
}

.list-price-box h3 span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
    margin-top: 5px;
}

.package-list-btns .btn-border {
    padding: 9px 15px;
    border: 1px solid #FF004E;
    color: #FF004E;
    font-size: 16px;
    margin-top: 16px;
}

.package-list-btns .btn {
    border-radius: 6px;
}

.package-list-btns .btn-border:hover {
    background: #FF004E;
    color: #fff;
}

.listing-box-info {
    padding: 20px 16px;
}

.listing-box-info h4 {
    color: #222;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
}

.listing-box-info p {
    font-size: 12px;
    font-weight: 400;
    margin: 0;
    color: #222;
}

.listing-box-info ul.info-list li {
    list-style: none;
    position: relative;
    color: #222;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 12px;
    padding-left: 25px;
}

.listing-box-info ul.info-list li:before {
    content: "";
    background: url(../images/icon-tick.svg);
    width: 16px;
    height: 16px;
    background-position: center;
    position: absolute;
    left: 0;
    top: 2px;
    background-repeat: no-repeat;
    background-size: cover;
}

.listing-box-info ul.info-list {
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
    margin-bottom: 16px;
}

.listing-box-info ul.info-list li:last-child {
    margin-bottom: 0;
}

ul.package-info li {
    list-style: none;
    text-align: center;
}

ul.package-info {
    display: flex;
    gap: 24px;
}

.heroSwiper .swiper-slide:before,
.inner-tour-section:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #000 -8.61%, rgba(0, 0, 0, 0.00) 60.56%);
}

header .navbar.is-sticky .dropdown-toggle::before,
header.normal-header-posion .dropdown-toggle::before {
    filter: none;
}

.right-filter-box {
    position: -webkit-sticky;
    position: sticky;
    top: 110px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
    padding: 23px 16px;
}

.right-filter-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    padding-bottom: 18px;
    position: relative;
}

.right-filter-box .accordion-header .accordion-button {
    padding: 10px 0;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    color: #222;
    border: none !important;
    box-shadow: none;
}

.right-filter-box .accordion-item {
    border-bottom: none;
    border-right: none;
    border-left: none;
    border-radius: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.right-filter-box .accordion-item .accordion-body {
    padding: 13px 0 45px;
    border: none;
}

.right-filter-box h4:after {
    content: "";
    position: absolute;
    left: -16px;
    bottom: 0;
    background: #ddd;
    width: calc(100% + 32px);
    height: 1px;
}

.right-filter-box .accordion-item:first-child {
    border-top: none;
}

.accordion-button::after,
.accordion-button:not(.collapsed)::after {
    background-image: url(../images/icon-acc-down.svg);
}

.noUi-horizontal .noUi-handle {
    width: 30px;
    height: 30px;
    background: #FF004E;
    border-radius: 50%;
    box-shadow: none;
    border: none;
    top: -13px;
}

.noUi-horizontal .noUi-handle:before,
.noUi-horizontal .noUi-handle:after {
    display: none;
}

.noUi-connect {
    background: #ff004e;
}

.noUi-horizontal {
    height: 4px;
    border: none;
    box-shadow: none;
    background: rgba(255, 0, 78, 0.10);
    border-radius: 900px;
}

.noUi-tooltip {
    border: none;
    padding: 0;
    color: #222;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}

.noUi-horizontal .noUi-tooltip {
    bottom: -25px;
}

.rang-slider-div {
    margin-bottom: 12px;
    margin-right: 18px;
    margin-left: 13px;
}

#budget .noUi-handle.noUi-handle-lower .noUi-tooltip {
    padding: 2px;
}

#budget .noUi-handle.noUi-handle-upper .noUi-tooltip {
    left: 0;
    padding: 2px;
}

.checkboxes-list {
    /* margin-top: 52px; */
    margin-top: -10px;
}

.form-check-input:checked {
    border-color: #FF004E;
    background: transparent;
}

.form-check-input:checked[type=checkbox] {
    filter: brightness(0) saturate(100%) invert(19%) sepia(92%) saturate(6284%) hue-rotate(334deg) brightness(96%) contrast(111%);
}

.form-check-input {
    border-color: #222;
}

.form-check-label {
    font-size: 16px;
    font-weight: 400;
    color: #222;
}

.checkboxes-list .form-check {
    margin-bottom: 9px;
}

.right-filter-box .accordion-item:nth-child(3) .accordion-body {
    padding-bottom: 0;
}

.hotel-star-list label.btn {
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: transparent;
    width: 73px;
    height: 71px;
    padding: 0;
}

.hotel-star-list .btn-check:checked+label.btn,
.hotel-star-list label.btn:hover {
    background: #ff004e;
    color: #fff;
    border-color: transparent;
}

.hotel-star-list .btn-check:checked+label.btn span,
.hotel-star-list label.btn:hover span {
    color: #fff;
}

.hotel-star-list .btn-check:checked+label.btn img,
.hotel-star-list label.btn:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(93%) saturate(0%) hue-rotate(201deg) brightness(106%) contrast(106%);
}

.hotel-star-list label.btn span {
    margin-right: 7px;
}

.hotel-star-list label.btn img {
    width: 24px;
}

.hotel-star-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.right-filter-box .accordion-item:nth-child(2) .accordion-body {
    padding-bottom: 25px;
    padding-top: 10px;
}

.right-sortby {
    max-width: 300px;
    margin-left: auto;
    display: flex;
    align-items: center;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    padding: 12px 16px;
}

.right-sortby label {
    width: 120px;
    font-size: 16px;
    font-weight: 500;
    color: #222;
    margin-right: 0;
}

.right-sortby .select2-container--bootstrap-5 .select2-selection--single {
    height: auto !important;
    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='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
    min-height: auto !important;
    background-position: right 0 center !important;
}

.right-sortby .select2-container--bootstrap-5 {
    width: 230px !important;
}

.select2-dropdown.sorted-by {
    width: 283px !important;
    left: -90px;
}

.right-sortby .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    font-size: 14px;
}

.select2-dropdown.sorted-by .select2-results__option {
    padding: 10px 16px !important;
    font-size: 14px !important;
}

.listing-box-info {
    width: 100%;
}

.select2-container--bootstrap-5 .select2-dropdown.sorted-by .select2-results__options .select2-results__option.select2-results__option--selected,
.select2-container--bootstrap-5 .select2-dropdown.sorted-by .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted) {
    background-color: #F6F6F6 !important;
    color: #000 !important;
}

.home-tagline {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
    top: 130px;
}

.home-tagline h4 {
    font-size: 24px;
    font-style: italic;
    font-weight: 600;
    position: relative;
    color: #fff;
    max-width: 595px;
    margin: 0 auto;
    text-align: center;
    line-height: 36px;
}

#search-tab {
    max-width: 760px;
    margin: 0 auto;
}

header.normal-header-posion {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

header.normal-header-posion~main {
    padding-top: 81px;
}

.pakage-img-wrap img {
    width: 100%;
}

.pakage-img-wrap {
    margin-bottom: 12px;
    position: relative;
    transition: 0.3s all;
    display: block;
}


.detail-gallery-section .gallery-img-list {
    padding: 70px 0 40px;
    flex-wrap: nowrap;
    gap: 12px;
    width: calc(100% - 24px);
    margin: 0;
}

.detail-gallery-section .gallery-img-list .pakage-img-wrap:last-child {
    margin-bottom: 0;
}

.detail-gallery-section .gallery-img-list .col {
    padding: 0;
}

.detail-gallery-section .gallery-img-list .col:first-child .pakage-img-wrap {
    border-radius: 12px 0 0 12px;
    overflow: hidden;
}

.detail-gallery-section .gallery-img-list .col:last-child .pakage-img-wrap:first-child {
    border-radius: 0 12px 0 0;
    overflow: hidden;
}

.detail-gallery-section .gallery-img-list .col:last-child .pakage-img-wrap:last-child {
    border-radius: 0 0 12px 0;
    overflow: hidden;
}

.pakage-img-wrap a {
    display: block;
}

.pakage-img-wrap a:before {
    content: "";
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all;
}

.pakage-img-wrap a:hover:before {
    opacity: 1;
    visibility: visible;
}

.see-all-photos-btn {
    border-radius: 4px;
    border: 1px solid #222;
    background: #FFF;
    padding: 6px 12px;
    position: absolute;
    right: 12px;
    bottom: 12px;
    color: #222;
    font-size: 14px;
    font-weight: 500;
}

.see-all-photos-btn:hover {
    background: #ff004e;
    border-color: #ff004e;
    color: #fff;
}

.fancybox__container {
    z-index: 9999;
}

.f-button svg {
    stroke: #fff;
}

body.modal-open header {
    z-index: 99;
}

.modal-body .pakage-img-wrap a[data-fancybox="gallery"]:before {
    display: none;
}

.modal-body .pakage-img-wrap {
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
}

.modal-body .pakage-img-wrap img {
    transform: scale(1);
    transition: 0.3s all;
}

.modal-body .pakage-img-wrap:hover img {
    transform: scale(1.1);
}

.modal-fullscreen .modal-body {
    padding: 25px;
}

.left-pakage-detail-wrap h1 {
    font-size: 36px;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
}

.left-pakage-detail-wrap ul.package-info li {
    display: flex;
    align-items: center;
}

.left-pakage-detail-wrap ul.package-info li .icon-box {
    margin-right: 10px;
}

.pakage-detail-section {
    padding-bottom: 100px;
}

.left-pakage-detail-wrap ul.package-info li p {
    font-size: 14px;
    font-weight: 400;
    color: #222;
}

.thing-you-will-love-box {
    border-radius: 12px;
    border: 1px solid #DBDBDB;
    padding: 30px 16px;
    margin-top: 46px;
    margin-bottom: 32px;
}

.thing-you-will-love-box h6 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
    margin-top: 32px;
}

.thing-you-will-love-box p {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}

.thing-you-will-love-box h6:first-child {
    margin-top: 0;
}

h3.schedule-heading {
    color: #FF004E;
    line-height: 36px;
}

ul.schedule-list {
    border-radius: 12px;
    border: 1px solid #DBDBDB;
    padding: 30px 16px;
    margin-top: 25px;
}

ul.schedule-list li {
    list-style: none;
}

ul.day-date-list {
    display: flex;
    align-items: center;
    position: relative;
    gap: 20px;
}

ul.day-date-list li {
    position: relative;
    color: #222;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    list-style: none;
}

ul.day-date-list li:after {
    content: "";
    width: 4px;
    height: 4px;
    background: #222;
    position: absolute;
    right: -12px;
    border-radius: 50%;
    top: 10px;
}

ul.day-date-list li:last-child:after {
    display: none;
}

.schedule-box h5 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin: 15px 0;
}

.schedule-box p {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
}

.schedule-box p a,
.schedule-box a,
.schedule-box a span {
    color: #FF004E;
    font-size: 16px;
    font-weight: 600;
}

.schedule-box a {
    display: inline-flex;
    align-items: center;
}

.schedule-box a img {
    margin-left: -2px;
    position: relative;
    transition: 0.3s all;
}

.schedule-box a:hover img {
    transform: rotate(45deg);
}

.sched-img-box {
    border-radius: 12px;
    overflow: hidden;
    margin-top: 30px;
}

.sched-img-box img {
    width: 100%;
}

.schedule-box {
    padding-bottom: 36px;
    margin-bottom: 30px;
    border-bottom: 1px solid #DBDBDB;
}

.schedule-box:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.pakaged-price-box {
    border-radius: 12px;
    border: 1px solid #DBDBDB;
    background: #FFF;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.16);
    padding: 30px 16px;
    /* position: -webkit-sticky;
    position: sticky;
    top: 110px; */
    margin-top: 35px;
}

.pakaged-price-box h3 span {
    color: #222;
    font-size: 16px;
    font-weight: 500;
}

.pakaged-price-box h3 {
    margin-bottom: 24px;
}

.left-pakage-detail-wrap {
    padding-right: 40px;
}

form.price-box-form .form-control {
    height: 56px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 6px;
    border: 1px solid #EDEDED;
    background: #FDFDFD;
}

form.price-box-form .form-control::placeholder {
    color: #717171;
}

form.price-box-form .price-box-row {
    margin-bottom: 12px;
}

form.price-box-form .btn.btn-primary {
    width: 100%;
    border-radius: 6px;
    height: 56px;
    font-weight: 600;
}

.btn-whtsapp {
    border-radius: 6px;
    border: 1px solid #379E33;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
}

.btn-whtsapp img {
    margin-right: 10px;
}

.btn-whtsapp span {
    color: #379E33;
    font-size: 16px;
    font-weight: 600;
}

.btn-whtsapp:hover {
    background: #379E33;
    border-color: #379E33;
}

.btn-whtsapp:hover span {
    color: #fff;
}

form.price-box-form .divider {
    margin: 24px 0;
    border-bottom: 1px dashed #DBDBDB;
}

.inclusions-exclusions-section {
    background-color: #F6F6F6;
}


.inclusions-exclusions-section ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
    list-style: none;
}

.inclusions-exclusions-section ul li:before {
    content: "";
    width: 5px;
    height: 5px;
    position: absolute;
    left: 10px;
    top: 9px;
    background: #717171;
    border-radius: 50%;
}

ul.inc-exc-list-box {
    border-radius: 16px;
    border: 1px solid #DBDBDB;
    background: #FFF;
    padding: 24px 16px;
    height: calc(100% - 12px);
    margin-bottom: 12px;
}

ul.inc-exc-list-box h5 {
    color: #222;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
}

ul.inc-exc-list-box li {
    position: relative;
    list-style: none;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    padding-left: 30px;
}

ul.inc-exc-list-box li:before {
    content: "";
    background-image: url(../images/icon-navigation.svg);
    width: 18px;
    height: 18px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    top: 3px;
    background-color: transparent;
    border-radius: 0;
}

ul.inc-exc-list-box li:last-child {
    margin-bottom: 0;
}

.inclusions-exclusions-section h3 {
    line-height: 36px;
    margin: 35px 0 20px;
}

.inclusions-exclusions-section h3:first-child {
    margin-top: 0;
}

.inclusions-exclusions-section ul li:last-child {
    margin-bottom: 0;
}

.inclusions-exclusions-section h6 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin: 30px 0 15px;
}

.inclusions-exclusions-section .table-responsive {
    border-radius: 16px;
    background: #FFF;
    max-width: 735px;
    border: 1px solid #DBDBDB;
    margin: 30px 0 40px;
}

table.table.global-borderes-table {
    margin: 0;
}

table.table.global-borderes-table td,
table.table.global-borderes-table th {
    padding: 16px;
    border-collapse: collapse;
    border: 1px solid #DBDBDB;
}

table.table.global-borderes-table th {
    background-color: #F3F0F0;
    color: #222;
    font-size: 18px;
    font-weight: 600;
}

table.table.global-borderes-table td {
    color: #222;
    font-weight: 400;
}

table.table.global-borderes-table th:first-child,
table.table.global-borderes-table td:first-child {
    border-left: 0;
}

table.table.global-borderes-table th:last-child,
table.table.global-borderes-table td:last-child {
    border-right: 0;
}

table.table.global-borderes-table tr:last-child td {
    border-bottom: none;
}

table.table.global-borderes-table tr:first-child th {
    border-top: none;
}

form.price-box-form .price-box-row:last-child {
    margin-bottom: 0;
}

table.table.global-borderes-table th {
    vertical-align: baseline;
}

form.price-box-form .price-box-row .t-datepicker-day.t-datepicker-days {
    width: 320px;
    top: auto;
}

form.price-box-form .price-box-row .t-arrow-top {
    top: 40px;
}

form.price-box-form .price-box-row .t-datepicker-day.t-datepicker-days .t-table-wrap {
    width: 100%;
    margin: 0 auto;
}

form.price-box-form .t-day,
form.price-box-form .t-next,
form.price-box-form .t-prev,
form.price-box-form .t-table-condensed td,
form.price-box-form .t-table-condensed th {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    padding: 8px !important;
}

form.price-box-form .t-table-condensed {
    width: auto;
    margin: 0 auto;
}

.detail-gallery-section {
    margin-top: 40px;
    z-index: 1;
}

/* body.modal-open .detail-gallery-section  {
    z-index: 9999;
} */
form.price-box-form .price-box-row .t-check-in .t-dates.t-date-check-in,
form.price-box-form .price-box-row .t-check-out .t-dates.t-date-check-out,
form.price-box-form .price-box-row .t-check-in .t-dates.t-date-check-in span,
form.price-box-form .price-box-row .t-check-out .t-dates.t-date-check-out span {
    font-size: 16px;
    font-weight: 400;
}

form.price-box-form .price-box-row .t-dates.t-date-check-in:before,
form.price-box-form .price-box-row .t-dates.t-date-check-out:before {
    font-size: 12px;
    color: #717171;
    text-transform: uppercase;
    font-weight: 400;
    top: -25px;
}

form.price-box-form .price-box-row .t-datepicker .t-check-in:after {
    height: 66px;
    top: -29px;
    left: 132px;
}

form.price-box-form .price-box-row .t-datepicker {
    margin-top: 0;
    border-radius: 6px 6px 0 0;
    border: 1px solid #EDEDED;
    padding: 33px 12px 5px;
    float: none;
    border-bottom: none;
}

form.price-box-form .price-box-row .t-dates {
    height: 25px;
}

form.price-box-form .price-box-row .t-check-out .t-datepicker-day.t-datepicker-days {
    left: -160%;
}

form.price-box-form .price-box-row .t-check-in .t-datepicker-day.t-datepicker-days {
    left: -20px;
}




li.dropdown-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

li.dropdown-list:last-child {
    margin-bottom: 0;
}

li.dropdown-list .button-container {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.dropdown-list-wrap {
    display: none
}

.who-dropdown.is-open ul.dropdown-list-wrap {
    display: block;
    border-radius: 6px;
    border: 1px solid #DBDBDB;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.12);
    padding: 30px 20px;
    position: absolute;
    left: 0;
    top: auto;
    z-index: 9;
    background-color: #fff;
    width: 100%;
}

.who-dropdown {
    position: relative;
}

form.price-box-form .price-box-row .who-input-div .form-control {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-image: url(../images/icon-down-drop.svg);
    background-repeat: no-repeat;
    background-position: right 10px top 22px;
    height: 60px;
}

form.price-box-form .price-box-row .who-input-div label {
    font-size: 12px;
    color: #717171;
    font-weight: 400;
    position: relative;
    top: -8px;
}

form.price-box-form .price-box-row .who-input-div .form-control p {
    font-size: 16px;
    font-weight: 400;
    color: #222;
    position: relative;
    top: -8px;
}

li.dropdown-list .button-container button {
    background: transparent;
}

li.dropdown-list .button-container input {
    width: 32px;
    margin: 0 10px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #222;
}

li.dropdown-list h6 {
    font-size: 16px;
    font-weight: 500;
    color: #222;
    line-height: 22px;
}

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

form.price-box-form .price-box-row .who-input-div .guest-values {
    display: flex;
    align-items: center;
    gap: 10px;
}

form.price-box-form .price-box-row .who-input-div .guest-values p {
    margin: 0;
}

.guest-close {
    text-align: right;
    color: #FF004E;
    font-size: 16px;
    text-decoration: underline;
    font-weight: 500;
    cursor: pointer;
}

#knowmoreModal .modal-dialog {
    max-width: 923px;
}

#knowmoreModal .modal-header {
    /* background: rgba(255, 0, 78, 0.06); */
    padding: 30px 48px;
    align-items: start;
}

#knowmoreModal .modal-content {
    border-radius: 16px;
}

#knowmoreModal .modal-header h2 {
    color: #FF004E;
    font-size: 42px;
    font-weight: 600;
}

#knowmoreModal .modal-header h2 span {
    display: block;
    font-size: 30px;
    font-weight: 600;
    color: #FF004E;
}

#knowmoreModal button.btn-close {
    background-image: url(../images/icon-close.svg);
    width: 42px;
    height: 42px;
    background-size: cover;
    padding: 0;
    opacity: 1;
    right: -5px;
    position: relative;
    top: 12px;
}

.modal-backdrop {
    background: #222;
}

.modal-backdrop.show {
    opacity: 0.7;
}

#knowmoreModal .modal-body {
    padding: 42px 48px;
}

#knowmoreModal .modal-body ul.day-date-list li {
    color: #FF004E;
}

#knowmoreModal .modal-body ul.day-date-list li:after {
    background: #FF004E;
}


ul.price-according-choice li {
    list-style: none;
}

.price-choice-box .choice-heading {
    background: #F6F6F6;
    position: relative;
    display: flex;
    align-items: center;
    padding: 9px 0;
    margin-bottom: 30px;
}

.price-choice-box .choice-heading:before,
.price-choice-box .choice-heading:after {
    content: "";
    background: #f6f6f6;
    width: 48px;
    left: -48px;
    position: absolute;
    height: 100%;
    top: 0;
}

.price-choice-box .choice-heading:after {
    left: auto;
    right: -48px;
}

.price-choice-box .choice-heading h6 {
    color: #FF004E;
    font-weight: 500;
    margin-left: 12px;
    margin-bottom: 0;
}

.price-choice-box h6 {
    color: #222;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.price-choice-box ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 400;
}

.price-choice-box ul {
    margin-top: 12px;
}

.price-choice-box ul li:before {
    content: "";
    width: 5px;
    height: 5px;
    position: absolute;
    left: 10px;
    top: 9px;
    background: #717171;
    border-radius: 50%;
}

.price-choice-box ul.choice-checkboxes li:before {
    display: none;
}

.price-choice-box ul.choice-checkboxes li {
    padding: 0;
}

.price-choice-box ul.choice-checkboxes li label.btn {
    width: 100%;
    background: transparent;
    border-radius: 12px;
    border: 1px solid #DBDBDB;
    padding: 20px 24px;
    position: relative;
    margin-top: 14px;
}

ul.choice-checkboxes li label.btn .select-radio-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

ul.choice-checkboxes li label.btn .select-radio-wrap .left-part {
    display: flex;
    align-items: center;
    text-align: left;
}

label.btn .select-radio-wrap .left-part h6 {
    margin-bottom: 5px;
}

.select-radio-wrap .left-part .img-wrap {
    width: 90px;
    margin-right: 24px;
    min-width: 90px;
}

.select-radio-wrap .left-part .heading-radio p {
    font-weight: 400;
}

label.btn .select-radio-wrap .right-part h3 span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-top: 6px;
}

label.btn .select-radio-wrap .right-part h3 {
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

label.btn .select-radio-wrap .right-part .btn {
    border-radius: 50px;
    font-weight: 600;
    min-width: 103px;
    padding: 5px 20px;
    pointer-events: none;
}

.price-choice-box ul.choice-checkboxes li .btn-check:checked+label.btn {
    border: 1px solid #FF004E;
    background: rgba(255, 0, 78, 0.03);
}

.price-choice-box ul.choice-checkboxes li label.btn:before {
    content: "Selected";
    position: absolute;
    left: -5px;
    top: 5px;
    border-radius: 3px;
    background: #FF004E;
    padding: 4px 6px 4px 26px;
    font-size: 12px;
    font-weight: 600;
    width: 89px;
    text-align: left;
    background-image: url(../images/icon-checkbox.svg);
    background-position: left 6px center;
    background-repeat: no-repeat;
    visibility: hidden;
    opacity: 0;
}

.price-choice-box ul.choice-checkboxes li label.btn:after {
    content: "";
    position: absolute;
    background-image: url(../images/icon-select-after-shape.svg);
    left: -5px;
    top: 28px;
    width: 5px;
    height: 6px;
    visibility: hidden;
    opacity: 0;
}

.price-choice-box ul.choice-checkboxes li .btn-check:checked+label.btn:before,
.price-choice-box ul.choice-checkboxes li .btn-check:checked+label.btn:after {
    opacity: 1;
    visibility: visible;
}

.price-choice-box ul.choice-checkboxes {
    margin-top: 18px;
}

ul.price-according-choice li.price-choice-box {
    margin-top: 50px;
}

ul.price-according-choice li.price-choice-box:first-child {
    margin-top: 45px;
}

#knowmoreModal .modal-body .schedule-box {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

ul.choice-checkboxes li label.btn .select-radio-wrap .right-part {
    margin-left: 70px;
}

.select-radio-wrap .left-part .img-wrap.image {
    width: 142px;
    height: 108px;
    border-radius: 12px;
    overflow: hidden;
    min-width: 142px;
}

.select-radio-wrap .left-part .img-wrap.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-choice-box .choice-heading img {
    position: relative;
}

label.btn .select-radio-wrap .right-part .btn span.remove {
    display: none;
}

label.btn .select-radio-wrap .right-part .btn span {
    text-transform: uppercase;
    margin: 0;
}

.price-choice-box ul.choice-checkboxes li .btn-check:checked+label.btn .select-radio-wrap .right-part .btn span.remove {
    display: block;
}

.price-choice-box ul.choice-checkboxes li .btn-check:checked+label.btn .select-radio-wrap .right-part .btn span.select {
    display: none;
}

.price-choice-box ul.choice-checkboxes li .btn-check:checked+label.btn .select-radio-wrap .right-part .btn {
    background: transparent;
    color: #FF004E;
}

.price-choice-box ul.choice-checkboxes li .btn-check:checked+label.btn .select-radio-wrap .right-part .btn span {
    color: #FF004E;
}






.top-destination-info .adult-drop-value .guest-values {
    /* display: flex; */
    gap: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 8px;
    cursor: pointer;
    height: 44px;
    padding-top: 4px;
}

.top-destination-info .adult-drop-value .guest-values span {
    font-size: 30px;
    font-weight: 700;
    color: #222;
}

.top-destination-info .who-dropdown.is-open ul.dropdown-list-wrap {
    width: 260px;
}

.mostpopular-dropdown {
    position: absolute;
    box-shadow: 0px 2px 10px 0px #0000001f;
    border: 1px solid #0000001a;
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    width: 1042px;
    left: -27px;
    top: 100px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.3s all;

    &.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.mostpopular-dropdown h4 {
    font-size: 18px;
    line-height: 27px;
    font-weight: 700;
    color: #222;
}

ul.most-popular-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0 30px;
}

ul.most-popular-tabs li {
    list-style: none;
}

ul.most-popular-tabs a {
    background: #F6F6F6;
    padding: 4px 16px;
    font-size: 14px;
    line-height: 21px;
    border-radius: 900px;
    color: #717171;
}

ul.most-popular-tabs a:hover {
    background: #222;
    color: #fff;
}

.destination-searchbox {
    border: 1px solid #DBDBDB;
    border-radius: 16px;
    /* height: 407px; */
    overflow: hidden;
    overflow-y: auto;
    padding: 24px 0 0 24px;
    background: #FF004E05;

}

ul.destination-searchbox-list li {
    list-style: none;
    margin-bottom: 21px;
}

ul.destination-searchbox-list li:last-child {
    margin-bottom: 0;
}


ul.destination-searchbox-list li a {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    position: relative;
    padding-right: 110px;
}

ul.destination-searchbox-list li .img-wrap {
    width: 60px;
    height: 60px;
    min-width: 60px;
}

ul.destination-searchbox-list li .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

ul.destination-searchbox-list li .content-slist p {
    color: #000;
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 3px;
}

ul.destination-searchbox-list li .content-slist .content-bslist {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    line-height: 18px;
    color: #717171;
    width: 100%;
}

ul.destination-searchbox-list li .content-slist .content-bslist span:last-child {
    color: red;
    position: absolute;
    right: 0;
}

.destination-searchbox h5 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

ul.destination-searchbox-list {
    height: 345px;
    overflow: hidden;
    overflow-y: scroll;
    padding-right: 24px;
    padding-bottom: 24px;
}

.destination-searchbox-list::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #F6F6F6;
    background-color: #F6F6F6;
    border-radius: 900px;
}

.destination-searchbox-list::-webkit-scrollbar {
    width: 6px;
    background-color: #F6F6F6;
    border-radius: 900px;
}

.destination-searchbox-list::-webkit-scrollbar-thumb {
    background-color: #222222;
    border-radius: 900px;
}






/* new styles */
.add-city-btn {
    padding: 12px 24px 12px 24px !important;
    border-radius: 12px !important;
    width: 155px !important;
    height: 48px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.t-end.t-today,
.t-end.t-today .t-hover-day-content,
.t-start.t-today,
.t-start.t-today .t-hover-day-content,
.t-check-in .t-end,
.t-check-out .t-start,
.t-check-out tr~.t-end {
    background: var(--primary) !important;
}

.gap-6px {
    gap: 6px;
}

.flight-dropdowns {
    width: 240px !important;
}

.custom-radio-wrapper {
    user-select: none;

    input[type="radio"] {
        width: 0;
        height: 0;
        opacity: 0;
        position: absolute;

        &:checked {
            &~.custom-radio-outer {
                img.radio-outline {
                    display: none;
                }

                img.radio-image {
                    display: block;
                }
            }

            &~.radio-text {
                font-weight: 600 !important;
                color: #FF004E !important;
            }
        }
    }

    .custom-radio-outer {
        width: 24px;
        height: 24px;
        position: relative;
        position: relative;

        img {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);

            &.radio-image {
                display: none;
            }
        }
    }

    .radio-text {
        user-select: none;
        font-size: 16px;
        line-height: 24px;
        font-weight: 500;
        color: #222;
        margin: 0;
    }
}

#pills-flights,
#pills-hotels,
#pills-holiday {
    .select-value-span {
        font-size: 30px;
        font-weight: 700;
        color: #222;
        cursor: pointer;
    }

    .top-destination-info .who-dropdown.is-open ul.dropdown-list-wrap {
        width: 322px;
    }
}

#pills-holiday {
    .top-destination-info {
        margin: 0;
    }

    .col {
        &:first-child {
            width: 33%;
        }

        &:nth-child(2) {
            width: 35%;
        }

        &:nth-child(3) {
            width: 23%;
        }

        &:last-child {
            width: 8%;
        }
    }
}

#pills-flights {
    .flights-mode-selection {
        gap: 20px;
    }

    .flights-mode-tab-wrapper {
        .flights-mode-tab {
            display: none;

            &.active {
                display: block;
            }
        }

        .select-travel-class {
            padding-top: 24px;
            flex-direction: column;
            align-items: flex-start;
            border-top: 1px solid #DBDBDB;
            gap: 12px;

            .select-travel-class-wrapper {
                display: flex;
                gap: 12px;
                flex-flow: row wrap;

                input[type=radio] {
                    width: 0;
                    height: 0;
                    position: absolute;
                    opacity: 0;
                    top: 0;
                    left: 0;

                    &:checked+.select-travel-class-option {
                        background: #ff004e;
                        color: #fff !important;
                    }
                }

                .select-travel-class-option {
                    height: 35px;
                    padding: 0 12px;
                    font-weight: 400;
                    font-size: 14px;
                    position: relative;
                    line-height: 35px;
                    margin: 0 !important;
                    background: #F6F6F6;
                    border-radius: 100px;
                    color: #222222;
                    transition: all 0.3s;
                    cursor: pointer;
                }
            }
        }

        .t-check-in,
        .t-check-out,
        .t-datepicker {
            float: none;
            width: 100%;
        }

        .t-datepicker .t-check-in:after {
            right: -24px;
        }

        .t-datepicker {
            display: grid;
            grid-template-columns: 1fr 1fr;
            margin-top: 35px;
            gap: 48px;
        }

        .t-check-in .t-date-info-title,
        .t-check-out .t-date-info-title {
            top: 0;
            left: 0;
        }

        .t-dates.t-date-check-in:before {
            content: "Departure";
        }

        .t-dates.t-date-check-out:before {
            content: "Return";
        }

        /* .t-check-in .t-dates.t-date-check-in span.t-year-check-in, .t-check-out .t-dates.t-date-check-out span.t-year-check-out {
      display: inline;
    } */
        .t-dates.t-date-check-in:before,
        .t-dates.t-date-check-out:before {
            top: -38px;
            font-size: 16px;
            line-height: 24px;
        }

        .top-destination-info label {
            font-size: 16px;
            line-height: 24px;
            margin-bottom: 6px !important;
        }

        .one-way-tab .t-check-out {
            pointer-events: none;
        }

        .top-destination-info .adult-drop-value .guest-values span,
        .t-check-in .t-dates.t-date-check-in,
        .t-check-out .t-dates.t-date-check-out,
        .t-check-in .t-dates.t-date-check-in span,
        .t-check-out .t-dates.t-date-check-out span,
        .top-destination-info span.select2-selection__placeholder,
        .top-destination-info .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
            font-size: 24px;
        }

        .round-trip-tab,
        .one-way-tab {
            .row {
                margin: 0;
                display: flex;
            }

            .col {
                padding: 0 12px 0 24px;

                &:first-child,
                &:nth-child(2) {
                    width: 16%;
                }

                &:nth-child(3) {
                    width: 40%;

                    &::after {
                        display: block;
                    }
                }

                &:nth-child(4) {
                    width: 20%;
                }

                &:last-child {
                    width: 8%;
                    flex-grow: 1;
                    padding: 0;

                    &::after {
                        display: none;
                    }
                }
            }
        }

        .multi-city-tab {
            .t-datepicker {
                grid-template-columns: 1fr;

                .t-check-out {
                    display: none;
                }
            }

            .row {
                margin: 0;
                display: flex;
            }

            .top-destination-info:not(:last-child) {
                margin-bottom: 24px;

                .col {
                    padding: 0 12px 0 24px;

                    &:first-child,
                    &:nth-child(2) {
                        width: 24%;
                    }

                    &:nth-child(3) {
                        width: 24%;
                    }

                    &:nth-child(4) {
                        width: 19%;
                    }

                    &:last-child {
                        width: 8%;
                        padding: 0;

                        &::after {
                            display: none;
                        }
                    }
                }
            }

            .top-destination-info:last-child {
                .col {
                    padding: 0 12px 0 24px;

                    &:first-child,
                    &:nth-child(2) {
                        width: 24%;
                    }

                    &:nth-child(3) {
                        width: 24%;
                    }

                    &:nth-child(4) {
                        width: 27%;
                        flex-grow: 1;
                        bottom: unset;

                        button {
                            display: inline-flex;
                            gap: 12px;
                        }
                    }
                }
            }
        }
    }
}



.section-heading.max-width-100 {
    max-width: 100%;
}

header.inner-header {
    position: relative;
    background: #fff;
}

header.inner-header .navbar li.nav-item .nav-link {
    color: #222;
}

header.inner-header .dropdown-toggle::before {
    filter: none;
}

.diy-page-banner {
    background: #f9f9f9;
    padding: 60px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.diy-page-banner h1 {
    font-size: 24px;
    line-height: 34px;
    color: #222222;
    max-width: 650px;
    text-align: center;
    margin: 0 auto;
}

.diy-page-banner~.search-box-section {
    margin-top: 0;
}

.diy-page-banner~.search-box-section .search-box-wrap {
    margin-bottom: 60px;
}


.mostpopular-dropdown .col-md-6:last-child .destination-searchbox .content-bslist span {
    position: relative;
    color: #717171;
    width: 100%;
}

.mostpopular-dropdown .col-md-6:last-child ul.destination-searchbox-list li a {
    padding-right: 0;
}

#pills-holiday .top-destination-info label {
    position: relative;
}

#pills-one-way .t-dates.t-date-check-in:after,
#pills-round-trip .t-dates.t-date-check-in:after,
#pills-multi-city .t-dates.t-date-check-in:after,
#pills-hotels .t-dates.t-date-check-in:after,
#pills-search .t-dates.t-date-check-in:after,
#pills-one-way .t-dates.t-date-check-out:after,
#pills-round-trip .t-dates.t-date-check-out:after,
#pills-multi-city .t-dates.t-date-check-out:after,
#pills-hotels .t-dates.t-date-check-out:after,
#pills-search .t-dates.t-date-check-out:after,
.one-way-tab .t-dates.t-date-check-out:after,
.one-way-tab .t-dates.t-date-check-in:after,
.round-trip-tab .t-dates.t-date-check-out:after,
.round-trip-tab .t-dates.t-date-check-in:after,
.multi-city-tab .t-dates.t-date-check-out:after,
.multi-city-tab .t-dates.t-date-check-in:after,
#pills-holiday .top-destination-info .col:nth-child(2) .form-label:after {
    content: "";
    background: url(../images/down.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 13px;
    height: 8px;
    display: block;
    position: absolute;
    top: -36px;
    right: 12px;
}

.who-input-div .adult-drop-value .form-label::after {
    content: "";
    background: url(../images/down.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 13px;
    height: 8px;
    position: absolute;
    top: 11px;
    margin-left: 12px;
}

.one-way-tab .t-dates.t-date-check-out:after,
.one-way-tab .t-dates.t-date-check-in:after,
.round-trip-tab .t-dates.t-date-check-out:after,
.round-trip-tab .t-dates.t-date-check-in:after,
.multi-city-tab .t-dates.t-date-check-out:after,
.multi-city-tab .t-dates.t-date-check-in:after {
    right: 55px;
    top: -30px;
}

.one-way-tab .t-dates.t-date-check-in:after,
.round-trip-tab .t-dates.t-date-check-in:after,
.multi-city-tab .t-dates.t-date-check-in:after {
    right: 40px;
}

#pills-holiday .top-destination-info .col:nth-child(2) .form-label:after {
    position: relative;
    display: inline-block;
    left: 12px;
    top: -1px;
}




/*DIY Sidebar*/
:has(.diy-sidebar.show) body {
    overflow: hidden;
}

.diy-sidebar.offcanvas {
    z-index: 9999;
    padding: 45px 48px;
    overflow-y: auto;
}

.diy-sidebar.offcanvas.offcanvas-end {
    width: 1080px;
}

.gallery-wrp {
    margin-bottom: 30px;
}

.gallery-wrp h3 {
    font-size: 26px;
    text-align: center;
    line-height: 36px;
    font-style: italic;
    margin-bottom: 30px;
}

.gallery-photo {
    position: relative;
}

.gallery-img.full-img {
    height: 350px;
    border-radius: 4px 0 0 4px;
}

.gallery-img.full-img img {
    border-radius: 4px 0 0 4px;
}


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

.gallery-img.half-img {
    height: 180px;
    line-height: 0;
    padding-left: 10px;
    padding-bottom: 10px;
}

.gallery-photo [class*="col-"] .row [class*="col-"]:nth-child(2) .half-img,
.gallery-photo [class*="col-"] .row [class*="col-"]:nth-child(2) .half-img img {
    border-radius: 0 4px 0 0;
}

.gallery-photo [class*="col-"] .row [class*="col-"]:nth-child(4) .half-img,
.gallery-photo [class*="col-"] .row [class*="col-"]:nth-child(4) .half-img img {
    border-radius: 0 0 4px 0;
}

.gallery-photo .see-all-btn {
    position: absolute;
    bottom: 21px;
    right: 11px;
}

.gallery-photo .see-all-btn button {
    background: #fff;
    color: #222222;
    border-radius: 4px;
    border: 1px solid #222222;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    text-align: center;
    padding: 6px 16px;
    display: inline-block;
}

.diy-step-wizard {
    position: relative;
    width: 100%;
}

.progress-nav {
    margin-bottom: 42px;
}

.progress-nav ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
}

.progress-nav ul li {
    margin-right: 12px;
    margin-bottom: 30px;
}

.progress-nav ul li .chip-circle {
    border: 1px solid #DBDBDB;
    background: #fff;
    border-radius: 900px;
    margin-bottom: 30px;
    width: 133px;
    padding: 9px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.progress-nav ul li p {
    color: #DBDBDB;
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
    display: block;
    text-align: center;
}

.progress-nav ul li p img {
    cursor: pointer;
    margin-left: 6px;
    position: relative;
    top: -1px;
}

.progress-nav ul li span {
    width: 145px;
    height: 6px;
    border-radius: 900px;
    background: #e9e9e9;
    display: block;
}

.progress-nav ul li.current span {
    background: #ffe5ed;
}

.progress-nav ul li.active .chip-circle {
    border-color: #FF004E;
    background: #ffe5ed;
}

.progress-nav ul li.active .chip-circle p {
    color: #FF004E;
}

.progress-nav ul li.active span {
    background: #FF004E;
}

.progress-nav ul li.fill span {
    background: #FF004E;
}

.progress-nav ul li.fill .chip-circle {
    border-color: #FF004E;
    background: #FF004E;
    color: #fff;
}

.progress-nav ul li.fill .chip-circle p {
    color: #fff;
}

.top-destination-info .destination {
    display: block;
    font-size: 30px;
    font-weight: 700 !important;
    color: #222 !important;
    cursor: pointer;
}

/* DIY Page css start here */
.map-box-section {
    padding: 40px 0px 80px 0px;
}

.max-width-100 {
    max-width: 100%;
}

.map-image img {
    max-width: 90%;
    width: 100%;
    margin: 50px auto 0px auto;
}

.btn-rounded {
    border-radius: 100%;
    height: 70px;
    width: 70px;
}

.input-title {
    font-size: 18px;
    font-weight: 500;
    color: #717171;
}

.search-input {
    border: none;
    font-size: 30px;
    font-weight: 700;
    color: #717171;
    width: 100%;
}

.search-input-section {
    max-width: calc(100% - 100px);
    width: 100%;
}

.destination-search-list {
    padding: 30px 0px 0px;
    display: none;
}

.search-item {
    max-width: 65%;
    width: 100%;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
    border: 1px solid transparent;
}

.search-item .item-img img {
    height: 72px;
    width: 72px;
    border-radius: 12px;
    margin-right: 16px;
}

.item-content {
    max-width: calc(100% - 115px);
    width: 100%;
}

.item-content h4 {
    color: #222222;
    font-size: 16px;
    font-weight: 600;
}

.item-content p {
    color: #717171;
    font-size: 14px;
    font-weight: 400;
}

.search-item.active-item,
.search-item:hover {
    background: rgba(255, 0, 78, 0.10);
    border-radius: 16px;
    border: 1px solid #FF004E;
}

.search-box-wrap.diy-tab-active {
    margin-bottom: 60px;
}

.gallery-wrp h3 {
    font-size: 24px;
    max-width: 600px;
    margin: 0px auto 35px;
}

.button-list {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}

.button-list .btn {
    width: 220px;
    font-weight: 600;
    border: 1px solid #ff0039;
    height: 55px;
}

.btn-outline {
    font-weight: 600;
    border: 1px solid #ff0039;
    color: #ff0039;
}

.btn-outline:hover {
    color: #fff;
    background-color: #ff0039;
}

.tab-details .section-heading {
    margin-bottom: 40px;
}

/* custom radio button */
.custom-radio-button {
    margin: 15px 15px 15px 0px;
}

.custom-radio-button [type="radio"]:checked,
.custom-radio-button [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.custom-radio-button [type="radio"]:checked+label,
.custom-radio-button [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
    width: 142px;
    height: 72px;
    display: flex;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    color: #222222;
    border: 1px solid #DBDBDB;
    border-radius: 12px;
    align-items: center;
    padding: 0px;
}

.custom-radio-button [type="radio"]:checked+label:before,
.custom-radio-button [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 142px;
    height: 72px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
    display: none;
}

.custom-radio-button [type="radio"]:checked+label:after,
.custom-radio-button [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #F87DA9;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    display: none;
}

.custom-radio-button [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.custom-radio-button [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.custom-radio-button [type="radio"]:checked+label {
    background: #FF004E;
    color: #fff;
}

.month-list {
    display: flex;
    flex-wrap: wrap;
}

.duration-list .custom-radio-button [type="radio"]:checked+label,
.duration-list .custom-radio-button [type="radio"]:not(:checked)+label {
    width: 220px;
}

.travellers-count ul {
    border-radius: 6px;
    border: 1px solid #DBDBDB;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.12);
    padding: 30px 20px;
    position: relative;
    left: 0;
    top: auto;
    z-index: 9;
    background-color: #fff;
    max-width: 350px;
    width: 100%;
}

.form-group {
    margin-bottom: 30px;
}

.form-group .form-control {
    border-radius: 6px;
    border: 1px solid #DBDBDB;
    background: #F9FCFE;
    height: 60px;
    font-size: 14px;
    padding: 12px 15px;
    color: #222;
    background: #fff;
    max-width: 650px;
    width: 100%;
}

.form-group .form-control::placeholder {
    color: #e2e2e2;
}

.progress-nav ul li p img.tabs-close-icon {
    display: none;
    margin-left: 0;
}

.progress-nav ul li.active.fill p img.tabs-close-icon {
    display: inline-block;
}

.progress-nav ul li:first-child.active.fill .chip-circle {
    background: #ffe5ed;
}

.progress-nav ul li:first-child.active.fill .chip-circle p {
    color: #FF004E;
}


#offcanvasWithBothOptions button.btn-close img {
    visibility: hidden;
}

#offcanvasWithBothOptions button.btn-close {
    position: absolute;
    right: 30px;
    top: 30px;
}

.gallery-wrp.detail-gallery-section .gallery-img-list {
    padding-top: 0;
    padding-bottom: 0;
}




#datepicker .ui-datepicker-inline {
    width: 100%;
    border: none;
    max-width: 521px;
}

#datepicker .ui-datepicker-inline a.ui-state-default {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
    background: transparent;
    border-color: #DBDBDB;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: #222;
}

.ui-datepicker table thead th span {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #222;
}

.ui-datepicker .ui-datepicker-header {
    padding: 15px 0;
    background: #fff;
    color: #222;
    margin-bottom: 0;
    border-color: transparent;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-title span {
    color: #222;
    font-size: 18px;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
    top: 14px;
    background-image: url(../images/cal-right.svg);
    background-position: center;
    background-size: contain;
    /* filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(78%) hue-rotate(58deg) brightness(117%) contrast(100%);transform: rotate(-90deg); */
    width: 24px;
    height: 24px;
}

.ui-datepicker .ui-datepicker-prev span {
    transform: rotate(180deg);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    top: 15px;
}

table.ui-datepicker-calendar {
    border-spacing: 0 16px;
    border-collapse: separate;
}

#datepicker .ui-datepicker-inline a.ui-state-default.ui-state-active {
    background: #FF004E;
    color: #fff;
    border-color: #FF004E;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    background: transparent !important;
    border-color: transparent !important;
    right: 2px !important;
    top: 15px !important;
}

.ui-datepicker .ui-datepicker-prev {
    left: 2px !important;
}


.mostpopular input.destination-input {
    font-size: 30px;
    font-weight: 700;
    color: #222;
    cursor: pointer;
    width: 100%;
    border: none;
    padding: 0;
}

.mostpopular input.destination-input::placeholder {
    color: #222;
}

.mostpopular input.destination-input:focus::placeholder {
    font-size: 0;
}



.map-bg-wrap {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    min-height: 1070px;
    background-color: #F6F6F6;
}

/* .map-bg-wrap:before {
    content: "";
    background: #f9f9f9;
    position: absolute;
    width: 100%;height: 100%;left: 0;top: 0;opacity: 0.7;
} */
.map-bg-wrap .diy-page-banner,
.map-bg-wrap .search-box-section {
    background: transparent;
}

.progress-nav ul {
    gap: 16px;
    justify-content: space-between;
}

.progress-nav ul li {
    margin: 0;
}



.wizard-content .tab-details h2 {
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 6px;
}

.wizard-content .tab-details h2~p {
    font-size: 14px;
}

.wizard-content .tab-details .section-heading {
    margin-bottom: 25px;
}

.month-list {
    gap: 30px 24px;
}

.month-list .custom-radio-button {
    margin: 0;
}

.tabs-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
}

.diy-sidebar.offcanvas .diy-step-wizard .wizard-content {
    position: relative;
    height: 100%;
    padding-bottom: 105px;
    min-height: calc(100vh - 320px);
}

.diy-sidebar.offcanvas .diy-step-wizard .tab-details {
    height: 100%;
}

.tours-form input {
    height: 54px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    border-color: #e2e2e2 !important;
    background: #FDFDFD !important;
}

.tours-form input::placeholder {
    color: #717171 !important;
}

.tours-form .form-group {
    margin-bottom: 16px !important;
}

body.diycanvas-open header.inner-header {
    z-index: 999;
}

.price-choice-box h6 span {
    padding: 2px 12px;
    font-size: 14px;
    background: #DBDBDB;
    border-radius: 6px;
    font-weight: 500;
    color: #222222;
    margin-left: 5px;
}


.wizard-content #TAB2-Content .tab-details .section-heading {
    margin-bottom: 2px;
}

.ui-datepicker th {
    padding-top: 0;
    padding-bottom: 0;
}

#offcanvasSubmitListing .offcanvas-header,
#offcanvasSubmitListing .offcanvas-body {
    padding: 0;
}

.tour-package-clisting-box {
    border: 1px solid #0000001A;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s all;
}

.tour-package-clisting-box:hover,
.create-own-itinerary-box:hover {
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.08) !important;
}

.tour-package-clisting-box .tour-package-dcontent {
    padding: 10px;
}

.tour-package-dcontent li {
    list-style: none;
    font-size: 14px;
    line-height: 21px;
    font-weight: 300;
    color: #222;
}

.tour-package-dcontent li b {
    font-size: 13px;
    font-weight: 600;
    color: #222;
    display: block;
}

ul.claccomodation-listing {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 10px;
}

ul.clactivities-listing li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 3px;
}

ul.clactivities-listing li:first-child {
    padding-left: 0;
}

ul.clactivities-listing li:before {
    content: "";
    background-image: url(/assets/images/icon-tick.svg);
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    background-size: cover;
    top: 2px;
}

ul.clactivities-listing li:first-child:before {
    display: none;
}

ul.clactivities-listing li:first-child:before {
    display: none;
}

.tour-package-cviewmore {
    text-decoration: underline;
    color: #FF004E;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.tour-package-dprice {
    border-top: 1px solid #0000001A;
    margin-top: 18px;
    padding-top: 12px;
}

.tour-package-dprice span {
    font-size: 12px;
    font-weight: 600;
    color: #222;
}

.tour-package-dprice h3 {
    line-height: 36px;
    color: #FF004E;
    font-weight: 700;
}

.tour-package-cviewmore:hover {
    color: #222;
    text-decoration: underline !important;
}

.create-own-itinerary-box {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    text-align: center;
    border: 1px dashed #FF004E;
    border-radius: 12px;
    color: #FF004E;
    transition: 0.3s all;
}

.create-own-itinerary-box a {
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    height: 100%;
    display: flex;
}

.create-own-itinerary-box h5 {
    color: #FF004E;
    font-size: 18px;
    line-height: 27px;
    font-weight: 700;
    margin-top: 10px;
}

#offcanvasSubmitListing button.btn-close {
    position: absolute;
    right: 30px;
    top: 30px;
}

#offcanvasSubmitListing button.btn-close img {
    visibility: hidden;
}


.inner-tour-section.contact-banner:before {
    background: transparent;
}

.love-to-here-from-you-section .section-heading p {
    max-width: 655px;
    margin: 0 auto;
}

.contact-main-form-wrap {
    border: 1px solid #DBDBDB;
    box-shadow: 0px 2px 10px 0px #0000001F;
    padding: 36px 60px;
    border-radius: 16px;
    max-width: 735px;
    margin: 40px auto 0;
    text-align: center;
}

.contact-main-form-wrap h6 {
    text-align: center;
    font-weight: 600;
    color: #222;
    max-width: 437px;
    margin: 0 auto 30px;
}

.contact-main-form-wrap .form-control {
    background: #fdfdfd;
    border-color: #e2e2e2;
    height: 56px;
    margin-bottom: 24px;
    padding: 12px 24px;
}

.contact-main-form-wrap textarea.form-control {
    height: 136px;
}

.contact-main-form-wrap button.btn.btn-primary {
    width: 348px;
    height: 56px;
    margin: 0 auto;
    border-radius: 6px;
}

.contact-main-form-wrap .form-control::placeholder {
    color: #E2E2E2;
}

.form-bottom-para p {
    color: #222;
    max-width: 835px;
    margin: 0 auto;
    text-align: center;
}

.form-bottom-para {
    margin-top: 60px;
}

.about-info-content {
    max-width: 644px;
    margin-left: auto;
}

.about-info-content p {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #222;
}

.abput-info-img {
    position: relative;
}

.abput-info-img:before,
.abput-info-img:after {
    content: "";
    width: 200px;
    height: 200px;
    background: rgb(255 0 78 / 20%);
    position: absolute;
    left: -20px;
    top: -20px;
    z-index: -1;
}

.abput-info-img:after {
    left: auto;
    right: -20px;
    top: auto;
    bottom: -20px;
}

/* .iti.iti--allow-dropdown.iti--separate-dial-code {
    margin-bottom: 10px;
    width: 100%;
}
.iti--separate-dial-code .iti__selected-flag {
    background: transparent !important;
    padding: 10px 20px;
}
.iti--separate-dial-code .iti__selected-flag:after {
    content: "";
    background: #E2E2E2;
    position: absolute;
    right: 7px;
    top: 12px;
    width: 1px;
    height: 30px;
}
.iti__selected-dial-code {
    font-weight: 500;
    color: #222;
} */

.contact-main-form-wrap .input-group input.form-control {
    margin-bottom: 0;
    border-left: none;
}

.contact-main-form-wrap .input-group {
    margin-bottom: 24px;
}

.contact-main-form-wrap .input-group span.input-group-text {
    background: #FDFDFD;
    font-weight: 500;
    border-right: none;
    position: relative;
    padding: 10px 15px;
}

.contact-main-form-wrap .input-group span.input-group-text:after {
    content: "";
    background: #E2E2E2;
    top: 12px;
    width: 2px;
    position: absolute;
    height: 30px;
    right: 0;
}

.right-filter-box.recent-changes-in-package {
    margin-top: 36px;
    position: relative;
    top: 0;
    padding: 0;
    overflow: hidden;
}

.right-filter-box.recent-changes-in-package .accordion-body {
    padding: 0 16px !important;
}

.right-filter-box.recent-changes-in-package h4:after {
    width: 100%;
    left: 0;
}

.right-filter-box.recent-changes-in-package h4 {
    padding: 20px 18px;
}

.right-filter-box.recent-changes-in-package .accordion-header {
    padding-left: 16px;
    padding-right: 16px;
}

.right-filter-box.recent-changes-in-package .accordion-header button {
    font-weight: 600;
}

.right-filter-box.recent-changes-in-package .accordion-item~.btn.btn-primary {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-bottom: 30px;
    margin-top: 15px;
    height: 56px;
    border-radius: 6px;
}

.right-filter-box.recent-changes-in-package .accordion-body li.price-choice-box {
    margin-top: 0;
    padding-bottom: 8px;
}

.right-filter-box.recent-changes-in-package .accordion-body li.price-choice-box .choice-heading {
    margin-bottom: 16px;
}

.right-filter-box.recent-changes-in-package .accordion-body li.price-choice-box ul li:before {
    display: none;
}

.right-filter-box.recent-changes-in-package .accordion-body li.price-choice-box ul li {
    padding-left: 0;
}

.right-filter-box.recent-changes-in-package .accordion-body li.price-choice-box ul li span {
    display: block;
    margin-bottom: 6px;
    color: #222;
}

.right-filter-box.recent-changes-in-package .accordion-body li.price-choice-box ul li span b {
    font-weight: 600;
    color: #222;
}

.right-filter-box.recent-changes-in-package .accordion-body li.price-choice-box ul li span span {
    display: inline-block;
    background: #DBDBDB;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 20px;
    position: relative;
    top: -1px;
    margin-left: 6px;
    width: 76px;
    text-align: center;
    margin-bottom: 0;
}

#search-tab.nav-pills .nav-link:before {
    content: "";
    position: absolute;
    right: -10px;
    width: 1px;
    height: 15px;
    background: #00000029;
    top: 6px;
}

#search-tab.nav-pills .nav-item:last-child .nav-link:before {
    display: none;
}

.t-end.t-today,
.t-end.t-today .t-hover-day-content,
.t-start.t-today,
.t-start.t-today .t-hover-day-content,
.t-check-in .t-end,
.t-check-out .t-start,
.t-check-out tr~.t-end {
    background: #ecebeb !important;
    color: #222 !important;
}

td.t-day {
    color: #222;
}

.t-end,
.t-end-limit,
.t-start {
    color: #222 !important;
    background: #ecebeb !important;
}



.right-filter-box.recent-changes-in-package .accordion-body li.price-choice-box ul li {
    padding-right: 65px;
}

.remove-plus-price {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
}

.remove-plus-price span.price {
    margin-top: 0;
    margin-bottom: 0 !important;
    color: #717171 !important;
    font-size: 14px;
}

.price-choice-box ul li p {
    font-size: 15px;
    font-weight: 400;
    padding-right: 20px;
}

.mobile-fixed-btm-price {
    display: none;
}

.mobile-fixed-btm-price {
    position: fixed;
    bottom: 0;
    text-align: center;
    width: 100%;
    left: 0;
    background: #FF004E;
    padding: 10px;
    color: #fff;
    z-index: 99;
}

.mobile-fixed-btm-price h3,
.mobile-fixed-btm-price h3 span {
    color: #fff;
}

.mobile-fixed-btm-price h3 {
    font-size: 24px;
    line-height: 32px;
}

.mobile-fixed-btm-price h3 span {
    font-size: 15px;
}