.site-color {
    color: #4cc2c4;
}

ul > li, ol > li {
    color: #4cc2c4;
}

ul > li > span, ol > li > span {
    color: #545353;
}

.review-box {
    background-color: #F2FCFB;
    min-height: 200px;
}
.slick-slide {
    min-height: 325px;
    /*max-height: 325px;*/
}
.gray-bg {
    background-color: #f5f5f5;
}

.fp-butterfly-logo {
    width: 30%;
}

.position-sticky .sticky-text {
    font-size: 0.6rem;
}

.position-sticky .sticky-text img {
    width: 20%;
}

.btn-wizard-button {
    color: #fff;
    background-color: #39A4A7;
    border-color: #b4d445;
    border-radius: 30px;
}

.title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #33cccc;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.img-works-with-google {
    width: 35%
}

.store-badge {
    width: 100%;
    max-width: 10rem;
}

.modal-lg-custom {
    xmax-width: 35%;
}

@media (max-width: 576px) {
    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }
}

@media only screen and (min-width: 500px) {
    .fp-butterfly-logo {
        width: 60px;
    }

    .btn-wizard-button {
        width: 25% !important;
    }

    .position-sticky .sticky-text {
        font-size: 0.6rem;
    }

    .position-sticky .sticky-text img {
        width: 20%;
    }

    .position-sticky .btn-wizard-button, #po_modal .btn-wizard-button {
        width: inherit !important;
    }
    .sticky-col-4 {
        flex: 0 0 auto;
        width: 22.333333%;
    }
    .slick-slide {
        min-height: 295px;
        /*max-height: 295px;*/
    }
}

@media (min-width: 768px) {
    .ps-md-8 {
        padding-left: 8rem !important;
    }
}
.bold {
    font-weight: bold;
}

.btn-wizard-button {
    border-color: #39A4A7;
}

.btn-wizard-button:hover {
    color: #000;
    background-color: #39A4A7;
    border-color: #39A4A7;
}

.w-80 {
    width: 80%;
}

.country-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-right: 25px;
}

.country-button {
    background-color: #f3f3f3;
    border: 1px solid #ccc;
    padding: 3px 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.country-button .flag {
    width: 25px;
    margin-right: 5px;
    height: 15px;
}

.country-button .dropdown-arrow {
    width: 12px;
    height: 12px;
    margin-left: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(-10px);
    white-space: nowrap;
    text-align: left;
}

.dropdown-content a {
    color: #545353;
    text-decoration: none;
    display: block;
    font-weight: 700;
    padding: 8px 12px;
    transition: background-color 0.3s ease;
    font-size: 0.8rem !important;
    text-transform: none !important;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.country-container:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}