html {
    scroll-behavior: smooth;
}

.navbar-block {
    border-bottom: none;
}

.container.container2.categories-container {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    flex-wrap: wrap;
    margin: 10px 0;
}

.container.container2.categories-container a {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 10px 16px;
    color: black;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid transparent;
}

.container.container2.categories-container a.active {
    border: 2px solid #BB00DC;
    color: #BB00DC;
}

.container.container2.categories-container a span {
    font-family: Gilroy-Medium;
}

.main-page-top-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.main-page-products, .main-page-search-form-block {
    margin-top: 20px;
}

.main-page-products h2 {
    font-family: Gilroy-Bold;
    margin-bottom: 10px;
}

.main-page-top-container * {
    margin: 0;
}

.main-page-top-container .categories {
    min-width: 210px;
    box-shadow: 0px 0px 3px 0px #b6b6b6;
    border-radius: 5px;
}

.main-page-top-container .categories .summary, .main-page-top-container .categories .category {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #ebebeb;
    margin: 0 20px;
    padding: 12px 0;
    color: black;
    text-decoration: none;
}

.main-page-top-container .categories .categories_list {
    height: 356px;
    overflow-y: scroll;
}

.main-page-top-container .categories .categories_list::-webkit-scrollbar {
    display: none;
}

.main-page-top-container .categories .categories_list::-webkit-scrollbar-thumb {
    display: none;
}

.main-page-top-container .categories .categories_list::-webkit-scrollbar-track {
    display: none;
}

.main-page-top-container .categories .categories_list::-webkit-scrollbar-button {
    display: none;
}

.main-page-top-container .categories .summary {
    margin: 0;
    padding-left: 20px;
}

.main-page-top-container .categories .summary h4 {
    font-family: Gilroy-Bold;
}

.main-page-top-container .categories .category {
    font-size: 14px;
}

.main-page-top-container .categories .category .category_name_block {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    min-height: min-content;
}

.main-page-top-container .categories .category img {
    margin-left: auto;
    margin-right: 5px;
}

.main-page-top-container .categories .category:last-child {
    border-bottom: none;
}

.main-page-top-container .slides {
    width: 100%;
    height: 100%;
    /*aspect-ratio: 1031/315;*/
    box-shadow: 0px 0px 3px 0px #c9c9c9;
    border-radius: 30px;
}

.main-page-top-container {

    .slides_container {
        width: auto;
        flex: 1 1 0;
        min-width: 0;
        background: #fff;
        border-radius: 30px;
        box-shadow: 0 0 3px rgba(0, 0, 0, .12);
        padding: 12px 30px 12px 12px;
        overflow: hidden;
        min-height: 315px;
        display: flex;


        .slide_container {
            display: flex;
            gap: 25px;
            flex-direction: row;
            align-items: stretch;
            overflow: hidden;
            min-width: 100%;
            width: 100%;
            min-height: 100%;
            margin-right: 30px;
        }

        .flickity-viewport {
            min-width: 100%;
        }


    }

    .left_slide_container {
        flex: 0 0 38%;
        border-radius: 25px;
        overflow: hidden;
        background: #f3f4f6;
        height: auto;

        img {
            display: block;
            width: 100%;
            height: 100%;
            max-width: 100%;
            object-fit: initial;
        }
    }

    .right_slide_container {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 15px 0 5px 0;
        min-width: 0;
    }

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

        p {
            margin: 0;
            font-size: 16px;
            line-height: 18px;
            color: #838383;
        }

        p:first-child {
            color: #ED694A;
            display: flex;
            gap: 8px;
            align-items: center;
        }
    }

    .slide_info {
        min-height: 0;
        display: flex;
        flex-direction: column;
        gap: 7px;
    }

    .info_title {
        margin: 0;
        font-size: 26px;
        line-height: 30px;
        font-weight: 600;
        color: #212121;
        letter-spacing: -0.02em;
    }

    .info_category {
        margin: 0;
        font-size: 15px;
        line-height: 20px;
        color: #C2C2C2;
    }

    .info-desc {
        margin: 0;
        color: #838383;
        font-size: 16px;
        line-height: 19px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 9;
        overflow: hidden;
    }

    .info_price {
        margin: 5px 0 0;
        font-size: 36px;
        line-height: 44px;
        font-weight: 900;
        color: #212121;
        letter-spacing: -0.02em;
    }


    .slide_actions {
        margin-top: auto;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .slide_actions button {
        border: 0;
        cursor: pointer;
        border-radius: 20px;
        padding: 10px 16px;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
        white-space: nowrap;
    }

    .slide_actions button:hover {
        transform: translateY(-1px);
    }


    .slide_actions button:first-child {
        background: #BB00DC;
        color: #fff;
    }

    .slide_actions button:first-child:hover {

    }


    .slide_actions button:nth-child(2) {
        background: #F1F1F1;
        color: #212121;
    }

    .slide_actions button:nth-child(2):hover {

    }

    .slide_actions button:nth-child(2) img {
        width: 18px;
        height: 18px;
        display: block;
    }

    .slide_actions button:nth-child(3) {
        padding: 10px;
        border-radius: 50%;
        background: #f3f4f6;
        margin-left: auto;
    }

    .slide_actions button:nth-child(3):hover {
        background: #eceef2;
    }

    .slide_actions button:nth-child(3) img {
        width: 18px;
        height: 18px;
        display: block;
    }

}


.main-page-top-container .slides .slides-cell {
    width: 100%;
    aspect-ratio: 1031/315;
    margin: 0 5px;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    border-radius: 13.5px;
}

.flickity-page-dots {
    bottom: 5%;
}

.flickity-page-dots .dot {
    background-color: #b1b1b1;
    opacity: 1;
}

.flickity-page-dots .dot.is-selected {
    background-color: #46D0F6;
}

.products_list {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    width: 100%;
}

.products_list .product_card {
    text-decoration: none;
    color: black;
    position: relative;
    flex: 0 1 calc(100% / 6 - 15px);
    aspect-ratio: 218 / 374;
    border-radius: 16px;

}

.products_page .products_info .products_list .product_card {
    flex: 0 1 calc(100% / 5 - 15px);
    aspect-ratio: 191 / 336;
}

.products_page .products_info .products_list .product_card .absolute_product_card .text .add_to_cart_btn span {
    display: none;
}

.products_list .product_card .absolute_product_card {
    position: absolute;
    width: calc(100% - 16px);
    padding: 8px 8px;
    border-radius: 16px;
    background: white;
    transition: all 0.15s ease;
}

.products_list .product_card .absolute_product_card:hover {
    box-shadow: 0px 0px 15px 0px #e4e4e4;
    scale: 1.02;
    padding: 8px 8px;
    background: white;
}

.products_list .product_card .product_img {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    width: 100%;
    aspect-ratio: 194/257;
    border-radius: 8px;

    box-shadow: 0px 0px 1.8px 0px #e4e4e4;
    position: relative;
}

.products_list .product_card .discount_percentage {
    margin: 0;
    margin-left: auto;
    color: white;
    background-color: #f66161;
    font-size: 10px;
    padding: 1px 6px;
    border-radius: 8px;
    font-family: Gilroy-Bold;
}

.products_list .product_card .text {
    padding-top: 10px;
    font-size: 13px;
}

.products_list .product_card .text .product_info .product_price_with_discount {
    font-family: Gilroy-Bold;
    font-size: 15px;
}

.products_list .product_card .text .product_info .product_price {
    text-decoration: line-through;
    opacity: 0.5;
    font-size: 11px;
}


.product_info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.products_list .product_card .text .product_info .product_prices {
    display: flex;
    align-items: center;
    gap: 8.5px;
}

.products_list .product_card .text .product_info .product_category {
    color: #818181;
    font-size: 10.5px;
}

.products_list .product_card .text .product_name_block {
    margin: 3px 0 2.5px 0;
    color: #949494;
}

.products_list .product_card .text .product_name_block, .products_list .product_card .text .product_info .product_category_block {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    min-height: min-content;
    line-break: anywhere;
}

.products_list .product_card .absolute_product_card:hover {
    z-index: 1;

}

/*.products_list .product_card .absolute_product_card:hover .text .add_to_cart_btn {*/
/*    display: block;*/
/*}*/

.products_list .product_card .absolute_product_card:hover .text .product_name_block {
    -webkit-line-clamp: 2;
    line-break: normal;
}

.products_list .product_card .absolute_product_card:hover .product_img {
    box-shadow: none;

}

.products_list .product_card .absolute_product_card:hover .add_wishlist_btn {
    /*display: block;*/
    /*top: 17px;*/
    /*right: 18px;*/
}

.products_list .product_card .absolute_product_card:hover .add_wishlist_btn.integration_btn {
    /*left: 18px;*/
    /*right: initial;*/
}

.products_list .product_card .absolute_product_card .text .add_to_cart_btn {
    border: none;
    display: flex;
    flex-direction: row;
    gap: 7px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    background-color: #212121;
    color: white;
    padding: 9px 18px;
    font-size: 15px;
    font-family: Gilroy-Medium;

    img {
        width: 18px;
        height: 18px;
    }
}

.see_more_products_btn_block {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.see_more_products_btn_block button {
    margin-right: 0;
    border-radius: 20px;
    border: none;
    color: #F1F1F1;
    background: #212121;
    padding: 10px 16px;
}

.bottom_container {
    margin-top: 7px;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.products_list .product_card .add_wishlist_btn {
    padding: 10px;
    background: #F1F1F1;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;

    img {
        width: 16px;
        height: 16px;
    }
}

.products_list .product_card .text .availability {
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.products_list .product_card .text .availability .product_is_available, .products_list .product_card .text .availability .product_is_not_available {
    background-color: #26c126;
    color: white;

    width: fit-content;
    padding: 3px 10px;
    margin-top: 5px;

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

    font-size: 12px;
    border-radius: 4px;
}

.products_list .product_card .text .availability .product_is_not_available {
    background-color: #f66161;
}

.main-page-usage-instruction {
    display: flex;
    align-items: top;
    gap: 50px;
}

.main-page-usage-instruction .kassym_img {
    background-image: url(/static/v3/imgs/kassym_img.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    min-width: 277px;
    height: 350px;
}

.main-page-usage-instruction .text h1 {
    font-family: Gilroy-Bold;
    font-size: 45px;
    margin-bottom: 10px;
}

.main-page-usage-instruction .text p {
    font-size: 22px;
    width: 80%;
    margin-top: 10px;
}

.main-page-usage-instruction .text p i {
    color: #929292;
}

.main-page-usage-instruction .text button {
    margin-top: 10px;
    font-size: 16px;

    width: 239px;
    height: 40px;

    border: none;
    border-radius: 5px;

    color: white;
    background-color: #007671;
}

.main-page-search-form-block {
    display: none;
}

.main-page-search-form-block .search {
    display: flex;
    overflow: hidden;
    position: relative;
}

.main-page-search-form-block .search input {
    color: black;
    height: 33px;
    width: 100%;
    min-width: 10px;
    padding-left: 35px;
    padding-right: 10px;
    border: 2px solid #D4D4D4;
    border-radius: 20px;
    outline: #D4D4D4;
}

.main-page-search-form-block .search .search_icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    pointer-events: none;
}

.main-page-search-form-block .search input, .main-page-search-form-block .search input::placeholder {
    font-size: 15px;
    letter-spacing: 0px;
}

.main-page-search-form-block .search input::placeholder {
    color: #0000007a;
}

.main-page-search-form-block .search button {
    border: none;
    display: flex;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    background-color: #212121;
    color: white;
    padding: 5px 21px;
    font-size: 15px;
    font-family: Gilroy-Medium;
    margin-left: -50px;
}

.main-page-search-form-block .search button img {
    width: 18px;
}

.main-page-top-container {
    /*aspect-ratio: 1080 / 330;*/
    /*--webkit-aspect-ratio: 1080 / 330;*/
    height: 100%;
    max-height: 420px;
}

.slides_container, .slides_container .flickity-viewport, .slides_container .flickity-slider, .slides_container .slide_container {
    max-height: 100% !important;
}

@media (max-width: 768px) {
    .slides_container, .slides_container .flickity-viewport, .slides_container .flickity-slider, .slides_container .slide_container {
        max-height: initial !important;
    }
}

.main-page-top-container .what_to_sell {
    background-color: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0px 0px 3px 0px #c9c9c9;
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 30%;
    /*aspect-ratio: 312 / 247;*/
    /*--webkit-aspect-ratio: 312 / 247;*/
    cursor: pointer;
}

.main-page-top-container .what_to_sell .inner {
    width: 256px;
    margin-left: 10%;
}

.main-page-top-container .what_to_sell * {
    margin: 0;
}

.main-page-top-container .what_to_sell img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: initial;
}

.main-page-top-container .what_to_sell .title {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-page-top-container .what_to_sell .title b {
    font-size: 19px;
    position: relative;
}

.main-page-top-container .what_to_sell button {
    margin-top: 13px;
    width: 100%;
    border-radius: 8px;
    border: none;
    padding: 12px 0;
    font-size: 12px;
    background-color: #46D0F6;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
}

.main-page-top-container .what_to_sell .input_block {
    margin-top: 10px;
}

.main-page-top-container .what_to_sell .input_block .input_field {
    position: relative;
    display: flex;
    align-items: center;
}

.main-page-top-container .what_to_sell .input_block span {
    font-size: 12px;
    opacity: 0.2;
    display: block;
    margin-left: 3px;
    margin-bottom: 3.5px;
}

.main-page-top-container .what_to_sell .input_block input, .main-page-top-container .what_to_sell .input_block select {
    width: 100%;
    border-radius: 8px;
    border: 0.2px solid #c5c5c5;
    outline: none;
    padding: 12px 9px;
    font-size: 12px;
    font-family: Gilroy-Medium;
    background-color: #F9FAFC;
}

.main-page-top-container .what_to_sell .input_block select {
    appearance: none;
    background: url(https://upload.wikimedia.org/wikipedia/commons/9/9d/Caret_down_font_awesome_whitevariation.svg) no-repeat right 0.8em center / 1.4em,
    linear-gradient(to left, rgb(139 139 139) 3em, #F9FAFC 3em);
}

.sale_of_goods {
    width: 100%;
    scale: 1.0066;
    margin-top: 22px;
}


