@import url(https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css);
@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap);

:root {
    --color-main: #0062a0;
    --color-primary: #0062a0;
    --color-secongary: #3ab54a;
    --green: #3ab54a;
    --grey: #f3f4f5;
    --red: #cd412c;
    --white: #ffffff;
    --black: #333333;
    --dark-grey: #7f7f7f;
    --yellow: #fdd922;
    --roboto: "Roboto", sans-serif;
    --radius: 7px;
    --transition: all 0.3s ease-in-out;
    --shadow: 0px 9px 10px 0px rgba(0, 0, 0, 0.15)
}

.btn {
    background-color: var(--color-primary);
    border-radius: 7px;
    color: #fff;
    transition: all .3s ease-in-out;
    cursor: pointer
}

.btn:hover {
    background-color: var(--color-secongary);
    color: #fff
}

.btn:focus-visible {
    box-shadow: unset
}

.btn:active {
    color: var(--color-primary) !important;
    background-color: unset !important;
    border-color: unset !important
}

.btn-hidden {
    background-color: unset;
    border: unset;
    padding: 0
}

.idp-btn {
    border-radius: 7px;
    background: unset;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f3f4f5;
    cursor: pointer;
    transition: all .3s ease-in-out
}

.idp-btn:hover {
    background-color: var(--color-secongary);
    color: #fff !important;
    border-color: var(--color-secongary) !important
}

.mt-90 {
    margin-top: 90px !important
}

.input-style {
    width: 100%;
    height: 50px;
    border: 1px solid #f3f4f5;
    border-radius: 7px;
    background-color: #f3f4f5;
    padding: 5px 12px;
    font-family: Roboto, sans-serif;
    font-weight: 300
}

.input-style::placeholder {
    font-size: 14px
}

.breadcrumbs {
    padding: 16px 0 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0;

    list-style-type: none;
    padding-inline-start: 0px;
}

.breadcrumbs .breadcrumb {
    display: flex;
    margin-bottom: 0
}

.breadcrumbs .breadcrumb:not(:last-child)::after {
    content: "|";
    margin: 0 5px
}

.breadcrumbs .breadcrumb.active {
    font-weight: 700;
    color: #333;
    text-transform: capitalize
}

.breadcrumbs .breadcrumb, .breadcrumbs .router-link-active, .breadcrumbs span {
    color: #7f7f7f;
    font-size: 12px;
    font-weight: 400
}

.breadcrumbs .breadcrumb a, .breadcrumbs .router-link-active a, .breadcrumbs span a {
    color: #7f7f7f;
    font-size: 12px;
    font-weight: 400
}

.breadcrumbs .router-link-exact-active {
    font-weight: 700 !important;
    color: #333 !important
}

.counter {
    display: flex;
    align-items: center;
    background-color: #f3f4f5;
    border-radius: 7px
}

.counter input {
    background-color: unset;
    border: unset;
    width: 60px;
    text-align: center;
    font-size: 20px
}

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

.counter input[type=number] {
    -moz-appearance: textfield
}

.counter svg {
    cursor: pointer
}

::-webkit-scrollbar {
    width: 1px;
    height: 1px;
    border: unset
}

::-webkit-scrollbar-track {
    border-radius: 0;
    background: unset
}

::-webkit-scrollbar-thumb:horizontal {
    border-radius: 10px;
    background: #f3f4f5
}

@media (min-width: 1199px) {
    .desktop-hide {
        display: none !important
    }
}

@media (max-width: 1199px) {
    .mobile-hide {
        display: none !important
    }

    .counter {
        padding: 1px
    }

    .counter input {
        width: 50px;
        font-size: 16px;
        height: 24px
    }

    .counter svg {
        width: 24px;
        height: 24px;
        cursor: pointer
    }
}

@media (max-width: 991px) {
    .mt-90 {
        margin-top: 50px
    }

    .breadcrumbs {
        padding: 16px 0
    }

    .breadcrumbs .breadcrumb, .breadcrumbs .router-link-active, .breadcrumbs span {
        font-size: 10px
    }

    .breadcrumbs .breadcrumb a, .breadcrumbs .router-link-active a, .breadcrumbs span a {
        font-size: 10px
    }
}

.category-wrapper {
    display: flex;
    flex-direction: column;
    margin: 30px 0 60px;
    padding: 0;
    height: calc(100vh - 150px);
    overflow: auto
}

.category-item {
    display: flex;
    align-items: center;
    color: #333;
    width: 100%;
    gap: 8px;
    padding: 8px 0
}

.category-item h5 {
    color: #333;
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 0;
    transition: all .3s ease-in-out
}

.category-item:last-child {
    color: var(--color-primary);
    font-weight: 500;
    position: sticky;
    bottom: 0;
    background-color: #f3f4f5;
    padding: 8px 0
}

.category-item-subcategories {
    position: absolute;
    top: 30px;
    left: 24%;
    opacity: 0;
    z-index: -99;
    transition: all .3s ease-in-out;
    height: 100%;
    padding: 8px
}

.category-item-subcategories-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.category-item-subcategories-name {
    width: calc(25% - 15px);
    font-size: 16px;
    color: #333;
    transition: all .3s ease-in-out
}

.category-item-subcategories-name:hover {
    color: var(--color-primary)
}

.category-item-subcategories-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
    margin-bottom: 24px
}

.category-item img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain
}

.category-item:hover h5 {
    color: unset;
    font-weight: 600
}

.category-item:hover .category-item-subcategories {
    opacity: 1;
    z-index: 9
}

.nav {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 99
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
    position: relative
}

.nav-category .btn {
    height: 50px;
    border: unset;
    padding: 0 20px;
    display: flex;
    gap: 8px;
    align-items: center
}

.nav-category .btn.show {
    background-color: var(--color-secongary);
    color: #fff
}

.nav-category-menu {
    transform: unset !important;
    top: 80px !important;
    border-radius: 0;
    border: unset;
    background-color: #f3f4f5;
    width: 100%;
    height: calc(100vh - 80px)
}

.nav-category-menu .container {
    position: relative
}

.nav-logo {
    height: 50px;
    width: auto
}

.nav-logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px
}

.nav-link {
    padding: 14px 0
}

.nav-link-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative
}

.nav-link-title {
    font-size: 14px;
    color: #333;
    font-weight: 400;
    margin-bottom: 0
}

.nav-link-badge {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
    top: 0;
    right: 0;
    background-color: #cd412c
}

.nav-link-cart .nav-cart:hover, .nav-link-cart:hover .nav-cart {
    display: block
}

.nav-cart {
    display: none;
    position: absolute;
    background-color: #fff;
    border-radius: 7px;
    top: 80px;
    right: 0;
    max-width: 355px;
    width: 100%;
    box-shadow: 0 9px 10px 0 rgba(0, 0, 0, .15);
    padding: 10px 10px 16px
}

.nav-cart-empty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #333;
    font-size: 24px;
    font-weight: 500;
    gap: 8px;
    margin-top: 24px
}

.nav-cart-wrapper {
    display: flex;
    flex-direction: column
}

.nav-cart-btn {
    height: 50px;
    font-size: 14px;
    text-transform: uppercase;
    width: 100%;
    margin-top: 32px
}

.nav-search {
    display: flex;
    align-items: center;
    height: 50px;
    position: relative;
    flex: 1 0 auto
}

.nav-search svg {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%)
}

.nav-search input {
    width: 100%;
    height: 100%;
    border: 1px solid #f3f4f5;
    border-radius: 7px;
    background-color: #f3f4f5;
    padding: 5px 5px 5px 45px
}

.nav-search input::placeholder {
    font-size: 14px;
    font-weight: 300
}

.nav-cart-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f5
}

.nav-cart-item:first-child {
    padding-top: 0
}

.nav-cart-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px 0
}

.nav-cart-title {
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
    height: 37px
}

.nav-cart-price {
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

.nav-cart-image {
    width: 100px;
    height: 100px;
    display: block
}

.nav-cart-image img {
    width: auto;
    height: 100%
}

@media (max-width: 1200px) {
    .nav {
        display: none
    }
}

.header-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
    justify-content: flex-end
}

.header-link {
    padding: 6px 19px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1
}

.header-langs {
    display: flex;
    gap: 10px
}

.header-lang {
    color: var(--black);
    border: 1px solid var(--black);
    border-radius: var(--radius);
    font-size: 14px;
    background-color: unset;
    height: 30px;
    padding: 0 10px
}

.header-lang.active {
    border: 2px solid var(--color-primary);
    font-weight: 700;
    color: var(--color-primary)
}

@media (max-width: 1200px) {
    .header {
        display: none
    }
}

.banners {
    margin-top: 20px
}

.banners-carousel {
    width: 100%;
    height: 500px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative
}

.banners-slide {
    display: block;
    height: 500px;
    background-color: #fff;
    border-radius: 7px
}

.banners-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    border-radius: 7px
}

.banners-btns {
    position: absolute;
    z-index: 90;
    left: 16px;
    bottom: 16px;
    display: flex;
    align-items: center;
    gap: 5px
}

.banners-btns .btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 8
}

@media (max-width: 1200px) {
    .banners-carousel {
        margin-bottom: 20px;
        margin-top: 20px;
        height: 450px
    }

    .banners-slide {
        height: 450px
    }

    .banners-btns .btn {
        width: 30px;
        height: 30px
    }
}

@media (max-width: 991px) {
    .banners-carousel {
        height: 350px
    }

    .banners-slide {
        height: 350px
    }
}

@media (max-width: 767px) {
    .banners-carousel {
        height: 300px
    }

    .banners-slide {
        height: 300px
    }
}

@media (max-width: 576px) {
    .banners-carousel {
        height: 250px
    }

    .banners-slide {
        height: 250px
    }
}

.banners-categories {
    background-color: #fff;
    border-radius: 7px;
    height: 500px;
    padding: 24px 24px 48px;
    position: relative
}

.banners-categories-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
    overflow: auto;
    height: 100%;
    padding-bottom: 24px
}

.banners-category {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #333;
    transition: all .3s ease-in-out;
    font-size: 16px;
    font-weight: 400
}

.banners-category img, .banners-category svg {
    width: 24px;
    height: 24px
}

.banners-category:hover {
    color: var(--color-primary)
}

.banners-category:hover svg path {
    fill: var(--color-primary)
}

.banners-category:last-child {
    font-weight: 600;
    color: var(--color-primary);
    position: absolute;
    bottom: 16px;
    background-color: #fff;
    padding-top: 18px;
    padding-left: 24px;
    width: 100%;
    left: 0;
    border-top: 1px solid #f3f4f5
}

@media (max-width: 1200px) {
    .banners-categories {
        height: -moz-fit-content;
        height: fit-content;
        padding: 16px 8px
    }

    .banners-categories ::-webkit-scrollbar {
        width: 3px
    }

    .banners-categories ::-webkit-scrollbar-track {
        box-shadow: unset;
        border-radius: 0
    }

    .banners-categories ::-webkit-scrollbar-thumb {
        background: #f3f4f5;
        border-radius: 20px
    }

    .banners-categories ::-webkit-scrollbar-thumb:hover {
        background: #f3f4f5
    }

    .banners-categories-wrapper {
        flex-direction: row;
        padding-bottom: 0
    }

    .banners-category {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        font-size: 10px;
        font-weight: 400;
        text-align: center
    }

    .banners-category:last-child {
        padding: 0;
        width: unset;
        position: unset
    }
}

@media (max-width: 576px) {
    .banners-categories-wrapper {
        gap: 10px
    }
}

.features {
    margin-top: 24px
}

.features-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 7px;
    height: 200px
}

.features-item img, .features-item svg {
    width: 40px;
    height: 40px;
    margin-bottom: 16px
}

.features-item-title {
    color: #333;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center
}

.features-item-descr {
    color: #333;
    font-size: 16px;
    text-align: center;
    margin-bottom: 0
}

@media (max-width: 1200px) {
    .features {
        margin-top: 24px
    }

    .features-item {
        height: 180px;
        padding: 0 65px
    }
}

@media (max-width: 991px) {
    .features-item {
        padding: 0 35px
    }

    .features-item img, .features-item svg {
        width: 30px;
        height: 30px
    }

    .features-item-title {
        font-size: 16px
    }

    .features-item-descr {
        font-size: 14px
    }
}

@media (max-width: 767px) {
    .features-item {
        padding: 0 25px;
        margin-bottom: 16px;
        height: 125px
    }
}

.seo {
    margin-top: 24px
}

.seo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    background-color: #fff;
    border-radius: 7px;
    padding: 60px
}

.seo-wrapper-secondary {
    padding: 20px;
    align-items: flex-start
}

.seo-main {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary)
}

.seo-main-text {
    text-align: center;
    font-size: 20px;
    line-height: 170%
}

.seo-list {
    margin: 0
}

@media (max-width: 991px) {
    .seo-wrapper {
        gap: 16px;
        background-color: #fff;
        border-radius: 7px;
        padding: 30px
    }

    .seo-main {
        font-size: 18px
    }

    .seo-main-text {
        font-size: 14px
    }
}

@media (max-width: 767px) {
    .seo {
        margin-top: 0
    }

    .seo ul li {
        font-size: 12px
    }

    .seo p {
        font-size: 12px
    }

    .seo-wrapper {
        padding: 16px;
        gap: 10px
    }

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

    .seo-main-text {
        font-size: 12px;
        line-height: 1.6
    }
}

.cards-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px
}

.cards-btns {
    display: flex;
    align-items: center;
    gap: 5px
}

.cards-btn {
    width: 40px;
    height: 40px;
    display: flex;
    padding: 0;
    align-items: center;
    justify-content: center
}

.cards .news-carousel, .cards-carousel, .cards-carousel-second {
    margin: -20px;
    padding: 20px
}

.cards-title {
    color: #333;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0
}

@media (max-width: 991px) {
    .cards-title {
        font-size: 18px
    }

    .cards-btn {
        width: 30px;
        height: 30px
    }

    .cards .news-carousel, .cards-carousel, .cards-carousel-second {
        margin: 0;
        padding: 0
    }
}

@media (max-width: 991px) {
    .cards-top {
        margin-bottom: 30px
    }
}

.card {
    border: unset;
    overflow: hidden;
    transition: all .3s ease-in-out
}

.card:hover {
    box-shadow: 0 9px 10px 0 rgba(0, 0, 0, .15)
}

.card-inner {
    display: flex;
    flex-direction: column;
    padding: 16px;
    position: relative;
    background-color: #fff;
    border-radius: 7px
}

.card-image {
    width: 100%;
    max-height: 200px;
    height: 195px;
    margin-bottom: 8px;
    display: block
}

.card-image img {
    display: block;
    max-height: 200px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    -o-object-fit: contain;
    object-fit: contain
}

.card-label {
    background-color: #cd412c;
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    top: 16px;
    left: 16px;
    color: #fff;
    font-size: 12px;
    border-radius: 7px;
    padding: 3px 14px
}

.card-favorite {
    background-color: var(--color-primary);
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    top: 16px;
    right: 16px;
    color: #fff;
    border-radius: 7px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.card-favorite:hover svg {
    fill: #cd412c
}

.card-favorite:hover svg path {
    stroke: #cd412c;
    transition: all .3s ease-in-out
}

.card-favorite svg {
    width: 24px;
    height: 24px
}

.card-favorite svg path {
    transition: all .3s ease-in-out
}

.card-favorite.active svg {
    fill: #cd412c
}

.card-favorite.active svg path {
    stroke: #cd412c !important;
    transition: all .3s ease-in-out
}

.card-body {
    padding: 0
}

.card-partnumber {
    color: #7f7f7f;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-name {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 16px;
    height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.card-prices {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px
}

.card-prices-new {
    color: #333;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0
}

.card-prices-old {
    color: #7f7f7f;
    text-decoration: line-through;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 0
}

.card-delivery {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: 14px;
    margin-bottom: 16px
}

.card-delivery svg {
    width: 20px;
    height: 20px
}

.card-btn {
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 500
}

.card-viewed {
    display: flex;
    flex-direction: row;
    padding: 8px;
    gap: 8px
}

.card-viewed-img {
    width: 80px;
    height: 80px;
    display: block;
    flex: 0 0 auto
}

.card-viewed-img img {
    max-width: 80px;
    width: 100%;
    height: auto
}

.card-viewed-texts {
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.card-viewed-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 38px
}

.card-viewed-price {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    color: #333
}

.card-viewed-favorite svg path {
    stroke: #cd412c
}

.card-viewed-favorite:hover {
    transition: all .3s ease-in-out
}

.card-viewed-favorite:hover svg {
    fill: #cd412c
}

.card-viewed-favorite.active {
    transition: all .3s ease-in-out
}

.card-viewed-favorite.active svg {
    fill: #cd412c
}

.card-viewed-favorite.active svg path {
    stroke: #cd412c
}

@media (max-width: 991px) {
    .card-inner {
        padding: 8px
    }

    .card-image {
        max-height: 180px
    }

    .card-image img {
        max-height: 180px
    }

    .card-label {
        top: 8px;
        left: 8px;
        font-size: 10px;
        padding: 3px 8px
    }

    .card-favorite {
        top: 8px;
        right: 8px;
        width: 24px;
        height: 24px
    }

    .card-favorite svg {
        width: 16px;
        height: 16px
    }

    .card-partnumber {
        font-size: 10px
    }

    .card-name {
        font-size: 16px;
        font-weight: 400;
        height: 37px;
        margin-bottom: 14px;
        line-height: 1.2
    }

    .card-prices {
        flex-direction: column-reverse;
        gap: 2px;
        align-items: flex-start;
        margin-bottom: 12px
    }

    .card-prices-new {
        font-size: 16px
    }

    .card-prices-old {
        font-size: 14px
    }

    .card-delivery {
        gap: 4px;
        font-size: 10px;
        margin-bottom: 12px
    }

    .card-delivery svg {
        width: 14px;
        height: 14px
    }

    .card-btn {
        height: 40px;
        display: flex;
        gap: 8px;
        font-size: 16px;
        font-weight: 400
    }

    .card-btn svg {
        width: 18px;
        height: 18px
    }

    .card-viewed {
        display: flex;
        flex-direction: row;
        padding: 8px;
        gap: 8px
    }

    .card-viewed-img {
        width: 80px;
        height: 80px;
        display: block;
        flex: 0 0 auto
    }

    .card-viewed-img img {
        max-width: 80px;
        width: 100%;
        height: auto
    }

    .card-viewed-texts {
        display: flex;
        flex-direction: column;
        justify-content: space-between
    }

    .card-viewed-title {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 0;
        color: #333;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        height: 38px
    }

    .card-viewed-price {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 0;
        color: #333
    }
}

@media (max-width: 576px) {
    .card .mobile-card {
        flex-direction: row
    }

    .card .mobile-card .card-image {
        width: 130px;
        height: 100%;
        flex: 0 0 130px;
        margin-bottom: 0
    }

    .card .mobile-card .card-body {
        display: flex;
        flex-direction: column;
        padding: 10px 0
    }

    .card .mobile-card .card-partnumber {
        order: 2
    }

    .card .mobile-card .card-name {
        order: 1;
        padding-right: 30px
    }

    .card .mobile-card .card-prices {
        order: 3;
        flex-direction: row;
        gap: 8px;
        align-items: center
    }

    .card .mobile-card .card-delivery {
        order: 4
    }

    .card .mobile-card .card-btn {
        order: 5
    }
}

.brands-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.brands-item {
    display: block;
    width: calc(25% - 15px);
    height: 150px;
    background-color: #fff;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out
}

.brands-item:hover {
    box-shadow: 0 9px 10px 0 rgba(0, 0, 0, .15)
}

.brands-item img {
    display: block;
    max-height: 100px;
    height: 100%;
    max-width: 75%;
    width: auto;
    -o-object-fit: contain;
    object-fit: contain
}

@media (max-width: 991px) {
    .brands-item {
        width: calc(33% - 12px);
        height: 150px
    }
}

@media (max-width: 767px) {
    .brands-wrapper {
        gap: 10px
    }

    .brands-item {
        width: calc(50% - 5px);
        height: 150px
    }
}

@media (max-width: 576px) {
    .brands-item {
        height: 100px
    }

    .brands-item img {
        max-height: 60px;
        height: 100%;
        max-width: 75%
    }
}

.news-img {
    height: 170px;
    width: 100%;
    position: relative
}

.news-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.news-img-label {
    background-color: var(--color-primary);
    position: absolute;
    bottom: 0;
    left: 0;
    color: var(--white);
    font-size: 12px;
    line-height: 1;
    padding: 4px 16px;
    border-radius: 0 7px 0 0
}

.news-body {
    padding: 16px
}

.news-title {
    color: var(--black);
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 16px
}

.news-descr {
    color: var(--black);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 24px
}

.news-btn {
    font-size: 14px
}

@media (max-width: 991px) {
    .news-img {
        height: 130px;
        width: 100%;
        position: relative
    }

    .news-img-label {
        font-size: 10px
    }

    .news-body {
        padding: 10px
    }

    .news-title {
        color: #333;
        font-size: 14px;
        -webkit-line-clamp: 2;
        height: 36px
    }

    .news-descr {
        height: 67px;
        line-height: 13px;
        margin-bottom: 16px
    }

    .news-btn {
        font-size: 12px;
        font-weight: 400;
        width: 100%
    }
}

.footer {
    border-top: 5px solid var(--color-primary);
    background: #fff;
    margin-top: 150px;
    padding: 50px 0 0
}

.footer-title {
    color: #333;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 0;
    margin-bottom: 30px
}

.footer-list-item {
    list-style-type: none;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333
}

.footer-list-item a {
    color: #333;
    transition: all .3s ease-in-out;
    font-size: 16px
}

.footer-list-item a:hover {
    color: var(--color-primary)
}

.footer-list-item-text {
    font-size: 14px;
    margin-bottom: 24px
}

.footer-list-item.status {
    background-color: var(--color-primary);
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 12px;
    border-radius: 7px;
    display: flex;
    gap: 8px;
    align-items: center
}

.footer-list-item.status a {
    color: #fff
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 16px
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-form-btn {
    height: 50px
}

.footer-copyright {
    padding: 33px 0;
    color: #7f7f7f;
    font-size: 12px;
    font-weight: 400;
    border-top: 1px solid var(--color-primary);
    margin-top: 90px
}

.footer-copyright p {
    margin-bottom: 0
}

@media (max-width: 1200px) {
    .footer .row {
        gap: 30px
    }
}

@media (max-width: 991px) {
    .footer {
        margin-top: 100px;
        padding-bottom: 70px
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 20px
    }

    .footer-list {
        gap: 12px
    }

    .footer-list-item a {
        font-size: 14px
    }

    .footer-list-item-text {
        font-size: 14px;
        margin-bottom: 24px
    }
}

.header-mobile {
    background-color: #fff;
    box-shadow: 0 9px 10px 0 rgba(0, 0, 0, .15);
    border-radius: 0 0 7px 7px;
    padding: 15px 0;
    position: sticky;
    z-index: 9999;
    top: -50px;
    display: none
}

.header-mobile-top {
    margin-bottom: 12px
}

.header-mobile-logo {
    height: 30px
}

.header-mobile-logo img {
    height: 100%
}

.header-mobile-btns {
    gap: 8px;
    align-items: center
}

.header-mobile-btn {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0
}

.header-mobile-search {
    position: relative
}

.header-mobile-search input {
    width: 100%;
    background-color: #f3f4f5;
    font-size: 14px;
    border: unset;
    border-radius: 7px;
    height: 35px;
    padding-left: 36px
}

.header-mobile-search svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 12px
}

@media (max-width: 1200px) {
    .header-mobile {
        display: block
    }
}

.nav-mobile {
    background-color: #fff;
    border-radius: 7px 7px 0 0;
    padding: 8px 0 14px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 -5px 20px -5px rgba(34, 60, 80, .2);
    display: none
}

.nav-mobile-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px
}

.nav-mobile-wrapper .router-link-exact-active {
    color: var(--color-primary)
}

.nav-mobile-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
    width: 62px;
    color: #333
}

@media (max-width: 1200px) {
    .nav-mobile {
        display: block
    }
}

.breadcrumbs {
    padding: 16px 0 30px;
    margin-bottom: 0
}

.breadcrumbs .router-link-active, .breadcrumbs span {
    color: #7f7f7f;
    font-size: 12px;
    font-weight: 400
}

.breadcrumbs .router-link-exact-active {
    font-weight: 700;
    color: #333
}

@media (max-width: 991px) {
    .breadcrumbs {
        padding: 16px 0
    }

    .breadcrumbs .router-link-active, .breadcrumbs span {
        font-size: 10px
    }
}

.categories-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px
}

@media (max-width: 991px) {
    .categories-wrapper {
        margin-top: 30px
    }
}

@media (max-width: 576px) {
    .categories-wrapper {
        gap: 8px
    }
}

.categories-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    background-color: #fff;
    border-radius: 7px;
    width: calc(25% - 15px);
    height: 240px;
    padding: 20px;
    transition: all .3s ease-in-out
}

.categories-item:hover {
    box-shadow: 0 9px 10px 0 rgba(0, 0, 0, .15)
}

.categories-item-title {
    color: #333;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0
}

.categories-item-img {
    max-height: 150px;
    width: auto;
    height: 100%
}

.categories-item-chevron {
    display: none
}

@media (max-width: 992px) {
    .categories-item {
        width: calc(33% - 12px)
    }
}

@media (max-width: 767px) {
    .categories-item {
        width: calc(50% - 10px)
    }

    .categories-item-img {
        max-height: 120px;
        width: auto;
        height: 100%
    }

    .categories-item-img img {
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
        object-fit: contain
    }
}

@media (max-width: 576px) {
    .categories-item {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        height: -moz-fit-content;
        height: fit-content;
        padding: 10px 20px;
        position: relative
    }

    .categories-item-img {
        max-height: 40px;
        width: 40px;
        height: 100%
    }

    .categories-item img {
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
        object-fit: contain
    }

    .categories-item-chevron {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: rotate(90deg) translateX(-50%)
    }
}

.category-sort {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px
}

.category-sort-item {
    position: relative;
    background-color: #fff;
    border-radius: 7px;
    padding: 5px 16px;
    font-size: 16px
}

.category-sort-item .dropdown-menu {
    border: unset;
    box-shadow: 0 9px 10px 0 rgba(0, 0, 0, .15)
}

.category-sort-item .dropdown-menu.show {
    transform: unset !important;
    width: 100%;
    top: 34px !important;
    z-index: 9 !important
}

.category-sort-item-select {
    color: #cd412c;
    font-size: 16px;
    font-weight: 700;
    transition: all .3s ease-in-out
}

.category-sort-item-select:focus {
    color: var(--color-secongary) !important
}

.filter {
    padding: 16px;
    background-color: #fff;
    border-radius: 7px;
    border: unset
}

.filter-top {
    display: none;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px
}

.filter-top-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
    color: var(--color-primary)
}

.filter-top-btn {
    background-color: #f3f4f5;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: unset;
    border-radius: 7px;
    cursor: pointer
}

.filter-top-btn svg {
    flex: 0 0 auto
}

@media (max-width: 1199px) {
    .filter {
        border-radius: 0
    }

    .filter-wrapper {
        padding: 112px 0 80px
    }

    .filter-top {
        display: flex
    }
}

.filter-item {
    border-bottom: 1px solid #7f7f7f
}

.filter-item .chevron {
    transform: rotate(180deg);
    transition: all .3s ease-in-out
}

.filter-item-title {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: #333;
    font-size: 18px;
    font-weight: 700
}

.filter-item-title[aria-expanded=true] .chevron {
    transform: rotate(0)
}

.filter-item-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0 24px;
    height: 200px;
    overflow: auto
}

.filter-item-body .input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative
}

.filter-item-body .input-group input {
    width: 24px;
    height: 24px;
    border-radius: 0;
    opacity: 0
}

.filter-item-body .input-group input:checked + label::after {
    background-color: var(--color-primary);
    background-image: url(../../icons/check.svg);
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center
}

.filter-item-body .input-group label {
    color: #333;
    font-size: 16px;
    font-weight: 400
}

.filter-item-body .input-group label:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: block;
    width: 24px;
    height: 24px;
    border: 1px solid #333
}

@media (max-width: 991px) {
    .filter-item {
        border-bottom: 1px solid #7f7f7f
    }

    .filter-item .chevron {
        width: 16px;
        height: 16px
    }

    .filter-item-title {
        font-size: 16px;
        padding: 10px 8px
    }

    .filter-item-body {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: 16px 0 24px;
        padding: 0 8px;
        height: 200px;
        overflow: auto
    }

    .filter-item-body .input-group label {
        font-size: 14px
    }
}

.category-product-count {
    margin: 16px 0
}

.category-top {
    position: relative
}

.category-mobile-actions {
    display: none;
    gap: 5px;
    align-items: center
}

.sort-icon {
    width: 30px;
    height: 30px;
    background-color: green;
    border-radius: 7px;
    border: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0
}

@media (max-width: 1199px) {
    .category-product-count {
        margin: 8px 0;
        font-size: 12px
    }

    .category-mobile-actions {
        display: flex;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%)
    }

    .mobile-filter {
        position: fixed;
        z-index: 10;
        max-width: 450px;
        height: 100vh;
        overflow: auto;
        top: 0;
        left: -1000px;
        width: 100%;
        transition: all .3s ease-in-out
    }

    .mobile-filter.active {
        left: 0
    }
}

.category-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.category-container .card {
    width: calc(25% - 15px) !important
}

@media (max-width: 767px) {
    .category-container {
        gap: 10px
    }

    .category-container .card {
        width: calc(33% - 6px) !important
    }
}

@media (max-width: 576px) {
    .category-container {
        gap: 10px
    }

    .category-container .card {
        width: 100% !important
    }
}

.pagination {
    background-color: #fff;
    border-radius: 7px;
    padding: 16px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.pagination-list {
    list-style: none;
    display: flex;
    gap: 10px;
    padding-left: 0;
    margin-bottom: 0
}

.pagination-list .page-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #333;
    border-radius: 7px;
    transition: all .3s ease-in-out
}

.pagination-list .page-item:hover {
    border: 1px solid var(--color-primary);
    background-color: var(--color-primary)
}

.pagination-list .page-item:hover .page-link {
    color: #fff
}

.pagination-list .page-item.active {
    border: 1px solid var(--color-primary);
    background-color: var(--color-primary)
}

.pagination-list .page-item.active .page-link {
    color: #fff
}

.pagination-list .page-link {
    padding: 0;
    margin: 0;
    border: unset;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    border-radius: 0;
    background-color: unset
}

.pagination .btn {
    background-color: unset;
    border: 1px solid #333
}

.pagination .btn svg {
    fill: #333
}

@media (max-width: 991px) {
    .pagination {
        padding: 10px;
        margin-top: 24px
    }

    .pagination-list {
        gap: 5px
    }

    .pagination-list .page-item {
        width: 30px;
        height: 30px
    }

    .pagination-list .page-link {
        font-size: 14px
    }
}

.product-characteristic {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px
}

.product-characteristic div {
    color: #7f7f7f;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.product-characteristic div:last-child {
    font-weight: 700;
    color: #333
}

.product-tabs {
    margin-top: 70px
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.product-actions-id {
    color: #7f7f7f;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 11px;
    border-bottom: 1px solid #f3f4f5
}

.product-actions-count, .product-actions-price {
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.product-actions-price .prices {
    display: flex;
    gap: 8px;
    align-items: flex-end
}

.product-actions-price .prices .old {
    font-size: 18px;
    font-weight: 300;
    color: #7f7f7f;
    text-decoration: line-through;
    line-height: 1
}

.product-actions-price .prices .new {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1
}

.product-actions-info {
    display: flex;
    gap: 8px;
    flex-direction: column
}

.product-actions-info div {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px
}

.product-actions-btns {
    display: flex;
    gap: 8px
}

.product-actions-btns .favorite {
    width: 45px;
    border: 1px solid var(--color-primary);
    background-color: unset;
    border-radius: 7px;
    flex: 1 0 auto;
    transition: all .3s ease-in-out
}

.product-actions-btns .favorite:hover {
    background-color: var(--color-primary)
}

.product-actions-btns .favorite:hover svg {
    fill: #cd412c
}

.product-actions-btns .favorite.active {
    background-color: var(--color-primary)
}

.product-actions-btns .favorite.active svg {
    fill: #cd412c
}

.product-actions-btns .favorite.active svg path {
    stroke: #cd412c
}

.product-actions-btn {
    width: 100%;
    height: 45px
}

.product-info .bg {
    background-color: #fff;
    border-radius: 7px;
    padding: 16px
}

.product-info-articul {
    color: #7f7f7f;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 18px
}

.product-info-name {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px
}

.product-info-images {
    position: relative
}

.product-info-images-labels {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px
}

.product-info-images-label {
    padding: 4px 16px;
    border-radius: 7px;
    color: #fff;
    font-size: 14px;
    font-weight: 400
}

.product-info-images-label.red {
    background-color: #cd412c
}

.product-info-images-label.green {
    background-color: var(--color-primary)
}

.product-info-images-main {
    border: 1px solid #f3f4f5;
    border-radius: 7px;
    width: 100%;
    padding: 8px
}

.product-info-images-main img {
    max-width: 400px;
    width: 100%;
    max-height: 400px;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.product-info-thumbnails {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 20px
}

.product-info-thumbnail {
    max-width: 100px;
    width: 100%;
    max-height: 100%;
    height: 100%;
    border-radius: 7px;
    border: 1px solid #f3f4f5;
    cursor: pointer
}

.product-info-thumbnail img {
    width: 100%;
    height: 100%
}

.product-info-stars {
    margin-bottom: 24px;
    display: flex;
    gap: 5px
}

.product-info-stars img {
    width: 24px;
    height: 24px
}

.product-info-characteristics-title {
    color: #333;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 26px
}

.product-info-characteristics-descr {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.product-info-characteristics-descr .item {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px
}

.product-info-characteristics-descr .item-accent {
    font-weight: 700;
    font-size: 18px;
    color: var(--color-primary)
}

.product-info-characteristics-all {
    color: var(--color-primary);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 44px;
    cursor: pointer
}

.product-info-descr {
    display: block;
    color: #7f7f7f;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 0;
    position: absolute;
    bottom: 0
}

.product-info-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative
}

@media (max-width: 1400px) {
    .product-info-descr {
        font-size: 12px;
        line-height: 120%
    }
}

@media (max-width: 1199px) {
    .product-info .bg {
        padding: 16px
    }

    .product-info-articul {
        margin-bottom: 16px
    }

    .product-info-name {
        font-size: 16px
    }

    .product-info-images-labels {
        top: 10px;
        left: 10px
    }

    .product-info-images-label {
        padding: 2px 8px;
        font-size: 12px;
        font-weight: 300
    }

    .product-info-images-main img {
        display: block;
        margin: 0 auto
    }

    .product-info-thumbnails {
        display: flex;
        gap: 5px;
        align-items: center;
        margin-top: 5px;
        margin-bottom: 30px
    }

    .product-info-thumbnail {
        max-width: 100px;
        width: 100%;
        max-height: 100%;
        height: 100%;
        border-radius: 7px;
        border: 1px solid #f3f4f5;
        cursor: pointer
    }

    .product-info-thumbnail img {
        width: 100%;
        height: 100%
    }

    .product-info-stars {
        margin-bottom: 24px
    }

    .product-info-characteristics-title {
        font-size: 18px
    }

    .product-info-characteristics-descr {
        gap: 8px
    }

    .product-info-characteristics-descr .item {
        font-size: 14px;
        margin-bottom: 0
    }

    .product-info-characteristics-descr .item-accent {
        font-size: 16px
    }

    .product-info-characteristics-all {
        margin-top: 16px
    }

    .product-info-descr {
        position: unset;
        margin-top: 30px
    }

    .product-actions {
        gap: 14px;
        margin-bottom: 30px
    }

    .product-actions-id {
        font-size: 12px;
        padding-bottom: 10px
    }

    .product-actions-count, .product-actions-price {
        font-size: 18px
    }

    .product-actions-price .prices {
        gap: 5px
    }

    .product-actions-price .prices .old {
        font-size: 16px
    }

    .product-actions-price .prices .new {
        font-size: 20px
    }

    .product-actions-info {
        gap: 4px
    }

    .product-actions-info div {
        gap: 5px
    }

    .product-actions-btns .favorite {
        width: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        transition: all .3s ease-in-out
    }

    .product-characteristic div {
        font-size: 14px
    }
}

.tab-wrapper {
    background-color: #fff;
    border-radius: 7px;
    overflow: hidden
}

.tab-buttons {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f3f4f5
}

.tab-buttons button {
    width: 33.33%;
    padding: 14px 0;
    border: unset;
    background-color: unset;
    transition: all .3s ease-in-out;
    font-size: 16px;
    font-weight: 400;
    color: #333
}

.tab-buttons button.active {
    background-color: var(--color-primary);
    color: #fff
}

@media (max-width: 1199px) {
    .tab-buttons {
        display: flex;
        align-items: center;
        border-bottom: 1px solid #f3f4f5
    }

    .tab-buttons button {
        padding: 12px 0;
        font-size: 14px
    }
}

@media (max-width: 420px) {
    .tab-buttons {
        overflow: scroll
    }

    .tab-buttons::-webkit-scrollbar {
        width: 1px;
        height: 1px;
        border: unset
    }

    .tab-buttons::-webkit-scrollbar-track {
        border-radius: 0;
        background: unset
    }

    .tab-buttons::-webkit-scrollbar-thumb:horizontal {
        border-radius: 10px;
        background: #f3f4f5
    }

    .tab-buttons button {
        width: 150px;
        flex: 0 0 auto
    }
}

.tab-body {
    padding: 30px
}

@media (max-width: 1199px) {
    .tab-body p {
        font-size: 14px
    }
}

@media (max-width: 576px) {
    .tab-body {
        padding: 20px
    }
}

.cart-empty {
    background-color: #fff;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 180px 0
}

.cart-empty p {
    margin-bottom: 0;
    color: #7f7f7f
}

.cart-empty-title {
    margin-bottom: 0;
    color: #333;
    font-size: 40px;
    font-weight: 500
}

.cart-empty-back {
    color: #7f7f7f;
    font-size: 16px;
    font-weight: 400;
    background-color: unset;
    padding: 16px 32px;
    border-radius: 7px;
    border: 1px solid #7f7f7f;
    transition: all .3s ease-in-out
}

.cart-empty-back:hover {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary)
}

@media (max-width: 991px) {
    .cart-empty {
        padding: 130px 20px
    }

    .cart-empty p {
        text-align: left
    }

    .cart-empty-title {
        text-align: center;
        font-size: 32px
    }

    .cart-empty-back {
        padding: 12px 32px;
        text-align: center
    }
}

.cart-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px
}

.cart-top-back {
    cursor: pointer;
    color: #7f7f7f;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.cart-wrapper {
    padding: 16px;
    background-color: #fff;
    border-radius: 7px
}

.cart-clear {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 16px;
    border-bottom: 1px solid #f3f4f5;
    margin-bottom: 16px
}

.cart-clear-btn {
    background: unset;
    border: unset;
    color: #cd412c;
    font-size: 14px;
    font-weight: 500
}

.cart-payment {
    background-color: #fff;
    padding: 32px 16px;
    border-radius: 7px
}

.cart-payment-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px
}

.cart-payment-item, .cart-payment-sum {
    display: flex;
    justify-content: space-between
}

.cart-payment-item:not(.cart-payment-sum), .cart-payment-sum:not(.cart-payment-sum) {
    padding: 16px;
    background-color: #f3f4f5;
    border-radius: 7px
}

.cart-payment-item div:first-child, .cart-payment-sum div:first-child {
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.cart-payment-item div:last-child, .cart-payment-sum div:last-child {
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

.cart-payment-sum div:last-child {
    color: #333;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

.cart-payment-btn {
    height: 50px
}

.cart-payment-login {
    text-align: center;
    font-size: 14px
}

.cart-payment-login .login {
    color: #cd412c
}

@media (max-width: 991px) {
    .cart-top {
        margin-bottom: 16px
    }

    .cart-top-back {
        font-size: 14px
    }

    .cart-wrapper {
        padding: 16px 8px 8px
    }

    .cart-clear-btn {
        font-size: 12px
    }

    .cart-payment {
        background-color: #fff;
        padding: 16px;
        border-radius: 7px
    }

    .cart-payment-item:not(.cart-payment-sum), .cart-payment-sum:not(.cart-payment-sum) {
        padding: 11px 10px
    }

    .cart-payment-item div:first-child, .cart-payment-sum div:first-child {
        font-size: 16px
    }

    .cart-payment-item div:last-child, .cart-payment-sum div:last-child {
        color: #333;
        font-size: 18px
    }

    .cart-payment-sum div:last-child {
        font-size: 20px
    }

    .cart-payment-btn {
        height: 45px
    }

    .cart-payment-login {
        font-size: 12px
    }
}

.cart-item {
    display: flex;
    gap: 20px;
    border-bottom: 1px dashed #f3f4f5;
    margin-bottom: 16px;
    padding-bottom: 16px
}

.cart-item:last-child {
    border-bottom: unset;
    margin-bottom: 0
}

.cart-item-img {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    flex: 0 0 150px;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0 auto;
    -o-object-fit: contain;
    object-fit: contain
}

.cart-item-label {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #cd412c;
    border-radius: 7px;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    padding: 2px 10px
}

.cart-item-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    height: 38px
}

.cart-item-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px 0;
    flex: 1 0 auto;
}

.cart-item-prices {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px
}

.cart-item-prices .new {
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0
}

.cart-item-prices .old {
    color: #7f7f7f;
    text-decoration: line-through;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 0
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end
}

.cart-item-actions .counter {
    background-color: unset
}

.cart-item-actions .counter input {
    color: #7f7f7f;
    font-size: 20px;
    font-weight: 700;
    width: 45px
}

.cart-item-favorite {
    cursor: pointer;
    transition: all .3s ease-in-out
}

.cart-item-favorite:hover svg {
    fill: #cd412c !important
}

.cart-item-favorite:hover svg path {
    stroke: #cd412c !important
}

.cart-item-favorite.active svg {
    fill: #cd412c !important
}

.cart-item-favorite.active svg path {
    stroke: #cd412c !important
}

@media (max-width: 991px) {
    .cart-item {
        gap: 8px;
        margin-bottom: 16px;
        padding-bottom: 16px
    }

    .cart-item-img {
        position: relative;
        width: 80px;
        height: 80px;
        padding: 5px 0;
        flex: 0 0 80px;
    }

    .cart-item-label {
        font-size: 10px;
        padding: 2px 6px
    }

    .cart-item-title {
        font-size: 14px;
        font-weight: 500;
        height: 33px
    }

    .cart-item-body {
        padding: 4px 0;
        flex: auto;
    }

    .cart-item-prices {
        flex-direction: row;
        align-items: baseline;
        gap: 10px;
        margin-bottom: 0
    }

    .cart-item-prices .new {
        font-size: 16px;
        line-height: 1
    }

    .cart-item-prices .old {
        font-size: 14px;
        line-height: 1
    }

    .cart-item-actions {
        padding: 0
    }

    .cart-item-actions .counter input {
        color: #7f7f7f;
        font-size: 14px;
        font-weight: 700;
        width: 30px
    }

    .cart-item-actions .counter svg {
        width: 24px;
        height: 24px
    }

    .cart-item-favorite {
        cursor: pointer;
        transition: all .3s ease-in-out
    }

    .cart-item-favorite svg {
        width: 24px;
        height: 24px
    }
}

.payment-header {
    background-color: #fff;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    margin-bottom: 30px;
    z-index: 99;
    box-shadow: 0 9px 10px 0 rgba(0, 0, 0, .15)
}

.payment-header .container {
    position: relative
}

.payment-header-logo {
    height: 50px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    cursor: pointer
}

.payment-header-logo img {
    width: auto;
    height: 100%
}

.payment-header-back {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    cursor: pointer
}

.payment-header-back svg {
    transform: rotate(-90deg)
}

@media (max-width: 991px) {
    .payment-header-logo {
        height: 30px;
        width: -moz-fit-content;
        width: fit-content;
        margin: 0 0 0 auto;
        cursor: pointer
    }

    .payment-header-logo img {
        width: auto;
        height: 100%
    }

    .payment-header-back {
        gap: 8px;
        font-size: 12px;
        left: 12px
    }

    .payment-header-back svg {
        width: 18px;
        height: 18px
    }
}

.payment-group {
    margin-top: 40px
}

.payment-wrapper {
    background-color: #fff;
    padding: 16px;
    border-radius: 7px;
    margin-bottom: 24px
}

.payment-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px
}

.payment-options {
    display: flex;
    background-color: #f3f4f5;
    border-radius: 7px;
    margin-bottom: 16px
}

.payment-options .option {
    flex: 1 0 auto;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    transition: all .3s ease-in-out;
    border-radius: 7px;
    box-sizing: border-box;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center
}

.payment-options .option:hover {
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 7px;
    background-color: #fff
}

.payment-options .option.active {
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 7px;
    background-color: #fff
}

.payment-input {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.payment-input:not(:last-child) {
    margin-bottom: 16px
}

.payment-input label {
    font-weight: 500;
    font-size: 16px
}

.payment-input label span {
    color: #cd412c
}

.payment-input input, .payment-input textarea {
    background-color: #f3f4f5;
    height: 45px;
    width: 100%;
    border: unset;
    border-radius: 7px;
    padding: 0 8px;
    font-size: 14px
}

.payment-input input::placeholder, .payment-input textarea::placeholder {
    font-size: 14px
}

.payment-input textarea {
    height: 100px;
    padding: 8px
}

.payment-infos {
    display: flex;
    gap: 8px;
    flex-direction: column;
    margin-bottom: 16px
}

.payment-info {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 14px
}

.payment-info span {
    font-weight: 600
}

.payment-radio {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-bottom: 8px;
    position: relative
}

.payment-radio input {
    width: 20px;
    height: 20px;
    z-index: 2;
    opacity: 0
}

.payment-radio input:checked + label::before {
    transition: all .3s ease-in-out;
    background-color: var(--color-primary)
}

.payment-radio label:after {
    content: "";
    display: block;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-primary);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0
}

.payment-radio label:before {
    content: "";
    display: block;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    position: absolute;
    background-color: #f3f4f5;
    top: 50%;
    transform: translateY(-50%);
    left: 3px
}

.payment-price {
    background-color: #f3f4f5;
    border-radius: 7px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px
}

.payment-price div {
    font-size: 16px
}

.payment-price div:last-child {
    font-size: 18px;
    font-weight: 700;
    flex: 0 0 100px;
    text-align: right;
}

.payment-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 16px 0
}

.payment-total div {
    font-size: 16px
}

.payment-total div:last-child {
    font-size: 22px;
    font-weight: 600
}

.payment-btn {
    height: 45px
}

@media (max-width: 991px) {
    .payment-group {
        margin-top: 30px
    }

    .payment-title {
        font-size: 16px
    }

    .payment-options .option {
        font-size: 14px;
        height: 38px
    }

    .payment-radio {
        gap: 10px;
        margin-bottom: 10px
    }

    .payment-radio label {
        line-height: 1;
        font-size: 14px
    }

    .payment-price {
        padding: 11px 10px
    }

    .payment-price div {
        font-size: 14px
    }

    .payment-price div:last-child {
        font-size: 16px;
        flex: 0 0 80px
    }

    .payment-total div {
        font-size: 16px
    }

    .payment-total div:last-child {
        font-size: 20px
    }
}

.success-wrapper {
    background-color: #fff;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 160px 0;
    gap: 16px
}

.success-title {
    margin-bottom: 0;
    text-align: center;
    font-size: 40px
}

.success p {
    font-size: 16px;
    margin-bottom: 0;
    color: #7f7f7f;
    text-align: center
}

.success-wrapper {
    padding: 130px 20px
}

.success-wrapper svg {
    border: 6px solid var(--color-primary);
    border-radius: 50%;
    padding: 10px
}

.success-title {
    font-size: 32px
}

.success p {
    font-size: 16px;
    margin-bottom: 0;
    color: #7f7f7f
}

.cart-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px
}

.cart-top-back {
    cursor: pointer;
    color: #7f7f7f;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.cart-wrapper {
    padding: 16px;
    background-color: #fff;
    border-radius: 7px
}

.cart-clear {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 16px;
    border-bottom: 1px solid #f3f4f5;
    margin-bottom: 16px
}

.cart-clear-btn {
    background: unset;
    border: unset;
    color: #cd412c;
    font-size: 14px;
    font-weight: 500
}

.cart-payment {
    background-color: #fff;
    padding: 32px 16px;
    border-radius: 7px
}

.cart-payment-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px
}

.cart-payment-item, .cart-payment-sum {
    display: flex;
    justify-content: space-between
}

.cart-payment-item:not(.cart-payment-sum), .cart-payment-sum:not(.cart-payment-sum) {
    padding: 16px;
    background-color: #f3f4f5;
    border-radius: 7px
}

.cart-payment-item div:first-child, .cart-payment-sum div:first-child {
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.cart-payment-item div:last-child, .cart-payment-sum div:last-child {
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

.cart-payment-sum div:last-child {
    color: #333;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

.cart-payment-btn {
    height: 50px
}

.cart-payment-login {
    text-align: center;
    font-size: 14px
}

.cart-payment-login .login {
    color: #cd412c
}

@media (max-width: 991px) {
    .cart-top {
        margin-bottom: 16px
    }

    .cart-top-back {
        font-size: 14px
    }

    .cart-wrapper {
        padding: 16px 8px 8px
    }

    .cart-clear-btn {
        font-size: 12px
    }

    .cart-payment {
        background-color: #fff;
        padding: 16px;
        border-radius: 7px
    }

    .cart-payment-item:not(.cart-payment-sum), .cart-payment-sum:not(.cart-payment-sum) {
        padding: 11px 10px
    }

    .cart-payment-item div:first-child, .cart-payment-sum div:first-child {
        font-size: 16px
    }

    .cart-payment-item div:last-child, .cart-payment-sum div:last-child {
        color: #333;
        font-size: 18px
    }

    .cart-payment-sum div:last-child {
        font-size: 20px
    }

    .cart-payment-btn {
        height: 45px
    }

    .cart-payment-login {
        font-size: 12px
    }
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--roboto);
    transition: all .5s ease;
    background-color: var(--grey)
}

input:focus-visible, textarea:focus-visible {
    outline: unset
}

input:focus, textarea:focus {
    border-color: unset !important;
    outline: 0;
    box-shadow: unset !important
}

select:focus-visible {
    outline: unset !important
}

select:focus {
    border-color: unset !important;
    outline: 0;
    box-shadow: unset !important
}

button:focus-visible {
    outline: unset
}

a {
    text-decoration: none
}

a:hover {
    color: unset
}

a:focus-visible {
    outline: unset
}

a:focus {
    color: unset !important;
    background-color: unset !important;
    outline: unset !important;
    box-shadow: unset !important
}

::-webkit-scrollbar {
    width: 3px
}

::-webkit-scrollbar-track {
    box-shadow: unset;
    border-radius: 0
}

::-webkit-scrollbar-thumb {
    background: var(--grey);
    border-radius: 20px
}

::-webkit-scrollbar-thumb:hover {
    background: var(--grey)
}

.form-check-input:checked[type=radio] {
    background-image: url(../icons/Check.svg)
}

.form-check-input:checked[type=checkbox] {
    background-image: url(../icons/Check.svg)
}

.page-aside {
    background-color: #fff;
    border-radius: 7px;
    min-height: 500px;
    padding: 24px 24px 48px;
    position: relative;
}

.page-aside ul {
    list-style-type: none;
    padding-inline-start: 0px;
}

.page-aside ul li {
    margin-bottom: 7px;
}

.page-aside a {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #333;
    transition: all .3s ease-in-out;
    font-size: 16px;
    font-weight: 400;
}

.page-body {
    flex: 0 1 calc(75% - 24px);
    background-color: #fff;
    border-radius: 7px;
    min-height: 500px;
    padding: 24px 24px 48px;
    position: relative;
}

.single-sidebar {
    background-color: #fff;
    border-radius: 7px;
    min-height: 500px;
    padding: 24px 24px 48px;
    position: relative;
}

.single-sidebar-title {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 23px;
    color: var(--black);
}

.single-last-post-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.single-sidebar .single-last-post {
    overflow: hidden;
    width: 100%;
    display: flex;
    gap: 10px;
    padding: 10px;
    border: 1px solid #dfdfdf;
    border-radius: 12px
}

.single-sidebar .single-last-post-image {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-sidebar .single-last-post-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%
}

.single-last-post-name {
    font-size: 14px;
    line-height: 17px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--black);
}

.single-last-post-description {
    font-size: 12px;
    line-height: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    color: var(--black);
}

@media (max-width: 768px) {
    .page-aside {
        display: none;
    }

    .page-body {
        flex: 0 1 calc(100%);
    }
}