p {
    color: #000;
}

ol li {
    color: #000;
}

.slider-dots-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
}

.slider-dots button {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 0;
    background-color: #ffe8d1;
    padding: 0;
    cursor: pointer;
    transform: scale(1);
    transition: transform 0.3s ease;
}

@keyframes dotBtnZoom {
    0% {
        transform: scale(0.4);
        opacity: 0;
    }

    60% {
        transform: scale(1.15);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

.slider-dots li.slick-active button {
    width: 40px;
    height: 40px;
    background-color: #ffe8d1;
    animation: dotBtnZoom 0.45s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

.slider-dots li.slick-active button:hover {
    transform: scale(1);
}

.slider-dots-box .slick-active button:after {
    content: none;
    display: none;
}

.slider-dots-box .slick-active button:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
}

.circle-bg {
    fill: rgba(255, 255, 255, 0);
    stroke: rgba(0, 0, 0, 0.05);
    stroke-width: 2;
    stroke-linecap: butt;
}

.circle-go {
    fill: rgba(255, 255, 255, 0);
    stroke: #fd7204;
    stroke-width: 2;
    stroke-linecap: round;
    animation: progress 22s;
    stroke-dasharray: 360px;
    stroke-dashoffset: 360;
}

.circle-tx {
    fill: #fd7204;
    stroke-width: 1;
    font: bold 16px 'Arial';
    text-anchor: middle;
    transform: scale(0.3);
    transform-origin: center;
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    transition: transform 0.4s cubic-bezier(.34, 1.56, .64, 1),
        opacity 0.25s ease;
    transform-box: fill-box;
}

.slider-dots li.slick-active .circle-tx {
    animation: dotZoom 0.45s cubic-bezier(.34, 1.56, .64, 1) forwards;
    transform: scale(1);
    opacity: 1;
    transition-delay: 0.08s;
}

@keyframes progress {
    from {
        stroke-dashoffset: 360;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes dotZoom {
    0% {
        transform: scale(0.4);
        opacity: 0;
    }

    60% {
        transform: scale(1.15);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

/* Remove default list bullets / ::marker */
.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    min-height: 40px;
}

.slider-dots li:not(.slick-active) button {
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
}

.slider-dots,
.slider-dots li {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.slider-dots li::marker {
    content: none !important;
}

/* ===============BEST SELLING TOUR=============== */
.best-selling-badge {
    color: #075E54;
}

@media screen and (max-width: 600px) {
    /* Mobile styles */
    .mobile-free-quote a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: #ffe8d1;
        color: #000000;
        font-size: 16px;
        font-weight: 600;
        padding: 14px 20px;
        border-radius: 8px;
        margin: 10px 0px;
        text-decoration: none;
    }
}

.mobile-free-quote a i {
    font-size: 18px;
}

.mobile-free-quote a:active {
    transform: scale(0.97);
}

/* Default (collapsed) accordion heading */
#accordionExample .accordion-button {
    background-color: #FFE6CC;
    /* light orange */
    color: #333;
    font-weight: 600;
    box-shadow: none;
}

/* Active (open) accordion heading */
#accordionExample .accordion-button:not(.collapsed) {
    /* background-color: #FF8C00; */
    background-color: #ff8c00d9;
    color: #fff;
    border-radius: 10px 10px 0 0;
}

/* Remove default Bootstrap focus/outline */
#accordionExample .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

/* Change arrow icon color */
#accordionExample .accordion-button::after {
    filter: brightness(0.4);
    margin-right: -10px;
}

/* Active arrow icon (white) */
#accordionExample .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

/* Optional: Day label styling */
#accordionExample .accordion-button span {
    font-weight: 700;
    /* color: #000; */
    background: #e5cfb7;
    padding: 5px;
    margin-right: 6px;
    text-align: center;
    border-radius: 5px;
    margin-left: -8px;
    min-width: 48px;
}

#accordionExample .accordion-button:not(.collapsed) span {
    color: #ffffff;
    background: #e57e00;
    padding: 5px;
    margin-right: 6px;
    text-align: center;
    border-radius: 5px;
    margin-left: -8px;
    min-width: 48px !important;
}

#accordionExample .accordion-item {
    margin-bottom: 12px;
    border: none;
}

#accordionExample .accordion-button {
    border-radius: 10px;
}

#accordionExample .accordion-collapse {
    border-radius: 0 0 10px 10px;
    background: #f4f6f8;
}

/* Tout Package Detail slider */
.slider-store .slick-dots li button:before {
    color: #fff;
    content: '•';
    background: #fff;
    border-radius: 50%;
    font-size: 10px;
    line-height: 12px;
    width: 10px;
    height: 10px;
}

.slider-store.slick-dotted.slick-slider{
    margin: 0 auto 5px;
}

.slider-store .slick-dots{
    position: relative;
    max-width: 250px;
    margin: 0 auto;
}

.slider-store .slick-dots li button:before{
    color: #fff;
    content: '•';
    background: #fff;
    border-radius: 50%;
    font-size: 10px;
    line-height: 12px;
    width: 10px;
    height: 10px;
}

/* progress bar */
.slider-progress {
    width: 100%;
    height: 3px;
    background: #eee;
    margin: 0 auto;
}

.slider-progress .progress {
    width: 0%;
    height: 3px;
    background: #FF8C00;
}