.single_product .colors_wrapper {
    opacity: 1;
    transition: all 0.2s ease-in-out;
    padding-bottom: 1rem;
}

.single_product:hover .colors_wrapper {
    opacity: 1;
    transition: all 0.2s ease-in-out;
}

.single_product {
    transition: all 0.2s ease-in-out;
    background-color: white;
}

.single_product:hover {
    transition: all 0.2s ease-in-out;
    background-color: #0023390a;
}

/* HTML: <div class="loader"></div> */
.loader {
    width: 45px;
    height: 45px;
    --c: no-repeat linear-gradient(#E82A32 0 0);
    background:
        var(--c) 0% 50%,
        var(--c) 50% 50%,
        var(--c) 100% 50%;
    background-size: 20% 100%;
    animation: l1 1s infinite linear;
}

@keyframes l1 {
    0% {
        background-size: 20% 100%, 20% 100%, 20% 100%
    }

    33% {
        background-size: 20% 10%, 20% 100%, 20% 100%
    }

    50% {
        background-size: 20% 100%, 20% 10%, 20% 100%
    }

    66% {
        background-size: 20% 100%, 20% 100%, 20% 10%
    }

    100% {
        background-size: 20% 100%, 20% 100%, 20% 100%
    }
}

.cat_box_slider_name {
    hyphens: auto;
    word-break: break-word;
}

.page-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    border-bottom: 0rem solid #fff;
}

.page-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    border-bottom: 0rem solid #fff;
}

.page-number:hover {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 0.2rem solid #e62d38;
}

.page-number.active {
    border-bottom: 0.2rem solid #e62d38;
}

@media (max-width: 900px) {
    .page-number {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 1.3rem;
        border-bottom: 0rem solid #fff;
    }
}

.category_text h3 {
    font-weight: 600;
    font-size: 1.3rem;
    margin-top: 3rem;
}

.category_text h4 {
    font-weight: 600;
    font-size: 1.125rem;
    margin-top: 2rem;
}

.category_text p {
    margin-top: 1rem;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 180%;
}

.category_text ul {
    list-style: disc;
    padding-left: 3rem;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 180%;
}

.category_text ol {
    list-style: decimal;
    padding-left: 3rem;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 180%;
}

.category_faq_h2 {
    font-weight: 800;
    font-size: 1.4rem;
    line-height: 130%;
    color: #002339;
}

.category_faq_question {
    font-weight: 600;
    font-size: 1.3rem;
}

.category_faq_answer {
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 180%;
}

.category_faq_answer ul {
    list-style: disc;
    padding-left: 3rem;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 180%;
}

.category_faq_answer ol {
    list-style: decimal;
    padding-left: 3rem;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 180%;
}

.category_faq_answer a {
    color: #e62d38;
    text-decoration: underline;
}