﻿.grecaptcha-badge {
    visibility: hidden !important;
}

.blog-links-section {
  padding: 70px 0;
  background: #f9f9f9;
}


.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.blog-card {
  
  
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-right: 1px solid #eee;
  position: relative;
}

.blog-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: #111111e6;
  font-weight: 400;
}

.blog-card p {
  color: #4CAF50;
  font-size: 17px;
  margin-bottom: 10px;
  font-weight: 600;
}

.blog-card .read-more {
  font-weight: 600;
  color: #000;
  font-size: 14px;
}



.howyoulive {
    position: relative;
    padding-bottom: 0;
    margin-bottom: 9px;
    padding-top: 9px;
}

    .howyoulive img {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

.register-section {
    background: url("../images/footer2.jpg") center/cover no-repeat;
    position: relative;
    padding: 80px 0 0;
}

.register-overlay {
    padding-bottom: 60px;
}



.register-title {
    color: #a1850d;
    font-weight: 400;
    text-align: center;
    font-size: 38px;
    font-weight: 300;
}

.register-form {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 40px auto 40px;
    width: 80%;
}

    .register-form input {
        flex: 1;
        background: transparent;
        border: 1px solid rgba(205, 195, 1, 0.6);
        padding: 16px 20px;
        color: #fff;
        font-size: 14px;
        outline: none;
    }

        .register-form input::placeholder {
            color: rgba(255, 255, 255, 0.85);
        }

.btn-wrap {
    text-align: center;
}

.enquire-btn1 {
    background: #fff;
    color: #000;
    padding: 14px 40px;
    border: none;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s ease;
}

    .enquire-btn1:hover {
        background: #f6ca0e;
        color: #000;
    }

.footer-ccc {
    background: #000;
    text-align: center;
    padding: 12px 10px;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #fff;
}

.enquire-btn {
    position: fixed;
    right: 30px;
    bottom: 40px;
    background: linear-gradient(135deg, #0d6efd, #0d6efd);
    color: #ffffff;
    padding: 14px 26px;
    font-weight: 600;
    text-decoration: none;
    z-index: 999;
    animation: enquireBlink 2s infinite;
}

/* Blink / Pulse Effect */
@keyframes enquireBlink {
    0% {
        box-shadow: 0 0 0 0 rgba(48, 80, 196, 0.7);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 20px 10px rgba(48, 80, 196, 0.7);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
        transform: scale(1);
    }
}
/* Modal width */
.enquiry-modal .modal-dialog {
    max-width: 520px;
}

/* Modal card */
.enquiry-box {
    border-radius: 18px;
    padding: 38px 36px 40px;
    border: none;
    position: relative;
    background: #fff;
}

/* Close button */
.enquiry-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f3f3;
    border: none;
    font-size: 20px;
    cursor: pointer;
}
/* Make sure close button is clickable on mobile */
.enquiry-close {
    z-index: 1056; /* higher than modal body */
    pointer-events: auto;
}

/* Prevent modal body from covering close button */
.enquiry-modal .modal-content {
    position: relative;
}

/* iOS specific fix */
.enquiry-modal .modal-body {
    position: relative;
    z-index: 1;
}
/* Heading */
.enquiry-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #222;
}

/* Sub heading */
.enquiry-subheading {
    text-align: center;
    font-size: 15px;
    color: #777;
    margin-bottom: 32px;
}

/* Fields */
.enquiry-field {
    margin-bottom: 22px;
}

    .enquiry-field label {
        display: block;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 8px;
        color: #222;
    }

    .enquiry-field input {
        width: 100%;
        padding: 14px 16px;
        font-size: 14px;
        border-radius: 6px;
        border: 1px solid #dcdcdc;
        outline: none;
    }

/* Submit button */
.enquiry-submit {
    width: 100%;
    margin-top: 10px;
    padding: 16px;
    background: #9fb61c;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

    .enquiry-submit:hover {
        background: #8aa315;
    }

/* Mobile */
@media (max-width: 576px) {
    .enquiry-box {
        padding: 28px 22px 30px;
    }

    .enquiry-heading {
        font-size: 26px;
    }
}

/* ===============================
   MOBILE RESPONSIVE FIX
================================ */
@media (max-width: 767px) {

    .register-section {
        padding: 60px 0 0;
    }

    .register-title {
        font-size: 26px;
        line-height: 1.3;
        padding: 0 15px;
    }

    .register-form {
        flex-direction: column; /* KEY FIX */
        width: 100%;
        gap: 16px;
        padding: 0 15px;
    }

        .register-form input {
            width: 100%;
            padding: 14px 16px;
            font-size: 14px;
        }

    .btn-wrap {
        width: 100%;
    }

    .enquire-btn1 {
        width: 100%;
        padding: 14px;
        font-size: 14px;
    }

    .footer-ccc {
        font-size: 11px;
        line-height: 1.4;
        padding: 10px 12px;
    }

    /* Floating Enquire Button */
    .enquire-btn {
        right: 15px;
        bottom: 20px;
        padding: 12px 18px;
        font-size: 13px;
    }
}
/* Banner image CSS */
.banner {
    height: 100vh !important;
    
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    position: relative !important;
    color: white !important;
    background-attachment: scroll !important;
}

@media (max-width: 767px) {
    .banner {
        height: 50vh !important;
        
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        background-attachment: scroll !important;
    }
}

.footer-links-section {
    background: #ffffff;
}

.footer-title {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 14px;
    color: #000;
    text-decoration: none;
}

    .footer-links a:hover {
        text-decoration: underline;
    }

.view-details-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 61%;
    padding: 12px 28px;
    border-radius: 30px;
    background-color: #58be07;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .view-details-btn:hover {
        background: #0d6efd;
        color: #ffffff;
    }

.project-intro-section {
    padding: 60px 0;
    font-family: "Euclid-Circular-A-Regular, sans-serif" !important;
    background: #ffffff;
}

.project-container {
    max-width: 1600px;
    margin: auto;
    padding: 0 60px;
}

.project-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* LEFT CONTENT */
.project-title {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.2;
}

.project-location {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
}

.project-desc {
    font-size: 18px;
    line-height: 1.6;
    max-width: 620px;
    margin-bottom: 50px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 60px;
    margin-bottom: 25px;
    margin-top: 25px;
}

.amenity-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-size: 15px;
    line-height: 1.4;
}

    .amenity-item img {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
    }

/* BUTTONS */
.project-buttons {
    display: flex;
    gap: 20px;
}

.project-btn {
    background: #64c300;
    color: #fff;
    padding: 8px 26px;
    border-radius: 10px;
    font-size: 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

    .project-btn span {
        /* border: 2px solid #fff; */
        /* border-radius: 24%; */
        width: 22px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 17px;
    }

/* RIGHT IMAGE */
.project-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    object-fit: cover;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1200px) {
    .project-container {
        padding: 0 40px;
    }

    .project-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* MOBILE — IMAGE DISABLED */
@media (max-width: 768px) {
    .project-container {
        padding: 0 20px;
    }

    .project-image {
        display: none; /* IMAGE HIDDEN */
    }

    .project-title {
        font-size: 32px;
    }

    .project-desc {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 45px;
    }

    .project-btn {
        font-size: 13px;
        padding: 12px 14px;
    }
}

@media (max-width: 480px) {
    .project-title {
        font-size: 28px;
    }

    .project-btn {
        width: 50%;
        justify-content: center;
    }
}

.luxury-amenities-section {
    padding: 70px 0;
    background: #fff;
    font-family: "Times New Roman", serif;
}

.luxury-amenities-container {
    max-width: 1600px;
    margin: auto;
    padding: 0 40px;
}

/* DESKTOP GRID */
.luxury-amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
    border: 1px solid #2c2c2c;
    padding: 20px;
}

.amenity-card {
    position: relative;
    border: 1px solid #2c2c2c;
    overflow: hidden;
    height: 320px;
    flex-shrink: 0;
}

    .amenity-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.amenity-title {
    position: absolute;
    bottom: 22px;
    left: 22px;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    text-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

/* TABLET */
@media (max-width: 1200px) {
    .luxury-amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenity-card {
        height: 280px;
    }
}

/* ========================= */
/* MOBILE → SLIDER MODE ONLY */
/* ========================= */
@media (max-width: 768px) {
    .luxury-amenities-container {
        padding: 0 20px;
    }

    .luxury-amenities-grid {
        display: flex; /* SWITCH TO SLIDER */
        gap: 15px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 15px;
        -webkit-overflow-scrolling: touch;
    }

        .luxury-amenities-grid::-webkit-scrollbar {
            display: none;
        }

    .amenity-card {
        min-width: 85%; /* SLIDE WIDTH */
        height: 240px;
        scroll-snap-align: center;
    }

    .amenity-title {
        font-size: 18px;
    }
}
/* ================= PROJECT SPECS ================= */

.project-specs-section {
    padding: 80px 0;
}

.project-specs-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 60px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 53px;
    row-gap: 5px;
}

.spec-item {
    padding-bottom: 20px;
    border-bottom: 1px solid #b3b3b3;
}

.spec-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    letter-spacing: 0.4px;
}

.spec-value {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 300;
    color: #000;
    font-family: 'Euclid-Circular-A-Regular, sans-serif' !important;
}

/* ================= TABLET ================= */

@media (max-width: 1024px) {
    .project-specs-container {
        padding: 0 40px;
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 40px;
        row-gap: 30px;
    }
}

/* ================= MOBILE & FOLD ================= */

@media (max-width: 600px) {
    .project-specs-section {
        padding: 60px 0;
    }

    .project-specs-container {
        padding: 0 20px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        row-gap: 25px;
    }

    .spec-value {
        font-size: 18px;
    }
}

.location-av-section {
    padding: 60px 0 60px;
    font-family: "Times New Roman", serif;
    overflow: hidden;
}

/* Tabs */
.location-tabs {
    display: flex;
    justify-content: center;
    gap: 17px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

    .location-tabs button {
        min-width: 260px;
        padding: 14px 18px;
        font-size: 20px;
        letter-spacing: 1px;
        border: none;
        cursor: pointer;
        background: #e3e1de;
        color: #000;
    }

        .location-tabs button.active {
            background: #0347ac;
            color: #fff;
        }

/* Slider Wrapper */
.slider-wrap {
    display: none;
    align-items: center;
    position: relative;
}

    .slider-wrap.active {
        display: flex;
    }

/* Arrows */
.arrow {
    font-size: 42px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 15px;
}

/* Slider */
.location-slider {
    display: flex;
    gap: 23px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 5px 0;
    -webkit-overflow-scrolling: touch;
}

    .location-slider::-webkit-scrollbar {
        display: none;
    }

/* Cards */
.location-card {
    min-width: 23%;
    border: 1px solid #bcbcbc;
    padding: 20px 18px;
    text-align: center;
    position: relative;
    background: #fff;
}

    .location-card::before {
        content: "";
        position: absolute;
        top: -25px;
        left: 50%;
        transform: translateX(-50%);
        width: 90px;
        height: 90px;
        background: #f1f1f1;
        z-index: -1;
    }

    .location-card img {
        width: 55px;
        margin-bottom: 18px;
    }

    .location-card p {
        font-size: 15px;
        line-height: 1.6;
        margin: 0;
    }

.map-placeholder {
    width: 100%;
    text-align: center;
    font-size: 22px;
    padding: 40px 0;
}

/* ===================== */
/* TABLET */
/* ===================== */
@media (max-width: 1024px) {
    .arrow {
        font-size: 36px;
    }
}

/* ===================== */
/* MOBILE */
/* ===================== */
@media (max-width: 768px) {
    .location-tabs button {
        min-width: auto;
        font-size: 18px;
        padding: 12px 16px;
    }

    .slider-wrap {
        align-items: flex-start;
    }

    .arrow {
        display: none; /* hide arrows on mobile */
    }

    .location-slider {
        padding-left: 20px;
        padding-right: 20px;
    }

    .location-card {
        min-width: 85%;
    }
}

.luxury-slider-section {
    padding: 80px 0;
    font-family: "Times New Roman", serif;
    user-select: none;
}

.luxury-container {
    max-width: 1600px;
    margin: auto;
    padding: 0 80px;
}

.luxury-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.luxury-slider {
    display: flex;
    transition: transform 0.7s ease;
    touch-action: pan-y;
}

.luxury-slide {
    min-width: 100%;
    box-sizing: border-box;
}

    .luxury-slide img {
        width: 100%;
        display: block;
        border-radius: 35px;
    }

.slider-bottom {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 35px;
}

.progress-line {
    flex: 1;
    height: 2px;
    background: #d6d6d6;
    position: relative;
}

.progress-fill {
    width: 0;
    height: 100%;
    background: #000;
    transition: width 0.6s ease;
}

.slider-arrows {
    display: flex;
    gap: 35px;
    font-size: 28px;
    cursor: pointer;
}

    .slider-arrows span {
        transition: transform 0.3s ease;
    }

        .slider-arrows span:hover {
            transform: scale(1.15);
        }

/* Tablet */
@media (max-width: 1200px) {
    .luxury-container {
        padding: 0 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .luxury-container {
        padding: 0 20px;
    }

    .slider-arrows {
        display: none; /* arrows hidden on mobile */
    }
}
.camels_box {
    margin-bottom: 30px;
    border: solid 1px #aaa9a9;
}
.camels_img {
    overflow: hidden;
}
@media (max-width: 767px) {
    .camels_img {
        height: auto !important;
    }
}
.listing-wrapper .btn__dlf {
    padding: 15px 20px;
    height: 71px;
}
.camels_box .btn__dlf {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.btn__dlf {
    padding: 10px 20px;
    border-radius: 0;
    margin-top: -1px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.btn__dlf img {
    width: 16px;
    margin: 0;
    margin-left: 12px;
    transform: scale(1.0) !important;
}
.display.active {
    display: block;
}
.camels_box .text_dlf {
    text-transform: uppercase;
    font-size: 13px !important;
    color: #1f1a17;
    background: 0 0;
    padding: 0;
    font-family: Georgia;
}
.camels_box span {
    display: flex;
}
.camels_box span {
    margin: 0;
    font-size: 13px !important;
    padding: 4px 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.listing-wrapper .camellias_show {
    height: 230px;
    overflow: hidden;
    position: relative;
}
.camellias_show {
    padding: 17px 20px;
    border: none;
    border-top: solid 1px #aaa9a9;
}
.display {
    display:none;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, opacity 0.35s ease;
}
.stock_rt .stock-box:nth-child(-n+2) .left::after {
    content: '';
    background: #000;
    height: 1px;
    width: 39px;
    position: absolute;
    bottom: -10px;
    left: 0;
}
.stock_rt.active .stock-box:nth-child(-n+2) .left::after {
    width: 39px;
    opacity: 1;
}

.stock_rt .stock-box:nth-child(-n+2) .left::after {
    width: 0;
    opacity: 0;
    transition: all 0.3s ease;
}
.blog_link {
    color: #51b451;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    font-size:16px;
}
/*** Modal CSS ***/
.theme-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    outline: 0;
    opacity: 0;
    visibility: hidden;
}

    .theme-modal.is-active {
        visibility: visible;
        opacity: 1;
        overflow-x: hidden;
        overflow-y: auto;
        z-index: 99999;
    }

.theme-modal-content {
    border: 0;
    border-radius: 0;
}

.theme-modal-card-head {
    background-color: transparent;
    border: 0;
    padding: 20px 30px;
    height: inherit;
    border-radius: 0;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.theme-modal-card {
    position: relative;
    top: calc(50% + 30px);
    max-width: 600px;
    width: 100%;
    padding: 30px;
    max-height: inherit;
    transition: all 0.3s linear;
    background-color: #06377e;
    /* border-radius: 10px; */
    margin: 0 auto;
}

.modal-title {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: 'Perpetua Titling MT';
}

#home.is-active {
    overflow: hidden;
}

html:before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
}

html.is-active-1:before,
html.is-active:before {
    opacity: 0.9;
    visibility: visible;
}

.theme-modal.is-active .theme-modal-card {
    top: 50%;
}

.theme-modal-card-title {
    margin: 0;
    text-transform: uppercase;
}

.theme-modal-background {
    background-color: #000;
    transition: all 0.3s linear;
    opacity: 0;
    visibility: hidden;
}

.theme-modal[style="visibility: visible;"] .theme-modal-card {
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    opacity: 1;
}

.theme-modal[style="visibility: visible;"] .theme-modal-background {
    opacity: 0.9;
    visibility: visible;
}

.theme-modal-card-body {
    border: 0;
    position: relative;
    overflow: visible;
}

.theme-modal-card-body {
    padding: 30px;
    background-color: transparent;
    border: 1px solid rgb(255 255 255 / 20%);
}

.close1,
.close {
    color: #fff;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: none;
    opacity: 1;
    border: none;
    background-color: #f9f9f9;
    position: absolute;
    top: -22px;
    right: -22px;
    margin: 0 auto;
    z-index: 10;
    cursor: pointer;
    /* border-radius: 8px; */
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    border: 1px solid #ffffff30;
}

    .close1:hover,
    .close:hover {
        color: #102529;
        background-color: #efd6be;
        opacity: 1;
        -moz-transition: all .3s linear;
        -ms-transition: all .3s linear;
        -o-transition: all .3s linear;
        -webkit-transition: all .3s linear;
        transition: all .3s linear;
    }

.theme-modal-card-body:before {
    left: 0;
}

.theme-modal-card-body:after {
    right: 0;
}

.theme-modal-card-title {
    color: #020203;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 5px;
}

.theme-modal-card-body img {
    margin: 0 auto;
    max-width: 350px;
}

.col-theme-modal .section-title {
    margin-bottom: 15px;
}

.theme-modal .section-title h2 {
    font-size: 26px;
    line-height: 30px;
    color: #fff;
}

/*** End Modal CSS ***/
.sticky-bottom-form .col-form .sm-form-control::-webkit-input-placeholder {
    color: rgb(255 255 255 / 0.3);
    font-family: 'Montserrat';
}

.sticky-bottom-form .col-form .sm-form-control:-ms-input-placeholder {
    color: rgb(255 255 255 / 0.3);
    font-family: 'Montserrat';
}

.sticky-bottom-form .col-form .sm-form-control::placeholder {
    color: rgb(255 255 255 / 0.3);
    font-family: 'Montserrat';
}

.theme-modal .col-form .sm-form-control::-webkit-input-placeholder {
    color: rgb(255 255 255 / 0.3);
    font-family: 'Montserrat';
}

.theme-modal .col-form .sm-form-control:-ms-input-placeholder {
    color: rgb(255 255 255 / 0.3);
    font-family: 'Montserrat';
}

.theme-modal .col-form .sm-form-control::placeholder {
    color: rgb(255 255 255 / 0.3);
    font-family: 'Montserrat';
}

.theme-scrollbar {
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 10px;
}

    .theme-scrollbar::-webkit-scrollbar-track {
        -webkit-box-shadow: none;
        background-color: transparent;
    }

    .theme-scrollbar::-webkit-scrollbar {
        width: 6px;
        background-color: transparent;
    }

    .theme-scrollbar::-webkit-scrollbar-thumb {
        background-color: #ddd;
        border-radius: 3px;
    }

ul:last-child {
    margin-bottom: 0;
}

iframe {
    border: none;
}

a,
b,
div,
li,
ul {
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: transparent;
}

    a:active,
    a:focus,
    input,
    input:active,
    input:focus,
    input:hover,
    textarea,
    textarea:active,
    textarea:focus,
    textarea:hover {
        -moz-outline: none;
        outline: 0;
    }
/* active state */
.display.active {
    max-height: 1000px; /* big enough to fit content */
    opacity: 1;
}

.camellias_show .stock-box {
    margin-bottom: 22px;
    display: flex;
    justify-content: space-between;
}
    .camellias_show .stock-box span {
        letter-spacing: 1px;
        padding: 0;
    }
.stock_rt .left {
    position: relative;
}
.stock_rt .right {
    float: right;
}
.stock-box:last-child span a {
    background: 0 0;
    color: #000;
    padding: 9px 19px;
    font-size: 12px;
    letter-spacing: 2px;
    margin-top: 12px;
    border: solid 1px #b9b9b9;
}
a.esg-btn.hvr-sweep-to-right:before {
    background: #fff;
}

.hvr-sweep-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.hvr-sweep-to-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}