﻿/* Background Color */

.gray-bg {
    background: #f9f8f5;
}

.white-bg {
    background: #fff;
}

.black-bg {
    background: #202026;
}

.dark-bg {
    background: #262626;
}

.theme-bg {
    background: #222;
}

.primary-bg {
    background: #222;
}
/* Color */

.white-color {
    color: #fff;
}

.black-color {
    color: #222;
}

.theme-color {
    color: #222;
}

.primary-color {
    color: #222;
}
/* black overlay */

[data-overlay] {
    position: relative;
}

    [data-overlay]::before {
        background: #000 none repeat scroll 0 0;
        content: "";
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 1;
    }

[data-overlay="3"]::before {
    opacity: 0.3;
}

[data-overlay="4"]::before {
    opacity: 0.4;
}

[data-overlay="5"]::before {
    opacity: 0.5;
}

[data-overlay="6"]::before {
    opacity: 0.6;
}

[data-overlay="7"]::before {
    opacity: 0.7;
}

[data-overlay="8"]::before {
    opacity: 0.8;
}

[data-overlay="9"]::before {
    opacity: 0.9;
}

.slider-section {
    padding: 1rem 1.5rem 0;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.13), 0 1px 2px 0 rgba(0, 0, 0, 0.11);
}

.section-title {
    margin-bottom: 20px;
    position: relative;
}

    .section-title a,
    .section-title h2 {
        display: inline-block;
        position: relative;
        border-radius: 5px;
        line-height: 33px;
        background-color: #edf0f5;
        height: 33px;
        font-weight: bold;
        padding: 0 10px;
        margin: 4px;
    }

    .section-title h2 {
        font-size: 16px;
        color: #767676;
    }

    .section-title a {
        float: left;
        color: #f7858d;
        z-index: 90;
    }

        .section-title a::before {
            content: "";
            position: absolute;
            top: 16px;
            left: -28px;
            width: 28px;
            height: 2px;
            background-color: #edf0f5;
        }

.Category-List-item {
    height: 160px;
    position: relative;
    opacity: 1;
    text-align: center;
}

    .Category-List-item img {
        transform: scale(0.7);
        max-width: 140px;
        margin: auto;
        border-radius: 7px;
    }

    .Category-List-item span {
        white-space: nowrap;
        margin-top: 12px;
        color: #6f6f6f;
    }

    .Category-List-item.is-active {
        opacity: 1;
    }

        .Category-List-item.is-active img {
            transform: scale(1);
        }

        .Category-List-item.is-active span {
            color: #009ec9;
        }

.Category-List.owl-carousel .owl-nav .owl-prev,
.Category-List.owl-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    outline: none;
}

.Category-List.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    right: -20px;
}

.Category-List.owl-carousel .owl-nav .owl-next {
    position: absolute;
    left: -20px;
}

.Category-List.owl-carousel .owl-nav .disabled {
    opacity: 0;
}

/*  Payment Gates*/
.sepPayment {
    display: flex;
    align-items: start;
    justify-content: center;
    width: 100px;
    height: 120px;
    background-color: whitesmoke;
    text-align: right;
    float: left;
    margin-left: 10px;
    border-radius: 6px;
}

.sep {
    display: flex;
    flex-direction: column;
    justify-items: center;
    top: 10px;
}

.sepLogo {
    max-width: 100%;
}

.sepText {
    font-size: 10px;
    color: #008bd2;
    text-align: center;
    line-height: 18px;
    margin-top: 5px;
}

}