@import url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');

:root {
    --greycolor01: #151515;
}

/*scroll style start*/
::-webkit-scrollbar {
    height: 6px;
    width: 6px;
}

::-webkit-scrollbar-track {
    box-shadow: none;
    background: var(--white);
}

::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: none;
    height: 2px;
}

/*scroll style end*/

/* font-family: 'Mukta', sans-serif; font-family: 'Philosopher', sans-serif; */

body {
    font-family: 'Mukta', sans-serif;
    color: var(--theme-blue);
}

.btn:focus,
.btn:active {
    outline: none !important;
    box-shadow: none !important;
}

/*general classess start*/
.no-padding {
    padding: 0;
}

.no-margin {
    margin: 0;
}

.section_box {
    padding: 40px;
    /* min-height: calc(100vh - 400px); */
}

a {
    text-decoration: none;
}

p {
    color: var(--font-light-grey);
    font-size: var(--btn-font-size);
    padding: 10px 0;
    margin: 0;
    font-weight: 500;
}

/*general classess end*/

/*to top start*/
.scroll_top {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    z-index: 9999;
    padding: 10px;
    text-align: center;
    background: var(--theme-orange);
    font-weight: bold;
    color: #444;
    text-decoration: none;
    position: fixed;
    bottom: 30px;
    right: 40px;
    display: none;
    align-items: center;
    justify-content: center;
}

header .navbar-toggler:focus {
    box-shadow: none;
}

.scrollToTop:hover {
    text-decoration: none;
}

.scroll_top a {
    filter: brightness(0) invert(1);
}

/*to top end*/

/*general button style start*/
.button_ui a,
.button_ui .btn-voucher {
    display: flex;
    color: var(--white);
    font-size: var(--btn-font-size);
    font-weight: normal;
    text-transform: capitalize;
    text-decoration: none;
    padding: 10px 26px;
    border-radius: var(--border-radius);
    transition: 0.6s all;
    position: relative;
    overflow: hidden;
    align-items: center;
}

.button_ui a img,
.button_ui .btn-voucher img {
    margin: 0 0 0 16px;
}

.button_ui a:hover,
.button_ui .btn-voucher:hover {
    color: var(--white);
}

.button_ui a::before,
.button_ui .btn-voucher::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    transition: 0.6s all;
}

.button_ui a:hover::before,
.button_ui .btn-voucher:hover::before {
    -webkit-animation: shine 0.75s;
    animation: shine 0.75s;
    transition: 0.6s all;
}

.btn-primary {
    border: none;
}

.btn-primary:focus {
    box-shadow: none;
    outline: none;
}

/*general button style end*/

/*general tab design start*/
.nav-pills .nav-link {
    color: var(--font-light-grey);
    font-size: 20px;
    font-weight: normal;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    padding: 0;
    margin: 0 30px 0 0;
}

.nav-pills .nav-link.active {
    background: none;
    color: var(--black);
    border-bottom-color: var(--hotel-main-theme);
}

/*general tab design end*/

/*general input style start*/
.select2-container--default .select2-selection--single {
    height: auto;
    padding-top: 5px;
    padding-bottom: 5px;
    text-transform: capitalize;
    border-radius: 8px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    transform: translateY(-50%);
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus-visible {
    box-shadow: none;
    outline: none;
}

select.filled-select+.select2-container .select2-selection--single .select2-selection__rendered {
    color: var(--white);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    margin-top: 2px;
}

select.filled-select+.select2-container .select2-selection--single .select2-selection__arrow b {
    border-color: var(--white) transparent transparent transparent;
}

select.filled-select+.select2-container.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent var(--white) transparent;
}

input[type='text']:focus,
input[type='email']:focus,
input[type='password']:focus,
input[type='date']:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
}

.form-check-input:focus {
    outline: none;
    box-shadow: none;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

.form-control {
    border-radius: 8px;
}

#productsbycategorySection .select2-container {
    z-index: 99 !important;
}

.select2-container {
    z-index: 99;
    /* z-index: 9999; */
}

.voucher_options .select2-container {
    z-index: inherit;
    width: 100% !important;
}

/*general input style end*/

/*general breadcrumbs style start*/
.page_breadcrumds_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 30px 0;
}

.page_breadcrumds ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}

.page_breadcrumds li {
    list-style: none;
    text-transform: capitalize;
    color: var(--font-dark-grey);
    font-size: var(--smaller-fonts);
}

.page_breadcrumds ul em {
    font-style: normal;
}

.page_breadcrumds li a {
    text-decoration: none;
}

/*general breadcrumbs style end*/

/*general back arrow to redirect start */
.back_redirect {
    min-width: 25px;
    min-height: 25px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--hotel-button-colors);
}

.back_redirectnew a {
    padding: 8px 26px !important;
    column-gap: 10px;
}

/*general back arrow to redirect end */

/*header style start*/
header {
    /* position: absolute; */
    position: relative;
    width: 100%;
    transition: 0.6s all;
    background: linear-gradient(180deg, #0d1121 13.03%, rgba(13, 17, 33, 0) 100%);
    z-index: 999;
    -webkit-box-shadow: 0px 6px 15px -6px rgba(0, 0, 0, 0.37);
    -moz-box-shadow: 0px 6px 15px -6px rgba(0, 0, 0, 0.37);
    box-shadow: 0px 6px 15px -6px rgba(0, 0, 0, 0.37);
}

header .container-fluid {
    padding: 0 40px;
}

header .main_header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .navbar-nav .nav-link,
header .navbar-expand-lg .navbar-nav .nav-link {
    margin: 0 0 0 30px;
    /*padding: 10px 30px;*/
    align-items: center;
    transition: all 0.3s ease-in-out;
}

header .navbar-nav .nav-link img,
header .navbar-expand-lg .navbar-nav .nav-link img {
    transition: all 0.3s ease-in-out;
}

#navbarSupportedContent1 .nav-link:focus,
#navbarSupportedContent1 .nav-link:hover {
    color: var(--white);
}

/* header .main_header #navbarSupportedContent1.navbar-collapse { background: #fff; } */
/* header .navbar-nav .nav-link { font-size:20px; font-weight:normal; text-transform: capitalize; color: var(--white); position: relative; transition: 0.6s all; }
header .navbar-nav .nav-link:hover { color:var(--theme-orange); transition: 0.6s all; }
header .navbar-nav .nav-link:before { content: ''; position:absolute; width:60%; height: 2px; border-radius: 100px; background: var(--theme-orange); bottom: 0; left: 50%; transform: translateX(-50%) scale(0); transition: 0.6s all; }
header .navbar-nav .nav-link:hover:before { transform: translateX(-50%) scale(1); transition: 0.6s all; }
header .navbar-expand-lg .navbar-nav .nav-link { padding-right: 15px; padding-left: 15px; } */
header.navbar-fixed {
    /* top: -1px; */
    /* z-index: 99999; */
    z-index: 999;
    position: fixed;
    width: 100%;
    transition: 0.6s all ease-in-out;
}

/* header.navbar-fixed {
	transition: 0.6s all;
} */

header.navbar-fixed .navbar-brand img {
    width: 170px;
    transition: 0.6s all ease-in-out;
}

header.navbar-fixed .navbar-nav .nav-link {
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px;
    margin-left: 12px;
}

header.navbar-fixed .navbar-nav .nav-link img {
    margin-left: 8px;
}

header .navbar-nav .nav-link {
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    /* width: 190px; */
}

/*header style end*/

/* inner page banner style start */
/* .inner_page_banner { background-size: cover; padding: 100px 0 0 0; min-height:450px; position: relative; } */
.inner_page_banner {
    background-size: cover;
    /* height: 400px; */
    position: relative;
}

.inner_page_banner_3new {
    background-size: cover;
    height: 258px !important;
    position: relative;
    /* background: url(../images/banner.jpg) no-repeat; */
    background-color: #151515;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner_page_banner img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

.inner_page_banner h3 {
    position: relative;
    z-index: 999;
    text-align: center;
    font-size: 50px;
    color: var(--white);
    padding: 70px 0;
}

.inner_page_banner h3 span {
    color: var(--theme-orange);
}

/* inner page banner style end */

/*sections heading style start*/
.section_heading_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section_heading_box h3.main_title {
    font-size: 3.375rem;
    font-weight: normal;
    text-transform: capitalize;
}

.section_heading_box h3.main_title span {
    font-weight: bold;
}

.section_heading_box h5.sub_title {
    font-size: var(--sub-title-font-size);
    font-weight: 500;
}

/*sections heading style end*/

/*general vouchar card design start*/
.voucher_card {
    background: var(--white);
    border-radius: 16px;
    margin: 15px 0;
    position: relative;
    transition: 0.6s all;
}

.voucher_card:hover {
    box-shadow: 4px 4px 30px 10px rgba(0, 0, 0, 0.25);
    transition: 0.6s all;
}

.voucher_card.grey_card {
    background: var(--bg-light-grey);
}

.voucher_card .voucher_image {
    width: 100%;
    height: 275px;
    position: relative;
    overflow: hidden;
}

.voucher_card .voucher_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
    filter: none;
    -webkit-filter: grayscale(0);
}

.voucher_card .voucher_image::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.voucher_card:hover .voucher_image::before {
    -webkit-animation: shine 0.75s;
    animation: shine 0.75s;
    transition: 0.6s all;
}

.voucher_card:hover .voucher_image img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

.voucher_card .voucher_addon_info {
    color: var(--white);
    font-size: var(--smaller-fonts);
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    z-index: 99;
    display: flex;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 30px;
}

.voucher_card .voucher_details {
    padding: 20px;
}

/* .voucher_card .voucher_details p {
    min-height: 4rem;
} */

.voucher_card .voucher_title,
.voucher_card .voucher_title a {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    transition: 0.6s all;
    min-height: 40px;
    line-height: 22px;
}

.voucher_card .voucher_title a:hover {
    transition: 0.6s all;
}

.voucher_card .voucher_sub_title {
    font-size: var(--sub-title-font-size);
    color: var(--font-dark-grey);
    margin: 0;
    font-weight: 600;
    line-height: 20px;
}

.voucher_card .voucher_partner {
    padding: 15px 0;
}

.voucher_card .voucher_venue {
    font-size: var(--sub-title-font-size);
    color: var(--theme-orange);
    text-transform: capitalize;
    font-weight: 600;
}

.voucher_card .voucher_location {
    font-size: var(--btn-font-size);
    color: var(--font-dark-grey);
}

.voucher_card .voucher_location img {
    margin: 0 8px 0 0;
}

.voucher_card .voucher_pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0 0 0;
}

.voucher_card .voucher_pricing .voucher_price {
    font-size: var(--voucher-main-title);
    color: var(--font-dark-grey);
    font-weight: 600;
}

.voucher_validation {
    position: absolute;
    background: var(--red);
    color: var(--white);
    text-transform: uppercase;
    font-size: var(--btn-font-size);
    font-weight: 400;
    padding: 10px 15px;
    top: 30px;
    left: -10px;
    z-index: 999;
}

.voucher_validation:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 0 solid transparent;
    border-right: 10px solid #7c0808;
    top: -10px;
    left: 0;
    z-index: 1;
}

/* Shine */
@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/*.voucher_card.voucher_with_purhcase {
    min-height: 750px;
}*/

.voucher_with_purhcase .voucher_price {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}

.voucher_with_purhcase .voucher_price span {
    font-size: var(--sub-title-font-size);
    font-weight: 500;
    text-transform: capitalize;
    margin: 0 10px 0 0;
}

.voucher_with_purhcase .voucher_price PriceAmount {
    font-size: var(--voucher-main-title);
    font-weight: 600;
}

.voucher_with_purhcase .voucher_pricing {
    gap: 15px;
}

.voucher_with_purhcase .voucher_pricing .form-select {
    flex: 1;
}

.voucher_with_purhcase .voucher_pricing .button_ui {
    flex: 1;
}

.voucher_with_purhcase .voucher_pricing .button_ui a {
    justify-content: center;
}

.voucher_instruction {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex: 1 0;
    flex-direction: column;
}

.voucher_instruction a {
    text-transform: capitalize;
    font-size: 14px;
    text-decoration: none;
    border-radius: var(--border-radius);
    padding: 3px 10px;
}

.voucher_instr_info {
    color: var(--font-dark-grey);
    font-size: var(--smaller-fonts);
    text-transform: capitalize;
}

.voucher_with_purhcase .voucher_options {
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    flex: 1 0;
    gap: 25px;
}

.voucher_with_purhcase .qty_selection+span {
    flex: 1 0;
}

/* .voucher_with_purhcase.sold_out_voucher { opacity:0.5; filter: grayscale(100%); -webkit-filter: grayscale(100%); } */
.voucher_with_purhcase.sold_out_voucher .voucher_image {
    opacity: 0.5;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

.voucher_with_purhcase.sold_out_voucher p {
    min-height: 215px;
    opacity: 0.5;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

/*general vouchar card design end*/

/*general modal popup start*/
#restrictionModal,
#termandConditionsModal,
#privacyPolicyModal {
    top: 0;
}

#restrictionModal .modal-header .modal-title {
    padding-right: 2rem;
}

.modal {
    top: 60px;
}

.modal .modal-dialog {
    margin-bottom: 100px;
}

.modal-header {
    display: flex;
    align-items: center;
}

.modal-dialog .btn-close {
    background: url(../images/close-white.svg) no-repeat;
    opacity: 1;
    background-size: 19px;
    background-position: center;
}

.modal-body p {
    color: var(--font-dark-grey);
    font-size: var(--smaller-fonts);
}

#applyoptionalextraform .modal-footer .form-submit-box {
    display: flex;
    column-gap: 15px;
}

.modal-dialog .btn-close {
    /* position: absolute;
    right: -16px;
    background-color: #fe7600;
    top: -16px;
    background-size: 40%;
    width: 35px;
    height: 35px;
    padding: 0;
    border-radius: 100%; */
    position: absolute;
    right: 0;
    background-color: var(--hotel-main-theme);
    top: 0;
    background-size: 40%;
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 0;
    border-top-right-radius: 8px;
    margin: 0;
}

.modal-dialog .btn-close:focus {
    box-shadow: none;
}

/* #ApplyOptionalExtraModal .table { border-color: #ced4da; } */

#ApplyOptionalExtraModal .table thead tr th {
    padding-top: 8px;
    padding-bottom: 8px;
}

#ApplyOptionalExtraModal .table tbody tr td {
    padding-top: 5px;
    padding-bottom: 5px;
}

#ApplyOptionalExtraModal .modal-body {
    padding: 0;
}

#ApplyOptionalExtraModal .steps-header {
    background-color: var(--hotel-button-colors);
    padding: 10px;
    color: var(--white);
    font-size: 1.225rem;
    font-weight: 600;
    line-height: normal;
    padding-left: 1rem;
    text-transform: capitalize;
}

#ApplyOptionalExtraModal .add-new-form form#applyoptionalextraform {
    padding: 15px;
}

#ApplyOptionalExtraModal .modal-content {
    border-radius: 0;
    border-color: transparent;
}

#applyoptionalextraform .modal-footer .form-submit-box button {
    min-width: 8rem;
    border-radius: var(--border-radius);
}

#applyoptionalextraform .btn-check:focus+.btn-primary,
#applyoptionalextraform .btn-primary:focus,
#ApplyOptionalExtraModal .btn-close:focus {
    box-shadow: none;
}

#ApplyOptionalExtraModal .modal-footer {
    justify-content: center;
}

/* */

.table thead tr th {
    padding-top: 8px;
    padding-bottom: 8px;
}

.table tbody tr th {
    padding-top: 0px;
    padding-bottom: 0px;
}

.cart_page .table tbody tr th,
.cart_page .table tbody tr td {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
    line-height: normal;
}

.table tbody tr td {
    padding-top: 5px;
    padding-bottom: 5px;
}

.cart_page .table tbody tr td {
    padding-top: 0px;
    padding-bottom: 0px;
}

.modal-body {
    padding: 0;
}

#addToWaitingListModal .modal-body,
#restrictionModal .modal-body,
#termandConditionsModal .modal-body,
#privacyPolicyModal .modal-body {
    padding: 1rem;
}

.steps-header {
    background-color: var(--hotel-button-colors);
    padding: 10px;
    color: var(--white);
    font-size: 1.225rem;
    font-weight: 600;
    line-height: normal;
    padding-left: 1rem;
    text-transform: capitalize;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.add-new-form form {
    padding: 15px;
}

.modal-content {
    border-radius: 8px;
    border-color: transparent;
}

.modal-footer .form-submit-box button {
    min-width: 8rem;
    border-radius: 0;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus,
.btn-close:focus {
    box-shadow: none;
}

.modal-footer {
    justify-content: center;
}

/*  */

/*general modal popup end*/

/*--- animated cartbox start*/

.animat-cartbox {
    border-radius: 4px;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    z-index: 9999999999999;
}

/*--- animated cartbox end*/

/*general table start*/
.table {
    border: 1px solid;
}

.table thead {
    color: var(--white);
}

/*general table end*/

/*hotel details style start */
.hotel_detail_page header {
    box-shadow: none;
}

.hotel_summary {
    padding: 80px 0;
    overflow: hidden;
}

.hotel_summary .container-fluid {
    padding: 0;
}

.hotel_summary .row {
    align-items: center;
}

.hotel_left_side {
    background: var(--bg-light-grey);
    padding: 40px;
    border-radius: 0 20px 20px 0;
}

.hotel_left_side .hotel_info {
    padding: 80px 0;
}

.hotel_left_side .hotel_info h3 {
    font-size: var(--bigger-fonts);
    font-weight: bold;
    text-transform: capitalize;
    padding: 0;
}

.hotel_left_side .hotel_info h5 {
    font-size: var(--voucher-main-title);
    color: var(--theme-blue);
    padding: 0;
    font-weight: 600;
}

.hotel_left_side .hotel_contact_info {
    display: flex;
    gap: 10px;
}

.hotel_left_side .hotel_location_icon svg {
    fill: none;
    stroke-width: 3;
}

.hotel_left_side .hotel_contacts {
    padding: 0;
    margin: 0 0 7px 0;
    font-size: var(--btn-font-size);
    color: var(--theme-blue);
    font-weight: 500;
}

.hotel_left_side .hotel_contacts p {
    padding-top: 0;
}

.hotel_left_side .hotel_cta {
    display: flex;
    gap: 20px;
    margin: 20px 0 0 0;
    flex-wrap: wrap;
}

.hotel_left_side .hotel_cta .hotel_cta_btn.button_ui a {
    width: 190px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
}

.hotel_map {
    width: 100%;
    height: 500px;
}

/*hotel details style end */

/*hotel top selling vouchers start */
.top_selling_vouchers {
    background: var(--bg-light-grey);
}

/*hotel top selling vouchers end */

/*hotel facility start */
.hotel_facility {
    padding: 0 40px 80px 40px;
    min-height: auto;
}

.facility_list {
    /* margin: 15px 0 0 0; */
}

.facility_list h5 {
    font-weight: bold;
    text-transform: uppercase;
    color: var(--theme-blue);
    font-size: var(--main-title-font-size);
    padding: 0;
    margin: 0;
}

/*hotel facility end */

/*hotel vouchers page start */
.hotel_vouchers_page header .navbar-nav .nav-link,
.hotel_vouchers_page header .navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px 5px 10px 10px;
    margin: 0;
}

.hotel_vouchers_page header .navbar-brand img {
    width: 100%;
    height: 60px;
    /* width: 100%; */
    /* object-fit: cover; */
    /* min-width: 200px; - CSS comment by Bhavesh because some logo stretch*/
}

.home_page header .navbar-brand img {
    /* width: 330px; */
    /*width: 100%;*/
    /* height: 90px; */
    /*object-fit: cover;*/
    transition: 0.6s all ease-in-out;
    max-height: 100%;
}

.hotel_vouchers_page .header_cart {
    position: relative;
}

.hotel_vouchers_page .header_cart .cart_couner {
    position: absolute;
    border-radius: 100%;
    top: 13px;
    right: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    border: 2px solid var(--white);
}

.hotel_vouchers_page .header_cart .dropdown-toggle::after {
    display: none;
}

.hotel_vouchers_page .header_hamburger .nav-link:hover {
    cursor: pointer;
}

.hotel_vouchers_page .header_hamburger .nav-link .menu-txt {
    color: var(--hotel-icon-colors);
    margin-left: 5px;
    font-size: 1.25rem;
}

.hotel_vouchers_page .dropdown-menu[data-bs-popper] {
    left: auto;
    right: 20%;
    min-width: 330px;
}

.header_cart_popup {
    padding: 0;
}

.header_cart_listing {
    padding: 0;
    height: 240px;
    overflow-y: scroll;
}

.header_cart_popup .cart_total_qty {
    background: var(--bg-light-grey);
    color: var(--font-dark-grey);
    font-size: var(--smaller-fonts);
    text-align: center;
    padding: 5px 0;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.header_cart_popup .header_cart_item_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

.header_cart_items {
    padding: 10px;
    border-bottom: 1px solid var(--bg-light-grey);
}

.header_cart_items .header_cart_item_image {
    width: 100px;
    height: 85px;
    border: 1px solid var(--bg-light-grey);
}

.header_cart_items .header_cart_item_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header_cart_items {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.header_cart_items h5 {
    padding: 0 0 5px 0;
    margin: 0;
    text-transform: capitalize;
}

.header_cart_items .header_cart_qty span {
    font-weight: normal;
    font-size: var(--smaller-fonts);
    color: var(--font-dark-grey);
}

.header_cart_popup .header_cart_link {
    padding: 15px;
    -webkit-box-shadow: 0px -5px 11px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px -5px 11px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px -5px 11px 0px rgba(0, 0, 0, 0.1);
}

.header_cart_popup .header_cart_link a {
    font-size: var(--btn-font-size);
    text-transform: capitalize;
    border-radius: var(--border-radius);
    display: flex;
    padding: 5px;
    justify-content: center;
}

.hotel_vouchers_page .top_selling_vouchers {
    background: var(--bg-light-grey);
    position: relative;
    z-index: 9;
    padding-top: 5rem;
}

.hotel_vouchers_page .voucher_card {
    background: var(--white);
}

.hotel_vouchers_page .voucher_card .voucher_pricing {
    justify-content: center;
    border-radius: var(--border-radius);
}

.hotel_vouchers_page .hotel_voucher_filter_area {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
}

.hotel_vouchers_page .hotel_voucher_filter_area .select2-container {
    width: 280px !important;
    z-index: 9;
}

.hotel_vouchers_page select:focus,
.hotel_vouchers_page select:hover {
    box-shadow: none;
    outline: none;
}

.hotel_vouchers_page select {
    border: 1px solid;
    border-radius: 8px;
    min-width: 180px;
    text-transform: capitalize;
    -o-appearance: none;
    -ms-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(../images/down_arrow_black.svg) no-repeat;
    background-size: 15px;
    background-position: calc(100% - 10px) center;
    font-size: var(--btn-font-size);
    font-weight: 500;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    display: none;
}

.select2-search--dropdown {
    padding: 0;
}

.hotel_vouchers_page select.filled-select {
    color: var(--white);
}

.hotel_vouchers_page select.filled-select option {
    background: var(--white);
    font-size: var(--btn-font-size);
    font-weight: 500;
}

.website_logo .navbar-brand {
    margin-right: 0;
    padding: 0;
    height: 90px;
    display: flex !important;
    align-items: center;
    transition: 0.6s all ease-in-out;
}

.website_navigation {
    min-width: 108.33px;
}

.website_navigation #navbarSupportedContent {
    justify-content: end;
}

/*hotel vouchers page end*/

/*hotel vocuher purchase page start*/
.section_heading {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.section_heading h3.main_title {
    margin-bottom: 0;
    color: var(--black);
}

.hotel_vouchers_purcase_page .voucher_options span.select2 {
    width: 100% !important;
}

.voucher_with_purhcase .voucher_pricing .button_ui {
    width: 100%;
    flex: unset;
}

.voucher_options_lbl {
    min-width: 60px;
    color: var(--white);
    padding: 8px;
    border-radius: 8px 0 0 8px;
}

.voucher_options_with_lbl {
    display: flex;
    align-items: center;
    /* flex: 1 1 auto; */
    width: 175px;
}

.voucher_options_with_lbl.voucher_options_with_lblnew {
    width: 120px;
}

.voucher_options_with_lblnew1 .voucher_options_lbl {
    min-width: 50%;
    font-weight: 600;
    text-align: center;
}

.voucher_options_with_lblnew1 .select2-container--default .select2-selection--single .select2-selection__rendered {
    text-align: center !important;
}

.voucher_options_with_lblnew1 .select2-container {
    text-align: center;
    font-weight: 600;
}

.voucher_options_with_lblnew1 .select2-container--default .select2-selection--single .select2-selection__rendered {
    /* padding-left: 20px; */
}

.voucher_options_with_lblnew1 .qty_selection {
    text-align: center;
}

.voucher_options_with_lbl .select2-container--default .select2-selection--single {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.hotel_vouchers_page .voucher_card.voucher_with_purhcase .voucher_pricing {
    display: block;
}

.hotel_vouchers_page .voucher_card.voucher_with_purhcase .voucher_price_bottom_box {
    background: #e5e5e5;
    display: flex;
    border-radius: var(--border-radius);
}

.hotel_vouchers_page .voucher_card.voucher_with_purhcase .voucher_pricing .voucher_price {
    width: 100%;
}

.hotel_voucher_list_cards .voucher_card .voucher_details {
    /* height: 390px; */
    /* min-height: 400px; 
    min-height: 450px;*/
    display: flex;
    flex-direction: column;
    height: calc(100% - 275px);
}

/*hotel vocuher purchase page end*/

/*hotel voucher details page start */
.hotel_inner_without_banner {
    /* padding: 60px 0 0 0; */
    padding: 0px 0 0 0;
}

.hotel_inner_without_banner .section_box {
    padding-top: 25px;
}

.hotel_voucher_details_box .hotel_details_big_image {
    position: relative;
}

.hotel_voucher_details_box .hotel_details_big_image img {
    width: 100%;
    object-fit: contain;
    border-radius: var(--border-radius);
}

.hotel_voucher_details_box .hotel_details_price {
    font-size: var(--bigger-fonts);
}

.hotel_voucher_details_box .hotel_details_desc label {
    color: var(--font-dark-grey);
    font-weight: 700;
    font-size: var(--sub-title-font-size);
    margin: 30px 0 5px 0;
    padding: 0;
    text-transform: capitalize;
}

.hotel_voucher_details_box .hotel_details_desc p {
    padding: 0;
}

.hotel_voucher_details_box .hotel_details_desc a {
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: underline;
    display: inline-block;
    margin: 0 0 0 5px;
}

.hotel_voucher_details_box .hotel_details_qty_section {
    margin: 20px 0 20px 0;
    padding: 0;
    display: flex;
    /* align-items: center;
	justify-content: space-between; */
    gap: 10px;
    z-index: 1;
    position: relative;
    justify-content: space-between;
}

.hotel_voucher_details_box .voucher_options_with_lbl .select2-container {
    width: auto !important;
    flex: 1 1 auto;
}

.hotel_voucher_details_box .voucher_instruction {
    margin: 10px 0;
}

.hotel_voucher_details_box .button_ui a {
    justify-content: center;
}

.hotel_details_tnc_section {
    margin: 20px 0 0 0;
}

.hotel_details_tnc_section .section_heading_box h3.main_title {
    font-size: 2.5rem;
    font-weight: 600;
}

/* accordion start */

.hotel_details_tnc_section .accordion {
    margin-top: 1.5rem;
}

.hotel_voucher_details_box .accordion-item .accordion-button::after {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-radius: 0;
    --bs-accordion-btn-icon: url('../../client/images/icon-plus.svg');
    --bs-accordion-btn-active-icon: url('../../client/images/icon-minus.svg');
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-active-bg: none;
}

.accordion-button:after {
    background-image: var(--bs-accordion-btn-icon);
}

.hotel_voucher_details_box .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.hotel_voucher_details_box .accordion .accordion-item {
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.hotel_voucher_details_box .accordion-body {
    padding-top: 0;
}

.hotel_voucher_details_box .hotel_details_tnc_info {
    padding: 0;
    margin: 0;
}

.hotel_voucher_details_box .accordion .accordion-item .accordion-header {
    border-radius: 8px;
}

.hotel_voucher_details_box .accordion-item .accordion-button {
    box-shadow: none;
    border-radius: 8px;
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 500;
}

.hotel_voucher_details_box .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--black);
    font-weight: 700;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.accordion-button:not(.collapsed):after {
    background-image: var(--bs-accordion-btn-active-icon);
    transform: var(--bs-accordion-btn-icon-transform);
}

.accordion .accordion-item .accordion-button:after {
    width: 0.875rem;
    height: 0.875rem;
    background-size: 0.875rem;
}

.hotel_voucher_details_box .accordion-button::after {
    filter: brightness(0) invert(0);
}

.hotel_voucher_details_box .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(0);
}

.hotel_voucher_details_box .accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 8px;
}

/* accordion end */

/* howitworks Start */
.hotel_details_tnc_info .hwitwrks-icn ul {
    --icon-space: 2em;
    --icon-space2: 2.5em;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    margin-bottom: 0;
}

.hotel_details_tnc_info .hwitwrks-icn ul li {
    padding-left: var(--icon-space);
    color: var(--black);
    font-size: var(--btn-font-size);
    font-weight: 500;
    display: flex;
    align-items: center;
    line-height: normal;
}

.hotel_details_tnc_info.hotel_details_tnc_info_new .hwitwrks-icn ul li {
    padding-left: var(--icon-space2);
}

/* .hotel_details_tnc_info .hwitwrks-icn ul li:hover:before {
	background: var(--hotel-main-theme);
	color: var(--white);
	transition: all 0.5s ease-in-out;
  } */

.hotel_details_tnc_info .hwitwrks-icn ul li:first-child {
    font-weight: 600;
}

.hotel_details_tnc_info .hwitwrks-icn ul li:before {
    font-family: FontAwesome;
    display: inline-block;
    margin-left: calc(var(--icon-space) * -1);
    width: 35px;
    height: 35px;
    min-width: 35px;
    border: 1px solid var(--hotel-main-theme);
    text-align: center;
    border-radius: 4px;
    margin-right: 1rem;
    color: var(--hotel-main-theme);
    transition: all 0.5s ease-in-out;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel_details_tnc_info .hwitwrks-icn ul li.breificon:before {
    content: '\f0b1';
}

.hotel_details_tnc_info .hwitwrks-icn ul li.pencilicon:before {
    content: '\f040';
}

.hotel_details_tnc_info .hwitwrks-icn ul li.paymenticon:before {
    content: '\f283';
}

.hotel_details_tnc_info .hwitwrks-icn ul li.mailicon:before {
    content: '\f0e0';
}

/* howitworks End */

/* deliveryicons Start */
.hotel_details_tnc_info .deliveryicons .email-cnt {
    color: var(--black);
    font-size: var(--btn-font-size);
    font-weight: 500;
    display: flex;
    align-items: center;
}

/* .hotel_details_tnc_info .deliveryicons .email-cnt:hover i { background: var(--hotel-main-theme); color: var(--white); transition: all 0.5s ease-in-out; } */
.hotel_details_tnc_info .deliveryicons .email-cnt i {
    margin-right: 10px;
    width: 35px;
    height: 35px;
    min-width: 35px;
    border: 1px solid var(--hotel-main-theme);
    text-align: center;
    border-radius: 4px;
    color: var(--hotel-main-theme);
    transition: all 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.hotel_details_tnc_info p {
    padding: 0;
    color: var(--black);
}

/* .hotel_details_tnc_info p img {
	width: 100%;
	height: 100%;
} */

.hotel_details_tnc_info p i {
    display: inline-block;
    width: 35px;
    height: 35px;
    overflow: hidden;
    margin-right: 10px;
}

.hotel_details_tnc_info p.sample-menu {
    display: flex;
    align-items: center;
}

.hotel_details_tnc_info p.sample-menu i img {
    width: 100%;
    height: 100%;
}

/* deliveryicons End */
/* .hotel_voucher_details_box .event_dates_box { display: flex; align-items: center; justify-content: center; position: relative; } */
.hotel_voucher_details_box .event_dates_box {
    position: relative;
    padding: 0px;
    margin: 0 0 25px 0;
    column-gap: 10px;
}

.hotel_voucher_details_box .event_dates_listing {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hotel_voucher_details_box .event_dates_listing p {
    width: 16%;
    padding: 3px 7px;
    /* background: rgba(var(--hotel-main-theme), 0.2); */
    background: var(--hotel-main-theme);
    /* border: 1px solid var(--hotel-main-theme); */
    border-radius: 10px;
    display: flex;
    justify-content: center;
    flex-basis: fit-content;
}

.hotel_voucher_details_box .event_dates_box label {
    position: relative;
    z-index: 99;
    /* background: rgba(254, 118, 0, 0.2); */
    /* display: flex; */
    padding: 2px 12px;
    border: 1px solid var(--hotel-main-theme);
    /* margin: 0 0 15px 0; */
    border-radius: var(--border-radius);
    line-height: normal;
    min-width: 105px;
}

.hotel_voucher_details_box .event_dates_box p {
    /* margin: 0 -3px 7px 0; */
    position: relative;
    z-index: 99;
    margin-bottom: 0;
    line-height: normal;
    align-items: center;
    justify-content: center;
    min-width: 105px;
}

/* .hotel_voucher_details_box .event_dates_box:before { content: ''; width: 100%; height: 100%; position: absolute; top: 50%; transform: translate(-50%, -50%); left: 50%; } */

.hotel_voucher_details_box .hotel_details_option_section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 15px 0;
}

.hotel_voucher_details_box .hotel_details_option_section .voucher_options_lbl {
    min-width: 120px;
}

.hotel_voucher_details_box .hotel_details_gift_box_area {
    margin: 35px 0 20px 0;
}

.hotel_details_gift_box_area .section_heading {
    border-bottom: 1px solid #dddddd;
}

.hotel_details_gift_box_area .gift_box_images {
    margin: 15px 0 0 0;
}

.hotel_details_gift_box_area .gift_box_images img {
    width: 100%;
    border-radius: var(--border-radius);
}

.hotel_voucher_details_box .solde_out_details_btn {
    background: #e5e5e5;
    font-size: var(--voucher-main-title);
    color: var(--font-dark-grey);
    font-weight: 500;
    font-size: var(--sub-title-font-size);
    text-transform: capitalize;
    border-radius: var(--border-radius);
    padding: 10px 0;
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

/* .hotel_details_gift_box_area .gift_box_images img { width: 100%; height: 100%; object-fit: contain; } */
/*hotel voucher details page end */

/*cart page start*/
.cart_counter_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: inherit;
    background: #dddddd;
    padding: 15px;
    text-transform: capitalize;
    border-radius: var(--border-radius);
    margin: 0 0 25px 0;
}

.cart_counter_box h5 {
    padding: 0;
    margin: 0;
    font-weight: 700;
    font-size: var(--smaller-fonts);
    text-transform: normal;
}

.cart_table {
    /* margin: 25px 0 0 0; */
    margin: 15px 0 0 0;
}

.cart_summary_box {
    display: flex;
    justify-content: flex-end;
}

.cart_summary_info .row {
    justify-content: flex-end;
}

.cart_total_lbl {
    font-size: var(--sub-title-font-new);
    color: var(--font-dark-grey);
    padding: 0 30px 0 0;
}

.cart_total_price {
    font-size: var(--sub-title-font-new);
    color: var(--hotel-button-colors);
    padding: 0;
}

.term-cnd {
    color: var(--hotel-button-colors);
}

.cart_summary_infos {
    display: flex;
    justify-content: end;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.cart_summary_box .button_ui a {
    display: flex;
    justify-content: center;
    font-weight: 500;
    font-size: 20px;
}

.cart_counter_box .continue_shop .button_ui a {
    font-weight: 600;
    font-size: 18px;
}

.delivery_option_box {
    margin: 10px 0 25px 0;
}

/*cart page end*/

/*delivery page start*/
.delivery_option_box {
    background: #f9f9f9;
    padding: 25px 25px;
    border-radius: var(--border-radius);
    border: 1px solid #ced4da;
}

.delivery_option_box a {
    color: var(--hotel-main-theme);
}

.delivery_option_box .tab-content {
    margin: 40px 0 15px 0;
}

.delivery_schedule_box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin: 10px 0;
}

.delivery_option_box .form-label {
    display: block;
    text-transform: capitalize;
}

.delivery_option_box .select2-container {
    width: 100% !important;
}

.delivery_option_box .frm_input {
    margin: 0 0 15px 0;
    z-index: 9;
    position: relative;
}

.delivery_option_box .frm_input.frm_checkbox {
    display: flex;
    gap: 10px;
}

.delivery_option_box .form-check-input[type='checkbox'] {
    /* width: 23px;
    height: 20px; */
    width: auto;
    height: 20px;
    min-width: 20px;
}

/*delivery page end*/

/*instruction page start*/
.instruction_submission {
    display: flex;
    justify-content: center;
}

.instruction_info {
    border-radius: var(--border-radius);
    padding: 10px 25px;
    margin: 0 0 15px 0;
}

/*instruction page end*/

/*join waiting list start */
#join_waiting_list_modal .select2-container {
    display: block;
}

#addToWaitingListModal .select2-container {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    border-spacing: 0;
    border-collapse: separate;
}

/*join waiting list end */

/*hotel pages humbruger menu start */
#sideNav {
    /* width: 300px;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 99999;
    transition: 0.5s; */
}

.hotel_humbruger_sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    overflow-x: hidden;
    transition: 0.5s ease-in-out;
    z-index: 99999;
}

.hotel_humbruger_sidebar ul {
    margin: 0;
    padding: 0;
}

.hotel_humbruger_sidebar ul li {
    list-style: none;
}

.hotel_humbruger_sidebar ul li a {
    padding: 10px 15px 10px 25px;
    display: block;
}

.hotel_humbruger_sidebar .sidebar_close {
    margin: 10px 0;
    padding: 10px 15px 10px 25px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hotel_humbruger_sidebar .sidebar_close:hover {
    cursor: pointer;
}

/*hotel pages humbruger menu end */

/*footer start*/
footer {
    padding: 20px 40px 0px 40px;
    background: #2d3748;
}

.top-footer-text {
    padding: 1rem 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--font-light-grey);
}

.top-footer-text p {
    font-size: 1.125rem;
}

footer .footer_logo {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

footer .footer_links {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    color: var(--white);
}

footer .footer_links span {
    font-weight: 600;
    font-size: 16px;
    margin: 0 5px 0 0;
    width: 100%;
    display: block;
    text-align: center;
}

footer .footer_links ul {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

footer .footer_links ul li {
    list-style: none;
}

footer .footer_links ul li a {
    position: relative;
}

.footer_links ul li:last-child::after {
    display: none;
}

footer .footer_links ul li:last-child {
    border-right: none !important;
}

footer .footer_links ul a:hover {
    color: var(--hotel-button-colors);
    transition: 0.6s all;
}

footer .footer_links ul.stsc-menu {
    margin: 10px 0;
}

footer p {
    color: var(--white);
    font-size: var(--btn-font-size);
    padding: 20px 0;
    margin: 0;
    text-align: center;
    font-weight: 400;
}

footer .footer_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .footer_bottom .footer_links {
    border: none;
    width: 38%;
    justify-content: flex-start;
}

footer .footer_social {
    width: 33%;
}

footer .footer_social ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

footer .footer_social li {
    list-style: none;
    margin: 0 16px;
}

footer .footer_social li a {
    padding: 6px;
    border-radius: 5px;
    transition: 0.6s all;
}

footer .footer_social li:hover a {
    background: #fe7600;
    transition: 0.6s all;
}

footer .copy_write {
    border-top: 1px solid var(--font-light-grey);
}

footer .copy_write p {
    font-size: var(--btn-font-size);
    color: var(--font-light-grey);
}

/*footer end*/

/*hotel pages footer start */
footer .footer_logo.hoter_footer_logo {
    justify-content: center;
}

/* footer .footer_logo.hoter_footer_logo img.ib_footer_logo {
	width: 60px;
} */
/*hotel pages footer end */

/*delivery page start*/
.collect_info h4 {
    margin: 0;
    font-weight: 600;
}

.collect_info p {
    padding: 0;
    margin: 0;
}

/*delivery page end*/

/*promotion page start */
.promotion_box_area {
    display: flex;
    justify-content: center;
}

.promotion_box_area .frm_input {
    display: flex;
    align-items: center;
    gap: 15px;
    /* width: 50%; */
    width: auto;
}

.promotion_box_area .frm_input label {
    margin: 0;
    padding: 0;
}

.promotion_box_area .form-control {
    flex: 1;
}

.promotion_box_area .btn {
    /* flex: 1; */
}

.promo_code_box {
    display: flex;
    justify-content: center;
    margin: 15px 0 15px 0;
}

.promo_code_box p {
    background: #eeeeee;
    text-align: center;
    display: inline-block;
    padding: 10px 85px;
    border-radius: 8px;
    border: 1px dashed #c1c1c1;
}

/*promotion page end */

/*success popup style start*/
.success_modal_content {
    padding: 1rem;
}

.success_icon {
    display: flex;
    justify-content: center;
}

.success_icon img {
    width: 100px;
}

.notify_message {
    text-align: center;
    margin: 15px 0;
}

.notify_message h4 {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 0 0 10px 0;
    margin: 0;
}

.notify_message p {
    font-size: 16px;
    font-weight: normal;
    padding: 0;
}

.notify_message button {
    margin: 15px 0 0 0;
}

/*success popup style end*/

#tblOptionalExtra table thead tr th:first-child {
    min-width: 250px;
}

#tblOptionalExtra table thead tr th:nth-child(3) {
    min-width: 120px;
}

#tblOptionalExtra table thead tr th:last-child {
    width: 100%;
    min-width: 170px;
}

img#companyFooterLogoImagePath {
    /* width: 11%; */
    /* width: auto;
    object-fit: cover;
    height: 60px; */
    width: 100%;
    height: auto;
}

#companyFacilitySection .facility_list h3,
#companyFacilitySection .facility_list ul {
    margin-bottom: 0;
    padding: 0;
}

#companyFacilitySection .facility_list ul li {
    color: var(--font-light-grey);
    font-size: var(--btn-font-size);
    padding: 0;
    margin: 0;
    font-weight: 500;
    list-style-type: none;
}

#companyFacilitySection {
    row-gap: 30px;
    display: flex;
    margin-top: 15px;
    flex-wrap: wrap;
    column-gap: 50px;
}

#companyFacilitySection .facility_list ul li:before {
    content: '\f133';
    font-family: bootstrap-icons !important;
    display: inline-block;
    width: 1rem;
    margin-right: 20px;
    color: var(--hotel-button-colors);
    top: 5px;
    position: relative;
    font-size: 20px;
}

#successModal button {
    background-color: var(--hotel-button-colors);
    border-color: var(--hotel-button-colors);
}

#successModal button:hover {
    background-color: var(--font-dark-grey);
    border-color: var(--font-dark-grey);
}

#successModal button:focus {
    box-shadow: none;
}

span.copyPersonalMessage {
    display: flex;
    column-gap: 0.5rem;
}

/* gallery start */
section.section_box.gallery-slider {
    overflow-x: hidden;
}

.gallery-slider .slider-container {
    display: flex;
}

.gallery-slider .swiper-wrapper {
    align-items: center;
    /* height: 40vw;  */
    height: 42vw;
    display: inline-flex;
}

.gallery-slider .swiper {
    flex-shrink: 0;
    margin-right: 30px;
    width: 65.5rem;
}

.gallery-slider .swiper-slide {
    background: lightblue;
    box-sizing: border-box;
    /* height: 36.5rem; */
    height: 33.5vw;
    padding: 0;
    border-radius: 1rem;
}

/*.swiper-slide.blank {
      background: transparent;
    }*/
.gallery-slider .swiper-two {
    /* flex-basis: 60%; */
    flex-basis: 60%;
    flex-shrink: 0;
    border-radius: 1rem;
    -webkit-transform: translate(-14%, 0);
    transform: translate(-14%, 0);
}

.gallery-slider .swiper-one {
    flex-basis: 57.85%;
    flex-shrink: 0;
    border-radius: 1rem;
}

.gallery-slider .swiper-two .swiper-slide {
    /* height: 36.5rem;  */
    /* width: 18.75rem; */
    height: 33.5vw;
    width: 19rem;
}

.gallery-slider .swiper-two .swiper-slide.swiper-slide-active {
    -webkit-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important;
}

.gallery-slider .swiper-two .swiper-slide {
    -webkit-transform: translate(-42%, 0);
    transform: translate(-42%, 0);
}

.gallery-slider .swiper-two .swiper-slide.swiper-slide-prev {
    -webkit-transform: translate(-30%, 0) !important;
    transform: translate(-30%, 0) !important;
}

.gallery-slider .swiper-two .swiper-slide.swiper-slide-next {
    -webkit-transform: translate(-20%, 0) !important;
    transform: translate(-20%, 0) !important;
}

.gallery-slider .swiper-two .swiper-slide:nth-child(odd) {
    top: 80px;
    position: relative;
}

.gallery-slider .swiper-two .swiper-slide:nth-child(even) {
    top: -50px;
    position: relative;
    z-index: -1;
}

/* .gallery-slider .swiper-two .swiper-slide:nth-child(n+1) {
        -webkit-transform: translate(-70%, 0) !important;
        transform: translate(-70%, 0) !important;
        z-index: -111 !important;
     }
     */
/* 

    .gallery-slider .swiper-two .swiper-slide:nth-child(4n) {
        -webkit-transform: translate(-80%, 0) !important;
        transform: translate(-80%, 0) !important;
        z-index: -11;
    }

    .gallery-slider .swiper-two .swiper-slide:nth-child(5n) {
        -webkit-transform: translate(-100%, 0) !important;
        transform: translate(-100%, 0) !important;
        z-index: -11;
    } */

.gallery-slider .swiper-two .swiper-slide:last-child {
    -webkit-transform: translate(-40%, 0) !important;
    transform: translate(-40%, 0) !important;
    z-index: -111 !important;
}

.gallery-slider .swiper-two .swiper-slide img {
    border: 6px solid var(--white);
}

.gallery-slider .controls {
    height: auto;
    display: flex;
    list-style: none;
    margin: 0;
    padding-left: 0;
    width: 100px;
    z-index: 2;
    column-gap: 62px;
}

.gallery-slider .secondary-controls {
    bottom: 0.5rem;
    right: 12rem;
    position: absolute;
}

.gallery-slider .button-prev,
.button-next {
    bottom: 0;
    top: auto;
}

.gallery-slider .button-prev .fa,
.button-next .fa {
    padding: 15px 20px;
}

.gallery-slider .swiper-button-disabled i img,
.swiper-button-disabled i svg {
    opacity: 0.2;
}

.gallery-slider .swiper-slide img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-fit: cover;
    object-position: center; */
    border-radius: 1rem;
}

.gallery-slider .swiper-slide .swiper-slide-active img {
    object-fit: inherit;
}

/* gallery end  */

.delivery_option_box .copy_actions_area {
    display: flex;
    justify-content: space-between;
}

.delivery_option_box .copyPersonalMessage svg {
    fill: var(--hotel-main-theme);
    stroke: var(--hotel-main-theme);
}

.section_heading_box .main_title.main-inner-title {
    font-size: 2rem;
}

.section_heading_box .main_title span {
    font-weight: 600;
}

.hotel_details_tnc_info {
    /* background: #f9f9f9; */
    background: var(--white);
    padding: 25px 25px;
    border-radius: var(--border-radius);
    margin: 0.5rem 0 1.5rem;
    /* border:1px solid #ced4da; */
}

.hotel_details_tnc_info.hotel_details_tnc_info_new {
    background: transparent;
    padding: 0;
    margin: 0;
}

.new-addNewRowtable table tbody tr td input.isValidInput:focus {
    box-shadow: 0 0 0 0.25rem #ed320d54;
}

.new-addNewRowtable table tbody tr td input.isValidInput {
    border-color: #ed320d;
}

.cart_page .table {
    border-collapse: separate;
    border-spacing: 0;
    border-color: #dadada;
    border-bottom-left-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
    overflow: hidden;
    border-radius: 8px;
}

.cart_page .table thead tr th,
.cart_page .table tbody tr th,
.cart_page .table tbody tr td {
    text-align: center;
    padding: 10px;
}

.deliveryoption-sec,
.termsconditions-sec,
.privacypolicy-sec {
    height: 100%;
    min-height: calc(100vh - 400px);
}

.deliveryoption-sec .main_title,
.termsconditions-sec .main_title,
.privacypolicy-sec {
    color: var(--black) !important;
}

#cartProductSection table#tblCartProduct tbody,
td,
tfoot,
th,
thead,
tr {
    border-style: none;
}

.blink {
    animation: blink-animation 1s steps(5, start) infinite;
    -webkit-animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

@-webkit-keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

.hotel_inner_without_banner.cart_page .select2-container--default .select2-selection--single {
    padding-top: 1px;
    padding-bottom: 6px;
}

/* inner page banner style start */
.inner_page_banner h3 {
    position: relative;
    z-index: 999;
    text-align: center;
    font-size: 50px;
    color: var(--white);
    padding: 70px 0;
    margin-bottom: 0;
    /* min-height: 250px; */
}

.inner_page_banner h3 span {
    color: var(--theme-orange);
}

/* .inner_page_banner .inner_srch_box {
	position: relative;
	z-index: 99;
	padding: 15px 20px;
	margin: 20px 30px 0 30px;
	background: var(--theme-blue);
	border-radius: 16px;
	border: 2px solid var(--white);
	margin-top: -35px;
} */

.inner_page_banner .inner_srch_box {
    padding: 15px 20px;
    background: var(--theme-blue);
    border-radius: 16px;
    border: 2px solid var(--white);
}

.inner_page_banner .banner_srch_area form {
    flex-direction: row;
    /* justify-content: center;  */
    justify-content: space-between;
    display: flex;
}

.inner_page_banner .banner_srch_area input[type='text'],
.inner_page_banner .banner_srch_area select {
    width: 400px;
}

.inner_page_banner .banner_srch_area .banner_srch_actions {
    margin: 0;
    display: flex;
    gap: 20px;
}

.banner_srch_area .search {
    position: relative;
}

.banner_srch_area .search input {}

.banner_srch_area .search input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: var(--dark-blue);
}

.banner_srch_area .search input::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--dark-blue);
}

.banner_srch_area .search input:-ms-input-placeholder {
    /* IE 10+ */
    color: var(--dark-blue);
}

.banner_srch_area .search input:-moz-placeholder {
    /* Firefox 18- */
    color: var(--dark-blue);
}

.banner_srch_area .search input:focus {
    box-shadow: none;
}

.banner_srch_area .search .fa-search {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    right: 16px;
    cursor: pointer;
}

.banner_srch_area label {
    color: var(--white);
    font-size: 18px;
    font-weight: normal;
    margin: 0 30px;
    padding: 0;
    display: flex;
    align-items: center;
}

.banner_srch_heading {
    display: flex;
    align-items: center;
}

.banner_srch_area select.srch_type {
    background: #ffffff url(../images/dropdown_arrow.png) no-repeat;
    background-position: 95% center;
    padding-right: 50px;
    border-color: transparent !important;
}

.banner_srch_area select.srch_type:hover,
.banner_srch_area select.srch_type:focus {
    border-color: transparent !important;
    color: #000;
}

.banner_srch_actions .banner_srch_area select.srch_type {
    border-color: transparent !important;
}

.banner_srch_area .search input[type='text']:focus,
.banner_srch_area .search input[type='email']:focus,
.banner_srch_area .search input[type='password']:focus,
.banner_srch_area .search input[type='date']:focus {
    border-color: transparent;
}

/* inner page banner style end */
.hotel_inner_without_banner.cart_page .section_box {
    padding-bottom: 0;
    padding-top: 0;
}

.hotel_inner_without_banner.cart_page {
    padding: 50px 0 70px 0;
}

.modal-footer .btn-primary {
    border-radius: 8px !important;
    min-width: 100px;
}

/* .inner_page_banner_3new:before {
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(45, 55, 72, 0.76);
	position: absolute;
} */
.back_redirectnew .backicon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.back_redirectnew .backicon svg {
    width: 16px;
    height: 16px;
}

#footerCompanyAddress p {
    padding: 10px 0 0 0;
}

.hotel_vouchers_page .voucher_card {
    background: var(--white);
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    height: calc(100% - 15px);
}

.voucher_card .voucher_details p {
    min-height: 90px;
    font-size: 15px;
    line-height: 20px;
    padding: 5px 0;
    color: var(--black);
}

.hotel_vouchers_page .voucher_card.voucher_with_purhcase .voucher_price_bottom_box {
    background: #e5e5e5;
    display: flex;
    border-radius: var(--border-radius);
    width: 100%;
}

.hotel_vouchers_page .voucher_card.voucher_with_purhcase .voucher_pricing {
    display: flex;
    /* min-height: 200px; */
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    justify-content: end;
    margin-top: auto;
    padding-top: 15px;
}

.voucher_with_purhcase .voucher_options {
    margin: 0;
    display: flex;
    /* align-items: flex-start; */
    flex: 1 0;
    gap: 0;
    width: 100%;
    max-height: 47px;
}

.hotel_vouchers_page .voucher_card.voucher_with_purhcase .voucher_pricing .voucher_price {
    width: 100%;
}

.cart_page .table thead tr th,
.cart_page .table tbody tr th,
.cart_page .table tbody tr td {
    text-align: left;
    padding: 10px;
}

/* .inner_page_banner .inner_srch_box {
    background: #fff !important;
}  */
.inner_page_banner .banner_srch_area .banner_srch_actions .form-select.srch_type {
    border: 1px solid #ccc !important;
}

.voucher_with_purhcase .voucher_price PriceAmount {
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    min-height: 44px;
    font-size: 22px !important;
}

.hotel_vouchers_page .voucher_card.voucher_with_purhcase .voucher_pricing .voucher_price sup {
    font-size: 14px;
    color: red;
    text-decoration: line-through;
}

.hotel_voucher_details_box .hotel_details_price sup {
    font-size: 24px;
    color: red;
    margin-left: 40px;
    position: relative;
}

.hotel_voucher_details_box .hotel_details_price sup::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--hotel-button-colors);
    left: 0;
    top: 18px;
    transform: rotateX(0deg) rotateY(-40deg) rotateZ(-8deg);
}

#companyFacilitySection {
    width: 100%;
    row-gap: 20px;
    display: flex;
    margin-top: 15px;
    flex-wrap: wrap;
    column-gap: 20px;
}

#companyFacilitySection .facility_list {
    width: 21%;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 10px;
    box-shadow: 0 0 10px 0 #ccc;
    border-radius: 5px;
}

#companyFacilitySection .facility_list ul li {
    display: flex;
    align-items: center;
}

#companyFacilitySection .facility_list ul li:before {
    top: 0;
}

#footer {
    background: #151515;
    /* background CSS change by Bhavesh because want change #2d3748 to #151515 */
    float: left;
    width: 100%;
    clear: both;
}

.ftr-logo {
    width: 100%;
    float: left;
}

.ftr-logo a.logo {
    margin-bottom: 30px;
}

.ftr-logo a {
    display: block;
    font-size: 14px;
    color: #87879a;
    margin-bottom: 20px;
    text-decoration: none;
}

.ftr-logo a:hover {
    opacity: 1 !important;
}

.ftr-logo img {
    width: 90px;
}

.ftr-logo a.phone {
    cursor: default;
    padding-left: 3px;
}

.ftr-logo a i {
    margin-right: 10px;
}

.ftr-inner {
    width: 100%;
    float: left;
}

.ftr-inner p {
    color: #87879a;
}

.ftr-inner h2 {
    font-size: 20px;
    color: #fff;
    padding-bottom: 20px;
}

.ftr-inner ul {
    display: block;
    margin: 0;
    padding: 0;
}

.ftr-inner ul li {
    display: block;
    padding-bottom: 18px;
}

.ftr-inner ul li a {
    font-size: 16px;
    color: #87879a;
    text-decoration: none;
}

.ftr-inner ul li a:hover {
    color: #fff;
}

.cpy p {
    font-size: 14px;
    color: #87879a;
    text-align: center;
}

.cpy {
    width: 100%;
    float: left;
    border-top: 1px solid #43434b;
    padding: 20px 0;
}

.ftr-soc a {
    display: inline-block;
    margin-right: 15px;
    opacity: 0.5;
}

.ftr-soc a:hover {
    opacity: 1;
}

.ftr-soc {
    float: left;
    margin-top: 28px;
}

.voucher_options_with_lblnew1 .select2-container--default .select2-selection--single .select2-selection__rendered {
    /* padding-left: 20px; */
    padding: 2px 0;
    margin: 0;
}

.voucher_options_with_lblnew1 .voucher_options_lbl {
    min-width: 50%;
    font-weight: 600;
    text-align: center;
    border: 2px solid #1f3bd900;
}

.hotel_inner_without_banner.cart_page .select2-container--default .select2-selection--single {
    padding: 3px 0;
}

.hotel_inner_without_banner.cart_page.frequently-bought-with .voucher_options_with_lblnew1 .voucher_options_lbl {
    border: none;
}

/*20-08-2024*/
.client-header {
    padding: 0 !important;
}

.client-header .main_header {
    height: 67px;
}

.client-header .main_header a.navbar-brand {
    padding: 6px 0 !important;
    height: 67px;
    /* max-width: 300px; */
    text-align: center;
}

.client-header .main_header a.navbar-brand img {
    /* height: 100%; */
    height: 100%;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    object-fit: cover;
}

/*17/07/2024 dipen*/

footer .footer_links ul a {
    position: relative;
    transition: 0.6s all;
    font-size: var(--btn-font-size);
    color: var(--font-light-grey);
    text-transform: capitalize;
    text-decoration: none;
}

footer .footer_links ul li::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 15px;
    background-color: #fff;
    right: 0;
    top: 3px;
}

footer .footer_links ul li {
    padding: 0 10px;
    position: relative;
}

footer .footer_links ul li::after :last-child {
    display: none;
}

/* .hotel_vouchers_page .inner_page_banner {
	background-size: cover;
	height: 400px;
	position: relative;
} */
/* .hotel_vouchers_page .carousel-inner {
	height: 400px;
} */
#companyFtMenu li.showFtMenu::after {
    display: none;
}

.hotel_inner_without_banner.hotel_voucher_detail_page .section_box.top_selling_vouchers .hotel_voucher_details_box {
    padding: 0 12px;
}

.page_breadcrumds ul {
    padding-left: 20px;
}

.nav-link:focus,
.nav-link:hover {
    color: #fff !important;
}

#searchBarSection {
    position: absolute;
    z-index: 99;
    bottom: -40px;
    left: 0;
    right: 0;
}

ul.navbar-nav li.nav-item.button_ui.hotel_cta_btn a.nav-link {
    width: 170px;
}

header.navbar-fixed ul.navbar-nav li.nav-item.button_ui.hotel_cta_btn .nav-link {
    width: 140px;
}

.hotel_cta .hotel_cta_btn.button_ui a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hotel_details_tnc_info.hotel_details_tnc_info_new {
    margin-top: 140px;
}

.carousel-indicators {
    bottom: 30px;
}

.mobile__how-__work {
    position: relative;
}

.hotel_details_tnc_info.hotel_details_tnc_info_new {
    margin-top: 0;
}

.ProductOptions {
    min-height: 655px;
}

.page_breadcrumds_section.detail_page_sec {
    display: block !important;
}

.delivery_option_box ul.nav li .nav-link:hover {
    color: #000 !important;
}

.delivery_option_box ul.nav li .nav-link:active {
    color: #000 !important;
}

.delivery_option_box ul.nav li .nav-link:focus {
    color: #000 !important;
}

.resev-div {
    padding: 10px;
    box-shadow: 0px 0px 15px 0 rgb(0 0 0 / 28%);
    margin-bottom: 40px;
    border-radius: 10px;
}

.resev-div h2 {
    font-size: 22px;
    color: red;
    line-height: 32px;
}

.resev-div h2 span {
    margin-left: 10px;
}

.resev-div p {
    font-size: 14px;
    color: #000;
    padding-left: 20px !important;
    position: relative;
    margin-left: 20px;
}

.resev-div p::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #000;
    border-radius: 50%;
    left: -10px;
    top: 15px;
}

.cart-modal .cart-modal-cont {
    margin: 0;
    padding: 40px 24px;
    text-align: center;
}

.cart-modal .modal-dialog {
    max-width: 420px;
}

/*
.cart-modal-icon svg {
    width: 40px;
    height: 40px;
}*/

.cart-modal .cart-modal-cont h2 {
    font-size: 32px;
    color: var(--theme-blue);
    margin: 20px 0 20px !important;
}

.cart-modal .cart-modal-cont p {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 10px;
    padding: 0 !important;
    font-weight: 400;
}

.cart-modal .cart-modal-cont .cart-action {
    margin-top: 24px;
}


.cart-modal .cart-modal-cont .cart-action .btn {
    min-width: 90px;
}

.hotel_inner_without_banner.cart_page .table tbody tr td {
    padding: 10px !important;
}

/***/
/*19-10-2024*/

/* .navbar-fixed .main_header .website_logo .navbar-brand {
	width: 170px;
	transition: 0.6s all;
	height: 62px;
} */

.navbar-fixed .main_header .website_logo .navbar-brand {
    height: 70px;
}

.navbar-fixed .main_header .website_logo .navbar-brand img {
    width: auto;
}

.client-header .main_header .website_logo .navbar-brand {
    transition: none;
}

.navbar-fixed .client-header .main_header .website_logo .navbar-brand {
    height: 67px;
}

.navbar-nav.new-head {
    display: flex;
    align-items: center;
}

.navbar-nav.new-head li a.timer_clock_normal {
    position: relative;
}

.navbar-nav.new-head li a.timer_clock_last-min {
    position: relative;
}

.navbar-nav.new-head li a.timer_clock_normal span {
    font-size: 13px;
    line-height: 14px;
    background: var(--hotel-main-theme);
    color: #fff;
    padding: 2px 5px;
    border-radius: 50px;
    position: absolute;
    top: 3px;
    left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.navbar-nav.new-head li a.timer_clock_last-min span {
    font-size: 13px;
    line-height: 14px;
    background: red;
    color: #fff;
    padding: 2px 5px;
    border-radius: 50px;
    position: absolute;
    top: 3px;
    left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    z-index: 999;
}

.navbar-nav.new-head li.aler-icon {
    padding-right: 20px;
}

.timer_clock_last-min i.clock-blink {
    display: block !important;
}

.timer_clock_last-min i.clock-normal {
    display: none !important;
}

.navbar-nav.new-head li a.blink,
svg span {
    animation: blink 1.8s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

@keyframes animate {
    from {
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to {
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

.navbar-nav.new-head li.aler-icon:hover .resev-div {
    display: flex !important;
    position: absolute;
    bottom: -134px;
    left: 0;
    background: #fff;
    flex-direction: column;
    width: 50%;
    right: 0;
    margin: 0 auto;
}

.soldout-tag {
    font-size: 18px;
    color: red;
    font-weight: 600;
}

/*CutOff Price Tag*/
.price-tag {
    display: flex;
    width: 300px;
    height: 42px;
    font-family: Arial, sans-serif;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0px 0px 10px -3px #000;
}

.price-tag .pr-tag {
    width: 25%;
    background: var(--hotel-button-colors);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #fff;
    border-right: 1.5px solid #fff;
}

.price-tag .mrp {
    color: #ffffff;
    background-color: red;
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-tag .deal {
    background: #22d125;
    color: #e60000;
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    text-align: right;
    padding-right: 10px;
}

.price-tag .deal:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    border-left: 22px solid red;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

.price-tag .mrp .line-through {
    text-decoration: line-through;
    font-size: 16px;
    font-weight: 600;
}

.price-tag .mrp .line {
    font-size: 14px;
    line-height: 20px;
}

.price-tag .mrp span {
    font-size: 14px;
    line-height: 20px;
}

.price-tag .deal span {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.price-tag .deal .deal-txt {
    font-size: 14px;
    line-height: 20px;
    color: #000;
    padding-right: 10px;
}

/*CutOff Price Tag*/
.purchase_notification {
    width: 100%;
    box-shadow: 0px 0px 20px 10px #0000000d;
    border-radius: 10px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-bottom: 5px solid red;
}

.purchase_notification .warning_sec .image_warning {
    height: 175px;
    width: 177px;
    margin: 0 auto;
}

.purchase_notification .warning_txt {
    margin-top: 30px;
}

.purchase_notification .warning_txt h1 {
    font-size: 40px;
}

.purchase_notification .warning_txt p {
    font-size: 18px;
    color: #000;
    text-align: left;
    width: 50%;
    margin: 0 auto;
}

.purchase_notification .warning_txt a {
    background: var(--theme-blue);
    color: var(--white);
    font-size: 16px;
    font-weight: normal;
    text-transform: capitalize;
    text-decoration: none;
    padding: 8px 30px;
    border-radius: var(--border-radius);
    transition: 1s all;
    display: flex;
    width: 200px;
    align-items: center;
    justify-content: center;
    margin: 30px auto 0;
}

.purchase_notification .warning_txt a:hover {
    background: var(--theme-orange);
    transition: 1s all;
}

#Group7 {
    animation: opa 1s ease-in-out infinite alternate;
}

@keyframes opa {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* blured */

.delivery_option_area .input-group.date span.input-group-text {
    height: 38px;
}

.delivery_option_area .input-group.date .form-control.delivery-control {
    height: 38px;
}

/** Loader CSS **/

.custom_loader .custom_loader_child {
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom_loader .custom_loader_child .bounce {
    width: 18px;
    height: 18px;
    background-color: #ffffff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    border-radius: 100%;
    display: inline-block;
    animation: tp-bouncedelay 1.4s infinite ease-in-out;
    animation-fill-mode: both;
}

.custom_loader .custom_loader_child .bounce1 {
    animation-delay: -0.32s;
}

.custom_loader .custom_loader_child .bounce2 {
    animation-delay: -0.16s;
}

@keyframes tp-bouncedelay {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

@keyframes tp-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes tp-bounce {

    0%,
    100% {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }
}

.hamburger-menu svg line {
    stroke: var(--hotel-icon-colors);
}

/*responsive start*/

@media (max-width: 1680px) {
    .gallery-slider .swiper-two .swiper-slide:nth-child(odd) {
        top: 70px;
    }

    .gallery-slider .swiper-slide,
    .gallery-slider .swiper-two .swiper-slide {
        height: 32.5rem;
    }
}

@media (max-width: 1600px) {
    .gallery-slider .swiper-two .swiper-slide:nth-child(odd) {
        top: 65px;
    }

    .gallery-slider .swiper-slide,
    .gallery-slider .swiper-two .swiper-slide {
        height: 30.5rem;
    }
}

@media screen and (min-device-width: 864px) and (max-device-width: 1536px) and (orientation: landscape) {
    .gallery-slider .swiper-wrapper {
        /* height: 85vh; */
        height: 40vw;
    }

    .gallery-slider .swiper-slide,
    .gallery-slider .swiper-two .swiper-slide {
        height: 28.5rem;
    }

    .gallery-slider .secondary-controls {
        bottom: 2rem;
    }

    .nw_slide_bar {
        height: 400px !important;
    }
}

@media only screen and (min-width: 1500px) and (max-width: 1550px) {
    .slide .item:nth-child(3) {
        left: 36% !important;
    }

    .slide .item:nth-child(4) {
        left: calc(50% + 20px) !important;
    }

    .slide .item:nth-child(5) {
        left: calc(50% + 250px) !important;
    }

    .container .slide .item {
        width: 250px !important;
        height: 300px;
    }

    .slide .item:nth-child(1),
    .slide .item:nth-child(2) {
        width: 600px !important;
    }

    .slide .item:nth-child(n + 6) {
        left: calc(50% + 480px) !important;
    }

    .section_box {
        padding: 40px;
        min-height: inherit;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1440px) {}

@media (max-width: 1400px) {

    /* header .navbar-brand img {
	width: 200px;
} */
    .hotel_left_side .hotel_cta {
        gap: 10px;
    }

    .button_ui a {
        padding: 10px 13px;
    }

    /* .voucher_card .voucher_title,
    .voucher_card .voucher_title a {
        min-height: 100px;
    }*/

    .voucher_options_with_lbl {
        /* flex: 1; */
    }

    /* .voucher_card .voucher_image {
	height: 280px;
} */
    .gallery-slider .swiper-wrapper {
        height: 75vh;
    }

    .gallery-slider .swiper-slide,
    .gallery-slider .swiper-two .swiper-slide {
        height: 30.5rem;
    }

    .gallery-slider .secondary-controls {
        bottom: 0rem;
    }

    .banner_srch_area label {
        font-size: 15px;
        margin: 0 25px;
    }

    .banner_srch_area .banner_srch_heading label {
        font-size: 19px;
        margin-left: 0;
    }

    section.section_box.what_new_area.keywordTags_ul_new {
        margin-top: 20px;
    }
}

@media screen and (min-device-width: 768px) and (max-device-width: 1366px) and (orientation: landscape) {
    .gallery-slider .swiper-wrapper {
        height: 70vh;
    }

    .gallery-slider .swiper-slide,
    .gallery-slider .swiper-two .swiper-slide {
        height: 26.5rem;
    }

    .gallery-slider .secondary-controls {
        bottom: 0rem !important;
    }
}

@media (max-width: 1366px) {
    .gallery-slider .swiper-wrapper {
        height: 42vw;
    }

    .gallery-slider .swiper-slide,
    .gallery-slider .swiper-two .swiper-slide {
        height: 29.5rem;
    }

    .gallery-slider .secondary-controls {
        bottom: 0rem;
        right: 10rem;
    }

    .gallery-slider .swiper-two .swiper-slide:nth-child(odd) {
        top: 45px;
    }

    /* .voucher_options_with_lbl {
	width: 150px;
} */
    .hotel_voucher_list_cards .voucher_card .voucher_details {
        padding: 15px;
    }

    .price-tag {
        width: 100%;
    }

    .price-tag .pr-tag {
        font-size: 12px;
    }

    .price-tag .mrp .line-through {
        font-size: 12px;
    }

    .price-tag .deal span {
        font-size: 12px;
    }

    .price-tag .deal .deal-txt {
        padding-right: 0;
    }
}

@media (max-width: 1280px) {

    /* .voucher_card .voucher_image {
	height: 190px;
} */
    .voucher_card .voucher_validation {
        font-size: 15px;
    }

    .voucher_card .voucher_title,
    .voucher_card .voucher_title a {
        font-size: 18px;
        min-height: 50px;
        line-height: 28px;
    }

    footer .footer_bottom .footer_links {
        width: 50%;
        margin: 0;
    }

    footer .footer_social {
        width: 15%;
    }

    footer .footer_social li {
        margin: 0 5px;
    }

    /* .hotel_left_side .hotel_cta {
	flex-direction: column;
} */
    .button_ui a {
        justify-content: center;
    }

    .voucher_card.voucher_with_purhcase {
        min-height: auto;
        padding-bottom: 15px;
    }

    .section_heading h3.main_title {
        font-size: 2.188rem;
        color: var(--black);
    }

    .voucher_with_purhcase .voucher_price span {
        font-size: 16px;
    }

    .voucher_with_purhcase .voucher_price PriceAmount {
        font-size: 16px;
    }

    .gallery-slider .swiper-wrapper {
        height: 45vw;
    }

    .gallery-slider .swiper-slide,
    .gallery-slider .swiper-two .swiper-slide {
        height: 29.5rem;
    }

    .gallery-slider .secondary-controls {
        bottom: 0rem;
    }

    .gallery-slider .swiper-two .swiper-slide:nth-child(odd) {
        top: 45px;
    }

    .voucher_card .voucher_details p {
        min-height: 70px;
    }

    /* .inner_page_banner {
	height: 300px;
} */
}

@media (min-width: 1193px) and (max-width: 1530px) {
    .hotel_left_side .hotel_cta .hotel_cta_btn.button_ui a {
        width: 185px;
        padding: 10px 10px;
    }
}

@media (min-width: 1193px) and (max-width: 1194px) {
    .banner_srch_heading {
        justify-content: center;
        padding-bottom: 15px;
    }

    .inner_page_banner .banner_srch_area form {
        flex-direction: column;
        justify-content: center;
    }

    .inner_page_banner .banner_srch_area .banner_srch_actions {
        justify-content: center;
    }
}

@media (max-width: 1180px) {

    .gallery-slider .swiper-slide,
    .gallery-slider .swiper-two .swiper-slide {
        height: 22.5rem !important;
    }

    .inner_page_banner .banner_srch_area form {
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    /* .hotel_vouchers_page .top_selling_vouchers {
	padding-top: 10rem;
} */
    .hotel_inner_without_banner .top_selling_vouchers {
        padding-top: 2rem;
    }

    .inner_page_banner .banner_srch_area .banner_srch_actions {
        justify-content: center;
    }

    .hotel_vouchers_page .section_box.top_selling_vouchers {
        padding-left: 0;
        padding-right: 0;
    }

    /* .hotel_voucher_list_cards .voucher_card .voucher_details {
	min-height: 350px;
} */
    /* #productsbycategorySection .voucher_card .voucher_details {
        min-height: 435px;
    } */

    .hotel_details_tnc_info.hotel_details_tnc_info_new .hwitwrks-icn ul li {
        line-height: 22px;
    }
}

@media (max-width: 1180px) and (min-width: 1179px) {
    .gallery-slider .secondary-controls {
        bottom: 2rem !important;
    }

    #productsbycategorySection .voucher_card.voucher_with_purhcase {
        min-height: 700px;
    }
}

@media (max-width: 1024px) and (min-width: 1023px) {
    #productsbycategorySection .voucher_card.voucher_with_purhcase {
        min-height: 700px;
    }
}

@media (max-width: 1024px) {
    p {
        padding: 5px 0;
    }

    header .container-fluid {
        padding: 0 10px;
    }

    .navbar-toggler {
        background: var(--theme-orange);
        padding: 10px;
    }

    .navbar-toggler img {
        width: 30px;
    }

    .navbar-toggler .navbar-toggler-icon {
        width: auto;
        height: auto;
    }

    .section_box {
        padding: 50px 0;
        min-height: inherit;
    }

    .hotel_inner_without_banner.cart_page .section_box {
        padding: 40px 10px;
    }

    .section_heading_box .section_heading {
        width: 70%;
    }

    .section_heading_box h3.main_title {
        /* font-size: 38px; */
        font-size: 2rem;
    }

    .section_heading_box h5.sub_title {
        font-size: 20px;
    }

    .button_ui a {
        padding: 10px 12px;
        display: inline-flex;
    }

    /* .inner_page_banner {
	min-height: 250px;
} */
    /* .voucher_card .voucher_image {
	height: 160px;
} */
    .voucher_card .voucher_title,
    .voucher_card .voucher_title a {
        font-size: 18px;
        display: inline-block;
        width: 100%;
        white-space: nowrap;
        overflow: hidden !important;
        text-overflow: ellipsis;
        min-height: auto;
    }

    .voucher_card .voucher_validation {
        text-align: center;
        font-size: 15px;
    }

    .voucher_card .voucher_details {
        padding: 10px;
    }

    .voucher_card .voucher_pricing {
        margin: 30px 0 0 0;
        flex-direction: column;
    }

    .voucher_pricing .price-tag.home-sub-page {
        width: 100%;
        gap: 0;
    }

    .voucher_pricing .button_ui.detail-btn {
        width: 100%;
    }

    .voucher_card .voucher_sub_title {
        font-size: 18px;
    }

    .voucher_card .voucher_venue {
        font-size: 18px;
    }

    .voucher_card .voucher_location {
        margin: 5px 0 0 0;
    }

    .hotel_left_side .hotel_info {
        padding: 30px 0;
    }

    .hotel_left_side .hotel_cta {
        /* flex-direction: column; */
        margin-top: 10px;
        /*margin-top: 20px;*/
    }

    .hotel_left_side {
        padding: 30px;
        border-radius: 6px;
    }

    .hotel_left_side .hotel_contacts p {
        padding-top: 0;
    }

    .hotel_left_side .hotel_cta .hotel_cta_btn.button_ui a {
        width: 180px;
    }

    /* .voucher_with_purhcase .voucher_options {
	flex-direction: column;
	gap: 10px;
} */
    /* .voucher_options_with_lbl {
	width: 100%;
} */
    /* .voucher_instruction {
	flex-direction: row;
	width: 100%;
} */
    .voucher_with_purhcase .voucher_pricing .button_ui a {
        width: 100%;
    }

    .hotel_vouchers_page .hotel_voucher_filter_area .select2-container {
        width: 220px !important;
    }

    .hotel_voucher_details_box .section_heading_box .section_heading {
        width: 100%;
    }

    .hotel_voucher_details_box .section_heading_box h3.main_title {
        font-size: 30px;
        font-weight: 600;
    }

    .hotel_voucher_details_box .button_ui a {
        display: flex;
    }

    .modal {
        top: 1rem;
    }

    footer .footer_links ul {
        flex-wrap: wrap;
        row-gap: 10px;
    }

    footer .footer_links {
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .gallery-slider .swiper-slide,
    .gallery-slider .swiper-two .swiper-slide {
        height: 18.5rem !important;
    }

    .gallery-slider .secondary-controls {
        bottom: 0rem !important;
        right: 8rem;
    }

    .gallery-slider .swiper-two {
        /* flex-basis: 57%; */
        flex-basis: 55%;
    }

    .gallery-slider .swiper-wrapper {
        height: 40vw !important;
    }

    .gallery-slider .swiper-two .swiper-slide:nth-child(odd) {
        top: 50px;
    }

    .deliveryoption-sec {
        padding: 50px 15px;
    }

    .deliveryoption-sec,
    .termsconditions-sec,
    .privacypolicy-sec {
        padding: 50px 15px;
    }

    .inner_page_banner .inner_srch_box {
        border-radius: 0;
        border: none;
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .inner_page_banner .banner_srch_area input[type='text'],
    .inner_page_banner .banner_srch_area select {
        width: 330px;
    }

    .inner_page_banner .container-fluid {
        padding: 0;
    }

    .inner_page_banner .banner_srch_area form {
        flex-direction: column;
    }

    .inner_page_banner .banner_srch_heading {
        justify-content: center;
    }

    .inner_page_banner .banner_srch_area .banner_srch_actions {
        margin: 20px 0 0 0;
    }

    .inner_page_banner .banner_srch_area .banner_srch_actions {
        align-items: center;
        justify-content: center;
    }

    .hotel_inner_without_banner .hotel_vouchers_page .top_selling_vouchers {
        padding-top: 12rem;
    }

    .cart-button span {
        font-size: 14px;
    }

    /* .cart-button .fa-box {  top: -23% !important; } */
    /* .hotel_vouchers_page .top_selling_vouchers {
	padding-top: 12rem;
} */
    .hotel_inner_without_banner .top_selling_vouchers {
        padding-top: 2rem;
    }

    /* .inner_page_banner .banner_srch_area input[type="text"], .inner_page_banner .banner_srch_area select {
        width: 280px;
    } */

    /* .inner_page_banner {
	height: 250px;
} */
    /* .voucher_options_with_lbl.voucher_options_with_lblnew {
	width: 100%;
} */
    /* .back_redirectnew.button_ui {
		min-width: 105px;
	} */

    footer .footer_logo.hoter_footer_logo {
        justify-content: center;
    }

    #footerCompanyAddress p {
        margin-top: 20px;
    }

    /* footer .footer_links ul li {
	margin: 5px 0;
	padding: 0 0px !important;
} */
    /* footer .footer_links ul li a {padding: 0 10px !important;} */
    /* .voucher_with_purhcase .voucher_options {max-height: 90px !important;} */
    /* .hotel_vouchers_page .voucher_card.voucher_with_purhcase .voucher_pricing {
		min-height: inherit;
	} */

    /* .home_page header .navbar-brand img {
	width: auto;
} */
    .ftr-logo a svg {
        display: none;
    }

    .ftr-soc a {
        margin-right: 10px;
    }

    .inner_page_banner img {
        height: 225px;
    }

    /* .hotel_vouchers_purcase_page .inner_page_banner .carousel-inner {
	height: 210px;
} */
    .voucher_instruction a {
        font-size: 12px;
    }

    .voucher_instr_info {
        font-size: 12px;
    }

    .hotel_vouchers_page .top_selling_vouchers {
        padding-top: 100px;
    }

    .hotel_vouchers_page .hotel_inner_without_banner .top_selling_vouchers {
        padding-top: 30px;
    }

    /* .hotel_vouchers_page .carousel-inner {
    height: 240px;
}  */
    #searchBarSection {
        bottom: -60px;
    }

    .page_breadcrumds_section {
        margin-top: 20px;
    }

    .cart-button span {
        font-size: 12px;
    }

    .voucher_top_section {
        min-height: 160px;
    }

    .hotel_vouchers_page .voucher_card {
        justify-content: flex-start;
    }

    #productsbycategorySection .voucher_card.voucher_with_purhcase {
        min-height: 700px;
    }

    .voucher_options_with_lbl {
        width: 160px;
    }

    /* ul.navbar-nav li.nav-item.button_ui.hotel_cta_btn a.nav-link img, svg {display: none;} */
    .detail_menu ul.navbar-nav li.nav-item.button_ui.hotel_cta_btn a.nav-link {
        width: auto;
        margin-left: 10px;
    }

    .detail_menu ul.navbar-nav li.nav-item.button_ui.hotel_cta_btn a.nav-link svg {
        margin-left: 16px;
    }

    .hotel_cta .hotel_cta_btn.button_ui a svg {
        display: block;
    }

    .hotel_details_tnc_info.hotel_details_tnc_info_new {
        margin-top: 0;
    }

    .page_breadcrumds {
        width: 90%;
    }

    section.section_box.what_new_area.keywordTags_ul_new {
        margin-top: 20px;
    }

    section.section_box.what_new_area {
        margin-top: 20px;
    }

    #searchBarSection {
        /* bottom: -43px; */
    }

    .hotel_vouchers_purcase_page #searchBarSection {
        /* bottom: -60px; */
    }

    .carousel-indicators {
        bottom: 0;
    }

    .voucher_with_purhcase .voucher_options {
        gap: 5px !important;
    }

    .ProductOptions {
        min-height: inherit !important;
    }

    .slide .item:nth-child(3) {
        left: 30% !important;
    }

    .slide .item:nth-child(4) {
        left: calc(50% + -40px) !important;
    }

    .slide .item:nth-child(5) {
        left: calc(50% + 110px) !important;
    }

    .container .slide .item {
        width: 210px !important;
        height: 300px;
        max-width: 350px !important;
    }

    .slide .item:nth-child(1),
    .slide .item:nth-child(2) {
        width: 600px !important;
    }

    .slide .item:nth-child(n + 6) {
        left: calc(50% + 270px) !important;
    }

    .nw_slide_bar {
        margin: 0 20px !important;
    }

    section.section_box.top_selling_vouchers .price-tag .deal {
        text-align: center;
    }

    section.inner_page_banner.company-page-sec #searchBarSection {
        bottom: -68px;
    }
}

@media (max-width: 980px) {
    .website_navigation {
        display: flex;
        justify-content: flex-end;
    }

    header .navbar-toggler {
        position: relative;
        z-index: 99;
    }

    header .website_logo {
        position: relative;
        z-index: 99;
        max-width: 210px;
        width: auto;
    }

    .navbar-nav {
        flex-direction: row;
        justify-content: center;
    }

    header .main_header .navbar-collapse {
        position: absolute;
        top: 0 !important;
        background: var(--theme-blue);
        padding: 140px 0 10px 0;
        height: auto !important;
        color: var(--white);
        left: 0 !important;
        width: 100% !important;
    }

    header .navbar-nav .nav-link {
        font-size: 16px;
    }

    header.navbar-fixed .navbar-nav .nav-link {
        font-size: 16px;
    }

    .voucher_card .voucher_title,
    .voucher_card .voucher_title a {
        min-height: auto;
        display: block;
    }

    .voucher_card .voucher_pricing {
        flex-direction: column;
        margin: 0;
    }

    .voucher_card .voucher_pricing .voucher_price {
        width: 100%;
        margin: 0;
    }

    .voucher_card .voucher_pricing .button_ui {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .voucher_card .voucher_pricing .button_ui a,
    .voucher_card .voucher_pricing .button_ui .btn-voucher {
        width: auto;
        display: flex;
        justify-content: center;
    }

    .button_ui a {
        font-size: 14px;
    }

    footer {
        padding: 30px 0;
    }

    footer .footer_logo {
        justify-content: flex-start;
    }

    footer .footer_logo img {
        width: 70px;
    }

    /* img#companyFooterLogoImagePath { width: 30%;} */

    footer .footer_links {
        align-items: center;
    }

    footer .footer_links ul {
        align-items: center;
        justify-content: center;
    }

    /* footer .footer_links ul a {
	padding: 0 0px 0 0;
} */
    /* footer .footer_links ul li {
	margin: 5px 0;
} */
    footer .footer_links ul a:before {
        display: none;
    }

    footer p {
        text-align: center;
    }

    footer .footer_bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    footer .footer_bottom .footer_links {
        width: 100%;
        margin: 0;
    }

    footer .footer_links span {
        margin: 0 0 0 0;
    }

    footer .footer_social {
        width: 100%;
    }

    footer .footer_social li {
        margin: 0 16px 0 0;
    }

    footer .copy_write {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    footer .footer_social ul {
        justify-content: center;
    }

    .hotel_left_side .hotel_info h3 {
        font-size: 22px;
    }

    .hotel_left_side .hotel_info h5 {
        font-size: 18px;
    }

    /* .hotel_left_side .hotel_contact_info {
	flex-direction: column;
} */
    .hotel_vouchers_page .section_heading_box {
        flex-direction: row;
    }

    .hotel_vouchers_page header .main_header .navbar-collapse {
        position: relative;
        padding: 0;
    }

    .inner_page_banner {
        /* height: 230px;
	min-height: 230px; */
        /* height: auto; */
        margin-top: 0rem;
        height: 295px;
    }

    /* .hotel_vouchers_page .section_box.top_selling_vouchers {
		margin-top: 50px;
	} */

    .page_breadcrumds_section {
        flex-direction: row;
        align-items: flex-start;
    }

    .voucher_card .voucher_pricing .button_ui a {
        width: 100% !important;
    }

    /* .page_breadcrumds {
    margin: 0 0 10px 0;
  } */
    .hotel_vouchers_page .hotel_voucher_filter_area .select2-container {
        flex: 1;
    }

    .hotel_selling_voucher_list .col-md-4 {
        width: 50%;
    }

    section.section_box.hotel_facility {
        padding-top: 0;
    }

    footer .footer_links ul {
        row-gap: 0px;
    }

    .gallery-slider .swiper-two .swiper-slide {
        width: 9rem !important;
    }

    .hotel_voucher_details_box .event_dates_box p {
        min-width: 90px;
    }

    .hotel_voucher_details_box .event_dates_listing {
        gap: 4px;
    }

    .hotel_vouchers_page .voucher_card.voucher_with_purhcase .voucher_pricing {
        min-height: 230px !important;
    }

    /* footer .footer_links ul li a::after {right: -10px !important;} */
    /* .hotel_vouchers_page .inner_page_banner {height: 280px;}
.hotel_vouchers_page  .carousel-item  {height: 280px;}
.hotel_left_side .hotel_cta .hotel_cta_btn.button_ui a {
    width: 250px;} 


	.hotel_vouchers_page .carousel-inner {
		height: 230px;
	}
*/

    header .main_header .navbar-collapse.detail_menu {
        display: none !important;
    }

    header .main_header .navbar-collapse.detail_menu.show {
        display: block !important;
        background-color: #fff;
    }

    header .main_header .navbar-collapse.detail_menu .navbar-nav {
        flex-direction: row;
        align-items: start;
        flex-wrap: wrap;
        justify-content: flex-start;
        margin: 0 30px;
        gap: 10px;
    }

    header .main_header .navbar-collapse.detail_menu ul.navbar-nav li.nav-item.button_ui.hotel_cta_btn a.nav-link {
        width: 160px;
        margin-left: 5px;
    }

    /* header .website_logo {
	position: relative;
	z-index: 99;
	max-width: 210px;
	width: 200px;
	text-align: center;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
} */
    .client-header .main_header a.navbar-brand img {
        height: 100%;
        width: 210px;
        object-fit: cover;
    }
}

@media (max-width: 991px) {
    .back_redirectnew a {
        padding: 8px 8px !important;
    }

    .hotel_voucher_details_box .hotel_details_qty_section {
        flex-direction: column;
    }

    #searchBarSection {
        /* bottom: -118px; */
    }

    /* footer .footer_links ul li a::after {right: -10px !important;} */

    .hotel_vouchers_page .inner_page_banner #searchBarSection {
        bottom: 2px;
        z-index: 9;
    }

    section.inner_page_banner.company-page-sec #searchBarSection {
        bottom: 2px;
    }

    .hotel_details_info .productPriceAndAvailbility .priceSection {
        min-width: inherit;
        display: flex;
        width: 100%;
    }

    .hotel_voucher_details_box .hotel_details_price {
        width: 100%;
    }

    .hotel_voucher_details_box .hotel_details_price label {
        width: 50%;
    }

    .voucher_options_with_lbl.voucher_options_with_lblnew1 {
        width: 100%;
    }

    .voucher_options_with_lbl.voucher_options_with_lblnew1 label {
        width: 50%;
    }

    .hotel_voucher_details_box .hotel_details_qty_section .button_ui {
        width: 100%;
    }

    .slide .item:nth-child(1),
    .slide .item:nth-child(2) {
        width: 280px !important;
        height: 350px !important;
    }

    .nw-slider {
        height: 530px !important;
    }

    .slide .item:nth-child(n + 6) {
        left: calc(50% + 270px) !important;
    }

    .nw_slide_bar {
        margin: 0 20px !important;
    }

    /* 
.nw-slider {
    position: relative !important;
    height: 450px !important;
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 40px;
}
.nw-slider .nw_slide_bar {margin: 0 !important; top: 0;    width: 400px;
    height: 400px;
    left: 0;
    right: 0;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    margin: auto !important;}
.container .slide .item { left:0 !important; top: 0 !important; width: 400px !important; height: 400px !important; max-width: 400px !important; transform: none !important;}

.nw-slider .button {right: 0 !important;}

} */
    .navbar-nav.new-head li.aler-icon:hover .resev-div {
        display: flex !important;
        position: absolute;
        bottom: -190px;
        left: inherit;
        background: #fff;
        flex-direction: column;
        width: 400px;
        right: 0px;
        margin: 0 auto;
    }

    .hotel_vouchers_page .top_selling_vouchers {
        padding-top: 30px;
    }
}

@media (max-width: 820px) {
    .gallery-slider .swiper-wrapper {
        height: 48vw !important;
    }

    .gallery-slider .swiper-two .swiper-slide {
        width: 9rem !important;
    }

    .cart_page .table thead tr th,
    .cart_page .table tbody tr th,
    .cart_page .table tbody tr td {
        white-space: nowrap;
    }

    /* #productsbycategorySection .voucher_card .voucher_details {
        min-height: 390px;
    } */

    .page_breadcrumds_section {
        flex-direction: row;
        align-items: flex-start;
    }

    /* .home_page header .navbar-brand img {
	width: auto;
} */
    .section_box {
        min-height: inherit;
    }

    #companyFacilitySection .facility_list {
        width: auto;
    }
}

@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .gallery-slider .swiper-wrapper {
        height: 51vw;
    }
}


@media screen and (min-width: 768px) and (max-width: 1023px) {

    .cart_page .table thead tr th,
    .cart_page .table tbody tr th,
    .cart_page .table tbody tr td {
        white-space: inherit;
    }

    .cart_page .table tbody tr .type-col {
        width: 60%;
    }
}


@media (max-width: 768px) {
    .gallery-slider .swiper-two .swiper-slide {
        width: 10rem !important;
    }

    .gallery-slider .swiper-slide,
    .gallery-slider .swiper-two .swiper-slide {
        height: 16.5rem !important;
    }

    .gallery-slider .swiper-two {
        flex-basis: 64%;
    }

    .gallery-slider .swiper-one {
        flex-basis: 50.85%;
    }

    .gallery-slider .swiper-two .swiper-slide.swiper-slide-prev {
        -webkit-transform: translate(-20%, 0) !important;
        transform: translate(-20%, 0) !important;
    }

    .gallery-slider .swiper-two .swiper-slide.swiper-slide-next {
        -webkit-transform: translate(-20%, 0) !important;
        transform: translate(-20%, 0) !important;
    }

    .page_breadcrumds_section {
        flex-direction: row !important;
    }

    .client-header .main_header a.navbar-brand img {
        height: 100%;
        width: 100%;
    }

    .client-header .main_header a.navbar-brand {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    /* .hotel_vouchers_purcase_page .inner_page_banner .carousel-inner {
	height: 210px;
} */
    /* .hotel_vouchers_page .inner_page_banner {height: 280px; background-color: #000;} */
    .inner_page_banner .banner_srch_area .banner_srch_actions {
        column-gap: 10px;
    }

    #searchBarSection {
        /* bottom: -110px; */
    }

    .hotel_vouchers_purcase_page #searchBarSection {
        bottom: 2px;
    }

    .hotel_vouchers_page .hotel_vouchers_purcase_page #searchBarSection {
        /* bottom: -50px; */
        z-index: 9;
    }

    #productsbycategorySection .voucher_card.voucher_with_purhcase {
        min-height: 700px;
    }

    .page_breadcrumds_section {
        margin-top: 0;
    }

    .voucher_card .voucher_image img {
        height: 100%;
    }

    .resev-div p {
        margin-left: 20px;
    }

    section.section_box.top_selling_vouchers .price-tag .deal {
        text-align: right;
    }
}

@media (max-width: 767px) {
    .modal-dialog .btn-close {
        right: -6px;
        background-color: var(--hotel-main-theme);
        top: -9px;
        background-size: 40%;
        width: 35px;
        height: 35px;
        padding: 0;
        border-radius: 100%;
    }

    .promotion_box_area .frm_input {
        width: 100%;
        flex-direction: column;
    }

    .cart_counter_box {
        flex-direction: column;
        row-gap: 8px;
        padding: 10px 25px;
    }

    .page_breadcrumds ul {
        flex-wrap: wrap;
        row-gap: 0px;
    }

    .section_heading_box h3.main_title {
        font-size: 1.875rem;
    }

    /* #cartProductSection table thead tr th:first-child { min-width: 400px; }
    #cartProductSection table thead tr th:nth-child(2) { min-width: 200px; } */
    .instruction_submission {
        margin-top: 2rem;
    }

    #cartProductSection table thead tr th,
    #cartProductSection table tbody tr td {
        white-space: nowrap;
    }

    .cart_table {
        margin: 15px 0 0 0;
    }

    .modal {
        top: 1rem;
    }

    .hotel_left_side {
        padding: 1.375rem;
    }

    .gallery-slider .swiper-two {
        display: none;
    }

    .gallery-slider .swiper-one {
        flex-basis: 100%;
        margin-top: 1rem;
    }

    .gallery-slider .swiper-slide,
    .gallery-slider .swiper-two .swiper-slide {
        height: 100% !important;
    }

    .gallery-slider .secondary-controls {
        right: 0;
        left: 0;
        margin: 15px auto 0;
        position: relative;
    }

    .gallery-slider .swiper-wrapper {
        height: 60vw;
    }

    section.section_box.gallery-slider {
        padding-bottom: 0;
    }

    .gallery-slider i img,
    .gallery-slider i svg {
        width: 1.2rem;
    }

    .delivery_option_box {
        padding: 25px 15px;
    }

    .delivery_option_box .copy_actions_area {
        flex-wrap: wrap;
        row-gap: 30px;
    }

    .section_heading_box .main_title.main-inner-title {
        font-size: 1.4rem;
    }

    .promo_code_box p {
        padding: 10px 15px;
    }

    .gy-3-custom {
        row-gap: 1rem;
    }

    .hotel_voucher_details_box .event_dates_box p {
        /* min-width: auto; */
    }

    .hotel_inner_without_banner.cart_page {
        padding: 40px 0;
    }

    .hotel_inner_without_banner {
        padding: 0px 0 0 0;
    }

    .inner_page_banner img {
        display: none;
        height: 100%;
    }

    .hotel_voucher_details_box .accordion-body {
        padding-top: 0;
    }

    .hotel_voucher_details_box .hotel_details_qty_section {
        margin-top: 0;
        padding-top: 0;
    }

    .hotel_details_tnc_info {
        padding: 0;
        margin: 0;
    }

    .hotel_voucher_details_box .accordion .accordion-item {
        margin-bottom: 12px;
    }

    .hotel_voucher_details_box .hotel_details_qty_section {
        border-top: 1px solid transparent;
    }

    .hotel_voucher_details_box .hotel_details_price {
        font-size: 1.875rem;
    }

    .voucher_card .voucher_details p {
        font-size: 1rem;
    }

    .inner_page_banner .banner_srch_area .banner_srch_actions {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .banner_srch_area label {
        justify-content: center;
        margin: 10px 0;
    }

    .inner_page_banner .inner_srch_box {
        margin: 0;
    }

    .hotel_inner_without_banner .hotel_vouchers_page .top_selling_vouchers {
        padding-top: 1rem;
    }

    .hotel_vouchers_page .top_selling_vouchers {
        padding-top: 1rem;
    }

    .hotel_inner_without_banner .top_selling_vouchers {
        padding-top: 2rem;
    }

    /* .inner_page_banner {
	height: 225px;
	min-height: 225px;
} */
    #productsbycategorySection .voucher_card .voucher_details {
        min-height: auto;
    }

    .hotel_details_tnc_info .deliveryicons {
        gap: 30px !important;
    }

    .hotel_inner_without_banner.cart_page .section_box {
        padding: 40px 0px 0;
    }

    .inner_page_banner h3 {
        font-size: 25px;
    }

    .back_redirectnew a {
        padding: 8px 26px !important;
    }

    footer .footer_logo.hoter_footer_logo {
        justify-content: center;
    }

    #footerCompanyAddress {
        margin-top: 20px;
    }

    .voucher_with_purhcase .voucher_options {
        gap: 15px !important;
    }

    .hotel_selling_voucher_list.hotel_voucher_list_cards .voucher_with_purhcase .voucher_options {
        gap: 0 !important;
    }

    footer .footer_links ul li a::after {
        display: none !important;
    }

    .hotel_left_side .hotel_cta {
        flex-direction: row;
    }

    header .main_header {
        padding: 0 10px;
    }

    footer .footer_links ul li::after {
        display: none;
    }

    /* .hotel_vouchers_purcase_page .inner_page_banner {
	height: 270px;
} */
    /* .hotel_vouchers_purcase_page .inner_page_banner .carousel-inner {
	height: 140px;
} */
    .page_breadcrumds_section {
        flex-direction: row !important;
        gap: 10px;
        align-items: center !important;
    }

    .page_breadcrumds ul {
        padding-left: 0;
    }

    /* .hotel_vouchers_page .inner_page_banner {
	height: 360px;
}
.hotel_vouchers_page .inner_page_banner .carousel-inner {
	height: 220px;
}

.inner_page_banner img {
	height: 250px;
} */
    .hotel_vouchers_page .section_heading_box .section_heading .back_redirectnew.button_ui a {
        height: 42px;
    }

    header .main_header {
        padding: 0 10px;
    }

    .hotel_voucher_details_box .section_heading_box h3.main_title {
        padding-left: 15px;
        font-size: 24px;
    }

    .section_heading h3.main_title {
        font-size: 24px;
    }

    .hotel_voucher_details_box .accordion-item .accordion-button {
        font-size: 18px;
    }

    #productsbycategorySection .voucher_card.voucher_with_purhcase {
        min-height: inherit;
    }

    .image-pd {
        padding: 0 !important;
    }

    .hotel_left_side .hotel_cta .hotel_cta_btn.button_ui a {
        width: 170px;
    }

    /*11-09-2024*/
    /* .hotel_vouchers_page .inner_page_banner {
	height: 350px;
} */
    .carousel-indicators {
        height: 30px !important;
    }

    .cpy {
        margin-top: 20px;
    }

    .inner_page_banner {
        margin-top: 0rem;
        height: 300px;
    }

    .hotel_vouchers_purcase_page #searchBarSection {
        /* bottom: -110px; */
    }

    .inner_page_banner img {
        height: 100%;
        object-fit: cover;
    }

    .carousel-item,
    .carousel-inner,
    .carousel.slide,
    #companySliderBanner {
        height: 100%;
    }

    #searchBarSection {
        bottom: -130px;
    }

    .hotel_vouchers_page .section_box.top_selling_vouchers {
        margin-top: 0;
    }

    .hotel_vouchers_purcase_page .section_box.top_selling_vouchers {
        margin-top: 0;
    }

    .hotel_vouchers_page .hotel_inner_without_banner.hotel_voucher_detail_page .section_box.top_selling_vouchers {
        margin-top: 0;
    }

    .hotel_vouchers_page .hotel_inner_without_banner.hotel_voucher_detail_page .page_breadcrumds_section {
        margin-top: 0;
    }

    section.section_box.hotel_summary {
        padding-top: 0;
    }

    ul.navbar-nav li.nav-item.button_ui.hotel_cta_btn a.nav-link {
        width: 160px;
        margin: 2px;
    }

    header .main_header .navbar-collapse.detail_menu {
        display: none !important;
    }

    header .main_header .navbar-collapse.detail_menu.show {
        display: block !important;
        background-color: #fff;
    }

    header .main_header .navbar-collapse.detail_menu .navbar-nav {
        flex-direction: row;
        align-items: start;
        flex-wrap: wrap;
        justify-content: flex-start;
        margin: 0 30px;
        gap: 10px;
    }

    /* #productsbycategorySection {display: flex;}
#productsbycategorySection .accordion {order: 2;}
.image-pd {order: 1;}
.mobile__how-__work {order: 3;} */

    .inner_page_banner .inner_srch_box {
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-radius: 0;
    }

    /* header .website_logo {
	position: relative;
	z-index: 99;
	max-width: 210px;
	width: 200px;
	text-align: center;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
} */
    .client-header .main_header a.navbar-brand img {
        height: 100%;
        max-width: 210px;
        object-fit: contain;
    }

    .hotel_details_tnc_info.hotel_details_tnc_info_new {
        position: inherit;
    }

    .mobile__how-__work {
        position: inherit;
    }

    .ProductOptions {
        min-height: inherit;
    }

    /* .inner_page_banner.company-page-sec {
			height: 80px;
		} */
    section.inner_page_banner.company-page-sec {
        height: inherit;
        margin-top: 0;
        position: inherit;
    }

    .hotel_vouchers_page .hotel_vouchers_purcase_page #searchBarSection {
        position: inherit;
    }

    .hotel_vouchers_page .inner_page_banner #searchBarSection {
        position: inherit;
    }

    .inner_page_banner.company-page-sec .carousel-inner {
        display: none;
    }

    .resev-div p::after {
        left: -13px;
    }

    .resev-div h2 {
        font-size: 24px;
    }

    .gallery-slider .button {
        right: 0 !important;
    }

    .nw-slider {
        position: relative !important;
        height: 400px !important;
        width: 100%;
        display: flex;
        align-items: center;
        margin-top: 40px;
    }

    .nw-slider .nw_slide_bar {
        margin: 0 !important;
        top: 0;
        width: 300px;
        height: 300px;
        left: 0;
        right: 0;
        transform: none;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        box-sizing: border-box;
        margin: auto !important;
    }

    .container .slide .item {
        left: 0 !important;
        top: 0 !important;
        width: 300px !important;
        height: 300px !important;
        max-width: 300px !important;
        transform: none !important;
    }

    /*.price-tag.trading-page {height: 42px; align-items: self-start;}
		.price-tag.trading-page .button_ui {margin: 0;}
		.price-tag.trading-page .deal .deal-txt {padding-right: 20px;}*/
    .navbar-nav.new-head li.aler-icon:hover .resev-div {
        bottom: -230px;
        left: -200px;
        width: auto;
    }

    .client-header .main_header a.navbar-brand img {
        position: inherit;
        transform: inherit;
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

    .cart_table .table,
    .report-price-table .table {
        margin-bottom: 0;
        border: none;
    }

    .cart_table .table thead,
    .report-price-table .table thead {
        display: none;
    }

    .cart_table .table tr,
    .report-price-table .table tr {
        display: flex;
        flex-wrap: wrap;
        gap: 6px 20px;
        background: none;
        padding: 12px 16px;
        border: 1px solid #dadada;
        position: relative;
        margin-bottom: 10px;
        border-radius: 8px;
        overflow: hidden;
    }

    .cart_table .table tr:last-child,
    .report-price-table .table tr:last-child {
        margin-bottom: 0;
    }

    .cart_table .table tr td,
    .hotel_inner_without_banner.cart_page .table tbody tr td,
    .report-price-table .table tr td {
        --bs-table-accent-bg: transparent;
        display: block;
        padding: 0 !important;
        font-size: 18px;
        color: var(--theme-blue) !important;
        white-space: inherit !important;
        flex: 1;
        text-align: left;
    }

    .report-price-table table tbody tr td:nth-child(7),
    .report-price-table table tbody tr td:nth-child(8) {
        text-align: left !important;
    }

    .cart_table .table tr .type-col,
    .hotel_inner_without_banner.cart_page .table tbody tr .type-col,
    .report-price-table .table tr .type-col {
        font-size: 18px;
        line-height: 24px !important;
        color: var(--theme-orange) !important;
        font-weight: 700;
        padding-right: 40px !important;
        width: 100%;
        flex: inherit;
        box-shadow: none;
        padding: 0;
        white-space: inherit;
    }

    .cart_table .table tr .full-col,
    .report-price-table .table tr .full-col {
        width: 100%;
        flex: inherit !important;
    }

    .cart_table .table tr .delete-col,
    .hotel_inner_without_banner.cart_page .table tbody tr .delete-col,
    .report-price-table .table tr .delete-col {
        position: absolute;
        top: 14px;
        right: 14px;
        width: auto;
    }

    .cart_table .table tr .delete-col a,
    .hotel_inner_without_banner.cart_page .table tbody tr .delete-col a,
    .report-price-table .table tr .delete-col a {
        padding: 4px;
        display: inline-flex;
    }

    .cart_table .table .table_delete svg,
    .report-price-table .table .table_delete svg {
        width: 14px;
        fill: var(--font-light-grey);
    }

    .cart_table .table .cart-mbl-lbl,
    .report-price-table .table .cart-mbl-lbl {
        font-size: 14px;
        font-weight: 400;
        color: var(--font-light-grey);
        padding-right: 20px;
        min-width: 60px;
        display: block;
        margin-bottom: 4px;
    }

    .cart_table .table tr td .qty-fld,
    .report-price-table .table tr td .qty-fld {
        background: var(--bg-light-grey);
        padding: 0 12px;
        line-height: 30px;
        border-radius: 8px;
        color: var(--font-light-grey);
    }

    .cart_summary_info {
        padding: 16px;
        border-radius: 8px;
        border: 1px solid #dadada;
        margin: 0 auto 10px;
        width: calc(100% - var(--bs-gutter-x) * 1);
    }

    .cart_summary_info .cart_summary_infos:last-child {
        margin-bottom: 0;
    }

    .download-prodct {
        flex-direction: row;
        gap: 12px;
    }

    .report-price-table .table tr .download-type-col {
        padding-bottom: 14px !important;
        border-bottom: 1px solid #dadada;
        margin-bottom: 10px !important;
    }


    .voucher_card .voucher_image {
        padding-top: 66.26%;
        height: auto;
    }

    .voucher_card .voucher_image img {
        position: absolute;
        top: 0;
        left: 0;
    }
}

@media (max-width: 740px) {
    header .main_header .navbar-collapse {
        padding: 100px 0 10px 0;
    }

    header .navbar-nav .nav-link:hover:before {
        display: none;
    }

    /* .button_ui { margin: 5px 0 16px 0; } */
    .button_ui a {
        font-size: 14px;
        font-weight: 600;
    }

    .voucher_card .voucher_details {
        /* padding: 10px 10px 0 10px; */
        padding: 10px 10px 10px 10px;
    }

    .voucher_card .voucher_title,
    .voucher_card .voucher_title a {
        font-size: 16px;
        display: block;
    }

    .voucher_card .voucher_sub_title {
        font-size: 14px;
        font-weight: bold;
    }

    .voucher_card .voucher_venue {
        font-size: 14px;
        font-weight: bold;
    }

    .voucher_card .voucher_partner {
        padding: 5px 0;
    }

    .voucher_card .voucher_location {
        font-size: 14px;
    }

    .voucher_card .voucher_pricing .voucher_price {
        font-size: 18px;
        font-weight: 600;
    }

    .voucher_card .voucher_pricing .button_ui a,
    .voucher_card .voucher_pricing .button_ui .btn-voucher {
        padding: 10px 20px;
    }

    .voucher_card .voucher_validation {
        font-size: 10px;
    }

    footer .footer_logo {
        justify-content: center;
    }

    footer .footer_links {
        align-items: center;
        flex-direction: column;
    }

    footer .footer_links span {
        margin: 0;
    }

    footer .footer_links ul {
        align-items: center;
        flex-direction: column;
    }

    /* footer .footer_links ul li a::after {right: -10px;} */
    footer p {
        text-align: center;
    }

    footer .footer_social ul {
        justify-content: center;
    }

    footer .copy_write {
        justify-content: center;
    }

    .inner_page_banner .inner_srch_box {
        padding: 20px;
        width: 100%;
    }

    .banner_srch_area .banner_srch_heading label {
        margin: 0;
    }

    .voucher_card .voucher_details p {
        min-height: 5rem;
    }

    .price-tag.detail-page {
        width: 60%;
    }

    .price-tag.detail-page .pr-tag {
        font-size: 12px;
    }

    .price-tag.detail-page .price-tag .mrp .line-through {
        font-size: 12px;
    }

    .price-tag.detail-page .price-tag .deal span {
        font-size: 12px;
    }

    .button_ui.detail-btn {
        margin: 0;
    }

    .button_ui.detail-btn a {
        height: 40px;
        display: flex;
        align-items: center;
    }

    .price-tag .deal .deal-txt {
        padding-right: 0;
    }

    section.section_box.top_selling_vouchers .price-tag .deal {
        text-align: right;
    }
}

@media only screen and (min-device-width: 460px) and (max-device-width: 670px) {
    .price-tag.home-page {
        width: 35%;
        box-shadow: inherit !important;
    }

    .price-tag.home-page .deal .deal-txt {
        padding-right: 20px;
    }

    .voucher_pricing .price-tag.home-sub-page {
        width: 35%;
    }

    .price-tag.home-sub-page .deal .deal-txt {
        text-align: center;
        padding-right: 0;
    }

    .hotel_vouchers_page section.section_box.what_new_area .event_listing #upcomingShopProductsSection .price-tag.home-sub-page .deal .deal-txt {
        text-align: center;
        padding-right: 10px;
    }

    .productPriceAndAvailbility .price-tag.detail-page .deal {
        text-align: center;
    }
}

@media (max-width: 680px) {
    .navbar-nav {
        flex-direction: column;
        align-items: start;
    }

    #navbarSupportedContent1 .navbar-nav {
        row-gap: 20px;
    }

    .hotel_left_side .hotel_info {
        padding: 30px 0 0 0;
    }

    .hotel_left_side .hotel_cta {
        margin: 0;
        padding: 5px;
    }

    .hotel_vouchers_page .section_heading_box {
        flex-direction: column;
    }

    .hotel_vouchers_page .section_heading_box .section_heading {
        width: 100%;
    }

    .hotel_vouchers_page .hotel_voucher_filter_area {
        width: 100%;
    }

    .hotel_selling_voucher_list .col-md-4 {
        width: 100%;
    }

    .hotel_vouchers_page .page_breadcrumds_section .hotel_voucher_filter_area {
        width: auto;
    }
}

@media (max-width: 576px) {
    .hotel_vouchers_page select {
        min-width: auto;
        font-size: 14px;
    }

    /* .inner_page_banner {
	 height: 250px; 
	min-height: auto;
	height: auto;
} */

    .carousel-indicators {
        bottom: 60px;
    }

    .hotel_voucher_list_cards .voucher_card .voucher_details {
        min-height: auto;
    }

    .voucher_with_purhcase.sold_out_voucher p {
        min-height: 100px;
    }

    .voucher_card .voucher_details p {
        min-height: 5rem;
    }

    header .container-fluid {
        padding: 0 0;
    }

    /* .hotel_vouchers_page header .navbar-brand img {
	min-width: 175px;
} */
    #productsbycategorySection .voucher_card .voucher_details {
        min-height: auto;
        height: auto;
    }

    .hotel_vouchers_page .voucher_card.voucher_with_purhcase .voucher_pricing {
        min-height: 150px !important;
    }

    /* .cart-button .fa-box {  top: -22px !important; } */
    .inner_page_banner .banner_srch_area input[type='text'],
    .inner_page_banner .banner_srch_area select {
        width: 345px;
    }

    .website_navigation {
        min-width: auto;
    }

    .website_navigation #navbarSupportedContent {
        justify-content: end;
    }
}

@media (max-width: 480px) {
    .voucher_instruction a {
        font-size: 12px;
    }
}

@media (max-width: 375px) {}

@media (max-width: 360px) {

    .inner_page_banner .banner_srch_area input[type='text'],
    .inner_page_banner .banner_srch_area select {
        width: 300px;
    }

    .cart-button span.add-to-cart {
        font-size: 12px;
    }

    .voucher_instr_info {
        font-size: 12px;
    }

    .voucher_instruction a {
        font-size: 10px;
    }

    .voucher_options_with_lbl {
        width: 140px;
    }
}

@media (max-width: 280px) {

    /* .voucher_card .voucher_image {
	height: 90px;
} */
    .voucher_card .voucher_pricing .button_ui a,
    .voucher_card .voucher_pricing .button_ui .btn-voucher {
        padding: 10px 0;
    }

    .button_ui a {
        font-size: 10px;
    }
}

/*responsive end*/