@import url("reset.css");
@import url("fonts.css");

:root {
    --main-black: #000;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: var(--main-black);
    width: 100vw;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;

    &.active {
        height: 100vh;
        overflow-y: hidden;
    }
}

.mista .item {
    width: 100%!important;
}

.mista .column {height: auto!important;}

.portfolio-subcats-btn {
    float: left;
    margin-bottom: 10px;
}

.portfolio-subcats-btn a {
    border-radius: 0 25px 25px 25px;
    background: #00754A;
            padding: 15px 25px;
            color: #FFF;
            text-align: center;
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 100%;
            margin-bottom: 10px;
            margin-right: 10px;
            float: left;
}

main {
    padding-top: 100px;
    flex: 1 0 auto;
    margin-bottom: 10px;
}

footer {
    flex: 0 0 auto;
}

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

.wrapper {
    margin: auto;
    max-width: 1260px;
    width: 100%;
}

header {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    background: white;

    .wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        display: flex;
        width: 100px;
        margin-right: 30px;
    }

    .menu ul {
        display: flex;
        justify-content: center;
        align-items: center;

        li {
            margin-right: 20px;
            text-align: center;
            font-size: 14px;
            font-style: normal;
            font-weight: 500;
            line-height: 100%;

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

    .telephone {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        text-transform: uppercase;

        a {
            display: flex;
            align-items: center;

            &:before {
                content: '';
                display: block;
                width: 15px;
                height: 15px;
                margin-right: 5px;
            }

            &.telephone_icon:before {
                background: url("../img/phone.svg") no-repeat;
                background-size: contain;
            }

            &.telegram_icon:before {
                background: url("../img/telegram.svg") no-repeat;
                background-size: contain;
            }

            &.viber_icon:before {
                background: url("../img/viber.svg") no-repeat;
                background-size: contain;
            }

            &.whatsapp_icon:before {
                background: url("../img/whatsapp.svg") no-repeat;
                background-size: contain;
            }
        }
    }

    .have_sub_menu {
        padding: 15px;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        position: relative;

        & a, & span {
            display: flex;
            align-items: center;
            font-size: 20px;
            cursor: pointer;
        }

        & > span:after, & > a:after {
            content: '';
            display: block;
            width: 9px;
            height: 6px;
            background: url(../img/arrow.svg);
            background-size: contain;
            background-repeat: no-repeat;
            position: relative;
            right: -5px;
            transition: .3s;
        }

        .sub_menu {
            padding: 15px;
            background: #fff;
            position: absolute;
            left: 0;
            display: none;
            z-index: 2;
            border-radius: 0 0 25px 25px;
            box-shadow: 0 20px 10px 0 rgba(0, 0, 0, 0.10);
            /*box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);*/

            li {
                margin-bottom: 10px;

                &:last-child {
                    margin-bottom: 0;
                }
            }

            &.active {
                display: flex;
                flex-direction: column;
                width: 100%;

                & > span:after, & > a:after {
                    transform: rotate(180deg);
                }
            }
        }

        &.active {
            border-radius: 0 25px 0 0;
            box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.10);
        }
    }



/***/

.have_sub_menu_2 {
        padding: 15px;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        position: relative;

        & a, & span {
            display: flex;
            align-items: center;
            cursor: pointer;
        }

        & > span:after, & > a:after {
            content: '';
            display: block;
            width: 9px;
            height: 6px;
            background: url(../img/arrow.svg);
            background-size: contain;
            background-repeat: no-repeat;
            position: relative;
            right: -5px;
            transition: .3s;
        }

        .sub_menu_2 {
            padding: 15px;
            background: #fff;
            position: absolute;
            left: 0;
            display: none;
            z-index: 2;
            border-radius: 0 0 25px 25px;
            box-shadow: 0 20px 10px 0 rgba(0, 0, 0, 0.10);
            /*box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);*/

            li {
                margin-bottom: 10px;

                &:last-child {
                    margin-bottom: 0;
                }
            }

            &.active {
                display: flex;
                flex-direction: column;
                width: 100%;

                & > span:after, & > a:after {
                    transform: rotate(180deg);
                }
            }
        }

        &.active {
            border-radius: 0 25px 0 0;
            box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.10);
        }
    }


/***/


    .menu .have_sub_menu {
        position: page;

        .sub_menu.active {
            position: fixed;
            top: 88px;
            border-radius: 0;
            box-shadow: none;
            padding: 10px 0 0;

            ul {
                width: 100%;
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-between;

                li {
                    margin: 0;
                }
            }

            .wrapper {
                border-bottom: 1px solid #ADB3B7;
                padding-bottom: 10px;
            }

            .inside_menu {
                top: 152px;
                padding-top: 20px;

                .wrapper {
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    padding-bottom: 15px;

                    .title {
                        margin-bottom: 20px;
                        font-weight: 700;
                    }
                }
            }
        }

        &.active {
            border-radius: 0;
            box-shadow: none;
        }
    }

    .icons {
        display: flex;

        a {
            height: 15px;
            width: auto;
            margin-right: 15px;
            display: block;

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

.hero_slider {
    position: relative;
    margin-bottom: 40px;

    .slide {
        position: relative;

        img {
            filter: brightness(65%);
            height: 550px;
            width: 100%;
            object-fit: cover;
        }

        p {
            color: #FFF;
            text-align: center;
            font-size: 56px;
            font-style: normal;
            font-weight: 500;
            line-height: 100%;
            width: 70%;
            position: absolute;
            top: 150px;
            left: 50%;
            transform: translateX(-50%);
        }
    }

    .arrows_block {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 1260px;
        width: 100%;
        display: flex;
        justify-content: space-between;

        .slick-prev, .slick-next {
            font-size: 0;
            line-height: 0;

            &:before {
                content: '';
                display: block;
                width: 25px;
                height: 45px;
                background: url("../img/btn-prev.svg");
            }

            &:hover {
                cursor: pointer;
            }
        }

        .slick-next:before {
            background: url("../img/btn-next.svg");
        }
    }

    .dots_block {
        position: absolute;
        bottom: 30px;
        width: 100%;

        ul {
            display: flex;
            justify-content: center;

            li {
                margin-right: 10px;

                button {
                    font-size: 0;

                    &:before {
                        content: '';
                        display: block;
                        width: 7px;
                        height: 7px;
                        background: rgba(203, 195, 187, .5);
                        border-radius: 50%;
                    }
                }

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

                &.slick-active {
                    button:before {
                        background: rgba(203, 195, 187, 1);
                    }
                }
            }
        }
    }
}

.style_italic {
    font-family: 'Times', serif;
    font-style: italic;
}

.big_text {
    text-transform: uppercase;
}

.block_title {
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 40px;
    margin-top: 0;
}

.select_kitchen {
    margin-bottom: 40px;

    .items_block {
        display: flex;
        justify-content: space-between;

        .item {
            max-width: 400px;
            position: relative;

            img {
                filter: brightness(65%);
                width: 400px;
                height: 300px;
            }

            .text_block {
                position: absolute;
                bottom: 20px;
                left: 20px;

                p {
                    color: #CBC3BB;
                    text-align: center;
                    font-size: 16px;
                    font-style: normal;
                    font-weight: 700;
                    line-height: 100%;
                }

                .title {
                    display: inline-block;
                    color: #FFF;
                    font-size: 16px;
                    font-style: normal;
                    text-align: left;
                    font-weight: 700;
                    line-height: 100%;
                    margin-bottom: 10px;
                    padding-bottom: 5px;
                    border-bottom: 1px solid #FFF;
                }
            }
        }
    }
}

.style_kitchen {
    margin-bottom: 40px;

    .items_block {
        display: flex;

        .item {
            width: 50%;
            position: relative;

            img {
                object-fit: cover;
                width: 100%;
                height: 630px;
            }

            .category {
                padding: 15px 35px;
                color: #FFF;
                text-align: center;
                font-size: 16px;
                font-style: normal;
                font-weight: 500;
                line-height: 100%;
                border-radius: 0 25px 25px 25px;
                background: #5B6670;
                position: absolute;
                bottom: 30px;
                left: 30px;
            }

            &:last-child {
                margin-top: 20px;
            }
        }
    }
}

.designer_consultation {
    margin-bottom: 40px;

    .wrapper {
        /*padding-top: 40px;*/
        background: #CBC3BB;
        padding: 40px 0 0 0;
    }

    .two_blocks {
        display: flex;
        justify-content: space-between;
    }

    .left_block, .right_block {
        display: flex;
    }

    .left_block {
        position: relative;
        width: 630px;
        flex-shrink: 0;

        &:before {
            content: '';
            display: block;
            width: 100%;
            height: 200px;
            border-radius: 0 25px 25px 25px;
            background: #5B6670;
            position: absolute;
            bottom: 0;
        }

        img {
            position: relative;
            max-width: 416px;
        }

        .text_block {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: flex-end;
            z-index: 1;
            margin-left: 5px;
            color: #FFF;
            text-align: center;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 100%;
            position: absolute;
            right: 20px;
            bottom: 25px;

            .title {
                color: #FFF;
                text-align: right;
                font-size: 16px;
                font-style: normal;
                font-weight: 700;
                line-height: 100%;
                margin-bottom: 10px;
            }
        }
    }

    .right_block {
        display: flex;
        flex-direction: column;
        padding-left: 20px;
        padding-right: 100px;

        .block_title {
            text-align: left;
            font-size: 20px;
        }

        ul {
            margin-bottom: 40px;

            li {
                font-size: 14px;
                font-style: normal;
                font-weight: 400;
                line-height: 120%;
                margin-bottom: 20px;
                display: flex;
                align-items: center;

                &:before {
                    content: '';
                    display: block;
                    width: 50px;
                    height: 1px;
                    margin-right: 10px;
                    background: #5B6670;
                    flex-shrink: 0;
                }

                &:last-child {
                    margin-bottom: 0;
                }
            }
        }

        .bottom_p {
            font-size: 14px;
            font-style: normal;
            font-weight: 700;
            line-height: 100%;
            margin-bottom: 15px;
        }

        .button {
            display: block;
            border-radius: 0 25px 25px 25px;
            background: #00754A;
            padding: 15px 35px;
            color: #FFF;
            text-align: center;
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 100%;
            max-width: 211px;
            margin-bottom: 27px;
        }
    }
}

.bestsellers {
    position: relative;
    margin-bottom: 40px;

    a {
        display: flex;
        margin: 0 10px;
        position: relative;

        img {
            margin-bottom: 10px;
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .text_block {
            display: flex;
            justify-content: space-between;

            .title {
                font-size: 14px;
                font-style: normal;
                font-weight: 500;
                line-height: 100%;
                margin-bottom: 10px;
            }

            p {
                font-size: 12px;
            }

            .price {
                font-size: 14px;
                font-style: normal;
                font-weight: 400;
                line-height: 100%;
            }

            .right_block {
                display: flex;
                align-items: flex-end;
            }

            .price-old {
                color: #B5B5B5;
                font-style: normal;
                font-weight: 300;
                line-height: normal;
                letter-spacing: 0.24px;
                text-decoration: line-through;
                margin-left: 10px;
            }
        }

        .in_stock {
            padding: 15px 25px;
            border-radius: 0 25px 25px 25px;
            background: #00754A;
            color: #FFF;
            text-align: center;
            font-size: 12px;
            font-style: normal;
            font-weight: 500;
            line-height: 100%;
            position: absolute;
            top: 0;
            left: 0;
        }

        .out_stock {
            padding: 15px 25px;
            border-radius: 0 25px 25px 25px;
            background: #909090;
            color: #FFF;
            text-align: center;
            font-size: 12px;
            font-style: normal;
            font-weight: 500;
            line-height: 100%;
            position: absolute;
            top: 0;
            left: 0;
        }
    }

    .arrows_block {
        position: absolute;
        top: 43%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 1260px;
        width: calc(100% - 50px);
        display: flex;
        justify-content: space-between;

        .slick-prev, .slick-next {
            font-size: 0;
            line-height: 0;

            &:before {
                content: '';
                display: block;
                width: 25px;
                height: 45px;
                background: url("../img/btn-prev.svg");
            }

            &:hover {
                cursor: pointer;
            }
        }

        .slick-next:before {
            background: url("../img/btn-next.svg");
        }
    }
}

.our_advantages {
    background-image: url("../img/big-img.jpg");
    background-size: cover;
    backdrop-filter: blur(2px);
    padding: 40px 0 56px;
    position: relative;

    .overlay {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(91, 102, 112, 0.90);
        z-index: -1;
    }

    .block_title {
        text-align: center;
        margin-bottom: 60px;
        color: #FFF;
    }

    .items {
        display: flex;
        justify-content: center;
        align-items: stretch;
        flex-wrap: wrap;

        .item {
            width: 25%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding-bottom: 50px;

            img {
                margin-bottom: 20px;
            }

            p {
                max-width: 300px;
                color: #FFF;
                text-align: center;
                font-size: 16px;
                font-style: normal;
                font-weight: 400;
                line-height: 120%;
            }
        }
    }
}

.cards {
    display: flex;
    align-items: stretch;
    height: 500px;
    margin-bottom: 40px;

    .card {
        display: block;
        width: 25%;
        position: relative;

        img {
            width: 100%;
            filter: brightness(80%);
            object-fit: cover;
            height: 500px;
        }

        p {
            color: #FFF;
            text-align: center;
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 100%;
            text-transform: uppercase;
            position: absolute;
            left: 20px;
            bottom: 20px;
        }
    }
}

.iframe_wrapper {
    position: relative;
    padding: 0 0 56.25% 0;
    height: 0;
    overflow: hidden;

    iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

.video_block {
    margin-bottom: 40px;
}

.implemented_projects {
    margin-bottom: 40px;

    .tab_buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 40px;

        .nav-item {
            padding: 15px 35px;
            text-align: center;
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 100%;
            border-radius: 0 25px 25px 25px;
            background: #fff;
            border: 1px solid #000;
            margin-right: 30px;
            cursor: pointer;

            &.active {
                color: #FFF;
                background: #00754A;
            }

            &:last-child {
                margin-bottom: 0;
            }
        }
    }

    .tab_content .items {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        margin-bottom: 30px;

        .item {
            margin: 10px;
            width: calc(25% - 20px);

            img {
                width: 295px;
                height: 295px;
                object-fit: cover;
            }
        }
    }

    .btn_wrap {
        display: flex;
        justify-content: center;
        align-items: center;

        a {
            text-align: center;
            font-size: 16px;
            font-style: normal;
            font-weight: 700;
            line-height: 100%;
            display: inline-block;
            position: relative;
            padding-bottom: 5px;

            &:after {
                content: '';
                display: block;
                width: 100%;
                height: 1px;
                background: var(--main-black);
                position: absolute;
                bottom: 0;
                left: 0;
            }
        }
    }
}

.form_block {
    background: #5B6670;
    padding: 40px 0;
    margin-bottom: 40px;

    .block_title {
        color: #FFF;
    }
}

#request-form {
    max-width: 100%;
    background: transparent;
    padding: 0;

    .form {
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    .sender-input {
        padding: 0;
        margin-bottom: 0;
        max-width: 300px;
        margin-right: 40px;

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

        input {
            border-bottom: 1px solid #fff;
            border-radius: 0;
        }
    }

    .input_name, .input_phone {
        background: transparent;

        input {
            background: transparent;
            padding: 0 0 20px;
            color: #ADB3B7;
            text-align: center;
            font-size: 12px;
            font-style: normal;
            font-weight: 400;
            line-height: 100%;
        }
    }

    .sender_submit {
        margin-bottom: 0;

        button {
            border-radius: 0 25px 25px 25px;
            background: #CBC3BB;
            padding: 15px 35px;
            color: var(--main-black);
            text-align: center;
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 100%;
            margin-bottom: 0;
            transition: .3s;
            width: 300px;

            &:hover {
                background: #CACBBBFF;
            }
        }
    }
}

.news_block {
    position: relative;
    margin-bottom: 30px;

    .top_block {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;

        .block_title {
            margin-bottom: 0;
        }

        a {
            text-align: center;
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 100%;
            text-transform: uppercase;
        }
    }

    .news_slider {
        .slide {
            max-width: 300px;
            margin: 10px;

            img {
                max-width: 300px;
                height: 300px;
                object-fit: cover;
                width: 100%;
            }

            .date {
                border-radius: 0 25px 25px 25px;
                background: #00754A;
                color: #FFF;
                text-align: center;
                font-size: 12px;
                font-style: normal;
                font-weight: 500;
                line-height: 100%;
                margin-bottom: 10px;
                max-width: 137px;
                padding: 15px 25px;
            }

            .date a {
                color: #FFF;
            }

            .title {
                font-size: 14px;
                font-style: normal;
                font-weight: 500;
                line-height: 100%;
                margin-bottom: 10px;
            }

            .title a {
                font-size: 14px;
                font-style: normal;
                font-weight: 500;
                line-height: 100%;
                margin-bottom: 10px;
            }

            .a_wrap {
                display: flex;
                justify-content: flex-end;

                a {
                    text-align: right;
                    font-size: 12px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 100%;
                }
            }
        }
    }

    .arrows_block {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 1260px;
        width: calc(100% - 50px);
        display: flex;
        justify-content: space-between;

        .slick-prev, .slick-next {
            font-size: 0;
            line-height: 0;

            &:before {
                content: '';
                display: block;
                width: 25px;
                height: 45px;
                background: url("../img/btn-prev.svg");
            }

            &:hover {
                cursor: pointer;
            }
        }

        .slick-next:before {
            background: url("../img/btn-next.svg");
        }
    }
}

.bottom_block {
    display: flex;

    .item {
        width: 50%;
        position: relative;
        height: 500px;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(60%);
        }

        p {
            position: absolute;
            bottom: 20px;
            left: 20px;
            color: #FFF;
            text-align: center;
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 120%;
            letter-spacing: 0.24px;
            text-transform: uppercase;
            text-align: left;

            svg {
                margin-left: 10px;
                margin-bottom: -2px;
            }
        }
    }
}

footer {
    background: #5B6670;
    padding: 40px 0 20px;

    .menus {
        display: flex;
        margin-bottom: 20px;

        .menu {
            width: 25%;
            margin-right: 20px;

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

            .title {
                color: #ADB3B7;
                font-size: 14px;
                font-style: normal;
                font-weight: 500;
                line-height: 100%;
                text-transform: uppercase;
                padding-bottom: 10px;
                border-bottom: 1px solid #ADB3B7;
                margin-bottom: 10px;
            }

            li {
                color: #FFF;
                font-size: 12px;
                font-style: normal;
                font-weight: 500;
                line-height: 100%;
                padding: 10px 0;
            }
        }
    }

    .logos {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        border-bottom: 1px solid #ADB3B7;
        margin-bottom: 20px;
        padding: 20px 0;

        .logo {
            max-width: 200px;
            display: block;
        }

        .links {
            a {
                color: #ADB3B7;
                font-size: 12px;
                font-style: normal;
                font-weight: 400;
                line-height: normal;
                margin-right: 20px;

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

        .socials {
            display: flex;

            a {
                display: block;
                height: 20px;
                width: auto;
                margin-right: 25px;

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

    .copyrights {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;

        p {
            color: #ADB3B7;
            font-size: 12px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            text-transform: uppercase;
        }

        .development {
            text-transform: none;

            a {
                font-weight: 800;
            }
        }
    }
}

.desc_off {
    display: none;
}

.wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.burger_btn {
    display: none;
}

.designer_consultation .two_blocks {
    flex-direction: row;
    align-items: center;

    .left_block {
        width: 50%;
    }
}

.account-register, .account-login, .account-edit, .account-password, .account-address, .account-wishlist, .account-order, .account-download, .account-reward, .account-return, .account-transaction, .account-recurring, .account-account {
    #content {
        padding: 0;
    }

    h1, legend {
        color: #000;
        text-align: left;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
        letter-spacing: 0.24px;
        margin-bottom: 30px;
    }

    legend {
        font-size: 18px;
        border-bottom: none;
    }

    label {
        display: none;
    }

    fieldset {
        margin-bottom: 30px;
    }

    fieldset:nth-child(4) {
        margin-bottom: 0;
    }

    input, select {
        border: none !important;
        border-bottom: 1px solid #000 !important;
        background: transparent !important;
        box-shadow: none !important;

        &::placeholder {
            color: #B5B5B5;
            text-align: left;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-style: normal;
            font-weight: 400;
            line-height: 100%;
            letter-spacing: 0.24px;
        }
    }

    input[type="checkbox"] {
        width: 18px;
        height: 18px;
        cursor: pointer;
        border: 1px solid #000 !important;
        position: relative;
        bottom: -7px;
    }

    input[type="checkbox"]:checked {
        border: 1px solid #000;
        background: transparent;
        position: relative;

        &:after {
            content: '';
            display: block;
            width: 9px;
            height: 9px;
            background: #000;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
    }

    .buttons {
        margin: 0;
        display: flex;

        .btn.btn-primary {
            padding: 10px 30px;
            border-radius: 20px;
            background: #00754A !important;
            color: #FFF;
            text-align: center;
            font-size: 12px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            letter-spacing: 0.24px;
            text-transform: uppercase;
            font-family: 'Inter', sans-serif;
        }
    }

    .btn.btn-primary, .btn.btn-default {
        padding: 10px 30px;
        border-radius: 20px;
        background: #00754A !important;
        color: #FFF;
        text-align: center;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 0.24px;
        text-transform: uppercase;
        font-family: 'Inter', sans-serif;
    }
}

.account-newsletter {
    h1 {
        color: #000;
        text-align: left;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
        letter-spacing: 0.24px;
        margin-bottom: 30px;
    }

    input[type="radio"] {
        width: 16px;
        height: 16px;
        position: relative;
    }

    input[type="radio"]:checked {
        background: #fff;
    }

    input[type="radio"]:checked:after {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #000;
        border-radius: 50%;
    }

    .btn.btn-primary, .btn.btn-default {
        padding: 10px 30px;
        border-radius: 20px;
        background: #00754A !important;
        color: #FFF;
        text-align: center;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 0.24px;
        text-transform: uppercase;
        font-family: 'Inter', sans-serif;
    }
}

.account-logout {
    h1 {
        color: #000;
        text-align: center;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
        letter-spacing: 0.24px;
        margin-bottom: 30px;
    }

    .buttons {
        text-align: center;

        .btn.btn-primary, .btn.btn-default {
            padding: 10px 30px;
            border-radius: 20px;
            background: #00754A !important;
            color: #FFF;
            text-align: center;
            font-size: 12px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            letter-spacing: 0.24px;
            text-transform: uppercase;
            font-family: 'Inter', sans-serif;
        }
    }

    .icon-success.text-center {
        margin: 10px auto;
    }

    .breadcrumb {
        text-align: left;
    }
}

@media (max-width: 2060px) {
    .wrapper {
        padding: 0 10px;
    }

    .hero_slider .arrows_block {
        width: calc(100% - 20px);
    }
}

@media (max-width: 1100px) {

    header .menu a {
        font-size: 20px;
    }

    header {

        .logo {
            margin-right: 0;
        }

        .menu {
            width: 90%;

            ul {
                flex-direction: column;
                align-items: flex-start;

                li {
                    margin-bottom: 25px;
                    padding: 0;
                    width: 100%;
                    text-align: left;
                }
            }

            .have_sub_menu {
                .sub_menu.active {
                    position: relative;
                    top: 0;
                    background: transparent;

                    .wrapper {
                        padding: 0;
                        border-bottom: none;

                        ul {
                            flex-direction: column;
                            align-items: flex-start;

                            li {
                                margin-bottom: 20px;
                                text-align: left;
                                font-size: 14px;
                                font-style: normal;
                                font-weight: 500;
                                line-height: 100%;
                                text-transform: none;
                            }
                        }
                    }

                    .inside_menu {
                        top: 0;
                    }
                }

                &.active {
                    margin: 0;

                    & > a {
                        padding-bottom: 5px;
                        border-bottom: 1px solid #000;
                        display: flex;
                        justify-content: space-between;
                        margin-bottom: 25px;

                        &:after {
                            right: 0;
                        }
                    }
                }
            }
        }
    }

    main {
        padding-top: 0;
    }

    .wrap {
        position: absolute;
        top: 0;
        left: 0;
        height: 100vh;
        padding: 20px;
        background: #F0EDE8;
        flex-direction: column;
        align-items: self-start;
        overflow-y: scroll;
        display: none;

        .lang_switcher {
            order: 1;
        }

        .menu {
            order: 2;
        }

        .icons {
            order: 3;
            width: 100%;
            display: flex;
            justify-content: space-between;
        }

        &.active {
            display: flex;
            width: 90%;
            right: 0;
            left: auto;
        }
    }

    .desc_off {
        display: flex;
    }

    html header .mob_off {
        display: none;
    }

    .telephone.have_sub_menu.desc_off {
        color: white;
    }

    header {
        .have_sub_menu.lang_switcher.active {
            background: white;
        }

        .have_sub_menu.active {
            .sub_menu {
                &.active {
                    top: 33px;
                }
            }
        }

        .menu {
            .have_sub_menu.active {
                .sub_menu {
                    &.active {
                        top: 0;
                        margin-bottom: 25px;
                    }
                }
            }
        }
    }

    header .have_sub_menu.telephone.desc_off {
        & > span:after, & > a:after {
            background: url("../img/arrow-white.svg");
        }

        &.active {
            & > span:after, & > a:after {
                background: url("../img/arrow.svg");
            }

            background: white;
            color: var(--main-black);
        }
    }

    header .telephone.desc_off {
        a.telephone_icon:before {
            background: url("../img/phone-white.svg");
        }

        &.active {
            a.telephone_icon:before {
                background: url("../img/phone.svg");
            }
        }
    }

    .designer_consultation .two_blocks {
        flex-direction: column;
        padding-bottom: 30px;

        .left_block {
            width: 100%;
            margin-bottom: 30px;
        }
    }

    header {
        & .menu .have_sub_menu {
            & .sub_menu.active {
                & .inside_menu {
                    padding-left: 30px;
                }

                .wrapper {
                    padding-bottom: 0;

                    ul {
                        li:last-child {
                            margin-bottom: 0;
                        }
                    }
                }
            }
        }
    }

    .implemented_projects {
        .tab_content .items .item {
            width: calc(33% - 20px);
        }
    }

    .close_btn {
        width: 20px;
        height: 20px;
        background: url("../img/burger-close.svg");
        background-size: cover;
        background-repeat: no-repeat;
        position: absolute;
        right: 20px;
    }

    .burger_btn {
        display: block;
        width: 30px;
        height: 18px;
        background: url("../img/burger-open.svg");
        background-repeat: no-repeat;
        background-size: cover;
    }
}

@media (max-width: 768px) {
    .hero_slider {
        .slide p {
            font-size: 40px;
            top: 150px;
        }

        .arrows_block {
            width: calc(100% - 20px);
        }
    }

    .select_kitchen {
        .items_block {
            flex-direction: column;
            align-items: center;

            .item {
                max-width: 100%;

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

    .style_kitchen {
        margin-bottom: 60px;

        .items_block {
            flex-direction: column;
            align-items: center;

            .item {
                width: 100%;

                .category {
                    top: 30px;
                    bottom: auto;
                }

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

    .designer_consultation {
        .left_block {
            justify-content: center;

            &:before {
                height: 275px;
            }

            img {
                max-width: 100%;
            }

            .text_block {
                right: 0;
                bottom: auto;
                top: 0;
            }
        }

        .right_block {
            padding-right: 0;
            align-items: center;

            .block_title {
                text-align: center;
            }

            .bottom_p {
                text-align: center;
            }
        }
    }

    .bestsellers .arrows_block {
        .slick-prev:before, & .slick-next:before {
            width: 11px;
            height: 20px;
            background-size: contain;
        }
    }

    .our_advantages .items .item {
        width: 50%;
    }

    .cards {
        height: 100%;
        flex-direction: column;

        .card {
            width: 100%;
            margin-bottom: -4px;
        }
    }

    .implemented_projects {
        .tab_buttons {
            flex-wrap: wrap;
            justify-content: flex-start;

            .nav-item {
                font-size: 14px;
                margin-bottom: 10px;
                margin-right: 20px;
            }
        }

        .tab_content .items {
            justify-content: center;
        }
    }

    #request-form {
        .form {
            flex-direction: column;
            align-items: center;
        }

        .sender-input {
            margin-right: 0;
            margin-bottom: 20px;
            position: relative;
        }
    }

    .news_block {
        .arrows_block {
            .slick-next:before, .slick-prev:before {
                width: 11px;
                height: 20px;
                background-size: contain;
                background-repeat: no-repeat;
            }
        }

        .news_slider {
            .slide {
                max-width: 100%;

                img {
                    max-width: 100%;
                    height: auto;
                    object-fit: cover;
                }
            }
        }
    }

    footer {
        .menus {
            flex-wrap: wrap;
            margin-bottom: 0;

            .menu {
                width: 44%;
                margin-bottom: 30px;
            }
        }

        .logos {
            flex-direction: column;
            align-items: center;

            .logo, .links {
                margin-bottom: 20px;
            }
        }

        .copyrights {
            flex-direction: column;
            align-items: center;

            p {
                margin-bottom: 20px;
            }

            .development {
                margin-bottom: 0;
            }
        }
    }

    .implemented_projects {
        .tab_content .items .item {
            width: 100%;
            text-align: center;

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



.breadcrumb {
    li {
        text-shadow: none;
        padding: 0 7px;

        &:first-child {
            padding-left: 0;
        }

        &:last-child:after {
            display: none;
        }

        &:after {
            content: '';
            display: block;
            width: 2px;
            height: 2px;
            background: #000;
            border-radius: 50%;
            position: absolute;
            right: -2px;
            top: 55%;
            transform: translateY(-50%);

        }
    }

    a {
        color: #000;
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
        letter-spacing: .24px;
    }
}

@media (max-width: 500px) {
    .our_advantages .items .item {
        width: 100%;
    }

    .designer_consultation .left_block:before {
        height: 227px;
    }

    .implemented_projects {
        .tab_buttons {
            justify-content: space-between;
        }
    }
}

.top_line {
    padding: 4px;
    background: #5B6670;

    .wrapper {
        position: relative;
        justify-content: center;

        p {
            color: #FFF;
            text-align: center;
            font-size: 12px;
            font-style: normal;
            font-weight: 500;
            line-height: 100%;
        }

        .close_button {
            width: 10px;
            height: 10px;
            background: url("../img/close-white.svg");
            background-size: cover;
            position: absolute;
            right: 0;
            cursor: pointer;
        }
    }
}

.category_wrapper > .row {
    padding-top: 20px;

    h1 {
        color: #000;
        font-family: Inter;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%; 
        letter-spacing: 0.24px;
        text-transform: uppercase;
    }

    .form-group.input-group.input-group-sm {
        margin-bottom: 20px;
        margin-top: 20px;
        display: flex;
        align-items: center;

        .input-group-addon {
            padding: 0;
            margin: 0 10px 0 0;
            color: #000;
            font-size: 10px;
            font-style: normal;
            font-weight: 500;
            line-height: 100%;
            letter-spacing: 0.24px;
            width: auto;
            background: transparent;
            border: none;
            height: auto;
        }

        select {
            padding: 10px 20px;
            border-radius: 30px;
            border: 1px solid #000;
            height: auto;
            background: transparent;
            position: relative;
            background: url(../img/arrow.svg) no-repeat right;
            background-position-x: calc(100% - 20px);
            max-width: 200px;
            text-align: center;

            option {
                color: #000;
                font-size: 10px;
                font-style: normal;
                font-weight: 500;
                line-height: 100%;
                letter-spacing: .24px;
            }
        }
    }
}

.items_wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    .product-layout {
        max-width: 300px;
        box-sizing: border-box;
        padding: 0;
        margin-bottom: 40px;
    }

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

        img {
            height: 300px;
            object-fit: cover;
        }

        .in_stock {
            font-family: 'Inter', sans-serif;
            display: block;
            border-radius: 0 25px 25px 25px;
            background: #00754A;
            padding: 15px 35px;
            color: #FFF;
            text-align: center;
            font-size: 12px;
            font-style: normal;
            font-weight: 500;
            line-height: 100%;
            letter-spacing: 0.24px;
            position: absolute;
            top: 0;
            left: 0;
        }

        .out_stock {
            font-family: 'Inter', sans-serif;
            display: block;
            border-radius: 0 25px 25px 25px;
            background: #909090;
            padding: 15px 35px;
            color: #FFF;
            text-align: center;
            font-size: 12px;
            font-style: normal;
            font-weight: 500;
            line-height: 100%;
            letter-spacing: 0.24px;
            position: absolute;
            top: 0;
            left: 0;
        }
    }

    .caption {
        padding: 0;

        .prodName {
            margin: 0 0 10px 0;
            text-align: left;

            a {
                font-family: 'Inter', sans-serif;
                color: #000;
                font-size: 14px;
                font-style: normal;
                font-weight: 500;
                line-height: 100%;
                letter-spacing: 0.24px;
            }
        }
    }

    .product-thumb .price_block {
        display: flex;
        justify-content: space-between;
        font-family: 'Inter', sans-serif;
        color: #000;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        letter-spacing: 0.24px;

        .technics {
            font-size: 12px;
            margin-bottom: 0;
        }

        .price {
            margin-bottom: 0;
            font-size: 14px;
        }
    }
}

.panel.ocfilter {
    background: transparent;
    border: none;

    .panel-heading {
        border-radius: 30px;
        background: #5B6670;
        text-align: center;
        color: #FFF;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
        letter-spacing: 0.24px;
        margin-bottom: 30px;
    }

    .list-group-item {
        border: none;
        padding: 0;
        margin-bottom: 30px;
        float: left;
        width: 100%;

        .ocf-option-name {
            color: #000;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-style: normal;
            font-weight: 700;
            line-height: 100%;
            letter-spacing: 0.24px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        label {
            display: flex;
            align-items: center;
            padding: 0;
            margin-bottom: 10px;
            color: #000;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-style: normal;
            font-weight: 500;
            line-height: 100%;
            letter-spacing: 0.24px;
            position: relative;

            input {
                margin-right: 10px;
                border-radius: 50%;
                border: 1px solid #ADB3B7;
                position: relative;

                &:checked {
                    background-color: transparent;
                }
            }

            small {
                margin-right: 0;
                margin-left: auto;
                border-radius: 0 5px 5px 5px;
                background: #5B6670;
                padding: 5px;
                color: #FFF;
                text-align: center;
                font-size: 8px;
                font-style: normal;
                font-weight: 500;
                line-height: 100%;
                letter-spacing: 0.24px;
            }

            &:last-child {
                margin-bottom: 0;
            }

            &.ocf-selected {
                input:after {
                    content: '';
                    width: 8px;
                    height: 8px;
                    display: block;
                    background: #000;
                    border-radius: 50%;
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                }
            }
        }

        &.selected-options {
            margin-bottom: 30px;

            .ocfilter-option {
                background: transparent;
                margin-bottom: 10px;

                button {
                    background: transparent;
                    color: #000;
                    font-family: 'Inter', sans-serif;
                    font-size: 12px;
                    font-style: normal;
                    font-weight: 500;
                    line-height: 100%;
                    letter-spacing: 0.24px;

                    &:hover {
                        box-shadow: none;
                    }
                }
            }

            button {
                padding: 10px;
                border-radius: 30px !important;
                border: none;
                background: #CBC3BB;
                color: #000;
                text-align: center;
                font-family: 'Inter', sans-serif;
                font-size: 12px;
                font-style: normal;
                font-weight: 500;
                line-height: 100%;
                letter-spacing: 0.24px;
            }
        }

        .noUi-horizontal {
            height: 1px;
            box-shadow: none;
            border: none;
        }

        .noUi-connect {
            background: #5B6670;
        }

        .noUi-horizontal .noUi-handle {
            width: 9px;
            height: 9px;
            left: -4px;
            top: -4px;
            border-radius: 50%;
            background: #5B6670;
            border: none;
            box-shadow: none;

            &:before, &:after {
                display: none;
            }
        }
    }
}

.category_wrapper {
    .pagination-result {
        color: #000;
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
        letter-spacing: 0.24px;
        margin: 0;
    }

    .col-sm-6.text-left {
        padding: 0;

        .pagination {
            padding: 0;
            margin: 0;
        }
    }

    .pagination > li > a, .pagination > li > span {
        padding: 0;
        margin-left: 7px;
        line-height: 100%;
        color: #000;
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
        letter-spacing: 0.24px;
        text-transform: uppercase;
        text-decoration: none;
        background-color: transparent;
        border: none;
        border-radius: 0;
    }
}

.row {
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 1280px) {
    .wrapper {
        padding: 0 10px;
    }
}

.filter-mobile {
    display: none;
}

.article_wrapper h1.article_h1 {
    color: #000;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: .24px;
    margin-bottom: 30px;
    margin-top: 20px;
}

.article_wrapper {
    #homeGallery {
        margin: 0;
    }

    #aText {
        max-width: 900px;
        margin: 0 auto;
        padding: 0;

        p {
            color: #000;
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 160%;
            letter-spacing: 0.24px;
            margin-bottom: 30px;
        }

        h2, h3 {
            color: #000;
            text-align: center;
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-style: normal;
            font-weight: 700;
            line-height: 100%;
            letter-spacing: 0.24px;
            text-transform: uppercase;
            margin: 0 auto 40px;
        }
    }

    .col-lg-12 {
        padding: 0;
    }

    #articleMainSlide {
        margin-bottom: 30px;
    }
}

[class*="product-product-"] {
    #content {
        padding: 0;

        & > .row {
            display: flex;
            justify-content: space-between;

            .col-sm-6 {
                max-width: 610px;
                padding: 0;
            }

            &:before, &:after {
                display: none;
            }
        }
    }

    .product_top_line {
        margin-bottom: 20px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;

        .pH1 {
            color: #000;
            font-family: 'Inter', sans-serif;
            font-size: 24px;
            font-style: normal;
            font-weight: 700;
            line-height: 100%;
            letter-spacing: 0.24px;
            text-transform: uppercase;
            margin-bottom: 0;
        }

        .in_stock {
            display: block;
            padding: 10px 35px;
            border-radius: 0px 25px 25px 25px;
            background: #00754A;
            color: #FFF;
            text-align: center;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-style: normal;
            font-weight: 500;
            line-height: 100%;
            letter-spacing: 0.24px;
        }

        .out_stock {
            display: block;
            padding: 10px 35px;
            border-radius: 0px 25px 25px 25px;
            background: #909090;
            color: #FFF;
            text-align: center;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-style: normal;
            font-weight: 500;
            line-height: 100%;
            letter-spacing: 0.24px;
        }
    }

    .product_middle_line {
        margin-bottom: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;

        .tags {
            span {
                padding: 5px 15px;
                border-radius: 30px;
                background: #CBC3BB;
                color: #000;
                text-align: center;
                font-family: 'Inter', sans-serif;
                font-size: 10px;
                font-style: normal;
                font-weight: 500;
                line-height: 100%; /* 10px */
                letter-spacing: 0.24px;
            }

            a {
                color: #000;
                font-family: 'Inter', sans-serif;
                font-size: 10px;
                font-style: normal;
                font-weight: 400;
                line-height: normal;
                letter-spacing: 0.24px;
                text-transform: capitalize;
            }
        }

        .model {
            color: #B5B5B5;
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            letter-spacing: 0.24px;
        }
    }

    .pPriceBig {
        color: #000;
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.24px;
        margin-bottom: 0;
    }

    .form-group {
        margin-bottom: 0;
    }

    #product {
        margin-bottom: 40px;
    }

    #product #button-cart, .price2btn {
        padding: 10px 30px;
        border-radius: 20px;
        background: #00754A;
        color: #FFF;
        text-align: center;
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 0.24px;
        text-transform: uppercase;
    }

    .price2btn {
        display: block;
        color: #000;
        background: #fff;
        border: 1px solid #5B6670;
        cursor: pointer;
    }

    .list-unstyled {
        display: flex;

        li {
            margin-right: 15px;
        }
    }

    .pSalePrice {
        color: #B5B5B5;
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
        letter-spacing: 0.24px;
        text-decoration-line: strikethrough;
        margin-bottom: 0;
    }

    .pDesc {
        border: none;
    }

    .pDesc .panel, .pDesc .panel-group {
        margin-bottom: 20px;
        border: none;
        box-shadow: none;

        div {
            border: none;
            background: transparent;
        }

        .panel-heading {
            padding: 0;
            color: #000;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            letter-spacing: 0.24px;
            text-transform: capitalize;
            margin-bottom: 10px;
        }

        .panel-default {
            border: none;
        }

        .panel-body {
            padding: 0;
            border: none;
            color: #000;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-style: normal;
            font-weight: 400;
            line-height: 140%;
            letter-spacing: 0.24px;
        }

        .panel-title a {
            position: relative;
        }
    }

    .slider-nav .slick-list {
        padding-top: 20px !important;

        .slick-track {
            display: flex;
        }
    }

    .product_desc_table {
        display: flex;
        flex-direction: column;

        .product_desc_item {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            margin-bottom: 20px;


            svg {
                margin-right: 10px;
            }

            span {
                color: #000;
                font-family: 'Inter', sans-serif;
                font-size: 12px;
                font-style: normal;
                font-weight: 500;
                line-height: normal;
                letter-spacing: 0.24px;
            }
        }

        .for_designers_block {
            display: flex;
            justify-content: space-between;
            align-items: center;

            div {
                display: flex;
                align-items: center;

                span {
                    color: #000;
                    font-family: 'Inter', sans-serif;
                    font-size: 12px;
                    font-style: normal;
                    font-weight: 500;
                    line-height: normal;
                    letter-spacing: 0.24px;
                    text-transform: uppercase;
                }

                a {
                    color: #000;
                    font-family: 'Inter', sans-serif;
                    font-size: 12px;
                    font-style: normal;
                    font-weight: 500;
                    line-height: normal;
                    letter-spacing: 0.24px;
                    margin-right: 20px;
                    padding-bottom: 4px;
                    position: relative;

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

                    &:after {
                        content: '';
                        display: block;
                        width: 100%;
                        height: 1px;
                        background: #000;
                        position: absolute;
                        bottom: 0;
                        left: 0;
                    }
                }
            }
        }
    }

    .slider-for {
        .slick-slide {
            img {
                width: 600px;
                height: 600px;
                object-fit: cover;
            }
        }
    }

    .slider-nav {
        .slick-slide {
            width: 150px;
            height: 150px;
            /*flex-shrink: 0;*/

            img {
                /*height: 150px;*/
                object-fit: cover;
            }
        }

        .slick-list.draggable {
            height: 115px !important;
        }
    }

    .slider-for .slick-next {
        right: 25px;
    }

    .slider-for .slick-prev {
        left: 15px;
    }
}

.pDesc .panel-group .panel-default .panel-title a {
    &:after {
        content: '-';
        margin-left: 10px;
    }

    &.collapsed:after {
        content: '+';
        margin-left: 10px;
    }
}

.pDesc .panel-default .panel-title a {
    &:after {
        content: '+';
        margin-left: 10px;
    }

    &.collapsed:after {
        content: '-';
        margin-left: 10px;
    }
}

.newsblog-category .blog_wrapper {
    h1 {
        color: #000;
        text-align: left;
        font-family: 'Inter', sans-serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
        letter-spacing: 0.24px;
        margin-bottom: 20px;
    }

    .product-layout {
        padding: 0;
        margin-bottom: 40px;

        .product-thumb {
            display: flex;
        }

        .m0 {margin: 0!important;}

        .image {
            padding: 0;
            margin-right: 15px;
            float: none;
            flex-shrink: 0;

            img {
                width: 100%;
                max-width: 310px;
                height: 310px;
                object-fit: cover;
            }

        }

        .right_block {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-start;

            .date {
                display: inline-block;
                border-radius: 0 25px 25px 25px;
                background: #5B6670;
                color: #FFF;
                text-align: center;
                font-family: 'Inter', sans-serif;
                font-size: 12px;
                font-style: normal;
                font-weight: 500;
                line-height: 100%;
                letter-spacing: 0.24px;
                padding: 15px 35px;
            }

            h4 {
                color: #000;
                text-align: left;
                font-family: 'Inter', sans-serif;
                font-size: 16px;
                font-style: normal;
                font-weight: 500;
                line-height: 100%;
                letter-spacing: 0.24px;
                text-transform: uppercase;
            }

            .text p {
                color: #000;
                font-family: 'Inter', sans-serif;
                font-size: 16px;
                font-style: normal;
                font-weight: 400;
                line-height: 160%;
                letter-spacing: 0.24px;

                &:last-child {
                    margin-bottom: 0;
                }
            }
        }
    }
}

.contacts_wrapper {
    padding-bottom: 40px;

    h1 {
        color: #000;
        text-align: left;
        font-family: 'Inter', sans-serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
        letter-spacing: 0.24px;
        margin-bottom: 50px;
    }

    .mob_tabs {
        display: none;
    }

    .columns {
        display: flex;

        .column {
            height: 800px;

            &.disable {
                display: flex;
            }
        }

        .contacts_column {
            overflow-y: scroll;
            width: 35%;
            padding: 0 20px;
        }

        .iframe_column {
            width: 65%;

            iframe {
                width: 100%;
                height: 100%;
                filter: grayscale(100%);
            }
        }
    }

    .contact {
        padding: 0 0 40px;
        border-bottom: 1px solid #ADB3B7;
        margin-bottom: 40px;

        .title {
            color: #000;
            font-family: 'Inter', sans-serif;
            font-size: 20px;
            font-style: normal;
            font-weight: 700;
            line-height: 140%;
            letter-spacing: 0.24px;
            margin-bottom: 20px;
            margin-top: 0;
        }

        .part {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;

            svg {
                margin-right: 20px;
            }

            p, a, span {
                display: block;
                color: #000;
                font-family: 'Inter', sans-serif;
                font-size: 14px;
                font-style: normal;
                font-weight: 400;
                line-height: 120%;
                letter-spacing: 0.24px;
            }

            .numbers, .work_hours, .address {
                display: flex;
                flex-direction: column;
                text-align: left;

                a, span {
                    margin-bottom: 10px;

                    &:last-child {
                        margin-bottom: 0;
                    }
                }
            }

            &:last-child {
                margin-bottom: 0;
            }
        }

        &:last-child {
            margin-bottom: 0;
        }
    }
}

.cart_wrapper {
    .h1_title {
        padding: 0;
        margin-bottom: 40px;
        color: #000;
        font-family: 'Inter', sans-serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
        letter-spacing: 0.24px;
    }

    .columns {
        display: flex;
        margin-bottom: 40px;

        .column {
            width: 50%;
        }
    }

    .cartWhiteBlock {
        padding: 0;
    }

    .products_column {
        padding-right: 30px;
        border-right: 1px solid #B5B5B5;
    }

    .buttons_column {
        padding-left: 30px;
    }

    .cartProduct {
        padding: 30px 0;
        border-bottom: 1px solid #B5B5B5;

        .dflex {
            width: 100%;
            justify-content: space-between;
        }

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

        &:last-child {
            border-bottom: none;
        }

        .dellProduct {
            margin-right: 0;
            cursor: pointer;
        }

        .cartProductImg {
            margin-right: 0;
            max-width: 250px;

            a {
                display: block;
                width: 100%;
                height: 100%;
            }

            img {
                max-width: 250px;
                width: 250px;
                height: 250px;
                object-fit: cover;
            }
        }

        .cartProductName {
            .title {
                display: block;
                color: #000;
                font-family: 'Inter', sans-serif;
                font-size: 14px;
                font-style: normal;
                font-weight: 700;
                line-height: 100%;
                letter-spacing: 0.24px;
                text-transform: uppercase;
                margin-bottom: 20px;
                text-align: left;
            }

            .cart-model {
                color: #B5B5B5;
                font-family: 'Inter', sans-serif;
                font-size: 10px;
                font-style: normal;
                font-weight: 400;
                line-height: normal;
                letter-spacing: 0.24px;
                margin-bottom: 20px;
            }

            .cart-size {
                display: flex;
                flex-direction: column;
                color: #000;
                font-family: 'Inter', sans-serif;
                font-size: 12px;
                font-style: normal;
                font-weight: 400;
                line-height: normal;
                letter-spacing: 0.24px;
                margin-bottom: 20px;

                span {
                    display: block;
                    font-weight: 500;
                    text-transform: capitalize;
                    margin-bottom: 10px;
                }
            }

            .input-group.btn-block {
                .btn {
                    padding: 3px 11px;
                }

                input {
                    width: 89px;
                }
            }
        }

        .cartProductTotal {
            color: #000;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            letter-spacing: 0.24px;
        }
    }

    .buttons_column {
        .cart-total-new-block {
            margin-bottom: 40px;

            .cart-total-new {
                color: #000;
                font-family: 'Inter', sans-serif;
                font-size: 12px;
                font-style: normal;
                font-weight: 500;
                line-height: normal;
                letter-spacing: 0.24px;
                margin: 0 0 15px;

                &:last-child {
                    color: #000;
                    font-family: 'Inter', sans-serif;
                    font-size: 14px;
                    font-style: normal;
                    font-weight: 700;
                    line-height: 100%; /* 14px */
                    letter-spacing: 0.24px;
                    text-transform: uppercase;
                    margin: 0;
                }
            }
        }

        .btns_block {
            margin-bottom: 40px;

            a {
                border-radius: 20px;
                background: #00754A;
                color: #FFF;
                text-align: center;
                font-family: 'Inter', sans-serif;
                font-size: 12px;
                font-style: normal;
                font-weight: 500;
                line-height: normal;
                letter-spacing: 0.24px;
                text-transform: uppercase;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 10px;

                &.check_price {
                    background: white;
                    border: 1px solid #5B6670;
                    color: #000;
                    text-transform: capitalize;
                }
            }
        }

        .gotoshoping {
            margin: 0 auto;
            padding-bottom: 30px;
            border-bottom: 1px solid #B5B5B5;
            margin-bottom: 40px;

            a {
                margin: 0 auto;
                padding: 0;
                color: #000;
                font-family: 'Inter', sans-serif;
                font-size: 12px;
                font-style: normal;
                font-weight: 500;
                line-height: normal;
                letter-spacing: 0.24px;
                text-align: center;
                position: relative;
                display: inline-block;

                &:after {
                    content: '';
                    display: block;
                    width: 100%;
                    height: 1px;
                    background: #000;
                    left: 0;
                    bottom: 0;
                }
            }
        }

        .cart-links {
            display: flex;
            justify-content: space-between;

            a {
                margin: 0;
                padding: 0;
                color: #000;
                font-family: 'Inter', sans-serif;
                font-size: 12px;
                font-style: normal;
                font-weight: 500;
                line-height: normal;
                letter-spacing: 0.24px;
                text-align: center;
                position: relative;
                display: inline-block;

                &:after {
                    content: '';
                    display: block;
                    width: 100%;
                    height: 1px;
                    background: #000;
                    left: 0;
                    bottom: 0;
                }
            }
        }
    }
}

#customchekout {
    counter-reset: section;

    .columns {
        display: flex;

        .column {
            width: 50%;
        }
    }

    .cartWhiteBlock {
        padding: 0;
    }

    .title {
        padding: 0;
        color: #000;
        font-family: 'Inter', sans-serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
        letter-spacing: 0.24px;
        margin-bottom: 40px;
    }

    .panel-default > .panel-heading, .customCartTitle {
        color: #000;
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        letter-spacing: 0.24px;
        padding: 0;
        margin-bottom: 30px;
        position: relative;

        &:before {
            counter-increment: section;
            content: counter(section);
            display: inline-block;
            padding: 10px;
            border-radius: 0 25px 25px 25px;
            background: #00754A;
            color: #FFF;
            text-align: center;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-style: normal;
            font-weight: 500;
            line-height: 100%;
            letter-spacing: 0.24px;
            margin-right: 15px;
        }
    }

    .panel-body {
        padding: 0;
    }

    .personal_data {
        padding-right: 30px;

        .panel-body {
            display: flex;
            flex-wrap: wrap;

            .form-group {
                width: 47%;
            }
        }
    }

    .cart_data {
        padding-left: 30px;
    }

    #custom-customer, #custom-shipping {
        margin-bottom: 30px;
    }

    #custom-customer {
        label {
            display: none;
        }

        .form-group {
            margin-bottom: 10px;
            margin-right: 30px;

            &:nth-child(odd) {
                margin-right: 0;
            }
        }

        input {
            text-align: center;
            border: none;
            border-bottom: 1px solid #000;
            background: transparent;

            &::placeholder {
                color: #B5B5B5;
                text-align: center;
                font-family: 'Inter', sans-serif;
                font-size: 12px;
                font-style: normal;
                font-weight: 400;
                line-height: 100%;
                letter-spacing: 0.24px;
            }
        }
    }

    #custom-shipping {
        .panel-body {
            display: flex;
            flex-direction: column;

            .radio label {
                display: flex;
                align-items: center;
                padding-left: 26px;
            }
        }

        input[type="text"] {
            text-align: center;
            border: none;
            border-bottom: 1px solid #000;
            background: transparent;

            &::placeholder {
                color: #B5B5B5;
                text-align: center;
                font-family: 'Inter', sans-serif;
                font-size: 12px;
                font-style: normal;
                font-weight: 400;
                line-height: 100%;
                letter-spacing: 0.24px;
            }
        }
    }

    input[type="radio"] {
        width: 16px;
        height: 16px;
        position: relative;
    }

    input[type="radio"]:checked {
        background: #fff;
    }

    input[type="radio"]:checked:after {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #000;
        border-radius: 50%;
    }

    label {
        color: #000;
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
        letter-spacing: 0.24px;
    }

    p {
        margin: 0;
    }

    .radio {
        margin: 0 0 30px;
    }

    #custom-shipping .radio:last-child, #custom-payment .radio:last-child {
        margin-bottom: 0;
    }

    #custom-payment .panel-body {
        display: flex;
        flex-direction: column;
    }

    #custom-shipping-address {
        margin-top: 30px;
    }

    .cart_data {
        .cartProduct {
            padding: 30px 0;
            border-bottom: 1px solid #B5B5B5;

            .dflex {
                width: 100%;
                justify-content: space-between;
            }

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

            &:last-child {
                border-bottom: none;
            }

            .dellProduct {
                margin-right: 0;
                cursor: pointer;
            }

            .cartProductImg {
                margin-right: 0;
                max-width: 250px;

                a {
                    display: block;
                    width: 100%;
                    height: 100%;
                }

                img {
                    max-width: 250px;
                    width: 250px;
                    height: 250px;
                    object-fit: cover;
                }
            }

            .cartProductName {
                .title {
                    display: block;
                    color: #000;
                    font-family: 'Inter', sans-serif;
                    font-size: 14px;
                    font-style: normal;
                    font-weight: 700;
                    line-height: 100%;
                    letter-spacing: 0.24px;
                    text-transform: uppercase;
                    margin-bottom: 20px;
                    text-align: left;
                }

                .cart-model {
                    color: #B5B5B5;
                    font-family: 'Inter', sans-serif;
                    font-size: 10px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: normal;
                    letter-spacing: 0.24px;
                    margin-bottom: 20px;
                }

                .cart-size {
                    display: flex;
                    flex-direction: column;
                    color: #000;
                    font-family: 'Inter', sans-serif;
                    font-size: 12px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: normal;
                    letter-spacing: 0.24px;
                    margin-bottom: 20px;

                    span {
                        display: block;
                        font-weight: 500;
                        text-transform: capitalize;
                        margin-bottom: 10px;
                    }
                }

                .input-group.btn-block {
                    .btn {
                        padding: 3px 11px;
                    }

                    input {
                        width: 89px;
                    }
                }
            }

            .cartProductTotal {
                color: #000;
                font-family: 'Inter', sans-serif;
                font-size: 12px;
                font-style: normal;
                font-weight: 400;
                line-height: normal;
                letter-spacing: 0.24px;
            }
        }
    }

    #custom-total {
        margin-bottom: 30px;

        .cart-total-new {
            color: #000;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            letter-spacing: 0.24px;
            text-transform: capitalize;
            margin: 0 0 15px;

            &:last-child {
                font-size: 14px;
                font-weight: 700;
                text-transform: uppercase;

                div {
                    text-transform: uppercase;
                }
            }
        }
    }

    #custom-comment {
        h2 {
            color: #000;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-style: normal;
            font-weight: 700;
            line-height: normal;
            letter-spacing: 0.24px;
            padding: 0;
            margin-bottom: 10px;
            position: relative;
        }

        label {
            display: none;
        }

        textarea {
            border: 1px solid #000;
            background: transparent;

            &::placeholder {
                color: #B5B5B5;
                font-family: 'Inter', sans-serif;
                font-size: 12px;
                font-style: normal;
                font-weight: 400;
                line-height: 100%;
                letter-spacing: 0.24px;
            }
        }
    }

    #custom-control {
        input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        input[type="checkbox"]:checked {
            border: 1px solid #000;
            background: transparent;
            position: relative;

            &:after {
                content: '';
                display: block;
                width: 9px;
                height: 9px;
                background: #000;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }
        }

        label {
            color: #000;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-style: normal;
            font-weight: 500;
            line-height: 100%;
            letter-spacing: 0.24px;

            a {
                font-weight: 600;
                text-decoration: underline;
            }
        }

        input[type="button"] {
            border-radius: 20px;
            background: #00754A;
            padding: 10px;
            color: #FFF;
            text-align: center;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            letter-spacing: 0.24px;
            text-transform: uppercase;
        }
    }
}

.checkout-cart {
    .btn.btn-primary {
        padding: 10px 30px;
        border-radius: 20px;
        background: #00754A;
        color: #FFF;
        text-align: center;
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 0.24px;
        text-transform: uppercase;
    }
}

.dropdown-menu.dropdown-menu-left {
    padding: 15px;
    background: #fff;
    border-radius: 0 25px 25px 25px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.10);


    li {
        margin-bottom: 10px;

        &:last-child {
            margin-bottom: 0;
        }

        a {
            font-size: 14px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
        }
    }
}

.catalog ul {
    list-style: disc!important;
    all: revert!important;
}

.catalog_title {
    color: #000;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 24px */
    letter-spacing: 0.24px;
    margin-bottom: 20px;
}

.catalog {
    .catalog_wrapper {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;

        .katalogItem {
            width: 24%;
            margin-right: 10px;
            margin-bottom: 10px;
            position: relative;

            p {
                color: #FFF;
                text-align: left;
                font-family: 'Inter', sans-serif;
                font-size: 16px;
                font-style: normal;
                font-weight: 500;
                line-height: 100%;
                letter-spacing: 0.24px;
                text-transform: uppercase;
                display: inline-block;
                position: absolute;
                bottom: 20px;
                left: 20px;
                margin: 0;

                svg {
                    margin-left: 10px;
                    margin-bottom: -2px;
                }

                a {
                    color: #FFF;
                    text-align: left;
                    font-family: 'Inter', sans-serif;
                    font-size: 16px;
                    font-style: normal;
                    font-weight: 500;
                    line-height: 100%;
                    letter-spacing: 0.24px;
                    text-transform: uppercase;
                    display: inline-block;

                    svg {
                        margin-left: 10px;
                        margin-bottom: -2px;
                    }
                }
            }


            img {
                filter: brightness(60%);
            }
        }
    }
}

@media (max-width: 1280px) {
    [class*="product-product-"] {
        & #content {
            & > .row {
                .col-sm-6:nth-child(2) {
                    padding-left: 10px;
                }
            }
        }
    }
}

@media (max-width: 1100px) {
    .cart_wrapper {
        .columns {
            flex-direction: column;

            .column {
                width: 100%;
            }
        }

        .products_column {
            padding-right: 0;
            border-right: none;
            margin-bottom: 30px;
        }
    }

    #customchekout {
        .columns {
            flex-direction: column;

            .column {
                width: 100%;
            }
        }

        .products_column {
            padding-right: 0;
            border-right: none;
            margin-bottom: 30px;
        }
    }

    .catalog {
        .catalog_wrapper {

            .katalogItem {
                width: 32%;
            }
        }
    }
}

@media (max-width: 768px) {
    .category_wrapper {
        .items_wrap {
            .product-layout {
                width: 48%;
                max-width: 100%;
            }

            & .image {
                img {
                    height: 160px;
                    object-fit: cover;
                }
            }
        }

        #content {
            padding: 0;

            & > .row .col-md-4.col-xs-6:nth-child(3) {
                width: 100%;
            }
        }

        .col-sm-6.text-left, .pagination-result {
            text-align: center;
        }
    }

    .filter-mobile {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;

        .filter-btn {
            width: 100%;
            padding: 10px;
            color: #FFF;
            text-align: center;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-style: normal;
            font-weight: 500;
            line-height: 100%;
            letter-spacing: 0.24px;
            border-radius: 30px;
            background: #5B6670;
            display: flex;
            justify-content: center;
            align-items: center;

            svg {
                margin-left: 15px;
            }
        }
    }

    .ocfilter-mobile-handle {
        display: none;
    }

    .ocf-offcanvas-body {
        padding: 10px;
    }

    .newsblog-category .blog_wrapper {
        margin-bottom: 40px;

        & .product-layout {
            .image {
                /*margin-right: 0;
                margin-bottom: 15px;*/
                margin: 0 5px 15px 5px;
            }

            .product-thumb {
                flex-direction: column;
            }

            .text {
                display: none;
            }
        }

        .col-sm-6.text-right {
            color: #000;
            text-align: center;
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            font-style: normal;
            font-weight: 500;
            line-height: 100%;
            letter-spacing: 0.24px;
        }
    }

    [class*="product-product-"] {
        & #content {
            & > .row {
                display: flex;
                flex-direction: column;

                .col-sm-6 {
                    max-width: 100%;
                }
            }
        }

        & .slider-for {
            & .slick-slide {
                img {
                    width: 100%;
                    height: 340px;
                }
            }

            .slick-next, .slick-prev {
                transform: translateY(-50%);
            }
        }

        .slick-list.draggable {
            height: auto !important;

            .slick-track {
                height: auto !important;
            }
        }

        & .slider-nav {
            .slick-slide {
                height: auto;
            }
        }

        & .product_top_line {
            .in_stock {
                white-space: nowrap;
            }
        }

        .product_middle_line {
            flex-direction: column;
            align-items: flex-start;

            .tags {
                margin-bottom: 5px;
            }
        }

        #product {
            display: flex;

            .form-group {
                width: 50%;
            }

            .price2btn {
                width: 50%;
            }
        }
    }

    .contacts_wrapper {

        h1 {
            margin-bottom: 30px;
        }

        .mob_tabs {
            display: flex;
            align-items: center;
            margin-bottom: 30px;

            p {
                width: 50%;
                padding: 10px;
                border-radius: 30px;
                border: 1px solid #5B6670;
                background: #FFF;
                color: #5B6670;
                text-align: center;
                font-family: 'Inter', sans-serif;
                font-size: 14px;
                font-style: normal;
                font-weight: 500;
                line-height: 100%;
                letter-spacing: 0.24px;
                margin-bottom: 0;
                transition: .3s;

                &.active {
                    background: #5B6670;
                    color: #fff;
                }

                &:first-child {
                    margin-right: 5px;
                }
            }
        }

        .columns {
            flex-direction: column;

            .column {
                height: 100%;

                &.disable {
                    display: none;
                }
            }

            .iframe_column {
                width: 100%;
                height: 400px;
            }

            .contacts_column {
                width: 100%;
            }

            .contacts_column {
                padding: 0;
            }

            .contact {
                padding-bottom: 0;
                border-bottom: none;
            }
        }
    }

    .cart_wrapper {
        .cartProduct {
            display: flex;
            justify-content: center;

            .dflex {
                flex-direction: column;
                width: 250px;
            }

            .dellProd {
                margin-left: -27px;
                margin-bottom: -25px;
            }

            .cartProductImg {
                margin-bottom: 20px;
            }

            .input-group.btn-block {
                width: 150px;
                margin-bottom: 20px;
            }

            .cartProductTotal {
                text-align: left;
            }

            &:last-child {
                border-bottom: 1px solid #B5B5B5;
            }
        }

        .cartWhiteBlock {
            margin-bottom: 0;
        }
    }

    .cart_data .cartProduct {
        display: flex;
        justify-content: center;
        margin-left: 35px;

        .dflex {
            flex-direction: column;
            width: 250px;
        }

        .dellProd {
            margin-left: -35px;
            margin-bottom: -25px;
        }

        .cartProductImg {
            margin-bottom: 20px;
        }

        .input-group.btn-block {
            width: 150px;
            margin-bottom: 20px;
        }

        .cartProductTotal {
            text-align: left;
        }

        &:last-child {
            border-bottom: 1px solid #B5B5B5;
        }
    }

    #customchekout {
        .personal_data {
            padding-right: 0;

            .panel-body {
                .form-group {
                    width: 100%;
                }
            }
        }

        #custom-customer {
            .form-group {
                margin-right: 0;
            }
        }

        .cart_data {
            padding-left: 0;
        }

        .cartWhiteBlock {
            margin-bottom: 0;
        }
    }

    .catalog {
        .catalog_wrapper {
            justify-content: center;

            .katalogItem {
                width: 300px;
                margin-right: 0;
            }
        }
    }

    .bottom_block {
        flex-direction: column;

        .item {
            width: 100%;

            p {
                left: 10px;
            }
        }
    }
}
