body {
    font-family: 'Prompt', sans-serif;
    height: 100%;
}

:root {
    --color-primary: #0e7372;
    --color-primary-dark: #064e4d;
    --color-accent: #f4fdfd;
    --color-text-dark: #1f2a2a;
    --color-text-muted: #5f6e6e;
}

.home-navbar {
    padding: 1.5rem 0;
    box-shadow: 0 18px 36px rgba(6, 78, 77, 0.08);
    border-bottom: 1px solid rgba(6, 78, 77, 0.08);
    background: #ffffffcc;
    backdrop-filter: blur(6px);
}

@media (max-width: 991px) {
    .home-navbar {
        padding: 1rem 0;
    }
}

.home-navbar__container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    width: 100%;
    position: relative;
    min-height: 44px;
}

.home-navbar__slot {
    display: flex;
    flex: 1 1 0;
    min-width: 0;
}

.home-navbar__slot--left {
    justify-content: flex-start;
}

.home-navbar__slot--right {
    justify-content: flex-end;
}

.home-navbar .navbar-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 2;
}

.home-navbar__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(14, 115, 114, 0.2);
    background: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 18px rgba(6, 78, 77, 0.12);
}

.home-navbar__toggle:hover {
    background: rgba(14, 115, 114, 0.1);
    border-color: rgba(14, 115, 114, 0.28);
}

.home-navbar__toggle:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.home-navbar__toggle-line {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-primary-dark);
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
    transform-origin: center;
}

.home-navbar.is-open .home-navbar__toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.home-navbar.is-open .home-navbar__toggle-line:nth-child(2) {
    opacity: 0;
}

.home-navbar.is-open .home-navbar__toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.home-navbar.is-open .home-navbar__toggle {
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 10px 24px rgba(6, 78, 77, 0.22);
}

.home-navbar.is-open .home-navbar__toggle-line {
    background: #ffffff;
}

.home-navbar__drawer {
    display: none;
}

.btn-search-header,
.btn-submit-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-search-header {
    color: var(--color-primary) !important;
    border: 1px solid rgba(14, 115, 114, 0.18);
    background: rgba(14, 115, 114, 0.08);
}

.btn-search-header:hover {
    background: var(--color-primary);
    color: #ffffff !important;
    border-color: transparent;
}

.btn-submit-header {
    color: #ffffff !important;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn-submit-header:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.btn-outline-main {
    color: var(--color-primary) !important;
    border: 2px solid var(--color-primary);
    background: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-main:hover {
    background: var(--color-primary);
    color: #ffffff !important;
}

.btn-outline-main--light {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-outline-main--light:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: #ffffff;
    color: #ffffff !important;
}

.home-hero {
    position: relative;
    padding: 6rem 0 4.5rem;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(14, 115, 114, 0.88), rgba(6, 78, 77, 0.82)),
    url('https://whatthecamp.b-cdn.net/static/homepage/bg_hd_tiny.png') center center/cover no-repeat;
}

.home-hero__grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
}

.home-hero__eyebrow {
    font-size: 0.95rem;
    letter-spacing: 0.32em;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.8;
}

.home-hero__title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.home-hero__subtitle {
    font-size: 1.1rem;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.92);
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.home-hero__meta {
    list-style: none;
    margin: 2.5rem 0 0;
    padding: 0;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.home-hero__meta li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.85rem 1.1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    font-weight: 500;
}

.home-hero__meta li span {
    font-size: 1.3rem;
    line-height: 1.3rem;
}

.home-hero__panel {
    display: flex;
    justify-content: flex-end;
}

.home-hero__panel-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 2.25rem;
    box-shadow: 0 32px 60px rgba(4, 60, 60, 0.16);
    max-width: 420px;
    width: 100%;
    color: var(--color-text-dark);
}

.home-hero__panel-card h3 {
    font-weight: 700;
    color: var(--color-primary-dark);
}

.home-hero__panel-card p {
    margin-top: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.home-hero__panel-shortcuts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.75rem 0 2rem;
}

.chip-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    background: rgba(14, 115, 114, 0.12);
    color: var(--color-primary-dark);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.chip-link:hover {
    background: var(--color-primary);
    color: #ffffff;
}

.home-hero__panel-button {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.home-hero__panel-footnote {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.home-featured {
    padding: 4.5rem 0 4rem;
    background: var(--color-accent);
}

.home-section__header {
    margin-bottom: 2rem;
}

.home-section__header h2 {
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
}

.home-section__header p {
    margin: 0;
    color: var(--color-text-muted);
}

.home-featured__promo {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(6, 78, 77, 0.16);
    margin-bottom: 3rem;
}

.home-featured__promo-link,
.home-featured__promo-image {
    display: block;
    width: 100%;
}

.home-featured__promo-image {
    height: auto;
}

.camp-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(6, 78, 77, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.camp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(6, 78, 77, 0.16);
}

.camp-card__image-link {
    display: block;
}

.camp-card__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.camp-card__body {
    display: flex;
    flex-direction: column;
    padding: 1.6rem 1.75rem 1.75rem;
    gap: 1.1rem;
    height: 100%;
}

.camp-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.camp-card__title {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.camp-card__title:hover {
    color: var(--color-primary-dark);
}

.camp-card__action {
    margin-top: auto;
    font-weight: 600;
}

.home-empty {
    padding: 2.5rem;
    text-align: center;
    background: #ffffff;
    border-radius: 18px;
    color: var(--color-text-muted);
    box-shadow: 0 18px 36px rgba(6, 78, 77, 0.12);
}

.home-shortcuts {
    padding: 4rem 0;
}

.home-shortcuts--province {
    background: #ffffff;
}

.home-shortcuts--lifestyle {
    background: #fdf7f2;
}

.shortcut-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 0.85rem;
    color: var(--color-text-dark);
    transition: transform 0.3s ease;
}

.shortcut-card__media {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(6, 78, 77, 0.12);
    background: #ffffff;
}

.shortcut-card__image {
    width: 100%;
    transition: transform 0.3s ease;
}

.shortcut-card__label {
    font-weight: 600;
    color: var(--color-primary-dark);
}

.shortcut-card:hover {
    transform: translateY(-6px);
}

.shortcut-card:hover .shortcut-card__image {
    transform: scale(1.03);
}

@media (max-width: 1199.98px) {
    .home-hero {
        padding: 5rem 0 3.5rem;
    }

    .home-hero__title {
        font-size: 2.4rem;
    }
}

@media (max-width: 991.98px) {
    .home-navbar__container {
        justify-content: center;
        gap: 0;
    }

    .home-navbar .navbar-brand {
        position: static;
        transform: none;
        margin: 0 auto;
    }

    .home-navbar__slot {
        display: none;
    }

    .home-navbar__toggle {
        display: inline-flex;
        margin-right: 15px;
    }

    .home-navbar__drawer {
        display: none;
        width: calc(100% - 24px);
        padding: 1.1rem 1.3rem 1.4rem;
        background: #ffffff;
        border-radius: 18px;
        box-shadow: 0 20px 44px rgba(6, 78, 77, 0.16);
        margin: 0.75rem auto 0;
        flex-direction: column;
        gap: 0.75rem;
        max-width: 520px;
    }

    .home-navbar.is-open .home-navbar__drawer {
        display: flex;
    }

    .home-navbar__drawer-link {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1rem;
        border-radius: 12px;
        font-weight: 600;
        text-decoration: none;
        color: var(--color-primary-dark);
        background: rgba(14, 115, 114, 0.1);
        border: 1px solid rgba(14, 115, 114, 0.18);
        transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    }

    .home-navbar__drawer-link:hover {
        background: var(--color-primary);
        color: #ffffff;
        border-color: var(--color-primary);
    }

    .home-navbar__drawer-link--primary {
        background: var(--color-primary);
        border-color: var(--color-primary);
        color: #ffffff;
    }

    .home-navbar__drawer-link--primary:hover {
        background: var(--color-primary-dark);
        border-color: var(--color-primary-dark);
    }

    .home-hero__grid {
        grid-template-columns: 1fr;
    }

    .home-hero__content {
        text-align: center;
    }

    .home-hero__subtitle,
    .home-hero__meta {
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero__panel {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .home-hero {
        padding: 4.5rem 0 3rem;
    }

    .home-hero__title {
        font-size: 2.1rem;
    }

    .home-hero__meta {
        grid-template-columns: 1fr;
    }

    .home-hero__panel-card {
        padding: 1.8rem;
    }

    .home-navbar__drawer-link {
        padding: 0.7rem 1rem;
        font-size: 0.95rem;
    }
}

.footer {
    padding: 10px 0px;
}

.sidebar {
    font-family: 'Prompt', sans-serif;
}

#navbar-logo {
    height: 70px;
}

.home_section1 {
    min-height: calc(90vh);
    background-image: url("https://whatthecamp.b-cdn.net/static/homepage/bg_hd_tiny.png");
    background-position: center center;
    background-size: cover;
}

.home_section2 {
    min-height: 500px;
    padding: 30px 20px;
}

.home_section1_text {
    margin: auto;
    margin-top: 145px;
    width: 80%;
    padding: 10px;
}

.text-main-light {
    color: #0e7372 !important;
}

.text-main-dark {
    color: #064e4d !important;
}

.bg-main-dark {
    background: #064e4d !important;
}

.text-dark-gray {
    color: #262626 !important;
}

.text-sale-dark {
    color: #002475 !important;
}

.btn-sale-dark {
    color: whitesmoke !important;
    background: #001443 !important;
}

.btn-sale-dark:hover {
    color: white !important;
    background: #002572 !important;
}

.btn-main-qr-code {
    color: whitesmoke !important;
    background: #00a2a0 !important;
}

.btn-main-qr-code img {
    width: 90px;
    margin-bottom: 30px;
}

.btn-main-qr-code:hover {
    background: rgba(0, 162, 160, 0.8) !important;
}

.btn-main-light {
    color: whitesmoke !important;
    background: #0e7372 !important;
}

.btn-main-light:hover {
    color: white !important;
    background: #064e4d !important;
}

.btn-main-dark {
    color: whitesmoke !important;
    background: #064e4d !important;
}

.btn-main-dark:hover {
    color: white !important;
    background: #054645 !important;
}

.btn-super-lg {
    font-weight: bold !important;
    font-size: 1.1em !important;
}

.main-color-blue {
    color: #002475 !important;
}

.main-color-yellow {
    color: #feeb46 !important;
}

.main-color-orange {
    color: #f86e6c !important;
}

.main-color-purple {
    color: #5f4a8b !important;
}

.main-color-green {
    color: #88b04d !important;
}

.main-color-blue-border {
    border: #002475 1px solid !important;
}

.main-color-yellow-border {
    border: #feeb46 1px solid !important;
}

.main-color-orange-border {
    border: #f86e6c 1px solid !important;
}

.main-color-purple-border {
    border: #5f4a8b 1px solid !important;
}

.main-color-green-border {
    border: #88b04d 1px solid !important;
}

.main-color-blue-bg {
    background: #002475 !important;
    color: white !important;
}

.main-color-yellow-bg {
    background: #feeb46 !important;
    color: black !important;
}

.main-color-orange-bg {
    background: #f86e6c !important;
    color: black !important;
}

.main-color-purple-bg {
    background: #5f4a8b !important;
    color: white !important;
}

.main-color-green-bg {
    background: #88b04d !important;
    color: black !important;
}

.size-12 {
    font-size: 1.2em;
}

.section1_text {
    padding-top: 150px;
}

.try_free_input {
    max-width: 300px;
    border-radius: 30px;
    border: #002475 2px solid;
}

.full-page {
    width: 100vw;
    height: 100vh;
}

.force-center {
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    justify-content: center;
    right: 50%;
    bottom: 50%;
    transform: translate(50%, 50%);
    position: absolute;
}

.preview_color_line {
    height: 5px;
    width: 100%;
}

.header_shop_curve {
    height: 20px;
    width: 100%;
}


.header_shop {
    width: 100%;
    min-height: 80px;
    padding-bottom: 10px;
}

.header_shop__logo {
    text-align: center;
    align-items: center;
    justify-content: center;
}

.header_shop__logo img {
    height: 130px;
    width: auto;
    margin: 20px 0px;
}

.header_shop__line {
    height: 2px;
    width: 60px;
    margin: auto;
}

.header_shop__social {
    text-align: center;
    align-items: center;
    justify-content: center;
    padding-bottom: 10px;
}

.header_shop__social__each {
    height: 30px;
    margin: 10px 15px;
}

.homepage_shop_content {
    padding: 20px 0px;
    width: 100%;
    overflow: hidden;
}

.homepage_shop_content img {
    width: auto;
    max-width: 90% !important;
    height: auto !important;
}

.homepage_shop_content span, p, b, h1, h2, h3, h4, h5, li {
    font-family: "Prompt" !important;
}

.float_social {
    position: fixed;
    top: 10px;
    right: 10px;
    min-height: 50px;
    height: 50px;
    background: gray;
    border-radius: 5px;
    padding: 10px 25px;
    z-index: 2;
}

.float_social_sm_text {
    font-size: 0.7em;
    padding-right: 10px;
}

.float_social__each {
    height: 30px;
    margin: 0px 5px;
}

.nowrap {
    overflow: hidden;
    white-space: nowrap;
}

.homepage_shop_product {
    padding: 20px 0px;
    width: 100%;
    overflow: hidden;
}

.homepage_shop_product__each {
    width: 90%;
    padding: 20px;
}

.homepage_shop_product__each_sub {
    border: 1px #eeeeee solid;
    min-height: 650px;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.homepage_shop_product__each_sub_related {
    border: 1px #eeeeee solid;
    min-height: 500px;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.homepage_shop_product__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: 0.3s;
}

.homepage_shop_product__image:hover {
    opacity: 0.7;
}

.homepage_shop_product__title {
    padding: 15px 20px;
}

.homepage_shop_product__title h5 {
    padding-top: 5px;
    line-height: 1.8em;
    text-overflow: clip;
    font-weight: 500;
}

.homepage_shop_product__line {
    width: 100%;
    height: 5px;
}

.homepage_shop_product__price_bar {
    padding: 5px 20px;
    margin-top: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

.homepage_shop_product__btn_cart {
    border-radius: 30px;
    min-width: 150px;
    border: 0px;
    box-shadow: none;
}

.homepage_shop_product__badge {
    display: flex;
}

.homepage_shop_product__badge span {
    margin-right: 10px;
}

.shop_footer {
    margin-top: 50px;
    width: 100vw;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f1f1f1;
    bottom: 0px;
}

.shop_footer a {
    color: #0032c3;
    text-decoration: underline;
}

.homepage_shop_product__btn_zone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.homepage_shop_product__btn_zone_lastest {
    font-weight: lighter;
    font-size: 0.7em;
    color: #8e8e8e;
    /* padding: 0px 6px; */
    margin-right: 6px;
}

.tippy_out_of_stock {
    background: #9b9b9b !important;
}

.custom-shape-divider-top-1624851173 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1624851173 svg {
    position: relative;
    display: block;
    width: calc(122% + 1.3px);
    height: 112px;
}

.custom-shape-divider-top-1624851173 .shape-fill {
    fill: #FFFFFF;
}

.section2 {
    position: relative;
    width: 100vw;
    /*min-height: 600px;*/
    padding-bottom: 30px;
    background: #002475 !important;
    color: white !important;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
}

.homepage_shop_product__page_title {
    line-height: 1.4em;
    /*font-weight: bold;*/
}

.text_alt_image {
    font-size: 0.8em;
    line-height: 1.3em;
    color: #e6e6e6;
    padding: 20px 50px;
}

span, p, b, h1, h2, h3, h4, h5, li {
    font-family: "Prompt" !important;
    /*font-size: 1.1em;*/
    /*line-height: 1.7em;*/
}

.homepage_shop_product__page_content {
    padding: 10px;
}

.homepage_shop_product__page_content img {
    width: 100% !important;
    object-fit: cover;
    padding: 10px 0px;
}

.homepage_shop_product__page_price_box {
    border: 2px solid #e4e4e4;
    padding: 5px 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin: 15px 0px;
}

.checkout_image {
    width: 100% !important;
    height: auto !important;;
    border-radius: 0 !important;;
}

.checkout_item_name p {
    line-height: 1.5em;
}

.cart_action {
    cursor: pointer;
    color: #9a9a9a;
    transition: 0.3s;
}

.cart_action:hover {
    color: #525252;
}

.cart_adjust_box {
    max-width: 300px;
    border: #efefef 1px solid;
    border-radius: 10px;
    padding-top: 10px;;
}

.cart_adjust_box_active {
    border: #064e4d 2px solid;
    background: #0e73721f;
    color: #064e4d;
    font-weight: bold;
    transition: 0.3s;
}

.cart_adjust_box_center {
    border: #efefef 1px solid;
    border-radius: 10px;
    height: 100%;
}

.loading {
    width: 100vw;
    height: 70px;
    position: fixed;
    z-index: 2;
    top: 60px;
    display: none;
}

.sk-chase {
    width: 40px;
    height: 40px;
    position: relative;
    animation: sk-chase 2.5s infinite linear both;
    margin: 15px auto;
}

.sk-chase-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    animation: sk-chase-dot 2.0s infinite ease-in-out both;
}

.sk-chase-dot:before {
    content: '';
    display: block;
    width: 25%;
    height: 25%;
    background-color: #000249;
    border-radius: 100%;
    animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
    animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
    animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(3) {
    animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
    animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
    animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
    animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
    animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
    animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(3):before {
    animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
    animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
    animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
    animation-delay: -0.6s;
}

@keyframes sk-chase {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-chase-dot {
    80%, 100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-chase-dot-before {
    50% {
        transform: scale(0.4);
    }
    100%, 0% {
        transform: scale(1.0);
    }
}

.cart_summary_box {
    background: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
    border-left: #ececec 10px solid;

}

.cart_summary_box_btn_zone {
    margin-top: 50px;
}

.cart_summary_box_btn {
    width: 100%;
    height: 50px;
    font-size: 1.2em;
    border-radius: 8px;
}


.float_cart {
    position: fixed;
    top: 70px;
    right: 10px;
    min-height: 50px;
    height: 50px;
    background: gray;
    border-radius: 5px;
    padding: 10px 25px;
    z-index: 2;
}

.float_cart p {
    padding: 4px 0px;
}

.float_cart a {
    text-decoration: none;
}

.contact_box {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.contact_box_each {
    margin: 10px auto;
    padding: 10px 20px;
    min-width: 320px;
    max-width: 500px;
    border: black solid 1px;
    border-radius: 10px;
    background: white;
    transition: 0.3s;
}

.contact_box_each:hover {
    background: #f3f3f3;
}

.contact_box_each img {
    height: 30px;
    margin-right: 20px;
}

.contact_box_each p {
    margin: auto 0px;
    color: black;
    font-weight: normal;
    text-decoration: none;
}

.contact_box a {
    text-decoration: none;
}

.order_status_icon {
    width: 150px;
    height: 150px;
}

.text_before_try {
    color: #a7a7a7;
    font-size: 0.7em;
}

.section2_title {
    color: white;
    font-weight: bold;
    margin-top: 120px;
    margin-bottom: 50px;
}

.section2_box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: center;
}

.section2_box_each {
    max-width: 33%;
    min-width: 300px;
    margin: 10px;
    text-align: center !important;
}

.section2_box_each img {
    height: 80px;
    width: auto;
    padding: 15px 0px;
    transition: 0.3s;
}

.section2_box_each h5 {
    font-weight: bold;
}

.section2_box_each p {
    font-size: 1em;
}

.section2_btn_try_free_zone {
    margin: 50px auto;
    text-align: center !important;
}

.section2_btn_try_free {
    color: #001443 !important;
    background: whitesmoke !important;
}

.section2_btn_try_free:hover {
    background: #e7e7e7 !important;
}

.homepage_mock_section1 {
    width: 100%;
    height: auto;
    margin-top: 5vh;
}

.section3 {
    position: relative;
    width: 100vw;
    padding: 50px 0px;
    background: white !important;
    color: #002475 !important;
}

.section3_check {
    font-size: 2em;
}

.section3_table {
    max-width: 700px;
    margin: auto;
}

.footer_text {
    font-size: 1em;
}

.term_page {
    margin: 100px 0px;
}

.try_free_section1 {
    min-height: 90vh;
}

.tryfree_mock {
    width: 100%;
    height: auto;
    object-fit: cover;
    padding: 5vh 20px;
}

.home_section2__image_shortcut {
    -moz-border-radius: 0px;
    -webkit-border-radius: 10px 10px 0px 0px;
    border-radius: 10px 10px 0px 0px;
    width: 100%;
    padding: 0px 2px;
    transition: 0.3s;
}

.home_section2__image_shortcut:hover {
    padding: 0px 3px;
}

.camps_page, .camps_detail_page {
    padding-top: 10px;
}

.camps_page_filter {
    padding: 20px 0px;
    background: #fbfbfb;
}

.filter_label {
    font-weight: bold;
    font-size: 0.875rem;
}

select.form-control, .dataTables_wrapper select {
    outline: 1px solid #9f9f9f;
    color: #606060;
    background: #fbfbfb;
    transition: 0.3s;
}

select.filter_select select {
    outline: none;
}

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

input.filter_input_name {
    outline: 1px solid #8d8d8d;
}

input.filter_selected_box {
    outline: 1px solid #0e7372;
    color: #0e7372;
    background-color: #0e737212;
    font-weight: bold;
}

select.filter_selected_box {
    outline: 1px solid #0e7372;
    color: #0e7372;
    background-color: #0e737212;
    font-weight: bold;
}

label.filter_selected_label {
    color: #0e7372;
    font-weight: bold !important;
}

.result_zone_empty {
    margin: 80px 0px;
}

.result_zone_empty_image {
    width: 280px;
    padding: 30px 0px;
}

.card_camp {
    display: flex !important;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: stretch;
    min-height: 180px;
    height: 100%;
    -moz-border-radius: 0px;
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    transition: 0.3s;
}

.card_camp_active {
    background: rgba(14, 115, 114, 0.08) !important;
}

.card_image_cover {
    width: 50%;
    max-width: 350px;
    min-width: 200px;
    height: 100%;
}

.card_image_cover_slick img {
    height: 200px;
    object-fit: cover;
    margin: auto;
    width: 100%;
}

.slick-dots {
    position: absolute;
    bottom: 3px;
    display: block;
    width: 100%;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    margin: 0;
}

.slick-dots li button:before {
    font-size: 8px;
    line-height: 20px;
    color: #ffffff;
}

.slick-dots li.slick-active button:before {
    font-size: 10px;
    color: #ffffff;
}

.slick-prev {
    z-index: 1;
    left: 8px;
}

.slick-next {
    z-index: 1;
    right: 8px;
}

.slick-prev:before, .slick-next:before {
    opacity: 0.8;
    color: white;
}

.slick-dotted.slick-slider {
    margin-bottom: 0px;
}

.slick-slider {
    display: block !important;
}

.card_camp > .card-body {
    width: 100%;
    padding: 0.8rem 1rem;
    overflow-x: auto;
}

.card_camp_title {
    font-weight: bold;
    color: #343434;
    text-decoration: underline;
    transition: 0.3s;
    line-height: 1.3em;
}

.card_camp_title:hover {
    color: black;
}

.badge_province {
    padding: 6px 9px;
    border-radius: 2px;
    background-color: #e57200;
    color: white;
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
    width: fit-content;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    text-align: center;
    margin-right: 10px;
    -webkit-user-select: none;
    user-select: none;
    white-space: nowrap;
}

.badge_distance {
    padding: 6px 9px;
    border-radius: 2px;
    background-color: #7859df;
    color: white;
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
    width: fit-content;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    text-align: center;
    margin-right: 10px;
    -webkit-user-select: none;
    user-select: none;
    white-space: nowrap;
}

.badge_reservation {
    padding: 6px 9px;
    border-radius: 2px;
    background-color: #00b1af;
    color: white;
    font-size: 12px;
    font-weight: bold;
    line-height: 12px;
    width: fit-content;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    text-align: center;
    margin-right: 10px;
    -webkit-user-select: none;
    user-select: none;
    min-width: 110px;
    white-space: nowrap;
}

.badge_popular {
    padding: 6px 9px;
    border-radius: 2px;
    background-color: #d32200;
    color: white;
    font-size: 12px;
    font-weight: bold;
    line-height: 12px;
    width: fit-content;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    text-align: center;
    margin-right: 10px;
    -webkit-user-select: none;
    user-select: none;
    white-space: nowrap;
}

.card_camp_description_detail {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: stretch;
}

.card_camp_icons {
    height: 17px;
    width: auto;
    margin-right: 10px;
}

.card_camp_icons_lg {
    height: 30px;
    width: auto;
    margin-right: 20px;
}

.card_camp_icons_xl {
    height: 45px;
    width: auto;
    margin-right: 20px;
}

.card_camp_icons_lg_absent {
    height: 30px;
    width: auto;
    margin-right: 20px;
    filter: opacity(30%)
}

.card_camp_description {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #0e7372;
}

.card_camp_description_detail_page {
    font-size: 15px;
    line-height: 20px;
    color: #0e7372;
    font-weight: bold;
}

.absent {
    color: #757575 !important;
    font-weight: 400 !important;
}

.result_zone_scroll {
    height: 750px;
    overflow-y: scroll;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 0;
    background: transparent;
    height: 5px;
}

::-webkit-scrollbar-thumb {
    background: #0e737124;
}

#gMap {
    height: 100%;
    min-height: 750px;
}

#hMap {
    height: 100%;
    height: 300px;
}

.info_windows_sub {
    text-align: center;
    max-width: 190px;
    padding: 0px 10px;
}

.info_windows_sub h6 {
    color: #0f7372;
    font-weight: bold;
}

.info_windows_sub p {
    color: #4b4b4b;
    font-size: 0.7em;
}

.info_windows_sub img {
    margin-bottom: 5px;
    width: auto;
    height: 50px;
}

.btn_get_location {
    font-family: 'Prompt';
    font-size: 17px;
    padding: 5px 15px;
    border-radius: 5px;
    border: 0px;
}

.camps_detail_page_image_slick {
    width: 100vw;
    background: #e5e5e5;
}

.camps_detail_page_image_slick img {
    width: auto;
    height: 50vh;
    max-height: 600px;
    cursor: pointer;
}

.camps_detail_page_toilet_slick {
    width: 100%;
}

.camps_detail_page_toilet_slick img {
    width: auto;
    height: 200px;
    cursor: pointer;
}

.camps_detail_page_image_slick_desc {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 30px;
    text-align: center;
    width: 100%;
}

.camps_detail_page_image_slick_desc_text {
    color: whitesmoke;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.7);
    font-size: 0.9em;
    padding-top: 5px;
    padding-bottom: 5px;
}

.camps_detail_page_header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
}

.camps_detail_page_header_share {
    width: auto;
}

.camps_detail_page_header_zone {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.camps_detail_page_header_zone h2 {
    line-height: 1.2em;
}

.camps_detail_page_header_logo {
    height: 80px;
    width: auto;
    object-fit: cover;
    margin-right: 18px;
}

.camps_detail_page_detail_box {
    margin-bottom: 20px;
    position: relative;
    background-color: #fff;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    padding: 15px;
    flex-wrap: wrap;
    line-height: 1.4;
}

.bg-green {
    background-color: #f1ffff;
}

.camps_detail_page_detail_view {
    height: 60px;
    width: auto;
}

#contactBtn {
    cursor: pointer;
}

.camps_detail_page_toilet_slick .slick-slide {
    margin: 0px 5px;
}

.notfound {
    height: 100vh;
    width: 100vw;
}

.camps_detail_page_detail_description {
    font-size: 0.9em !important;
    color: #333333 !important;
    line-height: 2em;
    padding-bottom: 30px;
    width: 100%;
    text-overflow: clip;
    word-wrap: break-word;
}

.submit_section {
    margin-top: 90px;
    width: 100vw;
    padding: 50px;
}

.submit_success_section {
    height: 100vh;
    width: 100vw;
    padding: 50px;
}

.submit_section h2 {
    font-weight: bold;
    color: black;
    margin-bottom: 30px;
}

.submit_section_form_zone {
    width: 100%;
    max-width: 600px;
}

.submit_section_form_zone .form-control, .dataTables_wrapper select {
    border: 1px solid #0e7372;
}

.btn-reservation {
    font-size: 1.5rem !important;
    font-weight: bold !important;
    color: white;
    background: #00bdbb !important;
    transition: 0.3s;
}

.btn-reservation:hover {
    background: #00a9a7 !important;
}

.btn-reservation-sm {
    font-weight: bold !important;
    color: white;
    background: #00bdbb !important;
    transition: 0.3s;
}

.btn-reservation-sm:hover {
    background: #00a9a7 !important;
}

.camps_detail_page_reservation_box {
    background: #e5ffff !important;
}

.camps_reservation_page_zone {
    background: #fbfbfb !important;
    padding: 15px;
    margin-bottom: 60px;
    border-radius: 15px;
}

.camps_reservation_payment_page_zone {
    background: #fbfbfb !important;
    padding: 30px 15px;
    margin-bottom: 60px;
    border-radius: 15px;
}

.camps_reservation_payment_page_zone_max {
    background: #fbfbfb !important;
    padding: 30px 15px;
    margin-bottom: 60px;
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
}

#date_reserve_picker {
    width: 100%;
}

.litepicker .container__days .day-item.is-start-date {
    background-color: #064e4d !important;
    font-weight: bold;
}

.litepicker .container__days .day-item.is-end-date {
    background-color: #064e4d !important;
    font-weight: bold;
}

.litepicker .container__days .day-item.is-in-range {
    background-color: #0e7372 !important;
    color: whitesmoke;
}

.litepicker .container__days .day-item:hover {
    -webkit-box-shadow: inset 0 0 0 1px #064e4d;
    box-shadow: inset 0 0 0 1px #064e4d;
}

.camps_reservation_input_camper_zone {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.camps_reservation_input_camper_number {
    width: 100px;
    font-size: 1.3em;
    text-align: center;
}

.camps_reservation_input_camper_number input::-webkit-outer-spin-button,
.camps_reservation_input_camper_number input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.form-check .form-check-label input[type="radio"]:checked + .input-helper:before {
    background: #0e7372;
    border-width: 0;
}

.form-check .form-check-label input[type="radio"] + .input-helper:before {
    border: 1px solid #0e7372;
}

.form-check .form-check-label input[type="checkbox"]:checked + .input-helper:before {
    background: #0e7372;
    border-width: 0;
}

.form-check .form-check-label input[type="checkbox"] + .input-helper:before {
    border: 1px solid #0e7372;
}

.camps_reservation_page_zone .form-control, .dataTables_wrapper select {
    border: 2px solid #0e7372;
}

.date_reserve_loading {
    height: 15px;
    display: none;
}

.date_reserve_loading_btn {
    height: 35px;
    display: none;
}

.btn-camper {
    cursor: pointer;
}

.line15 {
    line-height: 1.5em !important;
}

.line175 {
    line-height: 1.75em !important;
}

.home_section2_reserve_box {
    width: 100%;
    border: none;
    border-radius: 22px;
    padding: 0;
    min-height: auto;
}

.home_section2_reserve_box_image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.camps_detail_page_detail_box_rental_box {
    margin-bottom: 10px;
    background: #f9f9f9;
    border-radius: 3px;
    padding: 15px 5px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
}

.reservation_rental_box {
    margin-bottom: 10px;
    background: #f9f9f9;
    border-radius: 3px;
    padding: 15px 5px;
    width: 100%;
}

.camps_detail_page_detail_box_rental_box img {
    width: 100%;
    max-width: 150px;
    height: auto;
    max-height: 150px;
    object-fit: cover;
    padding: 10px 5px;
}

.camps_detail_page_detail_box_rental_img {
    width: 100%;
    max-width: 150px;
    height: auto;
    max-height: 150px;
    object-fit: cover;
    padding: 10px 5px;
}

.camps_detail_page_detail_box_rental_box_center {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

.modal_body {
    padding: 20px;
}

.camps_reservation_v2_zone_selector {
    outline: 1px solid #0e7372;
    background: #f3f3f3;
    color: black;
    margin: 5px;
    padding: 20px;
    border-radius: 5px;
    transition: 0.3s;
}

.camps_reservation_v2_zone_selector:hover {
    outline: 1px solid #0e7372;
    color: #0e7372;
    background-color: rgba(14, 115, 114, 0.03);
}

.camps_reservation_v2_zone_selector.active {
    outline: 1px solid #0e7372;
    color: #0e7372;
    background-color: #0e737212;
}

.food_order_each_box {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    align-content: center;
    width: 100%;
    max-width: 400px;
    padding: 10px 5px;
    margin-bottom: 25px;
    border-bottom: 1px solid #008686;
    border-radius: 5px;
}

.food_order_each_box img {
    height: auto;
    width: 70px;
}

.food_order_each_box h5 {
    margin-bottom: 5px;
}

.food_order_each_box_detail {
    padding: 0px 10px;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.text-sold-out {
    text-decoration: line-through;
}

.sold_out {
    background: #e5e5e5 !important;
    border: 1px solid #818181 !important;
    opacity: 0.8 !important;
}

.food_order_detail_img {
    width: 90%;
    min-width: 320px;
    max-width: 400px;
}

.food_order_cart {
    background: #007272;
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    position: fixed;
    top: 10px;
    right: 10px;
    padding: 5px;
    line-height: 1em;
    z-index: 9999;
    transition: 0.3s;
    animation-name: cartlive;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #ecf0f1;
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline
}

.acceptcookies {
    text-transform: capitalize;
    display: inline-block;
    user-select: none;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    border: 1.5px solid transparent;
    position: relative;
    color: #20ae9f;
    background: #ffffff;
    padding: 0 20px;
    border-radius: 6px;
    margin: 0;
    height: 30px;
    transition: all .08s ease 0s;
    cursor: pointer;
}

.flex-cookie {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.cookiealert-box {
    max-width: 800px;
    margin: auto;
    border-radius: 15px;
    background: #000000 !important;
    overflow: overlay;
}

.container-check {
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: fit-content;
}

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

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #ffffff;
    border: 2px solid #0e7371;
    border-radius: 50%;
}

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

.container-check input:checked ~ .checkmark {
    background-color: #0e7371;
}

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

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

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

.camps_food_order_zone {
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 80vh;
    overflow: scroll;
}

.food_order_categories {
    width: 100%;
    margin-bottom: 20px;
    max-width: 500px;
    position: -webkit-sticky;
    position: sticky;
    top: -30px;
    background: #fbfbfb !important;
}

.food_order_categories_box {
    overflow-x: scroll;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    border-bottom: 2px solid #cbcbcb80;
}

.food_order_categories_text {
    color: #868686;
    line-height: 1.5em;
    transition: 0.3s;
    cursor: pointer;
}

.food_order_categories_text:hover {
    color: #444444;
}

.food_order_categories_text.active {
    color: #0e7372;
}

.latest_reservation {
    color: #ff0000;
    font-weight: 700;
    font-size: 0.8em;
}

@keyframes cartlive {
    0% {
        background: #007272;
    }
    50% {
        background: #00abab;
    }
    100% {
        background: #007272;
    }
}

.food_order_cart a {
    color: white;
    font-size: 0.7em;
}

@media only screen and (max-width: 450px) {

    #navbar-logo {
        height: 30px;
    }

    .camps_detail_page_header_share {
        max-width: 50px;
    }

    .card_camp {
        display: flex !important;
        flex-direction: column;
    }

    .card_image_cover {
        width: 100%;
        max-width: 450px;
        height: auto;
    }

    .cookiealert {
        font-size: 0.7em;
    }
}

@media only screen and (max-width: 770px) {

    .home_section2_reserve_box {
        min-height: 0px;
    }
}

@media only screen and (max-width: 940px) {

    .cookiealert-fbchat {
        margin-bottom: 70px;
    }
}

.reservation_focus {
    background-color: #0f737212;
    animation-name: focus;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}

@keyframes focus {
    0% {
        background-color: #0f737212;
    }
    50% {
        background-color: #0f737200;
    }
    100% {
        background-color: #0f737212;
    }
}

.room_select_box {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
    margin-top: 10px;
    background: #ffffff;
    border: 1px solid #0e7372;
    border-radius: 10px;
}

.room_select_box_cover_image {
    width: 100%;
}

.room_select_box_name {
    font-size: 1.3em;
    margin-bottom: 15px;
    line-height: 1.3em;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 8px;
}

.room_select_box_description {
    font-size: 0.8em;
    line-height: 1.4em;
    color: black;
}

.room_select_box_price {
    font-size: 1.3em;
    color: #f05700;
}

.more_image_zone {
    display: flex;
    margin-top: 10px;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow: scroll;
}

.more_image_each {
    flex: 1 0 32%;
}

.more_image_img {
    width: 90%;
    height: 50px;
    object-fit: cover;
    margin-right: 5px;
}

.contact_us_image {
    width: 80%;
    max-width: 400px;
    padding: 30px 0px;
}

.contact_us_detail {
    display: flex;
    height: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.events_step {
    margin: 20px;
    padding: 30px 10px;
}

.event_information_each {
    margin: 15px 0px;
    padding: 20px;
    background: #fbfbfb;
    width: 100%;
    border-radius: 10px;
    text-align: left;
}

.event_information_each h3 {
    background: #0e7372;
    width: 50px;
    height: 50px;
    border-radius: 99px;
    padding: 13px;
    text-align: center;
    color: white;
}

.room-carts {
    background: #000000;
    padding: 15px 20px;
    position: fixed;
    right: 25px;
    bottom: 25px;
    border-radius: 10px;
    color: white;
    text-align: right;
}

.bg-gradient-primary {
    background: linear-gradient(230deg, #0e7372, #064e4d) !important;
}

/* Zone Map Styles */
.zone-polygon {
    cursor: pointer;
    transition: all 0.2s ease;
}

.zone-polygon:hover {
    fill-opacity: 0.5 !important;
}

.zone-label {
    pointer-events: auto !important;
    font-family: 'Prompt', sans-serif;
}

.leaflet-container {
    background: #f8f9fa;
}

.zone-details {
    animation: fadeIn 0.3s ease;
    font-family: 'Prompt', sans-serif;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.compass-control {
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    width: 50px;
    height: 50px;
}

.compass {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    font-size: 18px;
    color: #333;
    font-family: 'Prompt', sans-serif;
}

.compass span {
    position: absolute;
    top: 5px;
    font-size: 12px;
    font-weight: bold;
    font-family: 'Prompt', sans-serif;
}

.toolbox-control {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tool-btn {
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    font-family: 'Prompt', sans-serif;
    font-size: 10px;
}

.tool-btn:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.tool-btn.active {
    background: #007bff;
    color: white;
}

.zone-label-container {
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    font-family: 'Prompt', sans-serif;
}

.zone-label-container:hover {
    transform: scale(1.1);
    z-index: 1000;
}

@media (max-width: 768px) {
    #camp-map {
        height: 400px !important;
    }
}
