@import url('colors.css');

.table-transparent>:not(caption)>*>*{
    background-color: transparent !important;
}
.overlayer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 1000;
    background-color: rgba(0,0,0,0.5)
}
.form-check-input[type="radio"]:checked {
    background-color: var(--color-1);
    border-color: var(--color-1);
}
.form-check-input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid var(--color-3);
    background-color: transparent;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 4px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    margin-top: 0;
}
.form-check-input[type="checkbox"]:checked {
    background-color: var(--color-1);
    border-color: var(--color-1);
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'><path d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0'/></svg>");
}
* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-3) transparent;
}
*::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}
*::-webkit-scrollbar-track {
    background: transparent;
}
*::-webkit-scrollbar-thumb {
    background-color: var(--color-3);
}
*::-webkit-scrollbar-button {
    display: none;
}
body {
    font-family: 'Manrope';
    min-width: 340px;
    /*min-width: 1400px;*/
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    line-height: 100%;
    /*background: linear-gradient(299.02deg, #1F2224 20.99%, #3C3D40 91.8%);*/
    background-color: #111;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: normal;
}
ul {
    padding: 0;
    margin: 0;
}
li{
    list-style: none;
}
a,
a:hover {
    text-decoration: none;
}
a {
    transition: color 0.3s;
    color: #fff;
}
input::-webkit-input-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;
    color: var(--color-3) !important;
}
input::-moz-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;
    color: var(--color-3) !important;
}
input:-moz-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;
    color: var(--color-3) !important;
}
input:-ms-input-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;
    color: var(--color-3) !important;
}
input:focus::-webkit-input-placeholder {
    opacity: 0;
}
input:focus::-moz-placeholder {
    opacity: 0;
}
input:focus:-moz-placeholder {
    opacity: 0;
}
input:focus:-ms-input-placeholder {
    opacity: 0;
}

textarea::-webkit-input-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;
    color: var(--color-3) !important;
}
textarea::-moz-placeholder  {
    opacity: 1;
    transition: opacity 0.3s ease;
    color: var(--color-3) !important;
}
textarea:-moz-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;
    color: var(--color-3) !important;
}
textarea:-ms-input-placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;
    color: var(--color-3) !important;
}
textarea:focus::-webkit-input-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}
textarea:focus::-moz-placeholder          {
    opacity: 0;
    transition: opacity 0.3s ease;
}
textarea:focus:-moz-placeholder           {
    opacity: 0;
    transition: opacity 0.3s ease;
}
textarea:focus:-ms-input-placeholder      {
    opacity: 0;
    transition: opacity 0.3s ease;
}

button {
    border: none;
    background: none;
}
button,
button:active,
button:focus,
input,
input:active,
input:focus,
textarea:focus-visible{
    outline: none;
    /*box-shadow: none;*/
}
.absolute-block{
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.base-block {
    position: absolute;
    inset: 0;
    overflow: auto;
}
.base-block_no-scrollbar {
    scrollbar-width: none;
}
.content {
    padding-bottom: 50px;
}
.form-check-input:focus {
    box-shadow: none;
}
.img-fluid-rev {
    max-height: 100%;
    width: auto;
}

.tabs-panel {
    border-bottom: 1px solid var(--color-10);
}
.tabs-panel .tabs-panel__link {
    padding: 10px 20px;
    font-size: 16px;
    color: #000;
    border-radius: 5px 5px 0 0;
    background-color: var(--color-10);
    transition: background 0.3s;
}
.tabs-panel .tabs-panel__link:hover {
    background-color: var(--color-4);
}
.tabs-panel .tabs-panel__link.active {
    background-color: var(--color-1);
    color: #000;
}

.form-error {
    font-size: 12px;
    color: var(--color-11);
}

.page-h1 {
    font-size: 32px;
    color: var(--black-color-0);
    font-weight: bold;
    margin-bottom: 15px;
}
.site-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    padding: 5px 24px;
    min-height: 40px;
    transition: all 0.3s;
    border-radius: 4px;
    color: #ffffff;
    white-space: nowrap;
}
.site-btn.site-btn_sm {
    font-size: 12px;
    min-height: 30px;
}
.site-btn.site-btn_mobile {
    padding: 5px;
}
.site-btn img {
    padding-bottom: 2px;
}
.site-btn.site-btn_big {
    height: 50px;
}
.site-btn.site-btn_1 {
    background-color: var(--color-1);
}
.site-btn.site-btn_1:hover {
    background-color: var(--color-2);
}
.site-btn.site-btn_2 {
    background-color: var(--color-3);
}
.site-btn.site-btn_2:hover {
    background-color: var(--color-4);
}
.site-btn.site-btn_3 {
    border: 1.5px solid #ffffff;
}
.site-btn.site-btn_3:hover {
    background-color: var(--color-3);
}
.site-tab {
    padding: 13px 28px;
    color: #000;
    font-weight: 700;
    font-size: 15px;
    border-radius: 30px;
}
.favorite-btn {
    color: #fff;
    font-size: 24px;
}

.favorite-btn.active {
    color: var(--color-1);
}
/* Offcanvas cities */

.cities-block {
    background-color: var(--color-4);
}
.cities-block .cities-block__header {
    padding: 35px 15px 30px 15px;
}
.cities-block .cities-block__h {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}
.cities-block .cities-block__content {
    position: relative;
}
.cities-title {
    margin-bottom: 0;
    margin-top: 20px;
    color: var(--color-11);
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
}

.cities-list {
    padding: 0 15px;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}
.cities-list .cities-list__city-name {
    color: #000;
    text-decoration: none;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
}
.cities-list .cities-list__city-name.active {
    font-weight: bold;
    color: var(--color-11);
}

.cities-list .cities-list__city-name:hover{
    color: var(--color-11);

}
.cities-list .cities-list__item {
    margin-bottom: 15px;
}
.shops-list {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s ease;
    padding: 15px;
    background-color: var(--color-10);
    overflow-y: auto;
}
.shops-list.active {
    transform: translateX(0);
    visibility: visible;
}
.shops-list h5 {
    color: #fff;
    font-size: 18px;
    text-align: center;
    margin-bottom: 15px;
}
.shops-list .shops-list__close {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 16px;
    color: var(--color-11);
}
.shop {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    margin-bottom: 15px;
}
.shop .shop__header {
    padding: 5px 10px;
    background-color: var(--color-1);
    height: 30px;
}

.shop .shop__descr {
    position: relative;
    padding: 10px;
    background-color: #000;
}
.shop .shop__adr {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}
.shop .shop__adr-dop {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #000;
}
.shop .shop__zag {
    color: #000000;
    font-size: 14px;
    font-weight: bold;
}
.shop .shop__title {
    color: #000000;
    font-size: 14px;
}
.shop .shop__hand {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 34px;
    color: #d32026;
    animation: pulse 1.5s ease-in-out infinite;
}
.shops-map {
    height: 400px;
    width: 100%;
}

@keyframes pulse {
    from {
        transform: rotate(-45deg) scale(.85);
    }
    50% {
        transform: rotate(-30deg) scale(1);
    }
    to {
        transform: rotate(-45deg) scale(.85);
    }
}
/* Offcanvas cities --------------------*/

/* Modal cities */
/*.cities-header {
    position: relative;
    padding: 20px;
    background-color: var(--color-10);
}
.cities-header h2 {
    color: #000;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}
.cities-content {
    background-color: #3C3D40;
}
.cities-content .cities-content__shops h2 {
    font-size: 24px;
    color: #000;
    text-align: center;
    margin: 10px 0;
    font-weight: bold;
}
.cities-list {
    position: relative;
    padding: 15px;
}
.cities-list .cities-list__letter {
    font-size: 24px;
    color: var(--color-11);
    margin-bottom: 10px;
    font-weight: bold;
}
.cities-list .cities-list__city-name {
    color: #000;
    text-decoration: none;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
}
.cities-list .cities-list__city-name.active {
    font-weight: bold;
    color: var(--color-11);
}
.cities-list .cities-list__item {
    
}
.cities-list .cities-list__city-name:hover{
    color: var(--color-11);

}

.shop {
    width: 300px;
    border-radius: 8px;
    cursor: pointer;
    background-color: #000;
    overflow: hidden;
}*/
.shop:hover {
    /*-webkit-box-shadow: 0px 0px 6px 3px rgba(255, 255, 0, 0.69);
    -moz-box-shadow: 0px 0px 6px 3px rgba(255, 255, 0, 0.69);
    box-shadow: 0px 0px 6px 3px rgba(255, 255, 0, 0.69);*/
}
/*.shop .shop__header {
    padding: 5px 10px;
    background-color: var(--color-1);
    height: 50px;
}

.shop .shop__descr {
    position: relative;
    padding: 10px;
}
.shop .shop__adr {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}
.shop .shop__adr-dop {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #000000;
}
.shop .shop__zag {
    color: #000000;
    font-size: 14px;
    font-weight: bold;
}
.shop .shop__title {
    color: var(--black-color-0);
    font-size: 16px;
}
.shop .shop__hand {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 34px;
    color: #d32026;
    animation: pulse 1.5s ease-in-out infinite;
}
.shops-map {
    height: 400px;
    width: 100%;
}

@keyframes pulse {
    from {
        transform: rotate(-45deg) scale(.85);
    }
    50% {
        transform: rotate(-30deg) scale(1);
    }
    to {
        transform: rotate(-45deg) scale(.85);
    }
}
.shops-list{

}
.select-shop {
    margin: 0;
    color: var(--color-11);
    font-size: 14px;
    text-align: center;
}*/
/* Modal cities END -----------------------*/


/* HEADER */
.static-menu {
    /*height: 50px;*/
    background-color: #000000;
    border-bottom: 1px solid var(--green-color-0);
    /*box-shadow: 0px 1px 5px #cccccc;*/
}
.top-menu .top-menu__item {
    /*padding: 0 10px;*/
    font-size: 14px;
    color: #fff;
}
.top-menu .top-menu__item .top-menu__link {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
}
.top-menu .top-menu__item .top-menu__link:hover {
    color: var(--color-1);
}
/*.top-menu .top-menu__item .top-menu__link.top-menu__item_active {
    color: #f1722e;
}*/
.menu-link {
    font-size: 30px;
    color: #000;
    text-decoration: none;
}
.menu-link:hover {
    color: var(--yellow-color-0);
}

.he {
    color: #fff;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
}
/*.he.he_active {
    color: var(--color-1);
}*/
.he .he__icon {
    position: relative;
    font-size: 22px;
    margin-bottom: 5px;
}
.he:hover {
    color: var(--color-1);
    /*background: url(../img/auth_2.png) right center no-repeat;
    background-size: 14px;*/
}
.he .he__status{
    max-width: 150px;
    text-align: center;
}
.he .he__num {
    position: absolute;
    display: block;
    width: 18px;
    height: 18px;
    font-size: 12px;
    background-color: var(--color-1);
    color: #ffffff;
    top: -8px;
    right: 10px;
    border-radius: 50%;
    padding-top: 2px;
    text-align: center;
    font-weight: 600;
}
.he .he__num.he__num_v {
    right: 15px;
}
.header .header__top {
    background-color: #111;
    padding: 5px 0;
    color: #fff !important;
}
.header .header__middle {
    background-color: #111;
    padding: 10px 0;
}
.header .header__bottom {
    background-color: #111;
}
.header .header__bottom .header__bottom-content {
    height: 70px;
}

.header .header__logo {
    width: 270px;
}

.panel_static {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 105;
}
.soc, .soc a {
    font-weight: 700;
    font-size: 13px;
    line-height: 100%;
    color: #fff;
    text-decoration: none;
}
.soc a svg {
    width: 13px;
    height: 13px;
    fill: #ffffff;
}
.soc a svg:hover {
    fill: var(--color-11);
}
.soc-footer, .soc-footer a svg {
    fill: #ffffff;
    height: 30px;
    width: auto;
}
.soc-footer, .soc-footer a svg:hover {
    fill: var(--color-1);

}
.soc a:hover {
    color: var(--color-11);
}
.phone,
.punkt {
    font-weight: 700;
    font-size: 13px;
    line-height: 100%;
    color: #fff;
    text-decoration: none;
}
.cart-punkt {
    font-size: 16px;
    color: var(--color-11);
    margin: 0;
}
.cart-punkt.cart-punkt_change {
    font-size: 12px !important;
    color: var(--color-3) !important;
    text-decoration: underline;
}
.cart-punkt.cart-punkt_change:hover {
    color: #ffffff !important;
}
.poz {
    margin-top: 20px;
}
.poz .poz__zag {
    font-size: 18px;
    color: #000;
    margin-bottom: 15px;
}
.top-menu {
    margin: 0;
}
.search{
    padding-left: 25px;
}
.search .search__inner {
    position: relative;
}
.search .search__result {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-10);
    width: 100%;
    z-index: 2000;
    padding: 15px 15px 15px 15px;
    -webkit-box-shadow: 0px 0px 13px 5px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0px 0px 13px 5px rgba(0, 0, 0, 0.6);
    box-shadow: 0px 0px 13px 5px rgba(0, 0, 0, 0.6);
}
.search .search__close {
    font-size: 18px;
    color: #000;
    margin-bottom: 15px;
}
.search .search__close:hover {
    color: var(--color-1);
}
.search .search__line {
    font-size: 14px;
    color: #000;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-3);
}
.search .search__line a {
    color: var(--color-11);
}
.search .search__line span {
    white-space: nowrap;
}
.site-form {
    /*border-radius: 5px ;*/
    /*background-color: var(--color-5);*/
}
.site-form .site-form__input {
    background-color: var(--color-5) !important;
    color: #000;
    border: none;
    box-shadow: none;
    border-radius: 8px;
    border-bottom: 1px solid var(--color-5);
}
.site-form .site-form__label {
    color: var(--color-3);
    background-color: transparent;
    font-size: 14px;
}
.site-form .site-form__label.site-form__label_radio {
    color: var(--color-6);
}
.site-form .site-form__politika {
    font-size: 14px;
    margin-top: 15px;
    text-align: center;
    color: var(--grey-color-0);
}
.site-form .site-form__politika a {
    color: var(--black-color-0);
    font-weight: bold;
}
.site-form .site-form__reg {
    font-size: 14px;
    color: #fff;
}
.site-form .site-form__reg:hover {
    color: var(--color-11);
}
.site-form .site-form__label span {
    color: var(--color-11);
}
.site-form .site-form__input.error {
    border-color: var(--red-color-0);
}
.site-form .site-form__text {
    font-size: 12px;
    margin: 5px 0 0 0;
    color: var(--grey-color-1);
}
/*.site-form .site-form__chek {
    border-color: var(--green-color-0);
    margin-top: 0;
}
.site-form .site-form__chek:checked {
    background-color: var(--green-color-0);
}*/
/*.site-form input {
    background-color: var(--color-5) !important;
    color: #000;
    border: none;
    box-shadow: none;
    border-radius: 8px;
    border-bottom: 1px solid var(--color-5);
}
.site-form label {
    color: var(--color-6) !important;
    background-color: transparent;
    font-size: 10px;
}*/

/*.site-form button {
    background-color: var(--color-1);
    color: #000;
    font-size: 14px;
    border-radius: 5px;
    height: 40px;
    min-width: 40px;
    margin: 5px 5px 0 0;
}
.site-form button:hover {
    background-color: var(--color-2);
}*/

/* HEADER ---------------------------------------------------------*/

.small-slider {
    position: relative;
    height: 100%;
    max-width: 450px;
}
.pday-slider {
    height: 100%;
    width: 100%;
    border-radius: 8px;
}
.card-2 {
    height: 100%;
    background-color: #fff;
    padding: 30px;
    overflow: hidden;
}
.card-2 .card-2__title {
    font-weight: 700;
    font-size: 25px;
    line-height: 100%;
    color: #000;
}
.card-2 .card-2__left {
    width: 115px;
}
.card-2 .card-2__img {
    border-radius: 8px;
    overflow: hidden;
}
.card-2 .card-2__rating {
    color: var(--color-1);
    text-align: center;
    margin-top: 10px;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
}
.card-2 .card-2__rating i {
    font-size: 12px;
}
.card-2 .card-2__voting {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    color: var(--color-3);
    text-align: center;
    margin-top: 10px;
}
.card-2 .card-2__price {
    font-weight: 600;
    font-size: 23px;
    line-height: 100%;
    color: #000;
}
.card-2 .card-2__markup {
    font-weight: 600;
    font-size: 15px;
    line-height: 100%;
    color: var(--color-3);
}
.card-2 .card-2__name {
    margin-top: 10px;
}
.card-2 .card-2__name a {
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    color: #000;
}
.card-2 .card-2__name a:hover {
    color: var(--color-1);
}
.card-2 .card-2__more {
    margin-top: 10px;
}
.card-2 .card-2__more a {
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: var(--color-3);
}
.card-2 .card-2__more a:hover {
    color: #000;
}
.time .time__item {
    width: 25px;
    height: 26px;
    background-color: var(--color-5);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    padding-top: 5px;
    color: #000;
    border-radius: 4px;
}
.time .time__delmiter {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}
.time.time_big .time__item {
    width: 40px;
    height: 41px;
    font-size: 16px;
    padding-top: 15px;
}
.time.time_big .time__delmiter {
    font-size: 16px;
}
.card-2 .card-2__body {
    margin-top: 15px;
}
/* MAIN */

/*.main .main__sidebar {
    padding: 0;

}
.main .main__catalog {
    margin: 0;
    padding: 10px 5px;
    background-color: #dedede;
}
.main .main__catalog li {
    position: relative;
    border-radius: 3px;
    z-index: 1;
}
.main .main__catalog li a {
    text-decoration: none;
    font-size: 16px;
    color: #000000;
    font-weight: 500;
    padding: 5px;
}
.main .main__catalog li.sale a,
.main .main__catalog li.spech a {
    color: #bf272e;
}
.main .main__catalog li.sale a span,
.main .main__catalog li.spech a span {
    font-size: 20px;
}
.main .main__catalog li:hover {
    background-color: #bf272e;
}
.main .main__catalog li:hover a,
.main .main__catalog .main__catalog-submenu li:hover a{
    color: #000;
}
.main .main__catalog .main__catalog-submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #dedede;
    z-index: 1;
    width: 250px;
    padding: 5px 10px;
}
.main .main__catalog .main__catalog-submenu li a {
    color: #000000;
}
.main .main__catalog li:hover .main__catalog-submenu {
    display: block;
}
.main .main__dostavka h5 {
    position: relative;
    padding-left: 5px;
    font-size: 22px;
    line-height: 40px;
}
.main .main__dostavka h5:after {
    position: absolute;
    content: '';
    width: 50px;
    height: 2px;
    left: 5px;
    bottom: 0;
    background-color: #cccccc;
}
.main .main__dostavka p{
    font-size: 18px;
    color: #000000;
    font-weight: bold;
    padding: 20px 0 20px 85px;
    background: url(../img_old/dostavka.png) 10px center no-repeat;
    background-size: 60px;
    margin-top: 15px;
}*/

.news {
    padding: 15px;
}
.new-one {
    margin-bottom: 25px;
    border: 1px solid var(--grey-color-2);
}
.new-one .new-one__content {
    padding: 15px;
}
.new-one .new-one__title {
    border-bottom: 1px solid var(--grey-color-2);
    background-color: var(--grey-color-0);
    font-size: 24px;
    padding: 15px;
    line-height: 1.3;
    color: #000;
}
.new-one .new-one__title a{
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid #ffffff;
}
.new-one .new-one__title a:hover{
    border-bottom: none;
}
.new-one .new-one__img {
    max-width: 800px;
    margin-top: 10px;
}
.new-one .new-one__description {
    margin-top: 15px;
}
.new-one .new-one__description p {
    margin-bottom: 10px;
    line-height: 1.2;
}
.new-one .new-one__description img {
    max-width: 800px;
}
.new-one .new-one__description ul {
    padding-left: 30px;
}
.new-one .new-one__description ul li {
    list-style-type: circle;
    line-height: 1.2;
}
.new-one .new-one__date {
    font-weight: bold;
    color: var(--color-3);
    font-size: 14px;
    margin: 0;
}
.first-block {
    margin-bottom: 70px;
    max-height: 358px;
}
.banner-block {
    min-width: 0;
    width: 838px;
    border-radius: 8px;
    /*height: 100%;*/
    /*background-color: var(--color-10);*/
}
.banner-slider {
    height: 100%;
    /*min-height: 342px;*/
}
.banner-slider .swiper-slide {
    text-align: center;
}

.slider-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 15px;
}
.slider-bullet {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-3);
}
.slider-bullet.slider-bullet_active {
    background: var(--color-1);
}
.slider-nav {
    position: absolute;
    z-index: 100;
    color: #fff;
    font-size: 16px;
    top: 50%;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #1c5da7;
    text-align: center;
    padding-top: 11px;
    transform: translateY(-50%);
}
.slider-nav i {
    text-stroke: 1px;
    -webkit-text-stroke: 1px;
    paint-order: stroke;
}
.slider-nav:hover {
    background-color: var(--color-5);
}
.slider-nav.slider-nav_next {
    right: -14px;
}
.slider-nav.slider-nav_prev {
    left: -14px;
}
.slider-nav.slider-nav_disabled {
    display: none;
}
.slider-nav.slider-nav_product {
    top: 100px !important;
}
.slider-next,
.slider-prev {
    position: absolute;
    z-index: 100;
    color: #363636;
    font-size: 36px;
    top: 50%;

}
.slider-next:hover,
.slider-prev:hover {
    color: var(--green-color);
}

.slider-prev {
    left: 15px;
    margin-top: -18px;
}
.slider-next {
    right: 15px;
    top: 50%;
    margin-top: -18px;
}
.slide {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
  
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.slider {
    margin-bottom: 50px;
}
.slider .slider__h {
    font-weight: 700;
    font-size: 35px;
    line-height: 100%;
    color: #fff;
    margin-bottom: 40px;
}
.slider .slider__h.slider__h_line {
    display: flex;
    align-items: end;
    gap: 10px;
    flex-wrap: wrap;
}

.slider .slider__h.slider__h_line::after {
    content: '';
    display: block;
    height: 3px;
    background: #ffffff;
    flex: 1;
    min-width: 30px;
    background: linear-gradient(90deg, #FFFFFF 30%, #3C3D40 90%);
}
.slider .slider__content {
    position: relative;
}
.slider.slider_1 .swiper-slide {
    /*width: auto !important;*/
}
.seo-text {
    background-color: var(--black-color-0);
    padding: 20px 0;
}
.seo-text .seo-text__content {
    padding: 0 40px;
}
.seo-text .seo-text__logo {
    position: relative;
    height: 1px;
    background-color: var(--green-color-0);
}
.seo-text .seo-text__logo img {
    position: absolute;
    width: 100px;
    top: 0;
    right: 80px;
    margin-top: -30px;
}
.seo-text h1 {
    color: #000;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    /*text-align: center;*/
    /*margin: 20px 0 0;*/
    /*padding: 0 0 14px;*/
    padding-bottom: 30px;
}
.seo-text p {
    color: #fff;
    padding: 0;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
}
.seo-text .seo-text__img img{
    border-radius: 30px;
}
.personal-data {
    padding: 20px;
}
.personal-data h1 {
    color: #000;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
}
.personal-data ul{
    padding: 0;

}
.personal-data ul li {
    color: #000;
    padding: 0;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 10px;
    list-style-type: none;
}

.brand-item {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto;
}
.brand-item.brand-item_sm {
    width: 100px;
    height: 100px;
}
.best-cat{
    position: relative;
    width: 200px;
}
.best-cat .best-cat__img {
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
}
.best-cat .best-cat__link {
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
}
.best-cat.best-cat_sm {
    width: 150px;
}
.best-cat.best-cat_sm .best-cat__img {
    height: 150px;
}
.best-cat.best-cat_sm .best-cat__link {
    font-size: 12px;
}
.best-cat:hover .best-cat__link {
    color: var(--color-1);
}
.main-info {
    margin-bottom: 100px;
}
.main-info .main-info__actions {
    width: 400px;
    height: 290px;
    background: url('../img/percent_2.png') center center no-repeat;
    background-color: var(--color-10);
    border-radius: 8px;
    padding: 0 80px 0 40px;
}


.main-info .main-info__zag {
    font-weight: 700;
    font-size: 25px;
    line-height: 100%;
    color: #ffffff;
}
.main-info p {
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    color: #ffffff;
}
.main-info a {
    color: var(--color-1);
    font-weight: 700;
    font-size: 15px;
}

.main-info a:hover {
    color: #000;
}
.main-info .main-info__subscribe {
    height: 290px;
    background: var(--color-10) url('../img/bg-main.png') right center no-repeat;
    background-size: contain;
    border-radius: 8px;
    padding: 0 350px 0 40px;
}
/*  MAIN-END -----------------------------------------------------*/


/* FOOTER -----*/
.footer {
    background-color: #111;
    color: #fff !important;
    border-top: 1px solid var(--color-3)
}
.footer .footer__logo a img{
    /*width: 100px;*/
}
.footer .footer__phone {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-1);
}
.footer .footer__top,
.footer .footer__middle {
    padding: 45px 0;
    border-bottom: 1px solid var(--color-3)
}
.footer .footer__menu {
    /*padding: 0 15px;*/
}
.footer .footer__menu .footer__menu-zag {
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 40px;
}
.footer .footer__menu .footer__menu-li {
    margin-bottom: 5px;
}
.footer .footer__menu .footer__menu-link {
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
}
.footer .footer__menu .footer__menu-link:hover {
    color: var(--color-1);
}
.footzakaz p{
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    color: #fff;
}
.footzakaz .footzakaz__site span {
    color: var(--color-1);
    font-weight: bold;
}

.rekv {
    font-size: 12px;
    color: #fff;
}

/* FOOTER --------------------------------------------------------*/

/* PRODUCT-CAT -----------*/
.category-products {
    /*padding-bottom: 50px;*/
}
.category-products .category-products__filters {
    margin-bottom: 15px;
}
.category-name {
    font-weight: 700;
    font-size: 45px;
    line-height: 100%;
    margin: 30px 0;
    color: #fff;
}

.pagination .pagination__item {
    margin-right: 5px;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid var(--color-3);
}
.pagination .pagination__item.pagination__item_active {
    background-color: var(--color-3);
}
.pagination .pagination__item:hover {
    background-color: var(--color-3);
}
.pagination .pagination__link {
    display: block;
    height: 100%;
    padding-top: 8px;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
}
.sort-products .sort-products__link {
    font-weight: 600;
    font-size: 16px;
    color: #fff;
}
.sort-products a.sort-products__link:hover {
    color: var(--color-11);
}
.sort-products .sort-products__link.active i {
    color: var(--color-11);
}

.subcats-list {
    padding-top: 20px;
}
.subcategory {
    margin-bottom: 10px;
}
.subcategory:last-child {
    margin-bottom: 0;
}
.subcategory .subcategory__name {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}
.subcategory .subcategory__name:hover {
    color: var(--color-11);
}
.subcategory .subcategory__name span {
    font-size: 10px;
    color: var(--color-3);
}
.prod-cat {
    position: relative;
    width: 200px;
    height: 460px;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto;
}

.prod-cat .prod-cat__img{
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.prod-cat .prod-cat__name {
    height: 50px;
    margin-top: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Количество строк */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.prod-cat .prod-cat__name a,
.boc .boc__name span{
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: #fff;
}
.prod-cat .prod-cat__name a:hover{
    color: var(--color-1);
}
.prod-cat .prod-cat__more {
    margin-top: 10px;
}
.prod-cat .prod-cat__more a {
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: var(--color-3);
}
.prod-cat .prod-cat__more a:hover {
    color: #000;
}
.prod-cat .prod-cat__rating {
    color: var(--color-1);
    margin-top: 15px;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
}
.prod-cat .prod-cat__voting {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    color: var(--color-3);
    margin-left: 10px;
}

.prod-cat .prod-cat__price {
    margin-top: 15px;
}
.prod-cat .prod-cat__price .prod-cat__price-del {
    font-weight: 600;
    font-size: 15px;
    line-height: 100%;
    color: var(--color-3);
}
.prod-cat .prod-cat__price .prod-cat__price-val {
    font-weight: 600;
    font-size: 23px;
    line-height: 100%;
    color: #fff;
}
.action-price {
    color: var(--color-11) !important;
}
.prod-cat .prod-cat__info {
    position: absolute;
    top: 5px;
    left: 0;

}
.action-bage {
    display: inline-block;
    padding: 6px 8px;
    font-size: 10px;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid #ffffff;
    margin: 0;
    opacity: 0.7;
    transition: opacity 0.3s;
    line-height: 1;
}
.action-bage:hover {
    opacity: 1;
}
.action-bage.action-bage_new {
    background-color: var(--color-12);
}
/*.prod-cat .prod-cat__info-new img {
    height: 30px;
    animation: 1200ms ease 0s normal none 1 running shake;
    animation-iteration-count: infinite;
    -webkit-animation: 1200ms ease 0s normal none 1 running shake;
    -webkit-animation-iteration-count: infinite;
}*/
.action-bage.action-bage_action {
    color: #000;
    background-color: var(--color-1);
}
.action-bage.action-bage_free {
    color: #000;
    background-color: var(--color-3);
}


/*.prod-cat .prod-cat__shot-descr {
    height: 100px;
    overflow: hidden;
    padding: 15px 0;
    border-bottom: 1px solid #dedede;
}
.prod-cat .prod-cat__shot-descr p {
    margin: 0;
    line-height: 14px;
    font-size: 12px;
    color: #000000;
}
.prod-cat .prod-cat__har{
    padding: 3px 0;
    font-size: 14px;
    border: 2px solid #777777;
    border-radius: 5px;
    background-color: transparent;
}*/
.prod-cat .prod-cat__bottom {
    padding-top: 8px;
}




@-webkit-keyframes blink {
    0% {
        color: var(--color-1);
    }
    50% {
        color: #000;
    }
    100% {
        color: var(--color-1);
    }
}

@keyframes blink {
    0% {
        color: var(--color-1);
    }
    50% {
        color: #000;
    }
    100% {
        color: var(--color-1);
    }
}

.prod-cat .prod-cat__favorite {
    position: absolute;
    top: 10px;
    right: 18px;
}

.prod-cat .prod-cat__buy-oneclick {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    color: var(--color-3);
    margin-left: 10px;
}
.prod-cat .prod-cat__buy-oneclick:hover {
    color: #000;
}

.prod-cat .prod-cat__no-product {
    font-size: 14px;
    color: var(--black-color-0);
    font-weight: bold;
}
.char-name,.char-value {
    font-size: 12px;
    /*font-weight: bold;*/
}
.char-name {
    color: var(--black-color-2);
}
.char-value {
    color: var(--red-color-0);
}
.modal-close-full {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #000;
    font-size: 16px;
}
.modal-close-full:hover {
    color: var(--color-1);
}
.catalog {
    background-color: #3C3D40;
    width: 100% !important;
}
.catalog .catalog__left {
    /*border-right: 4px solid var(--color-7);*/
    background: #ffffff;
}
.catalog .catalog__right {
    max-width: 100%; /* или фиксированная ширина */
    overflow: hidden;
}
.catalog .catalog__logo {
    border-right: 2px solid var(--color-5);
    padding: 20px 15px 38px 15px;
    text-align: center;
}
.catalog .catalog__h {
    color: #000;
    text-align: center;
    font-weight: bold;
    padding-bottom: 15px;
    border-right: 2px solid var(--color-5);
}
.catalog .catalog__categories {
    background-color: #ffffff;
}
.category .category__link {
    display: block;
    padding: 12px 16px;
    background-color: #ffffff;
    color: #000;
    border-right: 2px solid var(--color-5);
    border-bottom: 1px solid #0000003f;
}
.category .category__link:hover,
.category .category__link.active{
    background-color: #03081b;
    border-right: 2px solid var(--color-1);
    color: #ffffff;
}
.catalog .catalog__brands {
    min-width: 350px;
    border-left: 2px solid #0000003f;
    background: #ffffff;
}
.catalog .catalog__slider {
    padding: 15px 30px;
    border-bottom: 2px solid #0000003f;
    background-color: #ffffff;
}
.catalog .catalog__subcategories {
    padding: 15px;
    background: #ffffff;
}
.catalog .catalog__subcategory {
    padding: 30px;
    transition: opacity 0.3s ease;
}

/* Product page -------------*/

.product {
    /*padding: 15px;*/
    /*width: 400px;*/
}
.product h1 {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
    color: #000;
    margin-bottom:15px;
}
.product .product__also-block {
    /*width: 300px;
    padding: 15px 0;
    background-color: var(--color-10);
    border-radius: 8px;*/
}
.product .product__shops {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dashed #000000;
}
.product .product__links {
    padding: 20px 0;
}
.product .product__links li {
    font-size: 14px;
    line-height: 20px;
}
.product .product__links li a{
    color: #000;
    text-decoration: none;
    border-bottom: 1px dotted #ffffff;
    font-weight: bold;
}
.product .product__links li a:hover {
    border: none;
}
.product .product__img-block {
    max-width: 400px;
    width: 100%;
}
.product .product__big-img {
    border: 1px solid #DEDEDE;
    border-radius: 5px;
    overflow: hidden;
}
.product .product__gallery {
    position: relative;
}
.product .product__gallery .product__gallery-thumb img{
    margin: 0;
}
.product .product__gallery .product__gallery-thumb .xactive{
    box-shadow: none;
    border: 1px solid var(--color-1);
}
.product .product__info-block {
    padding: 0 25px;
}
.product .product__instock {
    font-size: 16px;
    font-weight: 400;
}
.product .product__price {
    font-size: 24px;
    font-weight: bold;
}
.product .product__price.action {
    color: var(--color-11);
    /*-webkit-animation: blink 2s linear infinite;
    animation: blink 2s linear infinite;*/
}
.product .product__price.product__price_markup {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-3);
}
.product .product__price-info {
    margin: 10px 0 0 0;
    font-size: 10px;
    color: #777777;
}
.product .product__buy {
    padding-bottom: 20px;
    /*margin-bottom: 20px;
    border-bottom: 1px dashed #000000;*/
}
.product .product__chars {
    margin-top: 25px;
}

.product .product__description {
    font-size: 14px;
    line-height: 1.4;
}
.product .product__description ul {
    padding-left: 25px;
}
.product .product__description b {
    color: var(--color-6);
}
.product .product__description ul li{
    list-style-type: disc;
}
.product .product__description table .title td{
    background-color: var(--color-2);
    color: var(--color-6);
}
.product .product__description table td {
    background-color: var(--color-10);
    color: #000;
    font-size: 14px;
    line-height: 1.4;
}
.product .product__brief {
    font-size: 14px;
    line-height: 18px;
}
.also-products {
    width: 300px;
    padding: 15px 10px;
    background-color: var(--color-10);
    border-radius: 8px;
}
.also-products h5 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}
.also-product {
    max-width: 290px;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--color-5);
    /*margin: 5px;
    border-radius: 5px;
    background-color: var(--color-3);*/
}
.also-product .also-product__img{
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
}
.also-product .also-product__name {
    font-weight: 400;
    font-size: 10px;
    line-height: 14px;
    color: #000;
}
.also-product .also-product__name:hover {
    color: var(--color-1);
}
.also-product .also-product__price {
    font-weight: 600;
    font-size: 14px;
}
.also-product .also-product__price.action {
    color: var(--color-11);
}
.also-product .also-product__price.also-product__price_markup {
    color: var(--color-3);
    font-size: 12px;
}
.mag {
    padding: 10px;
    background-color: var(--color-4);
    border-radius: 8px;
}
.mag .mag__tel {
    color: var(--color-3);
    font-size: 14px;
    margin: 0;
}
.mag .mag__adr {
    color: #000;
    font-size: 16px;
    margin-bottom: 10px;
}
.mags-modal .mags-modal__title {
    font-size: 14px;
    color: #242424;
}
.mags-title {
    font-size: 10px;
}
.product-seo {
    font-size: 14px;
    color: #666666;
}

.taste .taste__name {
    border-radius: 8px;
    font-weight: 400;
    font-size: 14px;
}

.taste .taste__val {
    padding: 4px 7px;
    background-color: var(--color-3);
    border-radius: 10px;
    font-weight: 400;
    font-size: 12px;
    user-select: none;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
}
.taste .taste__val:hover {
    background-color: var(--color-13);
    color: var(--color-10);
}
.taste .taste__item input[type=radio]:checked + .taste__val{
    background-color: var(--color-13);
    color: var(--color-10);
}
.boc-product .boc-product__name{
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}
.boc-product .boc-product__img img{
    border-radius: 8px;
}
.boc-product .boc-product__price {
    font-size: 16px;
    font-weight: 600;
}
.boc-product .boc-product__price.action {
    color: var(--color-11);
}
.boc-product .boc-product__price.boc-product__price_markup {
    font-size: 14px;
    color: var(--color-3);
}

/* CART -------------------*/
.line-cart{
    position: fixed;
    height: 56px;
    width: 100%;
    bottom: 0;
    background-color: #363636;
    z-index: 30;
}
.cart-button {
    position: relative;
    color: #000;
    font-size: 50px;
}

.cart-phone {
    color: #000;
    font-size: 18px;
    margin: 0;
}
.confirm-order {
    color: #000;
    padding: 10px 25px;
    border: 2px solid #ffffff;
    font-size: 18px;
    text-transform: uppercase;
}
.favor-button {
    position: relative;
    color: #fccd04;
    font-size: 50px;
}
/*.favor-num {
    position: absolute;
    display: block;
    width: 18px;
    height: 18px;
    font-size: 11px;
    background-color: var(--green-color-0);
    color: #000;
    top: -8px;
    right: 20px;
    border-radius: 50%;
    padding-top: 4px;
    text-align: center;
    font-weight: 600;
}*/
.favor-button:hover {
    color: #55ad38;
}
.cart .cart__wrapper {
    padding: 15px 0;

}

.cart .cart__inner {
    /*border-top: 1px solid #777777;*/
}
.cart .cart__products {
    /*padding-top: 20px;*/
}
.cart-product {
    /*margin: 10px 0;*/
    position: relative;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--color-3);
}
.cart-product.cart-product_disable {
    background-color: var(--color-3);
}
.cart-product .cart-product__name {
    /*width: 100%;*/
}
.cart-product .cart-product__name a{
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
}
.cart-product .cart-product__name a:hover{
    color: var(--color-1);
}
.cart-product .cart-product__right {
    padding-top: 30px;
}
.cart-product .cart-product__instock {
    font-weight: 400;
    font-size: 15px;
    color: var(--color-3);
}
.clear-cart {
    font-weight: 700;
    font-size: 15px;
    color: var(--color-3);
}
.clear-cart:hover {
    color: #000;
}
.cart .cart__info {
    background-color: var(--color-10);
    border-radius: 8px;
    padding: 25px;
}
.cart .cart__info h5 {
    font-weight: 700;
    font-size: 25px;
    line-height: 100%;
    color: #000;
    margin-bottom: 40px;
}
.cart .cart__action {
    font-size: 12px;
    color: var(--color-11);
    margin-top: 5px;
    margin-bottom: 0;
    font-weight: bold;
}
.cart-product .cart-product__img {
    width: 150px;
}
.cart-product .cart-product__img img {
    border-radius: 8px;
}
.cart-product .cart-product__quantity {
    /*width: 100px;*/
    padding: 0 10px;
}

.cart-product .cart-product__summ {
    margin-top: 20px;
    text-align: right;
}
.cart-product .cart-product__price {
    font-weight: 600;
    font-size: 22px;
    line-height: 100%;
    color: #000;
    margin-bottom: 0;
}
.cart-product .cart-product__price.cart-product__price_markup {
    font-size: 18px;
    color: var(--color-3);
}
.cart-product .cart-product__del {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    color: var(--color-3);
}
.cart-product .cart-product__del:hover{
    color: #000;
}
.cart .cart__summ {
    padding: 10px 0;
    font-size: 24px;
    color: #000000;
}
.cart .cart__summ span {
    font-weight: bold;
}
.cart h1 {
    font-size: 36px;
    color: var(--black-color-0);
    font-weight: 600;
    text-align: center
}
.cart .cart__left {

}
.cart .cart__right {
    width: 450px;
}
.cart .cart__zag {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}
.cart .cart__form-section {
    border-top: 1px solid #777777;
    padding: 15px 0;
}
/*.cart .cart__tabs {
    margin-top: 15px;
}*/
.cart .cart__tabs .cart__tabs-link {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    background-color: var(--color-3);
}
.cart .cart__tabs .cart__tabs-link.active {
    background-color: var(--color-1);
    /*border-bottom: 1px solid var(--grey-color-0);*/
}
.cart .cart__tab-content {
    padding: 15px 0;
}
.cart .cart__user p {
    color: #000;
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1;
}
.cart .cart__user p span {
    color: var(--color-11);
    /*font-weight: bold;*/
}
.cart .cart__no-instock {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--color-11);
    font-weight: bold;
}
.cart .cart__itog .cart__itog-separator {
    border-bottom: 1px dotted #ffffff;
}
.prod-minus,
.prod-plus {
    padding: 2px;
    cursor: pointer;
    background-color: var(--color-3);
    border-radius: 5px;
}
.prod-minus,
.prod-plus,
.prod-qnt{
    font-size: 20px;
}
.prod-qnt {
    margin: 0 10px;
}
.prod-minus:hover,
.prod-plus:hover {
    color: #000;
}
.prod-warning {
    display: none;
    font-size: 12px;
    color: var(--red-color);
    font-weight: bold;
}
.order-form .order-form__label {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: bold;
    color: #000;
}
.shipping-price {
    color: var(--color-11);
}
.order-form .order-form__input {
    width: 100%;
    font-size: 16px;
    padding: 12px 10px;
    color: var(--color-11);
    resize: none;
    background-color: var(--color-10) !important;
    border-radius: 8px;
    border: none;
    border-bottom: 1px solid var(--color-10);
}

/*.order-form .order-form__input:-webkit-autofill{
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    -webkit-text-fill-color: inherit !important;
    caret-color: currentColor !important;
}

.order-form .order-form__input:-webkit-autofill:focus,
.order-form .order-form__input:-webkit-autofill:hover,
.order-form .order-form__input:-webkit-autofill:active
{
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    background-color: transparent !important;
}*/
.order-form .order-form__text {
    font-size: 14px;
    margin: 5px 0 0 0;
    color: #000;
    background-color: var(--color-10);
}
.order-form .order-form__helper {
    color: var(--green-color-0);
}
/* FILTERS ------------------------------------*/
.filterbox {
    padding: 10px 0;
    width: 270px;
    overflow: hidden;
}

.filter {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-3);
}
.filter:last-child {
    border: none;
}
.filter .filter__name i {
    transform: rotate(0deg);
    transition: transform 0.2s ease-in-out;
}
.filter .filter__name:not(.collapsed) i {
    transform: rotate(180deg);
}
.filter .filter__list {
    overflow-x: auto;
    margin-bottom: 10px;
    /*-ms-overflow-style: none;
    scrollbar-width: none;*/
    transition: height 0.9s ease;
}
.filter .filter__list.filter__list_big {
    height: 300px;
}
.filter .filter__list.open {
    height: auto;
}
.filter .filter__name {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 0;
}
.filter .filter__active {
    font-size: 10px;
    color: #fff;
    background-color: var(--color-1);
    padding: 2px 5px;
    border-radius: 8px;
}
.filter-range {
    padding: 15px 0 0 0;
}
.filter-range .filter-range__input{
    font-weight: 400;
    font-size: 15px;
    color: #fff;
}
.filter-range .filter-range__slider{
    padding: 0 7px;
}
.noUi-horizontal {
    height: 4px;
}
.noUi-target {
    background: #ffffff;
    border-radius: 0;
    border: none;
    box-shadow: none;
}
.noUi-connect {
    background: var(--color-3);
}
.noUi-horizontal .noUi-handle {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    top: -5px;
}
.noUi-horizontal .noUi-handle.noUi-handle-upper {
    right: -8px;
}
.noUi-horizontal .noUi-handle.noUi-handle-lower {
    right: -6px;
}
.noUi-touch-area {
    height: 100%;
    width: 100%;
}
/*.noUi-handle-lower {
    right: -16px !important;
}
.noUi-handle-upper {
    right: -2px !important;
}*/
.noUi-handle {
    border: none;
    box-shadow: none;
    background-color: var(--color-1);
}
.noUi-handle:after, .noUi-handle:before {
    display: none;
}
.input-text {
    background-color: var(--color-10);
    font-size: 14px;
    padding: 11px 14px;
    border: none;
    width: 100%;
    color: #000;
    border-radius: 24px;
}
.filter-checkbox {
    margin-bottom: 12px;
}
.filter-checkbox .filter-checkbox__label {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}
.filter-checkbox .filter-checkbox__label span{
    font-size: 10px;
    color: var(--color-3);
}
.filter-checkbox .filter-checkbox__input {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid var(--color-3);
    background-color: transparent;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 4px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.filter-checkbox .filter-checkbox__input:checked {
    background-color: var(--color-1);
    border-color: var(--color-1);
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'><path d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0'/></svg>");
}
/*.noUi-touch-area {
    height: 8px;
    width: 8px;
    background-color: #000;
    border-radius: 50%;
}*/
.open-var {
    color: #000;
    border-bottom: 1px dashed #ffffff;
    cursor: pointer;
}

.suc-reg {
    padding: 50px 0;
}
.suc-reg h1 {
    font-size: 36px;
    color: var(--color-11);
    line-height: 1.2;
}
.suc-reg p {
    font-size: 18px;
    color: #000;
    line-height: 1.2;
    margin: 40px 0;
}
.suc-reg h3 {
    font-size: 28px;
    line-height: 1.2;
    color: var(--color-6);
}
.breadcrumb {
    padding: 15px 0;
    margin-bottom: 0;
    overflow-x: auto;
    flex-wrap: nowrap;
}
.breadcrumb .breadcrumb-item,
.breadcrumb .breadcrumb-item a{
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}
.breadcrumb .breadcrumb-item::before {
    color: #fff;
}
.breadcrumb .breadcrumb-item a:hover{
    /*text-decoration: underline;*/
    color: var(--color-1);
}

/*Static pages ----------------*/
.static-page {
    background-color: var(--black-color-0);
    color: #fff;
    font-size: 16px;
    height: 100%;
}
.static-page h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}
.static-page ul {
    padding-left: 20px;
    /*list-style-position: inside;*/
}
.static-page ul li {
    line-height: 1.2;
    list-style-type: circle;
}
.static-page p {
    line-height: 1.2;
}


/*product rating */
.rating {

}

.rating p {
    margin-bottom: 5px;
    color: var(--color-3);
    font-size: 12px;
}
.rating p span {
    font-weight: bold;
    color: var(--color-1);
}
.rating .rating__base{
    position: relative;
    width: 85px;
    height: 16px;
}
.rating .rating__stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/star.png) no-repeat bottom left;
    z-index: 20;
}

.rating .rating__bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--color-1);
    z-index: 10;
}
/*.prod-cat:hover .rating .rating__stars {
    background: url(../img_old/star_3.png) no-repeat bottom left;
}
.prod-cat:hover .rating .rating__bg {
    background-color: #000;
}*/
.rating .rating__voting .form-check {
    font-size: 14px;
    font-weight: bold;
    line-height: 21px;
    color: #000;
}
.rating .rating__voting .form-check-input:checked {
    background-color: var(--color-1);
    border-color: var(--color-1);
}
.rating .rating__voting .rating__voting-btn {
    background-color: var(--color-3);
    color: #000;
    border-radius: 5px;
    font-size: 10px;
}
.rating .rating__voting .rating__voting-btn:hover{
    background-color: var(--color-10);
}
.rating .rating__voting .rating__voting-send {
    font-size: 12px;
    color: #000;
    padding: 3px 5px;
    border-radius: 5px;
    background-color: var(--color-1);
}
.rating .rating__voting .rating__voting-send:hover {
    background-color: var(--color-2);
}
.rating-form {
    background-color: var(--color-3);
}
.sub-text {
    background-color: var(--grey-color-0);
    color: #000;
    padding: 15px;
    font-size: 14px;
    margin-top: 20px;
}
.discussions {
    padding: 30px 15px;
}
.discussions .discussions__title {
    font-size: 14px;
    color: var(--black-color-0);
    margin-bottom: 10px;
    line-height: 1.2;
}
.reviews {
    padding: 15px 0;
}
.review {
    padding: 15px;
    margin-bottom: 15px;
    background-color: var(--color-10);
    border-radius: 8px;
}
.review .review__date {
    margin-bottom: 5px;
    font-size: 12px;
    color: var(--grey-color-0);
}
.review .review__name {
    margin: 0;
    font-size: 16px;
    color: var(--black-color-0);
    font-weight: bold;
}
.review .review__shop {
    font-size: 14px;
    color: var(--black-color-0);
}
.review .review__shop span {
    color: var(--color-11);
    font-weight: bold;
}
.review .review__topic {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--color-6);
    font-weight: bold;
}
.review .review__descr {
    margin-bottom: 0;
    font-size: 14px;
}
.review .review__rating {
    color: var(--color-1);
}
.kontakty {
    /*padding: 15px;*/
}
.kontakty .kontakty__map {
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}
.shop-list {
    margin-bottom: 0;
}
.shop-list .shop-list__mag {
    background-color: var(--color-3);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}
.shop-list .shop-list__mag p {
    color: #fff;
    margin-bottom: 10px;
    font-size: 16px;
}
.shop-list .shop-list__mag p:last-child {
    margin-bottom: 0;
}
.shop-list .shop-list__mag .shop-list__mag-adr {
    color: var(--color-11);
    font-size: 20px;
}
.shop-list .shop-list__mag p span{
    font-weight: bold;
}
.modal .modal__close {
    position: absolute;
    padding: 3px;
    color: #fff;
    top: 5px;
    right: 5px;
    font-size: 24px;
    z-index: 10;
}
.modal .modal__close:hover {
    color: var(--color-1);
}

/*.review-form .review-form__input:focus-visible {
    outline: none;
}*/
.form-modal {
    position: relative;
    pointer-events: auto;
}
.form-modal .form-modal__content {
    overflow: hidden;
    background-color: var(--color-10);
    border-radius: 8px;
    -webkit-box-shadow: 0px 0px 13px 5px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0px 0px 13px 5px rgba(0, 0, 0, 0.6);
    box-shadow: 0px 0px 13px 5px rgba(0, 0, 0, 0.6);
}
.form-modal .form-modal__header {
    padding: 25px 15px;
}
.form-modal .form-modal__h {
    color: #fff;
    font-size: 24px;
    text-align: center;
}
.form-modal .form-modal__body {
    padding: 0 15px 15px 15px;
}
.claim-title {
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
}
.popup-form .popup-form__input{
    background-color: var(--color-5) !important;
    color: #000;
    border: none;
    box-shadow: none;
    border-radius: 8px;
    border-bottom: 1px solid var(--color-5);
}
.popup-form .popup-form__input.error {
    border-bottom: 1px solid var(--color-1);
}

.popup-form textarea.popup-form__input{
    height: 100px;
}
.popup-form .popup-form__label {
    color: var(--color-6) !important;
    background-color: transparent;
}
.popup-form .popup-form__shop {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}
.popup-form .popup-form__shop span {
    color: var(--color-6);
}
.popup-form .popup-form__reg {
    font-size: 12px;
    font-weight: 400;
    color: #000;
}
.popup-form .popup-form__reg:hover {
    color: var(--color-11);
}
.popup-form .popup-form__text {
    font-size: 12px;
    color: var(--color-11);
    margin-top: 5px;
}
.form-politika {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
}
.form-politika span,
.form-politika a {
    color: var(--color-11);
}
.form-politika span:hover,
.form-politika a:hover{
    color: var(--color-1);
}
.form-floating>textarea:focus~label::after, .form-floating>textarea:not(:placeholder-shown)~label::after {
    background-color: transparent;
}
.review-result-js {
    display: none;
}

.result-bage {
    font-size: 10px;
}
.result {
    padding: 15px;
    margin: 5px 0;
    border-radius: 15px;
}
.result h6{
    font-size: 24px;
}
.result p {
    font-size: 18px;
    margin: 15px 0 0 0;
    line-height: 1.3;
}
.result.result_success {
    background-color: var(--green-color-4);
    border: 2px solid var(--green-color-1);
    color: var(--black-color);
}
.result.result_error {
    background-color: var(--red-color-4);
    border: 2px solid var(--red-color-3);
    color: var(--black-color);
}
.result.result_warning {
    background-color: var(--yellow-color-4);
    border: 2px solid var(--yellow-color-1);
    color: var(--black-color);
}

.registration {
    padding: 30px 15px;
}
.success-block {
    padding: 20px;
    border: 2px solid var(--green-color-1);
    background-color: var(--green-color-4);
    color: var(--brown-color-2);
    text-align: center;
    border-radius: 15px;
}
.favorites {
    padding: 30px 15px;
}
.profile {
    padding-top: 30px;
}
.profile .profile__sidebar{
    width: 200px;
    background-color: var(--black-color-0);
}
.profile .profile__menu a{
    text-decoration: none;
    color: #000;
    font-size: 18px;
}
.profile .profile__menu a.active {
    color: var(--color-11);
}
.profile .profile__content {
    background-color: var(--color-10);
    padding: 20px 40px;
    border-radius: 8px;
}
.profile .profile__h {
    font-size: 25px;
    font-weight: bold;
}
.profile-settings h5 {
    font-size: 18px;
    margin-bottom: 25px;
}
.user .user__block {
}
.user .user__data {
    margin-bottom: 10px;
}
.user .user__data:last-child {
    margin-bottom: 0;
}
.user .user__data p {
    margin: 0;
    font-size: 14px;
}
.user .user__data .user__data-title {
    min-width: 100px;
}
.user .user__data .user__data-title.user__data-title_150 {
    min-width: 150px;
}
.user .user__data .user__data-value {
    font-weight: bold;
}
.profile-data .profile-data__input {
    border: none;
    border-bottom: 2px solid var(--black-color-0);
    font-size: 14px;
}
.profile-data .profile-data__input:hover,
.profile-data .profile-data__input:focus{
    border-color: var(--green-color-0);
}
.profile-data .profile-data__label {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 12px;
}
.profile-data .profile-data__gender {
    font-size: 14px;
}
.profile-data .profile-data__error {
    font-weight: bold;
    font-size: 12px;
    color: var(--red-color-0);
}
.acount .acount__label {
    font-weight: bold;
    font-size: 12px;
    color: var(--color-6);
}
.acount .acount__value {
    font-size: 14px;
}
.acount .acount__change {
    font-size: 12px;
    color: var(--color-11);
}
.order-result{
    padding: 25px 15px;
}
.order-result .order-result__h {
    color: var(--red-color);
    margin-bottom: 15px;
}
.order-result p{
    font-size: 16px;
}
.profile-order {
    margin-bottom: 10px;
    padding: 15px;
    background-color: var(--color-5);
    border-radius: 8px;
}
.profile-order .profile-order__number{
    font-size: 18px;
    margin-bottom: 10px;
}
.profile-order .profile-order__number span {
    color: var(--color-11);
    font-weight: bold;
}
.profile-order .profile-order__info{
    font-size: 12px;
    margin: 0;
}
.profile-order .profile-order__info span{
    color: var(--color-11);
}
.profile-order .profile-order__table {
    font-size: 12px;
    margin: 0;
}
.profile-order .profile-order__detail {
    font-size: 20px;
    color: #000;
    transition: transform 0.2s;
}
.profile-order .profile-order__detail.collapsed{
    transform: rotate(180deg);
}

.profile-order .profile-order__table th {
    font-size: 12px;
    color: var(--color-11);
}
.profile-order .profile-order__table td {
    font-size: 12px;
    color: #000;
}
.copyright {
    font-size: 10px;
    color: #fff;
    padding: 20px 0;
    margin: 0;
    text-align: center;
}
.viewed-products h4 {
    padding: 10px 15px;
    background-color: var(--green-color-0);
    color: #000;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}
.viewed-products .viewed-products__list {
    position: relative;
    background-color: var(--grey-color-4);
}
/*.order {
    padding: 30px 15px;
}
.order .order__h {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 30px;
}
.order .order__descr {
    font-size: 16px;
}
.order .order__descr span{
    font-size: 18px;
    font-weight: bold;
}*/
.mags-list {
    margin: 0;
}
@keyframes shake {
    0% {
        transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
    }
    10% {
        transform: rotateZ(-30deg);
        -ms-transform: rotateZ(-30deg);
        -webkit-transform: rotateZ(-30deg);
    }
    20% {
        transform: rotateZ(15deg);
        -ms-transform: rotateZ(15deg);
        -webkit-transform: rotateZ(15deg);
    }
    30% {
        transform: rotateZ(-10deg);
        -ms-transform: rotateZ(-10deg);
        -webkit-transform: rotateZ(-10deg);
    }
    40% {
        transform: rotateZ(7.5deg);
        -ms-transform: rotateZ(7.5deg);
        -webkit-transform: rotateZ(7.5deg);
    }
    50% {
        transform: rotateZ(-6deg);
        -ms-transform: rotateZ(-6deg);
        -webkit-transform: rotateZ(-6deg);
    }
    60% {
        transform: rotateZ(5deg);
        -ms-transform: rotateZ(5deg);
        -webkit-transform: rotateZ(5deg);
    }
    70% {
        transform: rotateZ(-4.28571deg);
        -ms-transform: rotateZ(-4.28571deg);
        -webkit-transform: rotateZ(-4.28571deg);
    }
    80% {
        transform: rotateZ(3.75deg);
        -ms-transform: rotateZ(3.75deg);
        -webkit-transform: rotateZ(3.75deg);
    }
    90% {
        transform: rotateZ(-3.33333deg);
        -ms-transform: rotateZ(-3.33333deg);
        -webkit-transform: rotateZ(-3.33333deg);
    }
    100% {
        transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
    }
}

@-webkit-keyframes shake {
    0% {
        transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
    }
    10% {
        transform: rotateZ(-30deg);
        -ms-transform: rotateZ(-30deg);
        -webkit-transform: rotateZ(-30deg);
    }
    20% {
        transform: rotateZ(15deg);
        -ms-transform: rotateZ(15deg);
        -webkit-transform: rotateZ(15deg);
    }
    30% {
        transform: rotateZ(-10deg);
        -ms-transform: rotateZ(-10deg);
        -webkit-transform: rotateZ(-10deg);
    }
    40% {
        transform: rotateZ(7.5deg);
        -ms-transform: rotateZ(7.5deg);
        -webkit-transform: rotateZ(7.5deg);
    }
    50% {
        transform: rotateZ(-6deg);
        -ms-transform: rotateZ(-6deg);
        -webkit-transform: rotateZ(-6deg);
    }
    60% {
        transform: rotateZ(5deg);
        -ms-transform: rotateZ(5deg);
        -webkit-transform: rotateZ(5deg);
    }
    70% {
        transform: rotateZ(-4.28571deg);
        -ms-transform: rotateZ(-4.28571deg);
        -webkit-transform: rotateZ(-4.28571deg);
    }
    80% {
        transform: rotateZ(3.75deg);
        -ms-transform: rotateZ(3.75deg);
        -webkit-transform: rotateZ(3.75deg);
    }
    90% {
        transform: rotateZ(-3.33333deg);
        -ms-transform: rotateZ(-3.33333deg);
        -webkit-transform: rotateZ(-3.33333deg);
    }
    100% {
        transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
    }
}
.page-404 {
    padding: 15px;
}
.page-404 h1 {
    font-size: 150px;
    font-weight: bold;
    color: var(--black-color-0);
    margin-bottom: 30px;
}
.page-404 .page-404__no {
    text-align: center;
    font-size: 22px;
    color: var(--black-color-0);
}
.manager-panel {
}
/*.manager-panel:hover {
    opacity: 1;
}*/
.panel-link {
    border-left: 1px solid #000000;
    height: 100%;
    color: #000000;
    text-decoration: none;
}
.panel-link:hover {
    background-color: var(--yellow-color-1);
}

.soglasie p,
.soglasie ul li{
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
}
.soglasie span {
    color: var(--color-11);
}
.products-targets {
    margin-top: 50px;
}
.products-targets h4 {
    font-weight: 700;
    font-size: 35px;
    line-height: 100%;
    color: #fff;
}
.target {
    max-width: 310px;
    height: 90px;
    background-color: #03081b;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: #ffffff;
    padding: 0 16px;
    border-radius: 8px;
    transition: color 0.3s;
}
.target.target_sm {
    padding: 0 12px;
    font-size: 14px;
    height: 40px;
    width: 160px;
    text-align: center;
}
.target:hover {
    color: var(--color-1);
}
.search-form .search-form__inner {
    border-radius: 5px;
    background-color: #0000003f;
}
.search-form input {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    border: none;
    color: #000;
    padding: 14px 10px;
    background-color: transparent;
}
.search-form button {
    background-color: var(--color-1);
    color: #000;
    font-size: 14px;
    border-radius: 5px;
    height: 40px;
    min-width: 40px;
    margin: 5px 5px 0 0;
    transition: all 0.3s;
}
.search-form button:hover {
    background-color: var(--color-2);
}
.min-w-0 {
    min-width: 0;
}
.mobile-catalog .mobile-catalog__content {
    position: relative;
}
.mobile-catalog .mobile-catalog__header {
    padding: 15px;
    border-bottom: 1px solid #ffffff;
}
.mobile-catalog .mobile-catalog__header img {
    height: 60px;
    object-fit: contain;
}
.mobile-categories {
    /*position: relative;*/
}
.mobile-categories .mobile-categories__main {
    font-size: 18px;
    color: #fff;
    line-height: 1;
}
.mobile-categories .mobile-categories__subcat {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform: translateX(100%);
    background-color: #3C3D40;
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s ease;
    padding: 15px;
}
.mobile-catalog .mobile-categories__subcat.active {
    transform: translateX(0);
    visibility: visible;
}
.mobile-categories .mobile-categories__item,
.mobile-categories .mobile-categories__link{
    font-size: 16px;
    color: #fff;

}
.mobile-categories .mobile-categories__item{
    padding: 10px 0;
    border-bottom: 1px solid var(--color-3);
}
.mobile-categories .mobile-categories__item.mobile-categories__item_parent .mobile-categories__link{
    font-size: 20px;
    color: var(--color-11);
}
.back-button {
    font-size: 14px;
    color: var(--color-11);
    margin-bottom: 15px;
}
/* `xxl` applies to x-large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {
    .news {
        padding: 0;
    }
    .personal-data {
        padding: 0;
    }
}

@media (max-width: 1250px) {
    .card-2 {
        padding: 15px;
    }
}

/* `xl` applies to large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
    .first-block {
        max-height: none;
    }
    .banner-block {
        width: 100%;
    }
    .slider-nav.slider-nav_next {
        right: 0px;
    }
    .slider-nav.slider-nav_prev {
        left: 0px;
    }
    .banner-slider {
        height: auto;
    }
    .main-info .main-info__subscribe {
        padding: 0 40px 0 40px;
    }
    .filterbox {
        background-color: #3C3D40;
        padding: 15px 20px 10px 10px;
        width: auto;
        overflow: auto;
    }
    .filterbox .filterbox__header {
        border-bottom: 1px solid #ffffff;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }
    .filterbox .filterbox__header h5 {
        color: #000;
    }
    .category-name {
        margin-top: 0;
    }
    /*.slogan-block {
        height: 500px;
    }*/
    /*.shops-list {
        width: 100%;
    }*/
    /*.cart-product .cart-product__name a {
        font-size: 16px;
    }*/
}

/* `lg` applies to medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
    .first-block {
        margin-bottom: 35px;
    }
    .slider .slider__h {
        font-size: 30px;
        margin-bottom: 30px;
    }
    .mobile-menu {
        background-color: var(--color-4);
    }
    .mobile-menu .offcanvas-header {
        color: #000;
        border-bottom: 1px solid #ffffff;
    }
    .mobile-menu .mobile-menu__close {
        color: #fff;
    }
    .phone, .punkt {
        font-size: 12px;
    }
    .header .header__bottom .header__bottom-content {
        height: 50px;
        padding: 5px 0;
    }
    .header .header__logo {
        width: 200px;
    }
    .he .he__icon {
        margin: 0;
    }
    .he .he__status {
        display: none;
    }
    .site-btn.site-btn_big {
        height: 40px;
    }
    .main-info {
        margin-bottom: 0;
    }
    .main-info .main-info__actions {
        width: 100%;
        background-size: auto;
        padding: 0 40px;
    }
    .main-info .main-info__subscribe {
        padding: 0 100px;
    }
    .he .he__num {
        right: -8px;
    }
    .search {
        width: 100% !important;
        background-color: var(--color-10);
        padding: 0 15px;
    }
    .search .search__header {
        padding: 20px 0;
        color: #000;
    }
    .search .search__inner {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        overflow: auto;
    }
    .search .search__header button{
        color: #000;
    }
    .search .search__result {
        margin-top: 10px;
        position: relative;
        top: auto;
        left: auto;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        flex-grow: 1;
        overflow: auto;
        padding: 10px;
    }
    .catalog {
        width: 50% !important;
    }
    .pagination {
        margin-top: 15px;
    }
    .product .product__img-block {
        margin: 0 auto;
    }
    .product .product__info-block {
        padding: 0;
        margin-top: 15px;
    }
    .new-one .new-one__description img {
        max-width: 100%;
        height: auto;
    }
    .cart .cart__right {
        width: 100%;
    }
}

/* `md` applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .catalog {
        width: 100% !important;
    }
    .profile .profile__sidebar {
        width: 100%;
    }
    .profile .profile__menu a {
        border-right: 2px solid var(--color-3);
        border-bottom: none;
        text-align: center;
    }
    .pagination {
        width: 100%;
    }

}

/* `sm` applies to x-small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
    .new-one .new-one__title {
        font-size: 20px;
    }
    .slider .slider__h {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .prod-cat {
        width: 150px;
        height: 380px;
    }
    .prod-cat .prod-cat__name a,
    .boc .boc__name span {
        font-size: 12px;
        color: #fff;
    }
    .prod-cat .prod-cat__price .prod-cat__price-val {
        font-size: 18px;
    }
    .brand-item {
        width: 150px;
        height: 150px;
    }
    .best-cat {
        width: 150px;
    }
    .best-cat .best-cat__img {
        height: 150px;
    }
    .main-info .main-info__subscribe {
        padding: 0 20px;
    }
    .he .he__icon {
        font-size: 18px;
    }
    .header .header__logo {
        width: 120px;
    }
    .he .he__num {
        width: 16px;
        height: 16px;
        font-size: 10px;
        right: -8px;
        border-radius: 50%;
        padding-top: 1px;
    }
    .footer .footer__content {
        padding: 20px;
    }
    .footer .footer__menu .footer__menu-zag {
        font-size: 12px;
        margin-bottom: 5px;
    }
    .footer .footer__menu .footer__menu-link {
        font-size: 12px;
    }
    .footzakaz .footzakaz__phone,
    .footzakaz .footzakaz__magaz,
    .footzakaz .footzakaz__site {
        font-size: 12px;
    }
    .footer .footer__logo a img {
        width: 100%;
    }
    .footer .footer__top, .footer .footer__middle {
        padding: 15px 0;
    }
    .sort-products .sort-products__link {
        font-size: 12px;
    }
    .pagination .pagination__link {
        font-size: 14px;
        padding-top: 4px;
    }
    .pagination .pagination__item {
        width: 25px;
        height: 25px;
    }
    .category-name {
        font-size: 24px;
    }
    .sort-products .sort-products__item.sort-products__item_filter {
        background-color: var(--color-3);
        width: 100%;
        border-radius: 4px;
        text-align: center;
        padding: 3px;
    }
    .target.target_sm {
        width: 145px;
    }
    .breadcrumb .breadcrumb-item,
    .breadcrumb .breadcrumb-item a{
        font-size: 12px;
    }
    .seo-text .seo-text__content {
        padding: 0;
    }
    .seo-text h1 {
        font-size: 24px;
        padding-bottom: 15px;
    }
    .page-h1 {
        font-size: 24px;
    }
    .discussions {
        padding: 0;
    }
    .site-btn.site-btn_w100 {
        width: 100%;
    }
    .form-modal .form-modal__body {
        padding: 0 5px 5px 5px;
    }
    .popup-form .popup-form__shop {
        font-size: 14px;
    }
    .static-page h1 {
        font-size: 24px;
    }
    .static-page {
        font-size: 12px;
    }
    .product h1 {
        font-size: 24px;
    }
    .product .product__instock {
        font-size: 12px;
    }
    .result h6 {
        font-size: 18px;
    }
    .product-seo {
        font-size: 12px;
    }
    .static-page ul li {
        font-size: 12px;
    }
}
