@import 'utilies/colors';

/* purgecss start ignore */
p:empty {
    margin-bottom: 0;
}

.required:after {
    content: ' *';
    color: red;
}

.product-attributes {
    ul {
        padding-left: 0;
        list-style: none;
    }
}

.product--detail {
    .product__price {
        &.sale {
            del {
                font-size: 14px;
            }
        }
    }
}

.btn--custom {
    &.btn-disabled {
        opacity: 0.7;
        color: var(--color-text);
        border: 1px solid var(--color-text);
    }
}

.widget--tags {
    .list--tags {
        li {
            &.active {
                a {
                    color: var(--color-1st);
                    border-color: $color-1st;
                }
            }
        }
    }
}

.widget__links {
    li {
        &.active {
            a {
                color: var(--color-1st);
            }
        }
    }
}

.block--review {
    .block__content {
        padding-top: 0;
    }

    .block__header {
        align-items: start;
    }
}

.block--product-reviews {
    > .block__header {
        p {
            i {
                margin-right: 0;
            }

            span {
                margin-left: .5em;
            }
        }
    }
}

.star-yellow {
    color: #edb867;
}

.product {
    margin: 20px 0;

    .product__wrapper {
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);

        .product__content {
            padding: 15px;
        }
    }

    &:hover {
        .product__wrapper {
            -webkit-transform: translateY(-5px);
            -ms-transform: translateY(-5px);
            transform: translateY(-5px);
            background: #fff;
            -webkit-box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
            box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
        }
    }

    .product__thumbnail {
        .product__variants {
            position: absolute;
            bottom: -10px;
            left: 50%;
            -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
            width: 100%;
            text-align: center;

            .custom-checkbox {
                span {
                    width: 20px;
                    height: 20px;
                    border-radius: 0;
                    border: 1px solid #f2f2f2;
                }
            }
        }
    }
}

.single-variation-wrap {
    .error-message, .success-message {
        margin-top: 10px;
    }
}

body {
    .cookie-consent {
        .cookie-consent-body {
            max-width: 1200px;
        }
    }
}

.panel--sidebar {
    .panel__content {
        overflow-y: scroll;

        &.panel__scroll {
            flex: none;
            display: block;
        }
    }
}

.ps-slider__value {
    margin-top: 10px;
    display: inline-block;
}

.product--detail .product__attribute, .widget--shop .widget-content {
    .text-swatch {
        li {
            display: inline-block;
            margin-right: 5px;

            input[type=radio], input[type=checkbox] {
                display: none;

                &:checked ~ span {
                    border: 1px solid $color-1st;

                    &:after {
                        width: 16px;
                        height: 16px;
                        content: "\E83F";
                        font-family: feather !important;
                        position: absolute;
                        overflow: hidden;
                        right: -8px;
                        bottom: -5px;
                        color: #fff;
                        font-size: 8px;
                    }

                    &:before {
                        border: 16px solid transparent;
                        border-bottom: 16px solid var(--color-1st);
                        content: "";
                        position: absolute;
                        right: -16px;
                        bottom: -1px;
                    }
                }
            }

            span {
                padding: 5px 15px;
                border: 1px solid #eee;
                cursor: pointer;
                transition: .2s;
                position: relative;
                overflow: hidden;
                display: inline-block;
            }
        }
    }
}

.widget--shop {
    .widget-content {
        .text-swatch {
            li {
                span {
                    background: #fff;
                }
            }
        }
    }
}

.slider__content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    display: table;

    .slider__content__wrapper {
        display: table-cell;
        vertical-align: middle;

        .slider__content__wrapper__content {
            max-width: 1200px;
            margin: 0 auto;
            padding-right: 15px;
            padding-left: 15px;

            h2 {
                font-size: 50px;
                margin-bottom: 20px;
                font-weight: 600;
                text-transform: capitalize;
                color: #fff;
                max-width: 50%;
            }

            p {
                margin-bottom: 30px;
                color: #fff;
                line-height: 28px;
                max-width: 50%;
                font-size: 16px;
            }
        }
    }
}

.widget-filter-item {
    padding: 20px 0;
    border-top: 1px solid #ccc;
}

.nonlinear-wrapper {
    padding-bottom: 20px;
}

.panel__content {
    .widget--shop {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 1024px) {

    .slider__content {

        .slider__content__wrapper {

            .slider__content__wrapper__content {
                h2 {
                    font-size: 30px;
                    margin-bottom: 10px;
                }

                p {
                    margin-bottom: 10px;
                    line-height: 24px;
                }

                .btn--custom, button.btn--custom {
                    padding: 10px 20px;
                    font-size: 14px;
                }
            }
        }
    }

}

.fb_dialog, .fb-customerchat {
    z-index: 9999 !important;
}

.banner-effect {
    position: relative;
    overflow: hidden;
    display: block;

    &:before {
        position: absolute;
        top: 0;
        left: -100%;
        z-index: 2;
        display: block;
        content: '';
        width: 50%;
        height: 100%;
        background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
        -webkit-transform: skewX(-25deg);
        transform: skewX(-25deg);
    }

    &:hover {
        &:before {
            -webkit-animation: shine 1.1s;
            animation: shine 1.1s;
        }
    }
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

@media screen and (max-width: 768px) {

    .slider__content {

        .slider__content__wrapper {

            .slider__content__wrapper__content {
                display: none;
            }
        }
    }

}

.ps-block--feature {
    display: flex;
    flex-flow: row nowrap;
    max-width: 260px;

    > * {
        width: 100%;
    }

    > .ps-block__left {
        max-width: 55px;

        i {
            color: $color-text;
            font-size: 3.5rem;
        }
    }

    > .ps-block__right {
        p {
            font-size: 1.4rem;
            font-weight: 500;
            text-transform: uppercase;
            line-height: 1.4em;
            color: $color-heading;
        }

        small {
            display: block;
            font-size: 1.4rem;
            color: $color-text;
        }
    }

    @include media("<md") {
        margin: 0 auto 3rem;
    }
    @include media("<sm") {
        max-width: 100%;
    }
}

.ps-block--features {
    padding: 4rem 0;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input {
    -moz-appearance: textfield;
}

.show-admin-bar {
    #alert-container {
        top: 100px;
    }

    .panel--search {
        top: 40px;
    }

    #avatar-modal {
        top: 80px;
    }

    .header {
        &.header--sticky {
            > .navigation {
                top: 40px;
            }
        }
    }
}

.form--contact {
    .form__submit {
        .btn--custom {
            &.button-loading {
                background-color: $color-1st !important;
            }
        }
    }
}

.rating_wrap {
    .rating {
        font-family: 'feather' !important;
        vertical-align: top;
        overflow: hidden;
        position: relative;
        height: 20px;
        width: 80px;
        display: inline-block;

        &::before {
            font-size: 14px;
            content: "\e90b\e90b\e90b\e90b\e90b";
            top: 0;
            position: absolute;
            left: 0;
            float: left;
            color: #d2d2d2;
            letter-spacing: 2px;
        }
    }

    .rating_num {
        font-size: 14px;
        vertical-align: middle;
        display: inline-block;
        color: #696969;
    }

    .product_rate {
        overflow: hidden;
        font-family: "feather" !important;
        top: 0;
        left: 0;
        position: absolute;
        padding-top: 1.5em;
        color: #EDB867;

        &::before {
            font-size: 14px;
            content: "\e90b\e90b\e90b\e90b\e90b";
            top: 0;
            position: absolute;
            left: 0;
            letter-spacing: 2px;
        }
    }
}

.error-inner {
    min-height: calc(100vh - 385px);
}

.show-admin-bar {
    .error-inner {
        min-height: calc(100vh - 425px);
    }
}

.top-header {
    padding: 10px 0;
    transition: all 0.5s ease-in-out;
    background-color: #f6f6f8;
    color: #878787;
    font-size: 12px;

    a {
        color: #878787;
        font-size: 12px;

        &:hover {
            color: $color-1st;
        }
    }
}

.mr-3, .mx-3 {
    margin-right: 1rem !important;
}

.contact-detail {
    li {
        display: inline-block;
        margin-right: 10px;
    }
}

.header_list > li {
    color: #333;
    font-size: 14px;
    vertical-align: middle;
    display: inline-block;
    padding: 2px 15px 2px 0;

    &:last-child {
        padding-right: 0;
    }

    i {
        vertical-align: middle;
    }
}

.slider__content {
    background: rgba(0, 0, 0, 0.2);
}

.customer-page {
    .profile-sidebar {
        .profile-usermenu {
            li.list-group-item {
                a {
                    &.active {
                        color: $color-1st;
                    }
                }
            }
        }
    }
}

.tracking-form {
    padding: 30px;
    background-color: #f7f7f7;
    max-width: 500px;
    margin: 15px auto;
    margin-bottom: 30px;

    .form-control, .btn--custom.btn--outline, button.btn--custom.btn--outline {
        background-color: #fff;
    }

    .btn--custom:hover, .btn--custom:active, button.btn--custom:hover, button.btn--custom:active {
        color: #fff;
        background-color: var(--color-1st);
    }
}

.customer-information-box {
    text-align: right;
    @include media("<sm") {
        text-align: left;
    }
}

#remove-item-modal {
    z-index: 99999999;
}

#alert-container {
    top: 60px;
    right: 5px;
    position: fixed;
    z-index: 9999999;

    .alert {
        max-width: 450px !important;
        min-height: 45px !important;
        font-weight: 400;
        position: relative;
        padding: 15px 40px 15px 60px;
        margin-bottom: 10px;
        box-shadow: 0 4px 10px 0 rgba(3, 3, 3, 0.1);

        &.alert-success {
            color: #299c77;
            background-color: #bff9d0;
        }

        .message-icon {
            position: absolute;
            left: 5%;
            top: 30%;
            font-size: 20px;
            fill: #299c77;
            stroke: #299c77;
        }

        &.alert-dismissible {
            .close {
                position: absolute;
                top: 20px;
                right: 15px;
                font-size: 10px;
                padding: 0;
            }
        }

    }
}

.ps-pagination {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    justify-content: center;
    align-items: center;
    display: flex;

    a {
        cursor: pointer;
    }
}

.ps-checkbox {
    position: relative;
    display: block;

    > input {
        position: absolute;
        visibility: hidden;
        box-sizing: border-box;
    }

    label {
        margin-bottom: 0;
        position: relative;
        padding-left: 30px;
        font-weight: 400;
        cursor: pointer;

        &:before {
            content: "";
            display: block;
            position: absolute;
            z-index: 10;
            transition: all .4s ease;
            left: 0;
            top: 0;
            height: 20px;
            width: 20px;
            border: 1px solid #000;
        }

        &:after {
            content: "";
            display: block;
            position: absolute;
            z-index: 10;
            transition: all .4s ease;
            top: 4px;
            left: 7px;
            width: 6px;
            height: 10px;
            border: 2px solid #fff;
            border-top: none;
            border-left: none;
            opacity: 0;
            transform: rotate(0deg);
        }
    }

    input[type=checkbox]:checked ~ label {
        &:before {
            background-color: #222;
            border-color: #222;
        }

        &:after {
            transform: rotate(45deg);
            opacity: 1;
        }
    }
}

.avatar-view {
    &.mt-card-avatar {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
}

.section--auth {
    a {
        color: var(--color-1st);
    }

    .form-control {
        background-color: #fffefe;
    }
}

.top-header {
    min-height: 45px;
}

.header {
    > .navigation, > .navigation > .container {
        min-height: 80px;
    }
}

#app {
    min-height: 500px;
}

.menu--mobile .sub-menu > li.menu-item-has-children > .sub-menu {
    position: static;
    padding-left: 20px;
}

.product {
    .badge {
        float: left;
        margin-right: 5px;
    }
}

.product--detail {
    .product__attribute {
        label {
            max-width: 75px;
        }
    }
}

.header {
    .logo {
        img {
            max-height: 70px;
        }
    }
}

.footer {
    padding: 45px 0 20px;
}

.table--orders, .table--cart {
    &.table--wishlist {
        tr {
            td {
                padding: .75rem;
            }
        }
    }

    tr {
        td {
            .product__price.sale {
                color: var(--color-heading);

                p {
                    > span {
                        font-weight: 600;
                    }
                }

                del {
                    font-size: 13px;
                    color: var(--color-danger);
                }
            }
        }
    }
}

.product__attribute {
    .attribute-swatch-item {
        &.pe-none {
            cursor: not-allowed !important;

            > div {
                pointer-events: none !important;
            }
        }
    }

    .text-swatch, .color-swatch {
        .attribute-swatch-item {
            &.pe-none {
                span {
                    color: gray;
                    cursor: unset;
                    opacity: 0.7;

                    &:before, &:after {
                        content: "";
                        position: absolute;
                        top: 50%;
                        left: 0;
                        width: 100%;
                        height: 0;
                        border-top: 1px dashed #999;
                    }

                    &:before {
                        -webkit-transform: rotate(45deg);
                        transform: rotate(45deg);
                    }

                    &:after {
                        -webkit-transform: rotate(-45deg);
                        transform: rotate(-45deg);
                    }
                }
            }
        }
    }
}

.button-loading {
    border: 1px solid #c4cdd5;
    cursor: default;
    text-shadow: none;
    color: transparent !important;
    position: relative;
    -webkit-transition: border-color .2s ease-out;
    transition: border-color .2s ease-out;
}

.button-loading, .button-loading:hover, .button-loading:focus, .button-loading:active {
    color: transparent
}

.button-loading:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border-width: 3px;
    border-style: solid;
    margin-top: -9px;
    margin-left: -9px;
    width: 18px;
    height: 18px;
    -webkit-animation: button-loading-spinner .7s linear infinite;
    animation: button-loading-spinner 1s linear infinite;
    border-color: #ffffff;
    border-bottom-color: transparent
}

.button-loading {
    &.btn-fill-out {
        color: transparent !important;
        border: 1px solid var(--color-1st);

        &:before {
            width: 18px;
            background-color: transparent;
            border-color: var(--color-1st);
            border-bottom-color: transparent;
        }

        &:after {
            display: none;
        }
    }
}

@-webkit-keyframes button-loading-spinner {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes button-loading-spinner {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.section--shopping-cart {
    .table-responsive {
        padding: 0 10px;

        .table--cart {
            &.content-loading {
                &:after {
                    right: -10px;
                    left: -10px;
                }
            }
        }
    }
}

.cart__items .product--on-cart, .section--shopping-cart .table--cart {
    &.content-loading {
        position: relative;

        &:before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            border-radius: 50%;
            border-width: 1px;
            border-style: solid;
            margin-top: -9px;
            margin-left: -9px;
            width: 18px;
            height: 18px;
            -webkit-animation: button-loading-spinner 0.7s linear infinite;
            animation: button-loading-spinner 1s linear infinite;
            border-color: $color-1st;
            border-bottom-color: transparent;
        }

        &:after {
            content: "";
            position: absolute;
            top: -10px;
            right: 0;
            left: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.02);
        }
    }
}

.form--review-product {
    .text-danger {
        a {
            color: var(--color-1st);
        }
    }
}

@import '../../../../../platform/plugins/language/resources/assets/sass/language-public';

.language_bar_list {
    li {
        a {
            img {
                margin-top: 2px;
            }
        }
    }
}

.language-wrapper {
    .dropdown-toggle::after {
        display: none;
    }

    .btn-select-language {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        color: var(--color-muted) !important;
        padding: 0;
        font-size: 12px;
        height: auto;
        font-weight: normal;
    }

    .dropdown-menu.language_bar_chooser {
        z-index: 1000;
        display: none;
        min-width: 10rem;
        padding: 0;
        margin: .125rem 0 0;
        font-size: 12px;
        text-align: left;
        list-style: none;
        background-color: #fff;
        background-clip: padding-box;
        line-height: 1;
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
        border: 1px solid #dee2e6 !important;
    }

    .dropdown-menu {
        li {
            img {
                margin: 0 10px;
            }

            a {
                padding: 10px 0;
            }
        }
    }

    .btn {
        img {
            margin-right: 7px;
            margin-top: 2px;
        }
    }

    &.choose-currency {
        .dropdown {
            .dropdown-menu {
                &.language_bar_chooser {
                    width: auto;
                    min-width: 0;

                    li {
                        a {
                            padding: 10px 0;
                            text-align: center;
                        }
                    }
                }
            }
        }
    }
}

.deal {
    background-color: #f5f6f9;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-flow: row wrap;
    min-height: 300px;
    padding: 30px;
}

.deal-co {
    margin: 15px 0;
}

.deal, .deal > div {
    width: 100%;
}

.deal .deal-content {
    align-self: center;
}

.deal .product-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 25px;
    max-width: 240px;
}

.deal .product-title a {
    color: var(--color-1st);
}

.deal .product-price {
    align-items: center;
    color: var(--color-danger);
    display: flex;
    flex-flow: wrap;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.25;
    margin-bottom: 20px;
}

.deal .product-price .new-price {
    font-weight: 400;
    letter-spacing: -.01em;
    margin-right: 10px;
}

.deal .product-price .old-price {
    color: #ccc;
    text-decoration: line-through;
}

.deal .deal-bottom {
    align-self: flex-end;
}

.deal .deal-bottom .deals-countdown {
    margin-bottom: 20px;
    margin-left: -12px;
}

.deals-countdown {
    .countdown-section {
        position: relative;
        font-weight: 400;
        font-size: 12px;
        line-height: 1;
        padding: .9rem 0 .3rem;
        margin-left: .8rem;
        margin-right: .8rem;
        background-color: var(--color-1st);
        border-radius: .3rem;
        border: none;
        margin-bottom: 2rem;

        .countdown-amount {
            display: inline-block;
            color: #fff;
            font-weight: 500;
            font-size: 20px;
            margin-bottom: 15px;
            width: 50px;
            height: 50px;
            line-height: 50px;
            text-align: center;
        }

        .countdown-period {
            position: absolute;
            left: 0;
            right: 0;
            text-align: center;
            bottom: -20px;
            display: block;
            font-weight: 400;
            color: var(--color-heading);
            text-transform: uppercase;
            width: 100%;
            padding-left: 0;
            padding-right: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        &:not(:last-child)::after {
            color: var(--color-heading);
            content: ':';
            display: inline-block;
            font-weight: 400;
            font-size: 20px;
            line-height: 1;
            position: absolute;
            left: 100%;
            margin-left: 7px;
            margin-top: -1px;
            top: 50%;
            transform: translateY(-50%);
            -ms-transform: translateY(-50%);
        }
    }
}

.custom-modal {
    .modal-dialog {
        max-width: 800px !important;
        border-radius: 0;
        overflow: hidden;
        border: 0;
        margin: auto;
        top: 50%;
        -webkit-transform: translateY(-50%) !important;
        transform: translateY(-50%) !important;

        .modal-content {
            border-radius: 0;
            padding: 0;
        }

        .btn-close {
            box-sizing: content-box;
            width: 1em;
            height: 1em;
            padding: .25em .25em;
            color: #000;
            background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
            border: 0;
            border-radius: .25rem;
            opacity: .5;
            position: absolute;
            right: 30px;
            top: 30px;
            z-index: 2;
        }
    }
}

.ps-pagination {
    .pagination {
        .page-item {
            &.active {
                .page-link {
                    background: var(--color-1st);
                    color: #fff;
                }
            }
        }
    }
}

.btn--custom {
    &.btn--outline {
        &.btn-outline-danger {
            border-color: #dc3545;
            color: #dc3545;

            &:hover {
                background-color: #dc3545;;
                border-color: #dc3545;
                color: #fff;
            }
        }
    }
}

.pagination {
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;

    li.page-item {
        margin-bottom: 10px;
    }
}

.dropdown-swatch {
    select.form-control {
        height: 34px;
    }
}

.ps-list--categories {
    .sub-menu {
        li.current-menu-item {
            > a {
                color: var(--color-1st);
            }
        }
    }
}

.faqs-list {
    h4 {
        margin-top: 30px;

        &:first-child {
            margin-top: 0;
        }
    }

    .card {
        margin-bottom: 10px;
        border: 1px solid rgba(0, 0, 0, .125) !important;

        .card-header {
            background: #fff;
            border-radius: 0;
            padding: 1rem;

            h2 {
                button {
                    font-size: 16px;
                    font-weight: 600;
                    color: #333;
                    background: #fff;
                    text-decoration: none !important;
                    position: relative;
                    display: block;
                    width: 100%;
                    padding: 0;
                    border: none;
                    text-transform: none;

                    &::before {
                        display: none;
                    }

                    &::after {
                        color: #ced4da;
                        position: absolute;
                        right: 0;
                        top: -7px;
                        border: 1px solid #ced4da;
                        width: 40px;
                        height: 40px;
                        line-height: 30px;
                        border-radius: 50%;
                        content: "";
                        background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
                        background-repeat: no-repeat;
                        background-size: 1.25rem;
                        background-position: center;
                        transform: scale(.7) !important;
                        transition: transform .2s ease-in-out;
                    }

                    &:not(.collapsed)::after {
                        background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
                    }
                }
            }
        }
    }
}

.ps-custom-scrollbar {
    max-height: 250px;

    .mCS-dark.mCSB_scrollTools {
        .mCSB_dragger .mCSB_dragger_bar {
            background-color: rgb(102, 102, 102);
        }

        .mCSB_draggerRail {
            background: rgb(204, 204, 204, .9);
        }

        .mCSB_dragger .mCSB_dragger_bar, .mCSB_draggerRail {
            width: 6px;
            border-radius: 0 !important;
            opacity: 1 !important;
        }
    }
}

.table__compare {
    .product--detail {
        .product__attribute {
            border: none;
            padding-bottom: 0;

            .text-swatch li input[type=radio]:checked ~ span:after {
                right: -5px;
            }
        }
    }
}

.slider__content {
   display: block;
}

.slider__content .slider__content__wrapper {
   display: flex;
   align-items: center;
   justify-content: center;
   height: 100%;
}

.slider__content .slider__content__wrapper .slider__content__wrapper__content {
  flex: 1;
}

.cat_slider.owl-carousel.owl-drag .owl-item:last-child {
  margin-right: 0 !important;
}

.cat_slider.owl-carousel .owl-stage {
   margin: 0 auto; 
}

.cat_slider.owl-carousel .owl-item img {
    margin-bottom: 5px;
}

.generic-form .g-recaptcha {
   margin-top: 15px; 
}

/* purgecss end ignore */
