/*
Theme Name:   Xstore child
Theme URI:    https://xstore.8theme.com
Description:  XStore is a multi-purpose theme that offers the ultimate WordPress and WooCommerce synergy, providing a comprehensive, all-in-one solution.
Author:       8theme
Author URI:   https://www.8theme.com
Template:     xstore
Version:      1.0
Text Domain:  xstore-child
Tags: e-commerce, two-columns, left-sidebar, right-sidebar, custom-background, custom-colors, custom-header, custom-menu, custom-logo, featured-images, full-width-template, threaded-comments, accessibility-ready, rtl-language-support, footer-widgets, sticky-post, theme-options, translation-ready, ecommerce, woocommerce, shop, elementor, business, corporate, blog, news, light, dark
*/


/* Custom CSS here */
.shop-page-new {
    padding: 20px 30px;

    .box-headline {
        padding: 0;
        margin-bottom: 20px;

    }

    .box-headline.headline-logo {

        margin-bottom: 20px;
        display: flex;
        margin-left: 0;
        padding: 30px 0 30px 30px;
        background: #fff;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2);
        border-radius: 6px;

        img {
            margin-right: 30px;
        }

        .inner-content {
            display: grid;
            align-content: center;

            h2 {
                height: 100%;
                font-size: 34px;
                line-height: 41px;
            }
        }
    }

    .introduce-brand {
        display: grid;
        padding-top: 20px;		
		margin-bottom: 20px;
        margin-left: 0;
        background: #fff;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2);
        border-radius: 6px;

        .brand-logo {
            align-content: center;
            height: 100%;

            .logo {
                text-align: center;
            }
        }

        .brand-content {
            align-content: center;
            padding: 40px 20px 40px 20px;
            background: #fff;
            border-radius: 10px;
        }
    }

    .box-collection-filter {
        padding: 0;

        .collection--inner {
            background-color: #e9ffed;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .3);
            border-radius: 4px;
            padding: 10px;
            display: flex;
            flex-direction: row;
            margin-bottom: 20px;

            .collection-filter--title {
                align-content: center;
                margin: auto 0;
                padding: 0 20px 0 10px;
                font-size: 15px;
                line-height: 18px;
                font-weight: 700;
                white-space: nowrap;
            }

            .main-filters {
                width: 50%;
                gap: 10px;
                flex-direction: row;
                display: flex;

                .filter-container {
                    position: relative;
                    width: 100%;
                    cursor: pointer;

                    select {
                        width: 100%;
                        height: 100%;
                        min-height: 58.23px;
                        color: #424242;
                        font-weight: bold;

                        option {
                            font-size: 18px;
                        }
                    }

                    .icon-container {
                        pointer-events: none;
                        position: absolute;
                        top: 0;
                        right: 0;
                        bottom: 0;
                        width: 40px;
                        display: flex;

                        svg {
                            display: none;
                            width: 20px;
                            max-width: 14px;
                            max-height: 14px;
                            pointer-events: none;
                            margin: auto;
                            background: #e8fef7;
                            cursor: pointer;
                        }
                    }

                    &.active {
                        select {
                            border-color: #c2e0cd;
                            background-color: #e8fef7;
                        }

                        .icon-container {
                            z-index: 10;
                            pointer-events: all;
                        }

                        svg:last-child {
                            display: block;
                        }
                    }
                }
            }

            .filter-controls {
                margin-top: 0;
                width: 50%;
                display: flex;

                .search-filter {
                    position: relative;
                    width: 100%;
                    padding: 0 0 0 10px;
                    flex: 1;

                    .input-wrapper {
                        width: 100%;
                        height: 100%;
                        border: 1px solid #cbd2d6;
                        border-radius: 10px;
                        padding: 10px;
                        background-color: #fff;
                        overflow: hidden;

                        input {
                            border: none;
                        }
                    }
                }

                .close-all {
                    display: flex;
                    flex-direction: row;
                    padding: 0 0 0 20px;

                    .text {
                        align-content: center;
                        font-size: 15px;
                        font-weight: 700;
                        margin: auto 10px auto 0;
                    }

                    .toggle {
                        width: 44px;
                        height: 24px;
                        background-color: #cbd2d6;
                        border-radius: 15px;
                        position: relative;
                        align-self: center;
                        cursor: pointer;
                        transition: all .4s ease-in-out;
                    }

                    .toggle:after,
                    .toggle:before {
                        position: absolute;
                        border-radius: 15px;
                        transition: all .4s ease-in-out;
                    }

                    .toggle:before {
                        content: "";
                        height: 20px;
                        width: 20px;
                        display: block;
                        left: 2px;
                        top: 2px;
                        background-color: #fff;
                        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .5);
                    }

                    .toggle:after {
                        content: "";
                        height: 4px;
                        width: 4px;
                        left: 9px;
                        top: 10px;
                        background-color: #3aaa35;
                        opacity: 0;
                    }

                    &.active {
                        .toggle {
                            background-color: #3aaa35;

                            &:before {
                                left: 20px;
                            }

                            &:after {
                                opacity: 1;
                            }
                        }
                    }
                }
            }
        }
    }

    .product-list {
        margin-bottom: 20px;

        #collectionBuild {
            padding: 0px;
        }

        .filter-parent {
            background-color: #fff;
            border-radius: 4px;
            padding: 10px;
            margin-bottom: 10px;
            display: flex;
			box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2);
        	border-radius: 6px;

            span.image {
                background: #fff;
                border-radius: 5px;

                img {
                    display: block;
                    max-width: 40px;
                    border-radius: 4px;
                }
            }

            h3 {
                color: #000;
                margin: auto 0;
                font-size: 18px;
                font-weight: 700;
                margin: auto;
                margin-left: 10px;
            }
        }

        .filter-child {
            border-radius: 4px;
            background-color: #e9ffed;
            padding: 8px;
            margin-bottom: 10px;
            justify-content: space-between;
            display: flex;
            padding: 10px;

            h4 {
                font-size: 15px;
                font-weight: 700;
                line-height: 18px;
                color: #1b1e21;
                margin: auto;
                margin-left: 10px;
                margin-right: 0;
            }

            .subtype-count {
                font-size: 15px;
                font-weight: 500;
                line-height: 18px;
                color: #1b1e21;
                margin: auto;
                margin-left: 20px;
            }
        }

        .close-all {
            display: flex;
            flex-direction: row;
            padding: 0 0 0 20px;

            .text {
                align-content: center;
                font-size: 15px;
                font-weight: 700;
                margin: auto 10px auto 0;
            }

            .toggle {
                width: 44px;
                height: 24px;
                background-color: #cbd2d6;
                border-radius: 15px;
                position: relative;
                align-self: center;
                cursor: pointer;
                transition: all .4s ease-in-out;
            }

            .toggle:after,
            .toggle:before {
                position: absolute;
                border-radius: 15px;
                transition: all .4s ease-in-out;
            }

            .toggle:before {
                content: "";
                height: 20px;
                width: 20px;
                display: block;
                left: 2px;
                top: 2px;
                background-color: #fff;
                box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .5);
            }

            .toggle:after {
                content: "";
                height: 4px;
                width: 4px;
                left: 9px;
                top: 10px;
                background-color: #3aaa35;
                opacity: 0;
            }

            &.active {
                .toggle {
                    background-color: #3aaa35;

                    &:before {
                        left: 20px;
                    }

                    &:after {
                        opacity: 1;
                    }
                }
            }
        }

        ul.loadData {
            grid-template-columns: repeat(6, 1fr);
            grid-template-rows: repeat(1, auto);
            column-gap: 10px;
            row-gap: 10px;
            display: grid;
            padding: 0;

            li.product-card {
                position: relative;
                list-style-type: none;
                box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2);
                border-radius: 6px;
                padding: 10px 10px 40px 10px;

                .img {
                    position: relative;
                    margin-bottom: 10px;

                    img {
                        width: 100%;
                        height: auto;
                    }
					
					.labels {
    position: absolute;
    top: 10px;
    left: -15px;
}

.label-two {
    font-size: 10px;
    line-height: 18px;
    padding: 4px 10px;
    font-weight: 700;
    background-color: #1b1e21;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 12px; /* pill shape */
    border: 2px solid transparent;
}

/* Type variants */
.label-two.hot {
    background-color: #ff0000;
    color: #fff;
}

.label-two.new {
    background-color: #ddfe00;
    color: #000;
}


                    .label--four {
                        position: absolute;
                        bottom: 5px;
                        left: 5px;
                        border: 1px solid #cbd2d6;
                        background-color: #fff;
                        border-radius: 20px;
                        text-align: center;
                        width: 32px;
                        height: 32px;
                        flex-direction: column;
                        display: flex;
                        .top {
                            font-size: 11px;
                            line-height: 0px;
                            font-weight: 700;
                            margin: auto;
                            /* margin-bottom: 10px; */
                            color: #1b1e21;
                        }

                        .bottom{
                            color: #1b1e21;
                            font-size: 9px;
                            /* font-weight: 700; */
                            line-height: 0px;
                            margin: auto;
                            margin-top: 0px;
                        }
                        /* .top {
                            font-size: 10px;
							font-weight: bold;
                            line-height: 10px;
                            margin: auto;
                            margin-bottom: 10px;
                            color: #1b1e21;
                        } */

                        /* .bottom{
                            color: #1b1e21;
                            font-size: 9px;
                            font-weight: 700;
                            line-height: 6px;
                            margin: auto;
                            margin-top:0px;
                        } */
                    }
                }

                .product-info {
                    display: flex;
                    flex-direction: row;
                    align-items: center;

                    .product-info-toggle {
                        .title--card {

                            /* line-height: 18px; */
                            a {
                                font-size: 14px;
                                line-height: 20px;
                                display: block;
                                color: #696d71;
                            }
                        }
                    }
                }

                .addToCart {

                    position: absolute;
                    width: 100%;
                    left: 0;
                    bottom: 3px;
                    transform: translate(0%, -7%);
                    padding-left: 10px;
                    display: flex;
                    flex-direction: row;
                    align-items: center;

                    .divPrice {
                        padding-left: 5px;

                        .price {
                            font-size: 14px;
                            line-height: 20px;
                            color: #606060;
                            font-weight: 700;
                            margin-bottom: 5px;
                        }

                        a.login {

                            font-size: 14px;
                            font-weight: 500;
                            text-decoration: underline;
                            color: #007000;
                        }
                    }

                    .divAddToCart {
                        a.toggle-cart{
                            padding: 6px 5px 2px 6px;
                            float: right;
                            border-radius: 20px;
                            background: #82c781;
                            border-color: #ffffff;

                            &:hover {
                                background: #3aaa35;
                                border-color: #3aaa35;
                            }
                            &.active{
                                transform: rotate(45deg);
                            }
                            &.no-action {
                                pointer-events: none;
                                background: #d0d0d0;
                            }
                        }
                        
                    }
                    .toggle-item{
                        display:flex;
                        a.add_to_cart_button {
                            /* padding: 10px 7px; 
                            width: 100%;
                            border-bottom-right-radius: 4px;
                            border-bottom-left-radius: 4px; */

                            padding: 9px 7px;
                            float: right;
                            border-radius: 20px;
                            background: #82c781;
                            border-color: #ffffff;
                            display:none;
                            &:hover {
                                background: #3aaa35;
                                border-color: #3aaa35;
                            }

                            svg {}

                        }

                        a.add_to_cart_button.no-action {
                            pointer-events: none;
                            background: #d0d0d0;
                        }
                    }
                    a.added {
                        background: #3aaa367a;
                        border-color: #ddd;
                    }
                }
            }
        }
    }

    .box-collection-brands {
        padding: 0;

        .brands-headline {
            padding: 10px;
            margin-bottom: 20px;
            background: #fff;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2);
            border-radius: 6px;

            h4 {
                color: #000;
                margin: 0;
                padding: 0 20px 0 10px;
            }
        }

        ul.brands {
            grid-template-columns: repeat(8, 1fr);
            grid-template-rows: repeat(1, auto);
            column-gap: 10px;
            row-gap: 10px;
            display: grid;
            padding: 0;

            li.brand-card {
                list-style-type: none;
                box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2);
                border-radius: 6px;
                position: relative;
                a {
                    height: 100%;
                    display: grid;
                    align-content: center;
                    padding-bottom: 35px;
                    .image-brand {
                        position: relative;
                        display: block;

                        img {
                            display: block;
                            width: 100%;
                            height: auto;
                            padding: 12px 12px 5px;
                            box-sizing: border-box;
                        }
                    }

                    .title-brand {
                        color: #646b72;
                        font-size: 13px;
                        font-weight: 600;
                        letter-spacing: .46px;
                        line-height: 15px;
                        text-align: center;
                        text-transform: uppercase;
                        display: block;
                        padding: 0 5px;
                        margin-bottom: 15px;
                        position: absolute;
                        bottom: 0;
                        width: 100%;
                    }
                }
            }

            li.brand-card.featured {
                box-shadow: 0 0 4px 0 rgb(227 102 0 / 96%);
            }
        }
    }
}

.related-product-variations {
    .heading-title {
        display: none;

        h3 {}

        .option-vartable {

            display: flex;
            align-items: center;
            justify-content: center;

            .option-vartable-body {
                display: block;

                .option-vartable-row {
                    display: inline-block;

                    .option-vartable-row-item {
                        display: inline-block;
                        padding: 10px;
                        border: 1px solid #ddd;
                        border-radius: 5px;
                        margin: 5px;
                        cursor: pointer;

                        &:hover {
                            background: #91c2b6;
                        }
                    }
                }
            }
        }
    }

    .product-attr-filter {
        display: block;
        margin-bottom: 20px;

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: right;

            li {
                display: inline-block;
                margin-left: 10px;
                border: 1.5px solid #e4e4e4;
                padding: 5px;
                border-radius: 5px;
                font-weight: 500;
                cursor: pointer;
                text-transform: capitalize;
            }

            li:hover {
                background: #047869;
                color: #fff;
            }

            li.active {
                background: #047869;
                color: #fff;
            }
        }
    }

    .product-list {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(1, auto);
        column-gap: 10px;
        row-gap: 10px;
        display: grid;
        padding: 0;

        li.product-card {
            position: relative;
            list-style-type: none;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2);
            border-radius: 6px;
            padding: 10px 10px 40px 10px;

            .img {
                position: relative;
                margin-bottom: 10px;

                img {
                    width: 100%;
                    height: auto;
                }

                .labels {
                    position: absolute;
                    top: 10px;
                    left: -15px;

                    .label-two {
                        font-size: 10px;
                        line-height: 18px;
                        padding: 3px 10px 3px 5px;
                        font-weight: 700;
                        background-color: #1b1e21;
                        color: #fff;
                        text-transform: uppercase;
                        display: inline-block;
                        position: relative;
                        z-index: 1;
                        display: block;
                    }

                    .label-two:before {
                        content: "";
                        height: 51%;
                        position: absolute;
                        right: -3px;
                        top: 0;
                        width: 10px;
                        transform: skewX(25deg);
                        background-color: #c90b91;
                    }

                    .label-two:after {
                        content: "";
                        height: 49%;
                        position: absolute;
                        right: -3px;
                        top: 50%;
                        width: 10px;
                        transform: skewX(-25deg);
                        background-color: #c90b91;
                    }

                    .hot:before,
                    .hot:after {
                        background-color: #ff0000;
                    }

                    .new:before,
                    .new:after {
                        background-color: #ddfe00;
                    }
                }

                .label--four {
                    position: absolute;
                    bottom: 5px;
                    left: 5px;
                    border: 1px solid #cbd2d6;
                    background-color: #fff;
                    border-radius: 20px;
                    text-align: center;
                    width: 32px;
                    height: 32px;
                    flex-direction: column;
                    display: flex;
                    .top {
                        font-size: 11px;
                        line-height: 0px;
                        font-weight: 700;
                        margin: auto;
                        /* margin-bottom: 10px; */
                        color: #1b1e21;
                    }

                    .bottom{
                        color: #1b1e21;
                        font-size: 9px;
                        /* font-weight: 700; */
                        line-height: 0px;
                        margin: auto;
                        margin-top: 0px;
                    }
                    /* .top {
                        font-size: 10px;
                        line-height: 10px;
                        margin: auto;
                        margin-bottom: 10px;
                        color: #1b1e21;
                    } */

                    /* .bottom{
                        color: #1b1e21;
                        font-size: 9px;
                        font-weight: 700;
                        line-height: 6px;
                        margin: auto;
                        margin-top:0px;
                    } */
                }
            }

            .product-info {
                display: flex;
                flex-direction: row;
                align-items: center;

                .product-info-toggle {
                    .title--card {

                        /* line-height: 18px; */
                        a {
                            font-size: 14px;
                            line-height: 20px;
                            display: block;
                            color: #696d71;
                        }
                    }
                }
            }

            .addToCart {

                position: absolute;
                width: 100%;
                left: 0;
                bottom: 3px;
                transform: translate(0%, -7%);
                padding-left: 10px;
                display: flex;
                flex-direction: row;
                align-items: center;

                .divPrice {
                    padding-left: 5px;

                    .price {
                        font-size: 14px;
                        line-height: 20px;
                        color: #606060;
                        font-weight: 700;
                        margin-bottom: 5px;
                    }

                    a.login {

                        font-size: 14px;
                        font-weight: 500;
                        text-decoration: underline;
                        color: #007000;
                    }
                }

                .divAddToCart {
                    a.toggle-cart{
                        padding: 5px 7px 0px 7px;
                        float: right;
                        border-radius: 20px;
                        background: #82c781;
                        border-color: #ffffff;

                        &:hover {
                            background: #3aaa35;
                            border-color: #3aaa35;
                        }
                        &.active{
                            transform: rotate(45deg);
                        }
                        &.no-action {
                            pointer-events: none;
                            background: #d0d0d0;
                            
                        }
                    }
                    a.add_to_cart_button {
                        /* padding: 10px 7px; 
                        width: 100%;
                        border-bottom-right-radius: 4px;
                        border-bottom-left-radius: 4px; */

                        padding: 9px 7px;
                        float: right;
                        border-radius: 20px;
                        background: #82c781;
                        border-color: #ffffff;
                        display:none;
                        &:hover {
                            background: #3aaa35;
                            border-color: #3aaa35;
                        }

                        svg {}
                    }

                    a.add_to_cart_button.no-action {
                        pointer-events: none;
                        background: #d0d0d0;
                    }
                }
                .toggle-item{
                    display:flex;
                    a.add_to_cart_button {
                        /* padding: 10px 7px; 
                        width: 100%;
                        border-bottom-right-radius: 4px;
                        border-bottom-left-radius: 4px; */

                        padding: 9px 7px;
                        float: right;
                        border-radius: 20px;
                        background: #82c781;
                        border-color: #ffffff;
                        display:none;
                        &:hover {
                            background: #3aaa35;
                            border-color: #3aaa35;
                        }

                        svg {}

                    }

                    a.add_to_cart_button.no-action {
                        pointer-events: none;
                    }
                }
                a.added {
                    background: #3aaa367a;
                    border-color: #ddd;
                }
            }
        }
    }
}

.login-to-view-price {
    a {
        font-size: 14px;
        font-weight: 500;
        text-decoration: underline;
        color: #007000;
    }
}

body:not(.logged-in) {
    .woocommerce-variation-add-to-cart {
        display: none !important;
    }

    .etheme-add-to-cart-form form {
        display: none !important;
    }
}
@media screen and (max-width: 1200px) {
    .shop-page-new {
        .product-list {
            ul.loadData {
                grid-template-columns: repeat(4, 1fr);
            }
        }
    }
    .related-product-variations {
        .product-list {
            grid-template-columns: repeat(3, 1fr);
        }
    }
}
@media screen and (max-width: 991px) {
    .shop-page-new {
        .product-list {
            ul.loadData {
                grid-template-columns: repeat(3, 1fr);
            }
        }
    }

    .related-product-variations {
        .product-list {
            grid-template-columns: repeat(3, 1fr);
        }
    }
}

@media screen and (max-width: 768px) {
    .shop-page-new {
        .box-collection-filter {
            .collection--inner {
                flex-direction: column;

                .collection-filter--title {
                    margin-bottom: 10px;
                }

                .main-filters {
                    width: 100%;
                    flex-direction: column;
                }

                .filter-controls {
                    width: 100%;
                    flex-direction: column;
                    margin-top: 10px;

                    .search-filter {
                        padding-left: 0;
                        .input-wrapper{
                            margin: 0px;
                        }
                    }

                    .close-all {
                        margin-top: 10px;
                        padding-left: 0;
                    }
                }
            }
        }

        .box-collection-brands {
            ul.brands {
                grid-template-columns: repeat(6, 1fr);
                li.brand-card{
                    .title-brand{
                        font-size:10px;
                    }
                }
            }
        }

        .product-list {
            ul.loadData {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .introduce-brand {
            .brand-logo {
                height: auto;
            }
        }
    }

    .related-product-variations {
        .product-list {
            grid-template-columns: repeat(3, 1fr);
        }
    }
}

@media screen and (max-width: 576px) {
    .shop-page-new {
        .box-headline.headline-logo {
            padding: 20px;
            /* flex-direction: column; */
            align-items: center;

            img {
                margin-right: 10px;
                width: 70px;
            }

            .inner-content {
                h2 {
                    font-size: 24px;
                    line-height: 30px;
                    margin: 0;
                }
            }
        }

        .box-collection-brands {
            ul.brands {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .product-list {
            ul.loadData {
                grid-template-columns: repeat(2, 1fr);

                li.product-card {
                    /* .img{    
                        display: flow-root;
                        .labels{
                            position:inherit;
                            display:block;
                            float:left;
                            padding-left: 15px;
                        }
                        .label--four{
                            position:inherit;
                            display:block;
                            float:right;
                            bottom: -5px;
                        }
                    } */
                }
            }
        }
    }

    .related-product-variations {
        .product-list {
            grid-template-columns: repeat(2, 1fr);
        }
    }
}

.single-product {
    table.variations {
        display:none;
        ul.st-label-swatch {
            li.type-label.selected {
                background: #047869;
                color: #fff;
            }
        }
    }
    .product-variable-attributes{
        .attribute-group{
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            strong{
                font-size: 17px;
            }
            span{
                padding: 5px 10px;
                border: 1px solid #ddd;
                border-radius: 5px;
                background: #e9efe9;
                align-items: flex-end;
                font-weight: bold;
            }
        }
    }
}


.input-wrapper {
    width: 110px;
    /* height: 30px; */
    display: flex;
    /* border-radius: 50%; */
    margin: 0 15px;
    input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        appearance: none;
        margin: 0;
    }


    input[type="number"] {
        -moz-appearance: textfield;
        padding: 10px;
        text-align: center;
        border-radius: 0 !important;
    }

    & * {
        border: none;
        width: 50px;
        flex: 1;
    }

    button {
        cursor: pointer;
    }

    button:first-child {
        border-radius: 20% 0 0 20%;
        color: red;
    }

    button:last-child {
        border-radius: 0 20% 20% 0;
        color: green;
    }
}
/* .toggle-cart.cart-form{
    display: flex;
    &.active{
        transform: rotate(45deg);
    }
    
} */





.elementor-widget-woocommerce-product-etheme_title{
    width: 100% !important;
    padding-left: 20px;
}


/**
* Single product image
*/
.single-product .woocommerce-product-gallery .label--four {
    position: absolute;
    bottom: 25px;
    left: 25px;
    border: 1px solid #cbd2d6;
    background-color: #fff;
    border-radius: 20px;
    text-align: center;
    width: 32px;
    height: 32px;
    flex-direction: column;
    display: flex;

    .top {
        font-size: 11px;
        line-height: 0px;
        font-weight: 700;
        margin: auto;
        /* margin-bottom: 10px; */
        color: #1b1e21;
    }

    .bottom {
        color: #1b1e21;
        font-size: 9px;
        /* font-weight: 700; */
        line-height: 0px;
        margin: auto;
        margin-top: 0px;
    }
}