/* common css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #111827;
}

body {
    font-family: "Inter", sans-serif !important;
}

:root {
    --primary: #45A094 !important;
    --primary-hover: #3a8f83 !important;
    --orange: #EB604D;
    --orange-hover: #EB604D;
    --light: #f8f9fa;
    --grey-100: #F9F9FB;
    --grey-200: #E8E7EB;
    --grey-300: #d2d2d2;
    --grey-400: #9ca3af;
    --grey-500: #8B8899;
    --grey-600: #4b5563;
    --grey-700: #374151;
    --dark: #111827;
    --black: #161032;
    --tertiaryLight: #accae2;
    --bg-tertiary: #5998c4;
    --bg-light-tertiary: #5998c426;
    --grey-footer: #f3f4f6;
    --red: #D80027;
    --danger: #D23E29;
    --green: #3E8323;
    --fast: 0.15s;
    --moderate: 0.5s;
    --slow: 0.8s;
    --fc-button-text-color: var(--dark);
    --fc-button-bg-color: transparent;
    --fc-button-hover-bg-color: rgb(243, 243, 245);
    --fc-button-border-color: transparent;
    --fc-button-hover-border-color: transparent;
    --fc-button-active-bg-color: rgb(235, 235, 240);
    --fc-button-active-border-color: transparent;
    --fc-event-bg-color: transparent;
    --fc-event-border-color: transparent;
    --fc-event-text-color: var(--primary);
    --fc-today-bg-color: var(--bg-light-tertiary);
    /* --fc-today-text-color: rgba(89, 152, 196); */
    --fc-border-color: transparent;
  }

a {
    color: var(--black);
}

a:hover {
    color: var(--black);
}

button {
    border-width: 0;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

.text-grey-500 {
    color: var(--grey-500);
}

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

.text-black {
    color: var(--black);
}

.text-white {
    color: white;
}

.text-color-primary {
    color: var(--primary);
}

.hidden {
    display: none;
}

.hide-md {
    display: none !important;
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-right: 2rem;
    padding-left: 2rem;
    max-width: 1280px;
    width: 100%;
}

/* text and fonts css */
.font-light {
    font-weight: 400;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-md {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 4rem;
}

.text-6xl {
    font-size: 3.5rem;
    line-height: 4.5rem;
}

.head-color {
    color: #111827;
}

.link-color {
    color: var(--primary);
}

.cls-1 {
    fill: var(--primary);
    fill-rule: evenodd;
}

/* header css */
.header {
    position: fixed;
    min-height: 55px;
    width: 100%;
    z-index: 11;
    top: 0;
}

.header__background-image {
    height: 100%;
    min-height: inherit;
    width: 100%;
    object-fit: cover;
}

.header__overlay {
    position: absolute;
    height: 100%;
    min-height: inherit;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.header__navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 55px;
    /* padding: 10px 22.5px; */
    z-index: 10;
    max-width: 1140px;
    background-color: white;
}

.header__navbar-white {
    background-color: white !important;
    /* box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1); */
    z-index: 10;
}

.header__sign-in span {
    font-size: 15px;
}

.header_left_side {
    display: flex;
    gap: 5.1rem;
}

.header_menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 2.5rem;
    gap: 2rem;
    padding-top: 0.1rem;
}

.header_menu_button {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    /* font-size: 15px; */
    color: var(--grey-500);
    /* font-weight: 600; */
}

.header_menu_button:hover {
    cursor: pointer;
    text-decoration: underline;
    color: #fff;
}

.header__navbar-white .header_left_side .header_menu .header_menu_item .header_menu_button {
    color: #111827;
}

.header_occasions_dropdown_wrapper {
    display: none;
    position: absolute;
    z-index: 1;
    right: 9%;
    left: 9%;
    top: 100%;
    font-size: 15px;
}

.header_products_dropdown_wrapper {
    display: none;
    position: absolute;
    max-height: 90vh;
    right: 9%;
    left: 9%;
    top: 100%;
    z-index: 2;
    font-size: 15px;
    overflow: auto;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.mobile_menu_dropdown_wrapper {
    display: none;
    overflow: auto;
    position: fixed;
    padding-left: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    font-size: 15px;
    --tw-bg-opacity: 0.25;
    background-color: rgba(0, 0, 0, 0.5);
}

.mobile_menu_dropdown {
    display: flex;
    flex-direction: column;
    min-width: 100%;
    min-height: 100%;
    padding-left: 1.5rem;
    /* padding-right: 1.5rem; */
    padding-bottom: 1rem;
    padding-top: 1rem;
    border-top-left-radius: 0.75rem;
    border-bottom-left-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    background-color: white;
}

.close_div {
    display: flex;
    flex-direction: row-reverse;
}

.dropdown_button {
    border: none;
    background-color: white;
}

.first_level {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: white;
    border: none;
    padding-right: 1.25rem;
    margin-top: 0.75rem;
    min-width: 100px;
}

.second_level {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: white;
    border: none;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    margin-top: 0.75rem;
    min-width: 100px;
    text-align: left;
}

.second_level a {
    color: black;
}

.first_level_nospace {
    display: flex;
    width: 100%;
    background-color: white;
    border: none;
    padding-right: 1.25rem;
    margin-top: 1rem;
    min-width: 100px;
}


a.first_level_nospace {
    color: #000;
}

.dropdown-column-children {
    flex-direction: column;
}

.levels_margin {
    margin-top: 1.4rem;
    align-items: center;
}

.first_level_margin {
    margin-right: 0.75rem;
}

.third_level {
    display: none;
    flex-direction: column;
    padding-left: 1.25rem;
}

.third_level span {
    padding: 0.5rem 0;
}

.third_level a {
    color: #5998c4;
}

.children {
    display: none;
}

#sign-in-dropdown-block .children .second_level {
    margin-bottom: 0.5rem;
}

.svg-arrow {
    transition: var(--fast);
}

.header_occasions_dropdown {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    padding-top: 2.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    background-color: white;
}

#language-dropdown-block .children {
    padding-left: 20px;
}

.header_products_dropdown {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 2.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    background-color: white;
}

.make_threes {
    flex-basis: 33%;
}

.search_button_wrapper {
    display: none;
    align-items: center;
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    /* box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow); */
    padding: 0.25rem 0.2rem 0.25rem 1rem;
    background: none;
    z-index: 1;
    border-radius: 10px;
    border: 1px solid var(--grey-200);
}

.search_button_wrapper.hide {
    display: none;
}

.search_button_wrapper.show {
    display: none;
}

.search_button_wrapper.show .search_popup_wrapper .search_popup .search_popup_item {
    box-shadow: 0px 1px 5px #ccc;
    width: 28%;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
}

.top_search_popup .categoryModal {
    width: 26.5% !important;
}

.top_search_popup .locationContainer {
    width: 26.5% !important;
}

.top_search_popup .calenderContainer,
.top_search_popup .headerCalenderContainer {
    width: 26.5% !important;
}

.search_button {
    display: flex;
    align-items: center;
    flex-direction: row;
    background-color: transparent;
    border-color: transparent;
    white-space: nowrap;
    justify-content: space-between;
    width: 100%;
}

.search_button-text {
    margin-left: 0.25rem;
    color: #9ca3af;
}

.search_button_img {
    display: flex;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    /* background-color: rgba(232, 95, 76); */
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
}

.search_popup_wrapper {
    position: fixed;
    display: none;
    justify-content: center;
    top: 64px;
    right: 0;
    left: 0;
    padding: 0.75rem;
    width: 100%;
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
    background-color: white;
}

.search_popup {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
}

.search_popup_item {
    display: flex;
    align-items: center;
    border-radius: 0.75rem;
    background-color: #fff;
}

.search_popup_input {
    padding: 0 0.6rem 0 0.3rem;
    height: 50px;
    width: 100%;
    font-size: 15px;
    border: none;
    border-radius: 9999px;
    outline: none;
    caret-color: black;
}

.km-menu {
    min-width: auto;
    /* padding: 0;
    margin: 0; */
    top: 10px !important;
    left: -32px !important;
    border-radius: 0.75rem;
    z-index: 10;
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
}

.km-menu a:hover {
    background-color: rgba(224, 231, 255);
}

input {
    color: #111827;
}

.form-control {
    border: 1px solid var(--grey-200);
    border-radius: 10px;
    padding-left: 1.5rem;
    height: 50px;
    font-size: 16px;
    line-height: 21px;
    color: var(--black);
}

.search_button_img_big {
    display: flex;
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    background-color: rgba(232, 95, 76);
    align-items: center;
    justify-content: center;
    border: 0;
    margin-left: 1.25rem;
}

.svg-padding {
    padding-left: 1rem;
    padding-right: 0.5rem;
}

.focus-underline:focus {
    text-decoration: underline;
}

.make_hover:hover {
    cursor: pointer;
    text-decoration: underline;
    color: #111827;
}

.dropdown_a {
    color: inherit;
}

.dropdown_element {
    flex-basis: 33%;
    padding: 0 0.75rem;
}

.dropdown_li {
    padding: 0.3rem;
    flex-basis: 50%;
}

.dropdown_element_title {
    display: flex;
    flex-direction: row;
    margin-bottom: 0.75rem;
}

.dropdown_logo {
    display: flex;
    height: 24px;
    width: 24px;
    margin-right: 0.75rem;
}

.dropdown_ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 1.5rem;
    --tw-text-opacity: 1;
    color: #5998c4;
    color: rgba(89, 152, 196, var(--tw-text-opacity));
}

.big-logo {
    width: 123px;
    height: 34px;
}

.header__black-logo,
.header__white-logo {
    position: fixed;
}

.header__black-logo {
    opacity: 1;
}

.header__black-logo-show {
    opacity: 1;
}

.header__white-logo-hide {
    opacity: 0;
}

.header__white-logo {
    opacity: 0;
}

.header__navbar,
.header__navbar-white,
.header__language span,
.header__language-black span,
.header__white-logo,
.header__white-logo-hide,
.header__black-logo,
.header__black-logo-show,
.big-logo {
    transition: 0.15s;
}

.mobile_menu {
    display: none;
}

.mobile_menu_button_small {
    /* height: 2rem;
    width: auto; */
    width: 24px;
    height: 24px;
}

.right_side {
    display: flex;
    align-items: center;
    /* width: 450px; */
    justify-content: end;
}

/* dropdown multilevel header css */

.header_menu_item .dropdown-menus {
    width: 82% !important;
    display: none;
    position: absolute;
    background: #fff;
    z-index: 999;
    top: 100%;
    left: 9%;
    right: 9%;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-radius: 0.75rem;
    overflow-y: auto;
    box-shadow: 0px 1px 5px #ccc;
    max-height: 85vh;
}

.mega_menu_row {
    row-gap: 25px;
}

.menu_heading {
    column-gap: 15px;
    margin-bottom: 10px;
}

.main_menu_link a {
    color: #212529;
    text-decoration: none;
}

.mega_menu_item {
    margin-bottom: 0.6rem;
}

.mega_menu_item a {
    color: #5998c4;
    font-size: 1rem;
    font-weight: 500;
}

.mega_menu_item a:hover {
    color: #111827;
}

.header_menu .header_menu_item .header_menu_button.active {
    text-decoration: underline;
}

/* language dropdown css */
.header_menu_item .language_menus {
    right: 25px;
    width: 40%;
    left: auto;
}

.header_flag {
    height: 24px;
    width: 24px;
    margin-right: 10px;
}

.language_item span {
    text-transform: uppercase;
    line-height: 1rem;
}

.mega_menu_item .language_item:hover {
    cursor: pointer;
}

.header__navbar-white .right_side .language_option .header_menu_button {
    color: #111827;
}

/* header banner css */
.header_banner_main {
    position: relative;
    text-align: center;
}

.header__banner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1;
}

.overlay {
    background-color: rgba(0, 0, 0, .3);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.header__title {
    margin-bottom: 22.5px;
}

.banner_title {
    font-size: 3rem;
    line-height: 4rem;
    font-weight: 700;
    text-shadow: rgb(0 0 0 / 60%) 0px 1px 6px;
}

.header__textarea {
    color: white;
    text-align: center;
}

.profile_option {
    /* margin-right: 30px; */
}

.sign_in {
    display: flex;
    justify-content: center;
    position: relative;
    line-height: 60px;
}

.sign_in:hover {
    text-decoration: none;
}

.sign_in_button {
    border: none;
    background-color: transparent;
}

.user {
    fill: #fff;
    fill-rule: evenodd;
}

.sign_in span {
    color: #fff;
    font-weight: 600;
    padding-left: 5px;
    padding-top: 3px;
}

.profile-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 999;
    border-radius: 5px;
    right: 0rem;
    margin-top: 1rem;
}

.profile-content a {
    color: #111827;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    font-weight: 600;
    font-size: 16px;
}

.profile_option:hover .profile-content {
    display: block;
}

.header__navbar-white .right_side .sign_in .sign_in_button .user {
    fill: var(--primary);
}

.header__navbar-white .right_side .sign_in span {
    color: #111827;
}

.banner_flex {
    display: flex;
}

.banner_below {
    position: relative;
    background: #fff;
    width: 100%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    margin-top: -80px;
    padding: 2rem;
    border-radius: 0.75rem;
    margin-bottom: 100px;
}

.icon-lg {
    width: 48px;
    height: 48px;
}

.icon-sm {
    width: 24px;
    height: 24px;
}

.icon-15 {
    width: 15px;
    height: 15px;
}

.icon-20 {
    width: 20px;
    height: 20px;
}

.icon-30 {
    min-width: 30px;
    height: 30px;
}

.icon-xs {
    width: 16px;
    height: 16px;
}

.fill_svg_color {
    fill: #5998c4;
}

.fill-color {
    fill: var(--primary);
}

.fill-white {
    fill: #fff;
}

.icon-image img {
    width: 100%;
    border-radius: 4px;
    height: 100%;
    object-fit: contain;
}

.icon-green {
    filter: invert(37%) sepia(84%) saturate(407%) hue-rotate(59deg) brightness(96%) contrast(91%);
}

.icon-primary {
    filter: invert(55%) sepia(44%) saturate(1641%) hue-rotate(323deg) brightness(89%) contrast(109%);
    vertical-align: text-top;
}

.heading_box h4 {
    color: #111827;
    font-size: 1rem;
    line-height: 1.5rem;
    padding-bottom: 7.5px;
    margin: 0;
}

.heading_box p {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #9ca3af;
    margin-bottom: 0;
    padding-bottom: 3.75px;
}

.heading_box a {
    text-decoration: none;
    color: var(--primary);
    font-size: 1rem;
    line-height: 1.5rem;
}

.banner-btn {
    text-transform: uppercase;
    font-size: 15px;
    background-color: var(--primary);
    color: #fff;
    border-radius: 50px;
}

.banner-btn:hover {
    color: #fff;
}

.banner_flex .banner_icon {
    margin-right: 11.25px;
    display: flex;
}

.page-header h1 {
    margin-top: 30px;
    margin-bottom: 10px;
}

.banner-height {
    height: 54vh;
}

/* New css */
.row-gap {
    row-gap: 30px;
}

label {
    margin-bottom: 0;
    color: #000;
    font-weight: 700;
    font-size: 15px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.btn:focus {
    box-shadow: none !important;
}

.btn_default {
    color: #000;
    font-weight: 600;
    text-decoration: underline;
}

.btn-text {
    background: transparent;
    color: var(--primary);
    border-radius: 50px;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: underline;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    padding-left: 3rem;
    padding-right: 3rem;
}

.btn-text:hover {
    color: var(--primary);
    text-decoration: none;
}

.btn-common {
    background: rgb(22, 16, 50);
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    text-transform: uppercase;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 3rem;
    padding-right: 3rem;
}

.btn-common:hover {
    color: #fff;
}

.btn-common a {
    color: #fff;
}

.btn-common a:hover {
    color: #fff;
    text-decoration: none;
}

.btn-common-small {
    background: rgb(22, 16, 50);
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    text-transform: uppercase;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    padding-left: 3rem;
    padding-right: 3rem;
}

.btn-common-small:hover {
    color: #fff;
}

.btn-theme {
    background-color: var(--primary);
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
    padding-left: 3.9rem;
    padding-right: 3.9rem;
    text-transform: uppercase;
}

.btn-theme:not(:disabled):hover {
    box-shadow: 0 18px 21px -13px var(--primary-hover);
    transition: var(--fast);
    color: #fff;
}
/* .btn-theme:disabled:hover {
    box-shadow: none;
    transition: var(--fast);
    color: #fff;
} */
.btn-theme:not(:disabled):active {
    transform: Scale(1.05);
    transition: var(--fast);
}


.btn-theme-outline {
    border: 2px solid var(--primary);
    background-color: transparent;
    color: var(--primary);
    border-radius: 50px;
    font-size: 18px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 3rem;
    padding-right: 3rem;
}

.btn-theme-outline:hover {
    color: #fff;
    background-color: var(--primary);
}

.btn-blue {
    background-color: #5998c4;
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    padding-left: 3rem;
    padding-right: 3rem;
    text-transform: uppercase;
}

.btn-blue:hover {
    color: #fff;
}

/* Footer */
.footer__grey-block {
    background-color: #f3f4f6;
    display: flex;
    flex-direction: column;
    /* padding-top: 30px; */
}

.footer_head {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 0 -10px 30px -10px;
    padding-top: 25px;
}

.footer_head_element {
    display: flex;
    flex-direction: column;
    flex-basis: 20%;
    padding: 0 10px;
}

.footer_head_title {
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer_a {
    padding-top: 0.75rem;
    padding-bottom: 0.25rem;
    color: #9ca3af;
}

.footer_a:hover {
    color: #374151;
    transition: 0.15s;
}

.footer_hr {
    border-top: 1px solid #d1d5db;
}

.footer__list {
    margin: 30px -10px;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.footer__item {
    flex-basis: 20%;
    padding: 0 10px;
}

.footer__link {
    text-decoration: none;
    color: #9ca3af;
}

.footer__link:hover {
    color: #374151;
    transition: 0.15s;
}

.footer__white-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #4b5563;
    margin: 22.5px 0;
}

.footer__copr {
    color: #9ca3af;
}


/* breadcrumb css */
.breadcrumb-header {
    padding-top: 30px;
    padding-bottom: 30px;
    /* margin-top: 0.75rem; */
}

.breadcrumb-link {
    color: #8b8899;
}

.breadcrumb-link.active {
    color: var(--primary);
}

/* pagination css */
.pagination_box {
    padding-top: 22.5px;
}

.pagination_box ul {
    column-gap: 10px;
}

.pagination_box ul li a {
    color: #000;
    border: 1px solid transparent;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    padding: 0;
}

.pagination_box ul li a:hover {
    border: 1px solid #5998c4;
    background: transparent;
    border-radius: 50% !important;
}

.pagination_box ul li a.active {
    background: #5998c4;
    color: #fff;
    border-radius: 50% !important;
}

/* Login and signup page css */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #000;
    font-size: 15px;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark-check {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid var(--primary);
    border-radius: 5px;
}

.checkbox-container:hover input~.checkmark-check {
    background-color: transparent;
}

.checkbox-container input:checked~.checkmark-check {
    background-color: transparent;
}

.checkmark-check:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark-check:after {
    display: block;
}

.checkbox-container .checkmark-check:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid var(--primary);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* product section css */
.product_container {
    margin-bottom: 75px;
}

.product-block__title {
    padding-bottom: 0px;
}

.product-block__description {
    margin-top: 0px;
    color: #9ca3af;
    margin-bottom: 15px;
}

.product-row-gap {
    padding-bottom: 7.5px;
}

.product-row-gap .product-col {
    padding: 15px;
}

.product-block__product-card {
    border-radius: 0.75rem;
    overflow: hidden;
    transition: 0.5s;
    height: 100%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.product-block__product-card:hover {
    transition: 0.15s;
    transform: Scale(1.05);
    box-shadow: 0 0 21px #0000002e;
}

.product-block__product-link {
    /* display: block; */
    color: inherit;
    height: 100%;
}

.product-block__product-link:hover {
    text-decoration: none;
    color: #111827;
}

.product-block__image-container {
    /* width: 100%;
    height: auto; */
    width: 100%;
    height: 55%;
}

.product-block__image-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.product-block__availability-outer {
    position: absolute;
    margin-top: 0.75rem;
    margin-left: 0.75rem;
    border-radius: 20px;
    display: block;
    border: 0 solid;
    background-color: rgba(175, 208, 215, 1);
}

.product-block__availability-inner {
    text-transform: uppercase;
    align-items: center;
    display: flex;
    padding: 3px 0.5rem;
}

.icon_block {
    display: flex;
    padding-right: 0.5rem;
}

.product-block__textarea {
    display: flex;
    height: 45%;
    flex-direction: column;
    justify-content: space-between;
    padding: 22.5px;
}

.product-block__prod-description {
    width: 100%;
    color: #9ca3af;
}

.product-block__info {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.product-block__icons {
    display: flex;
    gap: 7px;
}

.product-block__icon-text {
    color: #9ca3af;
    margin: 0;
}

.product-block__icon {
    width: 22px;
    height: 22px;
}

.product-block__price-block {
    text-align: end;
}

.product-block__from {
    color: #4b5563;
    display: block;
}

/* .see_all_btn{
    display: flex;
    justify-content: end;
    padding-top: 22.5px;
} */
.all_btn {
    display: flex;
    justify-content: end;
    padding-top: 22.5px;
}

/* advertise section */
.advertise_section {
    /* background: linear-gradient( rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.5)100%),url('/_default_upload_bucket/woman_in_virtual_reality_helmet_1_5ca4500021.png') no-repeat top center; */
    margin: 0 0 77px 0;
    border-radius: 5px;
    background-size: cover !important;
    height: 450px;
}

.advertise-container {
    padding: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left-update {
    width: 50%;
}

.left-update h1 {
    margin-bottom: 20px;
}

.learn_btn {
    margin-top: 1.5rem;
}

/* party section */
.party_container {
    margin-bottom: 75px;
}

.party_heading,
.carousel_heading {
    padding-bottom: 2.25rem;
    margin-bottom: 0;
}

.party_box img {
    width: 100%;
    border-radius: 10px;
    height: 250px;
    object-fit: cover;
}

.categories {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.category_items {
    font-weight: 700;
    color: #5998c4;
    padding: 0.5rem;
    border: 1px solid #5998c4;
    border-radius: 0.375rem;
    margin: 0.5rem;
    font-size: 15px;
}

.category_items:hover {
    color: #fff;
    background-color: #5998c4;
    text-decoration: none;
}

.show_all {
    text-decoration: underline;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    display: block;
}

.show_all:hover {
    text-decoration: none;
    color: var(--primary);
}

.see_all {
    text-decoration: underline;
    display: block;
}

.see_all:hover {
    text-decoration: none;
    color: var(--primary);
}

/* latest updates section */
.latest_update {
    background: #5998c4;
    margin: 0;
}

.latest-container {
    padding: 50px 0px;
}

.update_heading {
    margin-bottom: 2.25rem;
}

.update_desc {
    margin-bottom: 0;
}

.email_input {
    padding: 1.25rem 1.25rem 1.25rem;
    font-size: 15px;
    border: none;
    border-radius: 9999px;
    height: 60px;
}

.input-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.list_container {
    list-style: none;
    padding: 30px 20px 0px;
}

.subscribe_btn {
    margin-left: -50px;
}

.link_check p a {
    color: var(--primary);
    text-decoration: underline;
}

.check-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
    font-size: 15px;
}

.check-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid #fff;
    border-radius: 4px;
}

.check-container:hover input~.checkmark {
    background-color: transparent;
}

.check-container input:checked~.checkmark {
    background-color: transparent;
    border: 1px solid var(--primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.check-container input:checked~.checkmark:after {
    display: block;
}

.check-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid var(--primary);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* category carousel section */
.carousel_section {
    margin-bottom: 75px;
}

.carousel__wrapper {
    display: flex;
    position: relative;
    justify-content: space-between;
}

.carousel__container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden;
    overflow-y: hidden;
    position: relative;
    height: auto;
    min-width: 100%;
}

.carousel__item {
    text-decoration: none;
    color: #111827;
    flex-shrink: 0;
    padding: 0 15px;
    flex: 0 0 25%;
}

.carousel__item:hover {
    color: #111827;
    text-decoration: none;
}

.carousel__image {
    height: 420px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.carousel__prev,
.carousel__next {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: #accae2;
    color: white;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 1;
}

.carousel__prev {
    left: -35px;
    display: none;
}

.carousel__next {
    right: -35px;
}

.carousel__prev:hover,
.carousel__next:hover {
    background-color: #5998c4;
    transition: 0.15s;
    color: #fff;
    text-decoration: none;
}

.carousel__title {
    text-align: left;
}

/* blog page css */
.blog_card:hover {
    transform: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* blog details page css */
.blogDetails {
    margin-bottom: 70px;
}

.blogDetails h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.blogDetails .blog-para {
    margin-bottom: 10px;
    color: #9ca3af;
}

.blogDetails img {
    width: 100%;
}

.details-content p img {
    width: 100% !important;
}

.details-content p {
    margin-bottom: 10px;
    color: #212529;
}

.blog_gap_space {
    margin-bottom: 70px;
}

.link_category {
    text-decoration: underline;
}

.occasions_link span {
    margin-left: 10px;
}

.link_category:hover {
    color: var(--primary);
    text-decoration: none;
}

/* my profile page css */
.profile_container {
    margin: 70px 0 80px;
}

.custom_card {
    box-shadow: 0px 2px 10px #ccc;
    border-radius: 7px;
    border: none;
}

.account_list {
    list-style: none;
    margin-bottom: 0;
}

.account_list li {
    margin-bottom: 15px;
}

.account_list li:last-child {
    margin-bottom: 0px;
}

.account_list li a {
    color: #111827;
    font-weight: 700;
    font-size: 18px;
}

.account_list li a:hover {
    color: #5998c4;
}

.account_list li a.active {
    color: #5998c4;
    text-decoration: underline;
}

.intl-tel-input,
.iti {
    width: 100%;
}

/* map section css */
.map_show {
    display: none;
}

.map_container {
    margin-top: -20px;
}

.map_box {
    position: sticky !important;
    top: 124px;
}

.map_block {
    height: 100vh;
    width: 100%;
}

.leaflet-top.leaflet-left {
    right: 0 !important;
    left: unset !important;
}

.leaflet-control-zoom.leaflet-bar {
    overflow: hidden;
    margin-right: 10px;
    border-radius: 0.75rem;
    border: none !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.map_block .leaflet-bar a {
    border: 0;
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
}

.leaflet-control-zoom.leaflet-bar a:first-child:after {
    left: 4px;
    bottom: 50%;
    content: "";
    position: absolute;
    width: calc(100% - 8px);
    border-bottom: 1px solid rgba(0, 0, 0, .12);
}

.map_block .leaflet-control-zoom-in,
.map_block .leaflet-control-zoom-out {
    font-size: 22px;
}

.leaflet-top,
.leaflet-bottom {
    z-index: 1;
}

.collpase_icon {
    background-color: #fff;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 10%), 0 4px 6px -2px rgb(0 0 0 / 5%);
    position: absolute;
    z-index: 9999;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 22px;
    border-radius: 0.75rem;
    color: #000;
    margin-left: 10px;
    margin-top: 10px;
    cursor: pointer;
}

.collpase_icon:hover {
    color: #000;
}

/* search results css */
.search_container {
    margin: 0;
    position: relative;
    padding: 0 0 0 20px;
}

.result_container {
    margin-bottom: 55px;
}

.custom_card_body {
    padding: 0.8rem;
}

.card_img {
    width: 55%;
}

.card_info .card_img img {
    width: 100%;
    border-radius: 7px;
    height: 170px;
    object-fit: cover;
}

.card_detail {
    width: 45%;
    padding-left: 15px;
}

/* quantity section css */
.qty-container {
    display: flex;
    align-items: center;
    column-gap: 0.625rem;
}

.btn_qty {
    width: 55px;
    border-radius: 50px;
    height: 55px;
    text-align: center;
    border: 3px solid transparent;
}

.btn_qty:hover {
    border: 3px solid #b1c7d9;
}

.input-qty {
    width: 55px;
    border-radius: 50px;
    height: 55px;
    text-align: center;
    background-color: #afcae1;
    border: 3px solid transparent;
    color: #fff;
}

.input-qty:focus {
    background-color: #bbd1d1;
    border: 3px solid transparent;
    color: #fff;
}

/* price range slider section css */
#slider {
    margin: 30px 30px 60px;
}

.ui-widget {
    font-family: "Inter", sans-serif !important;
}

.ui-slider-horizontal {
    height: 0.4em;
}

.ui-slider-horizontal .ui-slider-handle {
    top: -0.5em;
}

.ui-widget-content {
    border: 1px solid var(--primary);
}

.value {
    position: absolute;
    top: 20px;
    left: 50%;
    margin: 0 0 0 -20px;
    text-align: center;
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.price-range-both.value {
    width: 100px;
    margin: 0 0 0 -50px;
    top: 26px;
}

.price-range-both {
    display: none;
}

body div.ui-slider-range.ui-widget-header {
    background: var(--primary);
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
    background: var(--primary) !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
    background: var(--primary) !important;
    border-radius: 50%;
    /* font-size: 21px; */
    border: none !important;
    color: #111827;
    z-index: 1;
}

span.ui-slider-handle.ui-corner-all.ui-state-default:focus {
    outline: none;
}

/* Calender CSS */
.ui-datepicker.ui-widget-content{
    border: 0;
    box-shadow: 3px 0 15px 6px #00000026;
    border-radius: 10px;
    padding: 10px;
    width: calc(33.33% - 90px);
    /* width: auto; */
    margin-left: -39px;
    margin-top: 7px;
    width: 312px;
}

.ui-datepicker-header.ui-widget-header{
    background: transparent;
    border: 0;
    color: #000;
    font-size: 1em !important;
    font-weight: 700;
    margin-bottom: 0.8rem;
}
.ui-datepicker-div {
    position: fixed !important;
    top: 141px !important;
    left: 544.188px !important;
    z-index: 11 !important;
    display: block !important;
}

.ui-datepicker-week-end .ui-state-default, .ui-datepicker-unselectable .ui-state-default,[data-handler="selectDay"] .ui-state-default {
    padding: 10px!important;
    color: #000!important;
    text-decoration: none!important;
    cursor: pointer;
    line-height: 2.5rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: transparent!important;
    font-size: 14px;
    border: 0!important;
    display: inline!important;
    text-align: center!important;
}

.ui-datepicker-days-cell-over .ui-state-highlight{
    background: #5998c426!important;
}


.ui-datepicker .ui-datepicker-prev span{
    border: solid black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(135deg);
    width: 10px;
    height: 10px;
}

.ui-datepicker-prev-hover{
    left: 2px!important;
    border: 0!important;
    top: 5px!important;
    background: none!important;
}

.ui-datepicker-next-hover{
    right: 2px!important;
    border: 0!important;
    top: 2px!important;
    background: none!important;
}

.ui-datepicker .ui-datepicker-next span {
    border: solid black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(-45deg);
    width: 10px;
    height: 10px;
}

.ui-state-active{
    background: #5998C4!important;
}

/* filter section css */
.filter_wrappers {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 10px 0px;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    width: 100%;
    right: 0;
    z-index: 10;
    background: #fff;
}

.filter_list {
    display: block;
    text-transform: capitalize;
    margin: 0;
    padding: 0;
}

.filter_list li {
    display: inline-block;
    list-style: none;
}

.filter_list .button-dropdown {
    position: relative;
}

.filter_list li a {
    display: block;
    color: #5998c4;
    background-color: #fff;
    padding: 6px 15px;
    text-decoration: none;
    border: 1px solid #5998c4;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
}

.filter_list li a span {
    display: inline-block;
    margin-right: 5px;
}

.filter_list li a:hover,
.filter_list li a.dropdown-toggle.active {
    background-color: #5998c4;
    color: #fff;
}

.filter_list li a:hover span,
.filter_list li a.dropdown-toggle.active span {
    fill: #fff;
}

.filter_list li .dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    padding: 0;
    margin-top: 10px;
    width: 38rem;
    z-index: 2;
}

.filter_list li .dropdown-menu.active {
    display: block;
}

.content_block_result {
    margin-top: 5rem;
    position: relative;
}

.popular_list {
    display: block;
    text-transform: capitalize;
    margin: 0;
    padding: 0;
}

.popular_list li {
    display: inline-block;
    list-style: none;
}

.popular_list .button-dropdown {
    position: relative;
}

.popular_list li a {
    display: block;
    color: var(--primary);
    background-color: #fff;
    padding: 6px 15px;
    text-decoration: none;
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
}

.popular_list li a span {
    display: inline-block;
    margin-right: 5px;
}

.popular_list li a:hover,
.popular_list li a.dropdown-toggle.active {
    background-color: var(--primary);
    color: #fff;
}

.popular_list li a span {
    fill: var(--primary);
}

.popular_list li a:hover span,
.popular_list li a.dropdown-toggle.active span {
    fill: #fff;
}

.popular_list li .dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    padding: 0;
    margin-top: 10px;
    width: 14rem;
    z-index: 2;
}

.popular_list li .dropdown-menu.active {
    display: block;
}

.popular_list li .dropdown-menu ul li {
    width: 100%;
}

.popular_list li .dropdown-menu ul li a span {
    fill: var(--primary);
}

.popular_list li .dropdown-menu ul li a {
    color: #111827;
    font-size: 15px;
    border: none;
    padding: 0;
    font-weight: 700;
}

.popular_list li .dropdown-menu ul li a:hover {
    background-color: transparent;
}

.dropdown-menu ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.dropdown-menu ul li {
    width: 50%;
    margin-bottom: 15px;
}

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

.dropdown_card_body {
    padding: 15px 15px 0px;
}

.scroll_card_body {
    height: 360px;
    overflow-y: auto;
}

.checkbox_main {
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #a19fac;
    font-size: 16px;
    font-weight: normal;
}

.checkbox_main input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.check_value {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.checkbox_main:hover input~.check_value {
    background-color: transparent;
}

.checkbox_main input:checked~.check_value {
    background-color: var(--primary);
    border: 1px solid #5998c4;
}

.check_value:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox_main input:checked~.check_value:after {
    display: block;
}


.checkbox_main .check_value:after {
    left: 4px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.apply_btn {
    background-color: #5998c4;
}

.custom_footer {
    background-color: transparent;
}

.qty_wrapper {
    margin-bottom: 15px;
    border: 1px solid #5998c4;
    border-radius: 10px;
    padding: 20px;
}

.range_wrapper {
    padding: 30px 25px 60px 25px;
}

.toParticipants {
    margin-left: -5px;
}

.filter_list li .booking_dropdown {
    width: 25rem;
}

.booking_dropdown ul li {
    width: 100%;
}

.hide-large {
    display: none;
}

/* customer review section css */
.review_container {
    margin: 60px 0 80px;
}

.review_image img {
    width: 100%;
    border-radius: 8px;
}

.review_info_list {
    list-style: none;
    margin-bottom: 0;
}

.review_info_list li {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 10px;
}

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

.review_info_list li span {
    display: inline-block;
}

.rating_block .rating_icon {
    width: 20px;
    height: 20px;
}

.star_rating {
    margin-top: 30px;
}

.review_form {
    margin-top: 30px;
}

/* wishlist section css */
.wishlist_container {
    margin: 60px 0px 80px;
}

.icon_position {
    position: relative;
}

.add-to-wishlist {
    position: absolute;
    z-index: 11111;
    bottom: 5px;
    right: 10px;
}

.add-to-wishlist i {
    color: #fff;
}

/* myBookings section css */
.actions_group {
    margin: 0px 20px 0;
}

.actions_group button {
    display: block;
    margin-bottom: 15px;
}

.review_info_list li .cancel_badge {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: 25px;
}

.booking_row {
    margin-bottom: 3rem;
}

/* manage booking section css */
.cancel_policy {
    margin-left: 50px;
    margin-top: 10px;
    margin-bottom: 0;
    list-style: none;
}

.cancel_policy li::before {
    content: "\2022";
    color: #5998c4;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.cancel_policy li {
    color: #9ca3af;
}

.manage_booking_row {
    margin-bottom: 5rem;
}

.address_list {
    list-style: none;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.address_list li {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 10px;
}

.address_list li span {
    display: inline-block;
}

/* booking confirmation section css */
.confirmation_container {
    margin: 80px 0px 80px;
}

.status_wrapper {
    margin: 1.5rem 0 2rem;
}

.status_box {
    text-align: center;
}

.status_box h4 {
    margin-top: 20px;
    text-transform: uppercase;
    color: #5998c4;
}

.status_box.active h4 {
    color: var(--primary);
}

.status_box .booking_status_icon {
    display: inline-block;
    border: 1px solid #5998c4;
    background: transparent;
    padding: 15px;
    border-radius: 50%;
}

.status_box.active .booking_status_icon {
    display: inline-block;
    border: 1px solid var(--primary);
    background: var(--primary);
    padding: 15px;
    border-radius: 50%;
}

.status_box .booking_status_icon span {
    fill: #5998c4;
}

.status_box.active .booking_status_icon span {
    fill: #fff;
}

.booking_status_icon span {
    display: inline-block;
}

.cancel_policy p {
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: red;
}

.booking_para {
    color: #9ca3af;
}

.booking_para b {
    color: #212529;
}

.booking_table {
    box-shadow: 0px 2px 10px #ccc;
    border-radius: 7px;
    border: none;
    margin-top: 20px;
}

.booking_table .list_table thead th {
    border: 0;
    color: #9ca3af;
    font-weight: 600;
    padding: 20px 30px 10px;
}

.booking_table .list_table thead th:last-child {
    text-align: right;
}

.booking_table .list_table tbody td {
    border: 0;
    vertical-align: middle;
    padding: 0px 30px 20px;
}

.image_box {
    display: block;
}

.image_box img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.table_info span {
    font-size: 16px;
    font-weight: 500;
}

.table_info p {
    font-size: 16px;
    font-weight: 500;
    color: #9ca3af;
    margin-bottom: 0;
}

.product_name {
    width: 250px;
}

.total_price {
    display: flex;
    align-items: center;
    border-top: 1px solid #ddd;
    padding: 30px 30px;
    column-gap: 15px;
    justify-content: end;
}

.total_price span:first-child {
    color: #9ca3af;
    font-size: 16px;
    font-weight: 500;
}

.total_price span:last-child {
    color: #212529;
    font-size: 16px;
    font-weight: 600;
}

.table_actions {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-top: 2rem;
    column-gap: 20px;
}

.table_actions .btn-theme-outline {
    text-transform: capitalize;
}

.table_actions .btn-theme {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.container_holder {
    margin: 80px 0px 80px;
}

.container_holder a {
    color: var(--primary);
}

.container_holder a span {
    color: var(--primary) !important;
}


/* Checkout css */

.checkout_card {
    margin-top: 2rem;
}

/* .all_steps{
    margin-top: 3rem;
} */

.card_name {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 1.5rem;
}

.header_card_checkout {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.rounded_count {
    background: #aed1d5;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: #fff;
}

.inner_card_name {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.rounded_option {
    background: #aed1d5;
    border-radius: 50px;
    padding: 0px 10px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    /* min-width: 100px; */
}

.slot_items {
    font-weight: 700;
    color: #212529;
    padding: 14px 23px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
}

.section_limited_width {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.section_limited_width_big {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}


@media screen and (max-width: 768px) {
    .slot_items {
        font-weight: 700;
        color: #212529;
        padding: 10px 10px;
        border: 1px solid #ddd;
        border-radius: 14px;
        font-size: 15px;
    }

    .option-container-padding {
        padding: 0;
    }

    .qty_wrapper {
        margin-bottom: 15px;
        border: 1px solid #5998c4;
        border-radius: 10px;
        padding: 15px;
    }
    .range_wrapper {
        padding: 30px 25px 50px 25px;
    }
}

.slot_items:hover {
    background-color: #649fae;
    text-decoration: none;
    color: #fff;
    border: 1px solid #649fae;
}

.slot_items.active {
    background-color: #649fae;
    text-decoration: none;
    color: #fff;
    border: 1px solid #649fae;
}

.search_button_wrapper {
    display: none;
}

.radio_container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 700;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radio_container p {
    font-weight: 400 !important;
}

.radio_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio_checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid #ddd;
}

.radio_container:hover input~.radio_checkmark {
    background-color: transparent;
}

.radio_container input:checked~.radio_checkmark {
    background-color: transparent;
    border: 1px solid var(--primary);
}

.radio_checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio_container input:checked~.radio_checkmark:after {
    display: block;
}

.radio_container .radio_checkmark:after {
    top: 4px;
    left: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
}

.summary_card {
    position: sticky;
    top: 80px;
    box-shadow: 0px 2px 10px #ccc;
    border-radius: 8px;
    background: #5998c4;
}

.summary_card .custom_card {
    box-shadow: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.summary_heading {
    text-align: center;
}

.summary_list {
    border-top: 1px solid #ddd;
    /* margin-top: 20px; */
    padding-top: 15px;
}

.total_box {
    background-color: #5998c4;
    color: #fff;
    padding: 25px 1.25rem;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.age_band {
    position: relative;
}

.age_band .icon-sm {
    display: inline-block;
    margin-right: 6px;
}

.select_age {
    min-width: 100%;
}

.select_age {
    display: none;
    position: absolute;
    background: #fff;
    z-index: 1;
    box-shadow: 0px 1px 5px #ccc;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px 20px;
}

.select_age .age_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
}

.select_age .age_item a {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #212529;
    font-weight: 500;
}

.btn_qty_age {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-align: center;
    border: 0;
    padding: 0;
}

.btn_qty_age i {
    color: #aed1d5;
}

.input-qty-age {
    width: 35px;
    border-radius: 50px;
    height: 35px;
    text-align: center;
    background-color: #aed1d5;
    border: 0px solid transparent;
    color: var(--black);
    padding: 0;
    line-height: 1.5;
    font-size: 16px;
}

.qty-container .input-qty-age {
    border-radius: 0;
}

.select_arrow {
    position: absolute;
    right: 10px;
    top: 15px;
}

.btn_select {
    border: 1px solid;
    background-color: #fff;
    color: #5998c4;
    padding: 0.6rem 1rem;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    text-align: left;
}

.btn_select:hover {
    color: #5998c4;
}

.custom_padding {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
}

@media screen and (max-width: 1280px) {
    .container {
        max-width: 1024px;
    }
}

@media screen and (max-width: 1024px) {
    .container {
        max-width: 768px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        max-width: 640px;
        padding-right: 2rem;
        padding-left: 2rem;
    }
}

@media screen and (max-width: 640px) {
    .container {
        max-width: 576px;
    }
}



@media screen and (max-width: 420px) {
    .container {
        margin-right: auto;
        margin-left: auto;
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

/* search loaction dropdown csss */
.apto-dropdown-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    border: 1px solid #ced4da;
    border-radius: 8px;
}

.apto-trigger-dropdown {
    height: 45px;
    border-radius: 8px;
    width: 100%;
    background-color: #fff;
    border: 0;
    padding: 0 .75rem;
    transition: 0.2s ease-in;
    cursor: pointer;
}

.apto-trigger-dropdown:hover {
    background-color: #fff;
}

.apto-trigger-dropdown span {
    float: left;
    line-height: 44px;
}

.apto-trigger-dropdown i {
    float: right;
    line-height: 44px;
}

.apto-trigger-dropdown svg {
    width: 25px;
    float: left;
    margin-right: 10px;
    height: 25px;
}

.dropdown-apto {
    width: 100%;
    display: none;
    z-index: 1;
    position: absolute;
    left: 0;
    top: 45px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    max-height: 16rem;
    overflow-y: scroll;
    background: #fff;
}

.dropdown-apto.show {
    display: block;
}

.dropdown-apto-item svg {
    width: 25px;
    height: 25px;
    float: left;
    margin-right: 10px;
}

.dropdown-apto-item {
    width: 100%;
    /* height: 50px;
    line-height: 25px; */
    border: 0;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.2s ease-in;
    background-color: #fff;
    font-weight: 700;
    color: #5a616c;
    text-align: left;
}

.dropdown-apto-item svg path {
    fill: #008768;
}

.dropdown-apto-item p {
    margin-bottom: 0;
}

.dropdown-apto-item:hover {
    background-color: #DFE0E2;
}

.dropdown-apto-item:not(:last-child) {
    border-bottom: 1px solid #ced4da;
}

#selected_data {
    display: none;
}

.selected_div {
    color: rgb(42, 45, 50);
    font-size: 1rem;
    font-weight: 700;
}

.selected_div p {
    color: rgb(50 50 50);
    font-size: 1rem;
    font-weight: 400;
}

/* Home page what where when style */
.calenderContainer,
.headerCalenderContainer {
    position: absolute;
    background: #fff;
    border-radius: 10px;
    top: 65px;
    padding-top: 23px;
    text-align: left;
    width: 93%;
    box-shadow: 3px 0 15px 6px #00000026;
    opacity: 0;
    z-index: 9999;
}

.fc-scroller-harness .fc-scroller .fc-col-header {
    width: 100% !important;
}

tbody .fc-daygrid-body.fc-daygrid-body-unbalanced.fc-daygrid-body-natural {
    width: 100% !important;
}

tbody .fc-daygrid-body.fc-daygrid-body-unbalanced.fc-daygrid-body-natural table {
    width: 100% !important;
}

.locationContainer {
    position: absolute;
    background: #fff;
    border-radius: 10px;
    /* top: 65px; */
    padding-top: 23px;
    text-align: left;
    width: 93%;
    height: 280px;
    box-shadow: 3px 0 15px 6px #00000026;
    display: none;
    z-index: 9999;
}

.categoryModal {
    position: absolute;
    background: #fff;
    border-radius: 10px;
    padding-top: 23px;
    text-align: left;
    display: none;
    width: 93%;
    height: 260px;
    box-shadow: 3px 0 15px 6px #00000026;
    z-index: 9999;
}

.locationContainer{
    position: absolute;
    background: #fff;
    border-radius: 10px;
    /* top: 65px; */
    padding-top: 23px;
    text-align: left;
    display: none;
    width: 93%;
    height: 260px;
    box-shadow: 3px 0 15px 6px #00000026;
    z-index: 9999;
}
/* .categoryItem,
.locationItem {
    padding: 10px 23px;
} */

.categoryItem,
.locationItem {
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.categoryItem:hover,
.locationItem:hover {
    background: #e9ecef;
    color: #000;
    text-decoration: none;
}

.below_text {
    font-size: .75rem;
}

.below_text span {
    font-size: 1rem;
    font-weight: 700;
}

.categoryItem img {
    width: 75px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

/*  csss for add on new section  */
.date_box {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.blog_author {
    display: flex;
    align-items: center;
    column-gap: 30px;
    box-shadow: 0px 1px 5px #ccc;
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 2.5rem;
}

.blog_author .author_image {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.author_detail h3 {
    margin-bottom: 5px;
}

/* css for 404 not found   */
.not_found {
    margin: 70px 0px 80px;
}

.contant_box_404 {
    text-align: center;
}

.link_404 {
    color: #212529;
    text-decoration: underline;
}


/* calender csssss */

.calender_popup .fc-view-harness .fc-view table tbody .fc-scrollgrid-section td .fc-scroller-harness .fc-scroller .fc-daygrid-body-natural table tbody tr .fc-day .fc-daygrid-day-number {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    line-height: 2.5rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
}
.calender_popup .fc-view-harness .fc-view table tbody .fc-scrollgrid-section td .fc-scroller-harness .fc-scroller .fc-daygrid-body-natural .fc-daygrid-day-top {
    justify-content: center;
}

.calender_popup .fc-view-harness .fc-view table tbody .fc-scrollgrid-section td .fc-scroller-harness .fc-scroller .fc-daygrid-body-natural .fc-daygrid-day-events {
    min-height: 0;
}

.ui-widget-header {
    background: transparent;
    border: 0;
    color: #000;
    font-size: 1em !important;
    font-weight: 700;
}

.ui-state-default {
    padding: 10px !important;
    color: #000 !important;
    text-decoration: none !important;
    cursor: pointer;
    line-height: 2.5rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: transparent !important;
    font-size: 14px;
    border: 0 !important;
    display: inline !important;
    text-align: center !important;
}

.ui-state-highlight {
    background: #5998c426 !important;
}

.ui-state-active {
    background: #5998C4 !important;
}

.ui-datepicker .ui-datepicker-prev span {
    border: solid black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(135deg);
    width: 10px;
    height: 10px;
}

.ui-datepicker-prev-hover {
    left: 2px !important;
    border: 0 !important;
    top: 5px !important;
    background: none !important;
}

.ui-datepicker-next-hover {
    right: 2px !important;
    border: 0 !important;
    top: 2px !important;
    background: none !important;
}

.ui-datepicker .ui-datepicker-next span {
    border: solid black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(-45deg);
    width: 10px;
    height: 10px;
}

.sign_link_child a {
    color: black;
}

/* .calender_popup .fc-view-harness .fc-view table tbody .fc-scrollgrid-section td .fc-scroller-harness .fc-scroller .fc-daygrid-body-natural table tbody tr .fc-day .fc-daygrid-day-number {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    line-height: 2.5rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
}

.calender_popup .fc-view-harness .fc-view table tbody .fc-scrollgrid-section td .fc-scroller-harness .fc-scroller .fc-daygrid-body-natural .fc-daygrid-day-top {
    justify-content: center;
}

.calender_popup .fc-view-harness .fc-view table tbody .fc-scrollgrid-section td .fc-scroller-harness .fc-scroller .fc-daygrid-body-natural .fc-daygrid-day-events {
    min-height: 0;
}

.fc-theme-standard td,
.fc-theme-standard th {
    border: 0;
}

.fc .fc-col-header-cell-cushion {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.fc .fc-daygrid-day.fc-day-today {
    background-color: #5998c426;
}

.fc-day {
    border: none !important;
    text-align: center;
    height: 1rem;
    width: 1rem;
    border-radius: 50%;
    overflow: hidden;
}

.fc .fc-highlight {
    background-color: #5998c4;
}

.selected-day .fc-daygrid-day-top,
.selected-day div a,
.selected-day div {
    color: white !important;
    opacity: 1 !important;
}

.fc-scrollgrid {
    padding: 0px 25px;
}

.fc .fc-toolbar.fc-header-toolbar {
    padding: 0px 18px;
}

.fc-theme-standard .fc-scrollgrid {
    border: 0;
}

.fc .fc-button-primary {
    background-color: transparent;
    border-color: transparent;
    color: #000;
}

.fc .fc-button-primary:focus {
    background-color: transparent;
    border-color: transparent;
    color: #000;
    box-shadow: none;
}

.fc .fc-button-primary:active {
    background-color: transparent !important;
    border-color: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
}

.fc .fc-button-primary:hover {
    background-color: #5998c426;
    border-color: transparent;
    color: #000;
}

.fc .fc-button-primary:focus-visible {
    outline: 0;
}

.fc-toolbar-title {
    color: #000;
    font-size: 1.2em !important;
    font-weight: 700;
}

#sign-children {
    display: none;
}

.sign_link_child {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    margin: 1rem 0;
}

.sign_link_child a {
    color: #212529;
}

#sign-svg {
    transform: rotate(0deg);
    transition: 0.15s;
}

.signActive #sign-svg {
    transform: rotate(-180deg);
    transition: 0.15s;
}

#language-children {
    display: none;
}

#language-svg {
    transform: rotate(0deg);
    transition: 0.15s;
}

.signActive #language-svg {
    transform: rotate(-180deg);
    transition: 0.15s;
}

.conditionBasedData .cancellationData {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 5px;
}

.conditionBasedData .instatntData {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.product_span {
    line-height: 20px;
}

/* 
.conditionBasedData .cancellationData .icon-sm,  .conditionBasedData .instatntData .icon-sm{
    width: 20px !important;
    height: 20px !important;
} */
.leaflet-popup-content {
    width: 300px !important;
}

.map__product-link {
    align-items: center;
}

.map__product-link:hover {
    text-decoration: none;
}

.map__product-thumbnail {
    height: 100px;
    object-fit: cover;
    border-radius: 0.25rem;
}

.map__price-text {
    margin: 1.3em 0 0 !important;
}

.map__product-carousel {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden;
    overflow-y: hidden;
    position: relative;
    height: auto;
}

.leaflet-container .map__prev {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    line-height: 36px;
    text-align: center;
    background: #accae2;
    color: #0078A8;
    border-radius: 50%;
    border: 3px solid #fff;
    font-size: 20px;
    cursor: pointer;
    left: -25px;
    z-index: 1;
    -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}

.leaflet-container .map__next {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    line-height: 36px;
    text-align: center;
    background: #accae2;
    color: #0078A8;
    border-radius: 50%;
    border: 3px solid #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 1;
    right: -25px;
    -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}

.map__product-card {
    font-family: "Inter", sans-serif;
    min-width: 100%;
    min-height: 100%;
}

.leaflet-container .map__prev:hover,
.leaflet-container .map__next:hover {
    text-decoration: none;
}

.map__textarea {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.map__product-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.product_link {
    color: #212529;
}

.product_link:hover {
    color: #212529;
    text-decoration: none;
}

.summar_list_mobile {
    border-bottom: 1px solid #ddd;
    border-top: 0;
    margin-top: 0;
}

.summar_list_mobile .review_info_list li:last-child {
    margin-bottom: 10px;
}

.title_limit {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.clear-icon {
    display: flex;
    align-items: center;
    border-radius: 50%;
    padding-right: 3%;
    cursor: pointer;
}

.cursor_pointer {
    cursor: pointer;
}

.full_page_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: white;
}

.content_wrapper {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
}

.top-svg, .bottom-svg {
    position: absolute;
    width: 100%;
    z-index: -1; /* Ensure the SVGs are behind the content */
}

.top-svg {
    top: 0;
    max-width: 100%;
    height: auto;
    display: block
}

.absolute-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px; /* Set your desired constant height here */
    z-index: -1; /* Ensure it stays below other content */
}

.top-svg1 {
    width: 100%;
    height: 100%;
}

.form-control:disabled, .form-control[readonly] {
    background-color: var(--grey-200);
}
/* 
@media screen and (min-width: 1024px) and (max-width: 1440px) {
    .top-svg {
        width: 120%;
        left: -15%;
    }
    .bottom-svg {
        width: 160%;
        left: -40%;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .top-svg, .bottom-svg {
        width: 170%;
        left: -40%;
    }
}

@media screen and (min-width: 470px) and (max-width: 768px) {
    .top-svg, .bottom-svg {
        width: 250%;
        left: -90%;
    }
}

@media screen and (max-width: 470px) {
    .top-svg, .bottom-svg{
        width: 400%;
        left: -160%;
    }
} */

.btn.disabled, .btn:disabled {
    background-color: var(--grey-200);
    opacity: 1;
    color: #fff;
    cursor: not-allowed;
}
.newsletter {
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
    display: none;
}
    
.newsletter__header {
    margin: 0;
    padding: 0;
}

.newsletter__subheader {
    margin-bottom: 15px;
}

.newsletter__checkbox_container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.newsletter__checkbox_item {
    display: flex;
    gap: 10px;
}

.newsletter__input {
    width: 420px;
    padding: 12px 28px;
    border: 1px solid var(--grey-200);
    border-radius: 10px;
}

.newsletter__input::placeholder {
    color: var(--grey-500);
}

.newsletter__button {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 10px;
    cursor: pointer;
    padding: 0.75rem 4rem;
    transition: var(--fast);
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    font-weight: 400;
    margin-left: -5%;
    width: 205px;
}

.newsletter__form {
    display: flex;
}

.newsletter__checkbox__input {
    min-width: 20px;
    height: 20px;
}
@media screen and (max-width: 576px) {
    .container {
        max-width: 420px;
    }
    .newsletter {
        padding: 0 1rem;
        margin-top: 2.75rem;
        gap: 0.5rem;
        margin-bottom: 3rem;
    }
    .newsletter__form {
        flex-direction: column;
        gap: 1rem;
    }
    .newsletter__input {
        width: 100%;
        padding: 0.9rem 1.1rem;
    }
    .newsletter__button {
        padding: 0.8rem;
        margin: 0 auto;
        width: 62%;
    }
    .newsletter__subheader {
        margin-bottom: 12px;
    }
    .newsletter__checkbox_container {
        margin-top: 1.5rem;
        gap: 0.2rem;
    }
    .newsletter__checkbox__input {
        min-width: 16px;
        height: 16px;
    }
    .newsletter__checkbox__label {
        font-size: 12px;
    }
    .newsletter__header {
        margin-bottom: 0rem !important;
    }
    .section_limited_width {
        padding: 0 1rem;
    }
    @media screen and (max-width: 576px) {
        .container__home {
            margin-top: 1rem;
        }
        .section_limited_width {
            max-width: 100%;
        }
    }
}

.ui-datepicker td {
    text-align: center;
}

.ui-datepicker td:hover {
    background-color: var(--grey-200);
    border-radius: 8px;
}

.ui-datepicker-week-end .ui-state-default, .ui-datepicker-unselectable .ui-state-default, [data-handler="selectDay"] .ui-state-default {
    font-size: 16px;
}

.spinner_wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1098;
    background: rgba(255, 255, 255, 0.8);
    margin-top: -70px;
}
.spinner_item {
    text-align: center;
}
.spinner_img {
    width: 108px;
    height: 108px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#showLess svg {
    transform: rotate(180deg);
    top: 1px;
    position: relative;
}
  .participant-icon.active:after, .actions_body__btn_field__calendar.active:after{
    transform: translateY(-50%) rotate(180deg);
}

.loc_icon {
    min-width: 16px;
    fill: var(--primary);
}

.header_banner_main .loc_icon {
    fill: var(--orange);
}