/* ====== Specification ====== */

body {
	font-family: 'Open Sans', sans-serif;
	background: #ffffff;
	font-size: 18px;
	color: #000;
	padding: 0;
	margin: 0;
}
.container {
	width: 1410px;
	margin: 0 auto;
	padding: 0;
}
.d-none {
    display: none !important;
}
.d-block {
    display: block !important;
}
.d-flex {
    display: flex !important; 
}
div, p, form, input, a, span, button, ul, li, textarea {
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
p {
	font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #000000;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
	color: #000;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
}
h1 {
    font-size: 30px;
}
h2 {
    text-align: center;
    margin-bottom: 60px;
    font-weight: bold;
    font-size: 30px;
    line-height: 41px;
}
a {
  	font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    transition: 0.3s;
}
a:hover {
    color: #FF87FA;
}
a:active {
    color: #C864C3;
}
button, button:hover, button:focus, button:active,
input, input:hover, input:focus, input:active,
textarea, textarea:hover, textarea:focus, textarea:active {
    outline: none;
}

input, textarea, select {
    -webkit-appearance: none;
}

/*BTN*/
.btn-bl {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #000;
    color: #fff;
    fill: #fff;
    font-size: 16px;
    text-transform: uppercase;
    width: 240px;
    height: 50px;
    transition: 0.3s;
}

.btn-bl:hover {
    background: #FF87FA;
    color: #000;
    fill: #000;
    transition: 0.3s;
}

.btn-bl:active {
    background: #C864C4;
    fill: #fff;
    color: #fff;
}

.btn-wh {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    color: #000;
    border: 1px solid #000;
    font-size: 16px;
    text-transform: uppercase;
    width: 240px;
    height: 50px;
    transition: 0.3s;
}

.btn-wh:hover {
    background: #FF87FA;
    color: #000;
    border: 1px solid transparent;
    transition: 0.3s;
}

.btn-wh:active {
    background: transparent;
    color: #C864C3;
    border: 1px solid #C864C3;
}

.btn-bl span, .btn-wh span {
    margin-left: 15px;
    margin-top: -5px;
    font-size: 24px;
}

/* ====== Header ====== */

.header {
    padding-top: 13px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 20000;
    background: #fff;
    transition: 0.3s;
}

.header_blue {
    background: blue;
}
.header_red {
    background: red;
}

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

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 7px;
}

.header-row:last-child {
    align-items: flex-end;
    margin-bottom: 0;
}

.logo {
    display: block;
}

.logo-desk {
    margin-bottom: -32px;
    max-width: 253px;
}

.logo-mob {
    display: none;
}

.soc-num-persone {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 454px;
    width: 100%;
    margin-bottom: 30px;
}

.header-soc {
    display: flex;
    justify-content: space-between;
    max-width: 232px;
    width: 100%;
}

.header-soc__link {
    display: flex;
    align-items: center;
}

.header-phone {
    display: flex;
    align-items: center;
    line-height: 0;
    font-size: 18px;
    line-height: 25px;
    font-weight: 300;
    fill: #000;
}

.header-phone svg {
    margin-right: 8px;
}

.header-phone:hover {
    color: #FF87FA;
    fill: #FF87FA;
    transition: 0.3s;
}

.header-phone:active {
    color: #C864C3;
    fill: #C864C3;
} 

.header-mag-nav {
    display: flex;
    align-items: center;
    position: relative;
    fill: #000;
    transition: 0.3s;
}

.header-mag-nav:hover {
    color: #FF87FA;
    fill: #FF87FA;
    transition: 0.3s;
}

.header-mag-nav:active {
    color: #C864C3;
    fill: #C864C3;
}

.header-pers__name {
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    margin-left: 10px;
}

.header-mag-nav__count {
    position: absolute;
    top: 0;
    right: -4px;
    background: #FF87FA;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    font-weight: bold;
    font-size: 10px;
    color: #FFFFFF;
    border-radius: 50%;
}

.header-mag-nav:last-child {
    margin-bottom: -4px;
}

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


.header-scroll {
    position: fixed !important;
    background: #fff !important;
    animation: 0.5s headerShow;
}

.header-scroll .nav-search-hide {
    display: none;
}

.header-scroll .soc-num-persone {
    margin-bottom: 10px;
}

.header-scroll .logo-desk {
    margin-bottom: 0;
}

.header-scroll .logo {
    margin-bottom: 5px;
}

@keyframes headerShow {
    0% {top: -200px;}
    100% {top: 0;}
}


/* === Меню === */
.mob-menu {
    display: none;
}

.nav {
    max-width: 747px;
    width: 100%;
    margin-top: 10px;
}

.mobile_menu_content > ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.mobile_menu_content > ul > li {
    display: block;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.mobile_menu_content li {
    display: inline-block;
    /*white-space: nowrap;*/
}

.mobile_menu_content > ul > li:hover {
    border-bottom: 2px solid #000;
    transition: 0.3s;
}

.mobile_menu_content > ul > li > a {
    font-size: 18px;
    line-height: 25px;
    color: #000000;
    display: block;
    padding-bottom: 10px;
}


/*Sub-menu*/
.mobile_menu_content > ul > li > ul {
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    margin-top: 1px;
    width: 100%;
    padding: 0 calc((100% - 1410px)/2);
    z-index: 100;
    transition: 0.5s;
}

.mobile_menu_content > ul > li:hover > ul {
	overflow: auto;
    max-height: 5000px;
    border-bottom: 1px solid #CCCCCC;
    transition: 2s;
}

.mobile_menu_content > ul > li ul {
    display: inline-flex;
    flex-direction: column;
}

.mobile_menu_content > ul > li > ul li {
    width: 200px;
}

.mobile_menu_content > ul > li > ul li:nth-child(2) {
    margin-top: 40px;
}

.mobile_menu_content > ul > li > ul a {
    display: block;
    padding: 10px 0;
    font-weight: 600;
    font-size: 15px;
    color: #8A8A8A;
    padding-right: 30px;
}

/*.mobile_menu_content > ul > li > ul a:hover {
    text-decoration-line: underline;
    color: #000000;
}*/

.mobile_menu_content > ul > li > ul li ul {
    display: none;
    position: absolute;
    top: 0;
    margin-left: 200px;
    height: 3000px;
    transition: 2s;
}

/*.mobile_menu_content > ul > li > ul li:hover > ul {
    display: flex; 
    animation: 1s timeStop;
}

.mobile_menu_content > ul > li > ul li.hover > ul {
    display: flex; 
    animation: 1s timeStop;
}*/

.mobile_menu_content li.hover > ul {
	display: flex; 
    animation: 1s timeStop;
}

@keyframes timeStop {
    0% {opacity: 0}
    100% {opacity: 1}
}

.mobile_menu_content > ul > li > ul li:hover > a {
    color: #000;
    text-decoration-line: underline;
}

.menu-sub-arrow {
    background: url(../img/menu-arrow.svg) no-repeat right 26px top 17px;
}

.back {
    display: none !important;
}

.menu-banner {
    width: 570px !important;
    height: 400px !important;
    display: flex !important;
    padding: 0 0 0 30px !important;
    position: absolute;
    top: 40px;
    right: calc((100% - 1410px)/2);
}

.menu-banner .disc-card__img-wr {
    height: 100% !important;
}

.menu-banner .disc-card__img {
    height: 90% !important;
}

.menu-banner:hover {
    text-decoration: none !important;
}

.sub-menu-banner {
    max-width: 570px;
    width: 100%;
}

.sub-menu-banner img {
    width: 100%;
}

.form-search {
    z-index: 100;
}

.form-search__input {
    width: 570px;
    height: 34px;
    border: 0;
    background: rgba(0, 0, 0, 0.05);
    padding-left: 11px;
}

.header-search::placeholder {
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: #C4C4C4;
}

.form-search__btn {
    position: absolute;
    right: 8px;
    top: 2px;
    border: 0;
    background: none;
    cursor: pointer;
}

.form-search__btn svg {
    width: 30px;
    height: 30px;
    fill: #000;
}

.form-search__btn svg:hover {
    fill: #FF87FA;
}

.form-search__btn svg:active {
    fill: #C864C3;
}

.form-search {
    position: relative;
    margin-bottom: 12px;
}

.search-res {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 30px;
    background: #fff;
    margin-top: -2px;
}

.search-res-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.search-res-card:last-child {
    margin-bottom: 0;
}

.search-res-card__cont {
    display: flex;
    max-width: 345px;
    width: 100%;
}

.search-res-card__img {
    display: block;
    min-width: 84px;
    height: 84px;
    background: #F6F6F6;
    margin-right: 14px;
}

.search-res-card__cat {
    display: block;
    margin-bottom: 12px;
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    text-transform: uppercase;
}

.search-res-card__name {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
}

.search-res-card-price {
    display: flex;
    align-items: center;
    min-width: 100px;
}

.search-res-card-price__current {
    font-weight: bold;
    font-size: 18px;
    line-height: 25px;
    text-transform: uppercase;
    margin-right: 14px;
}

.search-res-card-price__sale {
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    position: relative;
    padding: 0 4px;
}

.search-res-card-price__sale:before {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    top: 10px;
    height: 2px;
    background: #FF87FA;
}

.search-res__btn {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding-left: 32px;
    justify-content: flex-start;
}

.form-search__btn_close {
    position: absolute;
    right: 50px;
    top: 6px;
    border: 0;
    background: none;
    cursor: pointer;
    fill: #ccc;
    transition: 0.3s;
}

.form-search__btn_close:hover {
    fill: #444;
    transition: 0.3s;
}

.search-mob__btn {
    display: none;
}

.search-res-card:hover .search-res-card__name {
    text-decoration: underline;
}


/*======= Offer screen ======*/

.offer-slider {
    margin-bottom: 0 !important;
}

.offer-slide {
    height: 656px;
    background: transparent;
    position: relative;
    opacity: 1 !important;
}

.offer-slide-content {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
}

.offer-slide__title {
    font-weight: bold;
    font-size: 100px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.offer-slide__text {
    font-size: 22px;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 90px;
}

.offer-slide-wrap {
    overflow: hidden;
}


/*Slick slider Nav*/

.slick-prev:before, .slick-next:before {
    display: none !important;
}

.slick-dots {
    position: static;
    bottom: auto;
    top: auto;
    right: auto;
    width: auto;
    margin-top: -29px;
}

.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-prev {
    width: 32px;
    height: 16px;
    background: url(../img/sl-arrow-left.svg) no-repeat center center;
    position: static;
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    margin-right: 15px;
    transition: 0.3s;
}

.slick-next {
    width: 32px;
    height: 16px;
    background: url(../img/sl-arrow-right.svg) no-repeat center center;
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    margin-left: 15px;
    transition: 0.3s;
}

.slick-prev:hover {
    background: url(../img/sl-arrow-left-hov.svg) no-repeat center center;
    transition: 0.3s;
}

.slick-next:hover {
    background: url(../img/sl-arrow-right-hov.svg) no-repeat center center;
    transition: 0.3s;
}

.slick-prev:active {
    background: url(../img/sl-arrow-left-active.svg) no-repeat center center;
}

.slick-next:active {
    background: url(../img/sl-arrow-right-active.svg) no-repeat center center;
}

.slick-dots li.slick-active button:before, .slick-dots li button:before {
    display: none !important;
}

.slick-dots li {
    max-width: 9px !important;
    max-height: 9px !important;
}

.slick-dots li button {
    max-width: 9px !important;
    max-height: 9px !important;
    padding: 0 !important;
    background: rgba(0, 0, 0, 0.2) !important;
}

.slick-dots li.slick-active button {
    background: rgba(0, 0, 0, 1) !important;
}

.slider-nav .slick-prev {
    order: 1;
}
.slider-nav .slick-next {
    order: 3;
}
.slider-nav .slick-dots {
    order: 2;
}


/*Анимация*/
.offer-slide-content {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.slick-current .offer-slide-content-animate {
    animation: 0.6s offerSlide ease-out;
}
.slick-current .offer-slide-content-animate .offer-slide-wrap {
    animation: 0.8s offerSlideWrap ease-out;
}
@keyframes offerSlide {
    0% { width: 0; }
    100% { width: 100%; }
}
@keyframes offerSlideWrap {
    0% { opacity: 0; }
    60% { opacity: 0; }
    100% { opacity: 1; }
}
.slick-current .offer-slide-content-animate_left {
    right: 0;
    left: auto;
}
.slick-current .offer-slide-content-animate_right {
    left: 0;
    right: auto;
}
.slider-nav_offer .slick-dots {
    pointer-events: none;
}
.slider-nav_offer {
    margin-top: -40px;
    margin-bottom: 40px;
}


.offer-cat__btn {
    display: none;
}


/*======= Ban-min screen ======*/

.ban-min {
    padding: 24px 0 75px;
}

.ban-min-wrap {
    display: flex;
    justify-content: space-between;
}

.ban-min-item {
    width: 330px;
    height: 120px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.ban-min-item span {
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    width: 58%;
    display: flex;
    justify-content: center;
}

.ban-min-item:hover {
    color: #000;
    text-decoration: underline;
}

.ban-min-item:nth-child(1) {
    background: linear-gradient(97.33deg, #FFEFFE 0.38%, #FDDCFC 100%), #F6F6F6;
}
.ban-min-item:nth-child(2) {
    background: linear-gradient(262.47deg, #FFD5BD 0%, #F9E2C8 100%), #F6F6F6;
}
.ban-min-item:nth-child(3) {
    background: linear-gradient(262.31deg, #FFF3B1 -1.55%, #FFF1DD 100%), #F6F6F6;
}
.ban-min-item:nth-child(4) {
    background: linear-gradient(97.67deg, #E2FFE6 0%, #E6FDCF 98.93%), #F6F6F6;
}


/*======= Disc screen ======*/

.disc {
    padding: 75px 0;
}

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

.disc-card {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.disc-card_big {
    width: 690px;
    height: 400px;
    margin-bottom: 30px;
    padding-left: 77px;
}

.disc-card_small {
    padding-left: 50px;
    width: 450px;
    height: 400px;
}

.disc-card_small:nth-child(4) {
    padding-right: 20px;
}
.disc-card_small:nth-child(5) {
    padding-right: 15px;
}

.disc-card__img {
    display: block;
}

.disc-card__title {
    font-weight: bold;
    font-size: 60px;
    line-height: 82px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.disc-card__text {
    font-size: 18px;
    line-height: 25px;
    text-transform: uppercase;
}


/*======= New screen ======*/

.new {
    padding: 75px 0 110px;
}

/*Product card*/
.product-card {
    width: 330px;
    padding-bottom: 40px;
    position: relative;
    margin: 0 15px;
    overflow: hidden;
}

.product-card__bg {
    width: 100%;
    height: 330px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F7F7F7;
    margin-bottom: 20px;
}

.product-card__img {
    /*max-width: 251px;*/
    width: 90% !important;
    display: block;
    margin: 0 auto;
}

.product-card-heart {
    position: absolute;
    bottom: 18px;
    right: 18px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    background: url(../img/heart-icon.svg) no-repeat center center;
}

.product-card-heart-active {
    background: url(../img/heart-icon-active.svg) no-repeat center center;
}

.product-card-heart img {
    display: none !important;
}

.product-card__name {
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    text-transform: uppercase;
    min-height: 72px;
    margin-bottom: 40px;
    display: block;
}

.product-card__name:hover {
    color: #000;
    text-decoration-line: underline;
}

.product-card-cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-card-price {
    display: flex;
    align-items: center;
}

.product-card-price__current {
    margin-right: 14px;
    font-weight: bold;
    font-size: 30px;
    line-height: 41px;
    text-transform: uppercase;
}

.product-card-price__sale {
    position: relative;
    font-size: 20px;
    line-height: 27px;
    text-transform: uppercase;
    padding: 0 10px;
}

.product-card-price__sale:before {
    content: '';
    position: absolute;
    top: 13px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FF87FA;
}

.product-card__btn {
    width: 90px;
    height: 50px;
}

.product-card-status {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.product-card-status div {
    margin-right: 10px;
    width: 95px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    font-size: 15px;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-card-status__stock {
    background: #FFA06B;
}
.product-card-status__novelty {
    background: #98FFA9;
}
.product-card-status__hit {
    background: #FFDB1D;
}
.product-card-status__sale {
    background: #FF87FA;
}

/*======= New screen ======*/

.hit {
    padding: 75px 0 110px;
}

/*======= Insta screen ======*/

.insta {
    padding: 75px 0 120px;
}

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

.insta-card {
    width: 210px;
    display: block;
    margin-bottom: 30px;
}

.insta-card__bg {
    width: 100%;
    height: 210px;
    display: block;
    margin-bottom: 25px;
}

.insta-card__name {
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #000000;
}

.insta-card:hover .insta-card__name {
    text-decoration: underline;
}


/*======= Subscribe screen ======*/

.subscribe {
    background: linear-gradient(91.69deg, rgba(255, 228, 241, 0.4) 0%, #FFE3FE 100%);
    padding: 52px 0;
}

.subscribe__title {
    margin-bottom: 30px;
}

.subscribe-form {
    max-width: 730px;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 30px;
}

.subscribe-form__input {
    width: 100%;
    border: 0;
    background: transparent;
    padding-left: 17px;
    font-size: 18px;
    line-height: 25px;
    border: 1px solid #000000;
    border-right: 0;
}

.subscribe-form__input:focus {
    border: 1px solid #FF87FA;
}

.subscribe-form__input::placeholder {
    font-size: 18px;
    line-height: 25px;
    color: #8D8D8D;
}

.subscribe-form__btn {
    width: 226px;
    height: 50px;
    border: 0;
    cursor: pointer;
}

.subscribe__privacy {
    display: block;
    text-align: center;
    margin: 0 auto;
    font-size: 13px;
    line-height: 18px;
    text-decoration-line: underline;
    color: #8D8D8D;
    margin-bottom: 30px;
    transition: 0.3s;
}

.subscribe__privacy:hover {
    text-decoration: underline;
    color: #FF87FA;
    transition: 0.3s;
}

.subscribe__privacy:active {
    color: #C864C3;
}

.subscribe-soc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 548px;
    width: 100%;
    margin: 0 auto;
}

.subscribe-soc__link {
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 25px;
    text-decoration: underline;
    transition: 0.3s;
}

.subscribe-soc__link svg {
    margin-right: 23px;
}

.subscribe-soc__link:nth-child(1) {
    stroke: #000;
}

.subscribe-soc__link:hover {
    text-decoration: underline;
    color: #FF87FA;
    stroke: #FF87FA !important;
    fill: #FF87FA;
    transition: 0.3s;
}

.subscribe-soc__link:active {
    color: #C864C3;
    stroke: #C864C3;
    fill: #C864C3;
}

.subscribe-ot-pg {
    margin-bottom: 150px;
}


/*======= Blog screen ======*/

.blog {
    padding: 120px 0 75px;
}

.blog-wrap {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 646px;
    margin-bottom: 60px;
}

.blog-card {
    width: 450px;
    height: 308px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin-left: auto;
    padding: 35px 32px;
    position: relative;
}

.blog-card-over {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55.48%, rgba(0, 0, 0, 0.6) 100%); 
}

.blog-card .blog-card__text {
    display: none;
}

.blog-card-cont {
    width: 257px;
    position: relative;
    z-index: 10;
}

.blog-card__title {
    font-weight: bold;
    font-size: 22px;
    line-height: 30px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 17px;
}

.blog-card__text {
    font-size: 18px;
    line-height: 25px;
    color: #fff;
    margin-bottom: 36px;
}

.blog-card__link {
    color: #fff;
    font-size: 18px;
    position: relative;
}

.blog-card__link span {
    font-size: 24px;
    position: absolute;
    top: -6px;
    left: 100%;
    margin-left: 16px;
}

.blog-card__link:hover {
    text-decoration: underline;
}

.blog-wrap .blog-card:nth-child(1) {
    width: 930px;
    height: 646px;;
    margin: 0;
    padding: 42px 72px;
}

.blog-wrap .blog-card:nth-child(1) .blog-card__title {
    font-size: 30px;
    line-height: 41px;
    margin-bottom: 26px;
}

.blog-wrap .blog-card:nth-child(1) .blog-card__text {
    display: block;
}

.blog-wrap .blog-card:nth-child(1) .blog-card-cont {
    width: 627px;
}

.blog__btn {
    margin: 0 auto;
}


/*======= About screen ======*/

.about {
    padding: 75px 0 150px;
}

.about-wrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.about__text {
    max-width: 687px;
    width: 100%;
    font-size: 18px;
    line-height: 25px;
}


/*======= Footer ======*/

.footer {
    background: #777777;
    padding-top: 29px;
}

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

.footer__title {
    font-weight: bold;
    font-size: 22px;
    line-height: 30px;
    text-transform: uppercase;
    color: #FFFFFF;
    height: 30px;
    margin-bottom: 20px;
    text-align: left;
}

.footer-menu-wrap {
    display: flex;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-right: 60px;
}

.footer-col_3 .footer-menu:first-child {
    margin-right: 160px;
}

.footer-col .footer-menu:last-child {
    margin-right: 0;
}

.footer-menu__item {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.footer-menu__item_soc:hover {
    opacity: 0.6;
    color: #FFFFFF;
    text-decoration: underline;
    transition: 0.3s;
}

.footer-menu__item:hover {
    opacity: 0.6;
    color: #FFFFFF;
    transition: 0.3s;
}

.footer-menu__item_soc {
    text-decoration: underline;
}

.footer-menu__item_cont {
    font-weight: bold;
}

.footer-menu__item:last-child {
    margin-bottom: 0;
}

.footer-menu__item img {
    margin-right: 18px;
}

.footer-col_2 {
    position: relative;
    overflow: hidden;
    padding: 0 74px 0 51px;
    margin-right: -40px;
}

.footer-col_2:before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 1px;
    height: 100%;
    background: #868686;
}

.footer-col_2:after {
    content: '';
    position: absolute;
    top: 50px;
    right: 0;
    width: 1px;
    height: 100%;
    background: #868686;
}

.copy-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #868686;
    padding: 20px 0 24px;
    margin-top: 30px;
}

.copy {
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    color: #CECECE;
}

.privacy {
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    text-decoration-line: underline;
    color: #CECECE;
}

.privacy:hover {
    opacity: 0.6;
    color: #CECECE;
    text-decoration: underline;
    transition: 0.3s;
}

.footer-logo {
    display: none;
}


/*Arctic Modal*/

.regModal {
    width: 400px;
    padding: 60px;
    background: #fff;
    position: relative;
}

.regModal_close {
    font-weight: 300;
    transform: rotate(45deg);
    width: 20px;
    height: 20px;
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 34px;
    cursor: pointer;
    color: #C4C4C4;
    transition: 0.3s;
}
.regModal_close:hover {
    color: #000;
    transition: 0.3s;
}

.regModal__title {
    font-weight: bold;
    font-size: 30px;
    line-height: 41px;
    text-transform: uppercase;
    margin-bottom: 60px;
    text-align: center;
}

.regModal-form {
    width: 100%;
}

.regModal-form__input {
    width: 100%;
    height: 45px;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
    padding-left: 15px;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
}

.regModal-form__input::placeholder {
    font-size: 16px;
    line-height: 22px;
    color: #C4C4C4;
}

.regModal-form__input:focus {
    border: 1px solid #FF87FA;
}

.regModal-form__pass {
    width: 100%;
    position: relative;
}

.regModal-form__visible {
    position: absolute;
    right: 17px;
    top: 13px;
}

.regModal-form__visible svg {
    fill: #C4C4C4;
}

.regModal-form__visible_act {
    fill: #000 !important;
}

.regModal-form__btn {
    border: 0;
    margin-bottom: 15px;
    cursor: pointer;
    width: 100%;
}

.regModal__link {
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    text-decoration-line: underline;
    color: #8A8A8A;
    display: block;
}

.regModal__link_b {
    font-size: 16px;
    margin-bottom: 20px;
    color: #000;
}

.regModal__link_s {
    color: #C4C4C4;
    margin-bottom: 0;
}

/*========= Хлебные крошки =========*/

.breadcrumbs {
    margin-top: 121px;
    padding: 60px 0 68px;
}

.breadcrumbs-wrap {
    display: flex;
    align-items: center;
}

.breadcrumbs__link {
    font-size: 16px;
    line-height: 22px;
    transition: 0.3s;
}

.breadcrumbs__link:hover {
    color: #FF87FA;
    transition: 0.3s;
}

.breadcrumbs__link:active {
    color: #C864C3;
}

.breadcrumbs__separator {
    font-size: 16px;
    line-height: 22px;
}

.breadcrumbs__current {
    font-size: 16px;
    line-height: 22px;
    color: #CCCCCC;
}

.breadcrumbs__back {
    display: none;
}


/*================================================*/
/*============= Результат поиска =================*/
/*================================================*/

.search-pg {
    padding-bottom: 150px;
}

.search-pg-wrap {
    padding-bottom: 150px;
}

.search-pg-wrap:last-child {
    padding-bottom: 0;
}

.search-pg__res {
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 0;
}

.search-pg__dis {
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    text-transform: uppercase;
    color: #8A8A8A;
    margin-bottom: 60px;
}

.search-cat-card {
    width: 210px;
    height: 300px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: #F6F6F6;
    margin: 0 15px;
    padding: 30px 30px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.3s;
}

.search-cat-card:hover {
    border: 1px solid #FF87FA;
    transition: 0.3s;
}

.search-cat-card_current {
    background: rgba(255, 135, 250, 0.15);
}

.search-cat-card__name {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    color: #000000;
    margin: 0 auto;
    display: inline-block;
}

.search-cat-card__img {
    margin: 0 auto;
    max-width: 100%;
    max-height: 132px;
}

.search-cat-card__amount {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    color: #000000;
}

.slider-nav_search-cat {
    margin-top: 60px;
}

.search-pg__title {
    margin-bottom: 60px;
}

.seares-filter {
    display: flex;
    position: relative;
    margin-bottom: 76px;
}

.seares-filter__price {
    margin-right: 30px;
    width: 210px;
    height: 35px;
    border-bottom: 1px solid #000;
    padding-bottom: 9px;
    font-size: 18px;
    line-height: 25px;
    color: #000000;
    background: url(../img/select-arrow-icon.svg) no-repeat right 9px center;
    cursor: pointer;
    transition: 0.3s;
}

.seares-filter__price:hover {
    border-bottom: 1px solid #FF87FA;
    transition: 0.3s;
}

.seares-filter__arrow-rotate {
    background: url(../img/select-arrow-icon_up.svg) no-repeat right 9px center;
}

/*Custom ionRangeSlider CSS*/
.seares-filter__range-wr {
    width: 210px;
    height: 35px;
    margin-top: 10px;
}
.seares-filter__range-wr .irs--flat .irs-line {
    height: 1px;
    background: #CCCCCC;
}
.seares-filter__range-wr .irs--flat .irs-handle {
    top: 12px;
    width: 14px !important;
    height: 14px !important;
    background: #000 !important;
    cursor: pointer;
}
.seares-filter__range-wr .irs--flat .irs-handle i {
    background: #000 !important;
}
.seares-filter__range-wr .irs--flat .irs-bar {
    height: 1px;
    background: #000;
}
.seares-filter__range-wr .irs--flat {
    height: 14px;
}
.seares-filter__range-wr .irs--flat .irs-min, .irs--flat .irs-max {
    display: none;
}
.seares-filter__range-wr .irs--flat .irs-from, .irs--flat .irs-to, .irs--flat .irs-single {
    color: #000;
    background: transparent;
    font-size: 13px;
    line-height: 18px;
    margin-top: -12px;
}
.seares-filter__range-wr .irs--flat .irs-from:before, .irs--flat .irs-to:before, .irs--flat .irs-single:before {
    display: none;
}


.seares-filter__drop {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 15px;
    margin-top: -9px;
    width: 210px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #C4C4C4;
    font-weight: bold;
    font-size: 18px;
    line-height: 25px;
    color: #C4C4C4;
    transition: 0.3S;
}

.seares-filter__drop span {
    transform: rotate(45deg);
    font-weight: 300;
    font-size: 35px;
}

.seares-filter__drop:hover {
    border: 1px solid #FF87FA;
    color: #FF87FA;
    transition: 0.3S;
}

.seares-filter__drop:active {
    border: 1px solid #C864C3;
    color: #C864C3;
}

.seares-filter_cat .seares-filter__range-wr {
    margin-right: 30px;
}

/*FormStyler Select*/
.seares-filter__select {
    width: 210px;
    margin-top: 4px;
    margin-right: 30px;
}
.seares-filter__select .jq-selectbox__select {
    border: 0 !important;
    background: transparent;
    box-shadow: 0 0 0;
    border-radius: 0;
    border-bottom: 1px solid #000 !important;
    padding-left: 0;
}
.seares-filter__select .jq-selectbox__select:hover {
    border-bottom: 1px solid #FF87FA !important;
    transition: 0.3s;
}
.seares-filter__select.dropdown .jq-selectbox__select {
    border-bottom: 1px solid #C864C3 !important;
}
.seares-filter__select .jq-selectbox__trigger {
    border: 0;
}
.seares-filter__select .jq-selectbox__trigger-arrow {
    border: 0;
    width: 10px;
    height: 10px;
    top: 10px;
    right: 8px;
    background: url(../img/select-arrow-icon.svg) no-repeat center center / cover;
}
.seares-filter__select.dropdown .jq-selectbox__trigger-arrow {
    background: url(../img/select-arrow-icon_up.svg) no-repeat center center / cover;
}
.seares-filter__select .jq-selectbox__dropdown {
    box-shadow: 0 0 0;
    border-radius: 0;
    border: 1px solid #000000;
    margin-top: 14px;
}
.seares-filter__select ul {
    padding: 17px 19px;
}
.seares-filter__select ul>li:first-child {
    display: none;
}
.seares-filter__select li {
    padding: 0 !important;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 25px;
    text-transform: uppercase;
    color: #000000;
}
.seares-filter__select li:last-child {
    margin-bottom: 0;
}
.seares-filter__select li.selected {
    padding: 0 !important;
    background: transparent;
    color: #FF87FA;
}
.jq-selectbox__select-text {
    font-size: 18px;
    line-height: 25px;
    color: #000000;
    text-transform: lowercase;
}

.seares-filter_cat .seares-filter__price {
    width: 90px;
}

.seares-filter__select_sale {
    width: 90px;
}

.seares-filter__select .jq-selectbox__select {
    padding-right: 12px;
}

.seares-filter_cat {
    flex-wrap: wrap;
}

.seares-filter__select_sale ul {
    padding: 17px 10px;
}



.seares-wrap {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.seares-wrap .product-card {
    /*margin: 0;*/
    padding-bottom: 0;
    /*margin-bottom: 30px;*/
    margin: 0 10px 30px;
}


/*====== Пагинация ======*/
.pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.pagination__arrow {
    width: 32px;
    height: 30px;
    font-size: 25px;
    margin: 0 15px 0;
    font-weight: 300;
    transition: 0.3s;
}

.pagination__arrow_left {
    background: url(../img/sl-arrow-left.svg) no-repeat center center;
}
.pagination__arrow_left:hover {
    background: url(../img/sl-arrow-left-hov.svg) no-repeat center center;
}
.pagination__arrow_left:active {
    background: url(../img/sl-arrow-left-active.svg) no-repeat center center;
}

.pagination__arrow_right {
    background: url(../img/sl-arrow-right.svg) no-repeat center center;
}
.pagination__arrow_right:hover {
    background: url(../img/sl-arrow-right-hov.svg) no-repeat center center;
}
.pagination__arrow_right:active {
    background: url(../img/sl-arrow-right-active.svg) no-repeat center center;
}

.pagination-wrap {
    display: flex;
}

.pagination__item {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 25px;
    text-transform: uppercase;
    color: #000000;
    border: 1px solid #000000;
    margin: 0 5px;
    cursor: pointer;
    transition: 0.3s;
}

.pagination__item:hover {
    background: #FF87FA;
    border: 1px solid transparent;
    transition: 0.3s;
}

.pagination__item:active {
    border: 1px solid #C864C3;
    background: transparent;
    color: #C864C3;
}

.pagination__item_current {
    background: #000;
    color: #fff;
}

.pagination__item_current:hover {
    background: #000;
    color: #fff;
}

.pagination__item_current:active {
    background: #000;
    color: #fff;
    border: 1px solid #000000;
}


/*================================================*/
/*============= Карточка продукта ================*/
/*================================================*/

.product {
    padding-bottom: 75px;
}

.product__title {
    font-weight: 600;
    font-size: 30px;
    line-height: 50px;
    text-transform: uppercase;
    color: #000000;
}

.product__title_mob {
    display: none;
}

.product-wrap {
    display: flex;
    justify-content: space-between;
    padding-bottom: 150px;
}

.product-left {
    background: #F7F7F7;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 690px;
    height: 690px;
    position: relative;
    margin-right: 30px;
}

.product-status {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
}

.product-status_item {
    width: 150px;
    height: 80px;
    margin-bottom: 20px;
    margin-right: 15px;
    font-weight: 300;
    font-size: 25px;
    line-height: 34px;
    text-transform: uppercase;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    display: block;
    max-width: 531px;
    width: 100%;
}

.product-right {
    max-width: 690px;
    width: 100%;
}

.product-art-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.product__art {
    font-size: 16px;
    line-height: 22px;
    color: #777777;
}

.product__logo {
    max-height: 50px;
}

.product__title_desk {
    margin-bottom: 24px;
    min-height: 140px;
    overflow: hidden;
}

.product-param-wrap {
    margin-bottom: 44px;
}

.product-param {
    line-height: 1.4;
    margin-bottom: 30px;
    font-weight: 300;
    font-size: 18px;
    text-transform: uppercase;
    color: #000000;
}

.product-param__value {
    float: right;
    padding-left: .2em;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    color: #000000;
}

.product-param__prop {
    position: relative;
    display: block;
    overflow: hidden;
}

.product-param__prop:after {
    content: '';
    position: absolute;
    margin-left: .3em;
    bottom: .35em;
    width: 100%;
    border-bottom: .1em dotted #CCCCCC;
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 48px;
}

.product-price__current {
    font-weight: bold;
    font-size: 40px;
    line-height: 54px;
    text-transform: uppercase;
    color: #000000;
    margin-right: 27px;
}

.product-price__sale {
    font-size: 30px;
    line-height: 41px;
    text-transform: uppercase;
    color: #000000;
    margin-right: 31px;
    padding: 0 8px;
    position: relative;
}

.product-price__sale:before {
    content: '';
    width: 100%;
    height: 2px;
    background: #FF87FA;
    position: absolute;
    left: 0;
    top: 50%;
}

.product-price__auth {
    font-size: 16px;
    line-height: 22px;
    color: #000000;
}

.product-price__auth_link {
    font-size: 16px;
    line-height: 22px;
    text-decoration-line: underline;
    color: #000000;
}

.product-price__auth_link:hover {
    color: #FF87FA;
    text-decoration: underline;
    transition: 0.3s;
}

.product-price__auth_link:active {
    color: #C864C3;
}

.product-count-btn {
    display: flex;
    justify-content: space-between;
    margin-bottom: 42px;
}

.product-count {
    width: 331px;
    display: flex;
    justify-content: space-between;
}

.product-count__btn {
    width: 91px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000000;
    font-weight: 300;
    font-size: 22px;
    line-height: 30px;
    text-transform: uppercase;
    color: #000000;
    cursor: pointer;
}

.product-count__input {
    background: #F6F6F6;
    border: 0;
    width: 91px;
    height: 50px;
    text-align: center;
    font-size: 18px;
    line-height: 25px;
    text-transform: uppercase;
    color: #000000;
}

.product__btn {
    width: 330px;
}

.product__btn span {
    font-weight: 300;
}

.product__btn svg {
    margin-top: -2px;
    margin-left: 7px;
}

.product-amount-share {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product__amount {
    font-size: 18px;
    line-height: 25px;
    text-transform: uppercase;
    color: #000000;
}

.product__amount span {
    margin-left: 24px;
}

.product__share {
    fill: #8A8A8A;
    transition: 0.3s;
    position: relative;
}

.product__share > svg {
    cursor: pointer;
}

.product__share:hover {
    fill: #FF87FA;
    transition: 0.3s;
}
.product__share:active {
    fill: #C864C3;
}

.share-soc {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 20px;
    background: #fff;
    border: 1px solid #000;
    /*display: flex;*/
    align-items: center;
    padding: 22px 15px;
    display: none;
}

.share-soc__link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    fill: #fff;
    stroke: #fff;
    margin: 0 7px;
}

.share-soc__link svg {
    width: 20px;
    height: 20px;
}

.share-soc__link:hover {
    fill: #000;
    background: #FF87FA;
    transition: 0.3s;
}

.share-soc__link:active {
    fill: #fff;
    background: #C864C4;
}

.share-active .share-icon {
    fill: #C864C4 !important;
}

.share-active .share-soc {
    display: flex;
    animation: 0.7s shareActive;
}

@keyframes shareActive {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

/*Табы*/
.tabs-hide {
    display: none !important;
}
.tabs-show {
    display: block;
    animation: 0.6s tabShow;
}
.tabs-item {
    cursor: pointer;
}

.product-info-tabs {
    max-width: 769px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.product-info-tab {
    font-weight: bold;
    font-size: 30px;
    line-height: 41px;
    text-transform: uppercase;
    color: #8A8A8A;
    transition: 0.3s;
}

.product-info-tab:hover {
    color: #FF87FA;
    transition: 0.3s;
}

.product-info-tab.tabs-active {
    font-weight: bold;
    font-size: 30px;
    line-height: 41px;
    text-transform: uppercase;
    color: #000000;
}

.product-info-content {
    width: 100%;
}

.product-info-content__text {
    font-size: 18px;
    line-height: 30px;
    color: #000000;
    margin-bottom: 37px;
}

@keyframes tabShow {
    0% {opacity: 0}
    100% {opacity: 1}
}

.product-reviews-wrap {
    margin-bottom: 50px;
}

.product-reviews-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.product-reviews-item:last-child {
    margin-bottom: 0;
}

.product-reviews-item__ava {
    min-width: 90px;
    height: 90px;
    margin-right: 30px;
}

.product-reviews-item__name {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-reviews-item__text {
    font-size: 18px;
    line-height: 30px;
    color: #000000;
}

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

.product-comment-left {
    max-width: 930px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.product-comment__input {
    width: 450px;
    height: 50px;
    margin-bottom: 31px;
    background: #F6F6F6;
    border: 0;
    padding-left: 16px;
    font-size: 16px;
    line-height: 22px;
}

.product-comment__input:focus {
    border: 1px solid #FF87FA;
}

.product-comment__area {
    min-width: 100%;
    min-height: 130px;
    box-sizing: border-box;
    background: #F6F6F6;
    border: 0;
    padding-top: 16px;
    padding-left: 16px;
    font-size: 16px;
    line-height: 22px;
}

.product-comment__area:focus {
    border: 1px solid #FF87FA;
}

.product-comment__input::placeholder,
.product-comment__area::placeholder {
    font-size: 16px;
    line-height: 22px;
    color: #C4C4C4;
}

.product-comment-right {
    max-width: 450px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-comment-captcha {
    width: 100%;
    height: 132px;
    background: #F6F6F6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-comment__btn {
    width: 100%;
    cursor: pointer;
}

.tabs-items-sel {
    display: none;
}


/*======================================*/
/*============= Корзина ================*/
/*======================================*/

.cartpg {
    padding-bottom: 150px;
}

.cartpg__title {
    font-weight: bold;
    font-size: 30px;
    line-height: 41px;
    text-transform: uppercase;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
}

.cartpg-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.cartpg-left {
    max-width: 930px;
    width: 100%;
}

.cartpg-stock {
    width: 100%;
    height: 78px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.cartpg-stock__text {
    margin-right: 50px;
    font-size: 18px;
    line-height: 30px;
    color: #000000;
}

.cartpg-stock__text a {
    font-size: 18px;
    line-height: 30px;
    text-decoration-line: underline;
}

.cartpg-card {
    display: flex;
    padding: 30px 0;
    border-bottom: 1px solid #CCCCCC;
    position: relative;
}

.cartpg-card:last-child {
    border: 0;
}

.cartpg-card-img-cat {
    display: flex;
}

.cartpg-card__img {
    min-width: 120px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F7F7F7;
    margin-right: 30px;
}

.cartpg-card__img img {
    display: block;
    width: 90%;
}

.cartpg-card-name-cat {
    margin-right: 30px;
}

.cartpg-card__name {
    max-width: 300px;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    color: #000000;
}

.cartpg-card__cat {
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cartpg-card-count {
    min-width: 210px;
    width: 210px;
    height: 50px;
    display: flex;
    justify-content: space-between;
    margin-right: 50px;
    position: relative;
    margin-top: 35px;
}

.cartpg-card-count-warning {
    position: absolute;
    top: 100%;
    background: #fff;
    border: 1px solid #000000;
    z-index: 10;
    margin-top: 25px;
    padding: 13px 23px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 460px;
}

.cartpg-card-count-warning:before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 93px;
    width: 20px;
    height: 20px;
    background: url(../img/warning-arrow.svg) no-repeat center center;
}

.cartpg-card-count-warning__icon {
    font-size: 70px;
    line-height: 25px;
    color: #FF87FA;
    margin-right: 24px;
}

.cartpg-card-count-warning__text {
    font-size: 16px;
    line-height: 20px;
}

.cartpg-card-count__btn {
    min-width: 50px;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.cartpg-card-count__input {
    width: 90px;
    border: 0;
    background: #F6F6F6;
    text-align: center;
    font-size: 18px;
    line-height: 25px;
    text-transform: uppercase;
    color: #000000;
}

.cartpg-card-price {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100%;
}

.cartpg-card-price__current {
    font-weight: bold;
    font-size: 30px;
    line-height: 41px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cartpg-card-price__sale {
    font-size: 20px;
    line-height: 27px;
    text-transform: uppercase;
    padding: 0 5px;
    position: relative;
}

.cartpg-card-price__sale:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FF87FA;
}

.cartpg-card__close {
    position: absolute;
    top: 28%;
    right: 0;
    transform: rotate(45deg);
    font-size: 50px;
    font-weight: 300;
    color: #C4C4C4;
    cursor: pointer;
    text-decoration: none !important;
    transition: 0.3s;
}

.cartpg-card__close:hover {
    color: #FF87FA;
    text-decoration: none !important;
    transition: 0.3s;
}

.cartpg-card__close:active {
    color: #C864C3;
    text-decoration: none !important;
}

.cartpg-order {
    width: 450px;
    padding: 50px 60px;
    border: 1px solid #000000;
}

.cartpg-order__title {
    font-weight: bold;
    font-size: 30px;
    line-height: 41px;
    text-transform: uppercase;
    color: #000000;
    text-align: center;
    margin-bottom: 30px;
}

.cartpg-order-param {
    line-height: 1.4;
    margin-bottom: 30px;
    font-weight: 300;
    font-size: 18px;
    text-transform: uppercase;
    color: #000000;
}

.cartpg-order-param__value {
    float: right;
    padding-left: .2em;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    color: #000000;
}

.cartpg-order-param__prop {
    position: relative;
    display: block;
    overflow: hidden;
    font-weight: 300;
    font-size: 18px;
    line-height: 25px;
    text-transform: uppercase;
}

.cartpg-order-param__prop:after {
    content: '';
    position: absolute;
    margin-left: .3em;
    bottom: .35em;
    width: 100%;
    border-bottom: .1em dotted #CCCCCC;
}

.cartpg-order-param__value_1 {
    font-weight: bold;
    font-size: 18px;
}

.cartpg-order-param__value_2 {
    font-weight: bold;
    font-size: 18px;
    color: #FF87FA;
}

.cartpg-order-param__value_3 {
    font-weight: bold;
    font-size: 40px;
    line-height: 9px;
}

.cartpg-order__num {
    width: 100%;
    background: #F6F6F6;
    text-align: center;
    font-size: 16px;
    line-height: 22px;
    border: 0;
    height: 51px;
    margin-bottom: 12px;
}

.cartpg-order__num::placeholder {
    font-size: 16px;
    line-height: 22px;
    color: #8D8D8D;
}

.cartpg-order__reg {
    font-size: 16px;
    line-height: 30px;
    text-decoration-line: underline;
    text-align: center;
    display: block;
    color: #000000;
    margin-bottom: 30px;
}

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

.cartpg-order__btn:last-child {
    margin-bottom: 0;
}

.cartpg-status {
    width: 100%;
    background: #F6F6F6;
    height: 50px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.cartpg-status__progress {
    background: linear-gradient(95.2deg, #FFF3B1 2.46%, #FFF1DD 98.33%);
    height: 50px;
    position: absolute;
    left: 0;
    top: 0;
}

.cartpg-status__text {
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    position: relative;
    z-index: 10;
}


/*========================================*/
/*============= Избранное ================*/
/*========================================*/

.favor {
    padding-bottom: 120px;
}

.favor__title {
    text-align: center;
    margin-bottom: 50px;
}

.favor-wrap {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.favor-wrap .product-card {
    margin: 0 10px 30px;
}

.product-card__del {
    position: absolute;
    right: 10px;
    top: -10px;
    font-weight: 100;
    font-size: 55px;
    color: #C4C4C4;
    transform: rotate(45deg);
    cursor: pointer;
    text-decoration: none !important;
    transition: 0.3s;
}

.product-card__del:hover {
    color: #FF87FA;
    text-decoration: none !important;
    transition: 0.3s;
}

.product-card__del:active {
    color: #C864C3;
    text-decoration: none !important;
}

.favor-sim {
    margin-top: 45px;
}

.favor-sim__title {
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.favor-sim-wrap {
    display: flex;
    justify-content: space-between;
}

.favor-sim__link {
    width: 90px;
    height: 90px;
    display: block;
    background: #F7F7F7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favor-sim__link img {
    display: block;
    width: 90%;
}


/*===================================*/
/*============= Блог ================*/
/*===================================*/

.blog-pg {
    padding-bottom: 150px;
}

.blog-pg__title {
    text-align: center;
    margin-bottom: 50px;
}

.blog-pg-wrap {
    margin-top: 120px;
}

.blog-pg-card {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    border-bottom: 1px solid #CCCCCC;
}

.blog-pg-card:last-child {
    border-bottom: 0;
}

.blog-pg-card__img {
    min-width: 446px;
    width: 446px;
    min-height: 250px;
}

.blog-pg-card__cont {
    margin-left: 33px;
    position: relative;
    max-width: 930px;
    width: 100%;
}

.blog-pg-card__title {
    font-weight: bold;
    font-size: 22px;
    line-height: 30px;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 30px;
}

.blog-pg-card__text {
    font-size: 18px;
    line-height: 30px;
    max-width: 690px;
    padding-bottom: 50px;
}

.blog-pg-card-vis-soc {
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
}

.blog-pg-wrap .blog-pg-card-vis-soc {
    justify-content: space-between;
    width: 100%;
}

.blog-pg-card__vis {
    margin-right: 54px;
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #8D8D8D;
}

.blog-pg-card__vis img {
    margin-right: 15px;
}

.blog-pg-card-soc {
    display: flex;
    align-items: center;
}

.blog-pg-card-soc__link {
    margin-left: 15px;
    display: flex;
    align-items: center;
}

.blog-soc-icon_stroke {
    fill: none !important;
    stroke: #8D8D8D;
}

.blog-soc-icon_fill {
    stroke: none !important;
    fill: #8D8D8D;
}

.blog-pg-card-soc__link:hover > svg {
    stroke: #FF87FA;
    fill: #FF87FA;
}

.blog-pg-card-soc__link:active > svg {
    stroke: #C864C3;
    fill: #C864C3;
}

/*blog-post*/

.blog-post-wrap {
    display: flex;
    justify-content: space-between;
}

.blog-post {
    max-width: 931px;
    width: 100%;
}

.blog-post .blog-pg-card-vis-soc {
    position: static;
    margin-bottom: 55px;
}

.blog-post .blog-pg-card__vis {
    margin-right: 54px;
}

.blog-post__pic {
    min-width: 100%;
    height: 646px;
    margin-bottom: 30px;
}

.blog-post__title {
    margin-bottom: 43px;
    font-weight: bold;
    font-size: 30px;
    line-height: 41px;
    text-transform: uppercase;
}

.blog-post__text {
    font-size: 18px;
    line-height: 35px;
}

.blog-post-control {
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
}

.blog-post-control__btn {
    width: 330px;
}

.blog-post-control__btn:first-child span {
    margin-left: 0 !important;
    margin-right: 16px;
}

.blog-other {
    min-width: 450px;
    width: 450px;
}

.blog-other .blog-card {
    width: 100%;
    margin-bottom: 30px;
}

.blog-card__link:hover {
    text-decoration: underline;
    color: #fff;
}

.blog-other__title {
    font-weight: bold;
    font-size: 20px;
    line-height: 27px;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 63px;
}

.blog-card-cont {
    width: 100%;
}

.blog-other__btn {
    width: 100%;
}


/*===================================*/
/*======== Акции и скидки ===========*/
/*===================================*/

.discounts {
    padding-bottom: 150px;
}

.discounts__title {
    text-align: center;
    margin-bottom: 60px;
}

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

.discounts-card {
    width: 690px;
    margin-bottom: 38px;
}

.discounts-card__bg {
    width: 100%;
    height: 400px;
    display: block;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.discounts-card__top {
    position: absolute;
    left: 60px;
    top: 0;
    font-weight: bold;
    font-size: 100px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #000000;
    height: 100%;
    display: flex;
    align-items: center;
}

.discounts-card__top_sm {
    font-size: 60px;
}

.discounts-card__img {
    display: block;
    margin-left: auto;
    max-height: 100%;
}

.discounts-card__promo {
    font-weight: bold;
    font-size: 22px;
    line-height: 30px;
    text-transform: uppercase;
    color: #000000;
}


/*===================================*/
/*=========== 404 ошибка ============*/
/*===================================*/

.error-pg {
    padding: 0 0 150px;
}

.error-pg-wrap {
    height: 640px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: url(../img/404-img.png) no-repeat center top / cover;
}

.error-pg__title {
    font-weight: bold;
    font-size: 30px;
    line-height: 41px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
}

.error-pg__mess {
    font-size: 30px;
    line-height: 41px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 440px;
}

.error-pg__code span {
    display: none;
}

.error-bread {
    display: none;
}


/*===================================*/
/*=========== О компании ============*/
/*===================================*/

.about-pg {
    padding-bottom: 150px;
}

.about-pg__title {
    font-weight: bold;
    font-size: 30px;
    line-height: 41px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
}

.about-pg-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-pg-slider-wr {
    width: 48%;
}

.about-pg-slider {
    width: 100%;
}

.about-pg-slide {
    width: 100%;
    height: 445px;
}

.about-pg__text {
    width: 48%;
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 60px;
}

.slider-nav_about_1, .slider-nav_about_2 {
    margin: 40px 0 15px;
}

.about-pg__btn {
    margin: 0 auto;
}


/*=======================================*/
/*=========== Сеть магазинов ============*/
/*=======================================*/

.chain {
    padding-bottom: 120px;
}

.chain__title {
    text-align: center;
    margin-bottom: 69px;
}

.chain-tabs {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 10px;
    padding-right: 28px;
    margin-bottom: 20px;
}

.chain-tab {
    font-size: 18px;
    line-height: 25px;
    text-transform: uppercase;
    color: #000000;
    cursor: pointer;
    transition: 0.3s;
}

.chain-tab:hover {
    color: #FF87FA;
    transition: 0.3s;
}

.chain-tab:active {
    color: #C864C3;
}

.chain-tab.tabs-active {
    color: #FF87FA;
}

.chain-store {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    border-bottom: 1px solid #ccc;
}

.chain-store:last-child {
    border-bottom: 0;
}

.chain-store-cont {
    width: 31.5%;
    padding-top: 10px;
}

.chain-store-cont__item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.chain-store-cont__item img {
    margin-right: 15px;
}

.chain-store__photo {
    width: 31.5%;
    height: 248px;
    border: 1px solid #000;
}

.chain-store-map {
    width: 31.5%;
    height: 248px;
    border: 1px solid #000;
}

.chain-store-map__img {
    width: 100%;
    height: 100%;
}


/*===============================*/
/*=========== Бренды ============*/
/*===============================*/

.brands {
    padding: 50px 0 150px;
}

.brands__title {
    text-align: center;
    margin-bottom: 50px;
}

.brands-letters {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 37px;
}

.brands-letter {
    font-size: 18px;
    line-height: 25px;
    text-transform: uppercase;
}

.brands-words {
    columns: 4;
    padding-bottom: 56px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;
}

.brands-words:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.brands-word {
    display: block;
    margin-bottom: 25px;
}

.brands-word a {
    font-size: 18px;
    line-height: 25px;
    text-transform: uppercase;
}

.brands-word__title a {
    font-weight: 600;
    font-size: 30px !important;
}


/*===============================*/
/*=========== Каталог ===========*/
/*===============================*/

.catalog {
    padding-bottom: 150px;
}

.catalog__title {
    text-align: center;
    margin-bottom: 50px;
}

.catalog__text {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 50px;
}

.catalog__text_show {
    display: none;
}

.catalog-wrap .seares-filter {
    margin-bottom: 30px;
}


/*======================================*/
/*===== Акции и скидки одна акция ======*/
/*======================================*/

.catalog-stock {
    min-width: 690px;
    width: 690px;
    height: 400px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.catalog-stock-cont {
    position: absolute;
    top: 0;
    left: 57px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.catalog-stock__dis {
    font-size: 18px;
    line-height: 25px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.catalog-stock__name {
    font-weight: bold;
    font-size: 30px;
    line-height: 41px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.catalog-stock__img {
    display: block;
    height: 90%;
    margin-left: auto;
}

.catalog-stock-wrap {
    display: flex;
    justify-content: space-between;
    padding-bottom: 142px;
}

.catalog-stock__text {
    font-size: 18px;
    line-height: 35px;
    max-width: 690px;
    width: 100%;
}

.catalog-category {
    display: flex;
    flex-direction: column;
    min-width: 300px;
    width: 300px;
}

.catalog-category__item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.catalog-category__img-wr {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.catalog-category__img {
    max-height: 42px;
}

.catalog-category__item span {
    font-size: 18px;
    text-transform: uppercase;
}

.catalog-cont_3col {
    width: 1050px;
}

.catalog-wrap_f {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.catalog-wrap_f .seares-filter {
    width: 100%;
    padding-left: 360px;
}


/*======================================*/
/*============= Один бренд =============*/
/*======================================*/

.catalog-brand {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 150px;
}

.catalog-brand__logo-wr {
    min-width: 115px;
    width: 115px;
    height: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
}

.catalog-brand__logo {
    width: 100%;
}

.catalog-brand .catalog__text {
    font-size: 18px;
    line-height: 35px;
}


/*======================================*/
/*========= Оформление заказа ==========*/
/*======================================*/

.order-pg {
    padding-bottom: 150px;
}

.order-pg__title {
    text-align: center;
    margin-bottom: 50px;
}

.order-pg-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.deliv {
    max-width: 930px;
    width: 100%;
}

.deliv-title-wrap {
    display: flex;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 7px;
    margin-bottom: 30px;
}

.deliv__title {
    margin-bottom: 0;
    font-weight: bold;
    font-size: 22px;
    line-height: 30px;
    text-transform: uppercase;
}

.deliv__step {
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
}

.deliv-st1 {
    padding-bottom: 50px;
}

.deliv-st1-nav {
    display: flex;
    justify-content: space-between;
}

.deliv-st1-nav__item {
    background: #F6F6F6;
    max-width: 23%;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    box-sizing: border-box;
    margin-bottom: 38px;
    position: relative;
}

.deliv-st1-nav-cont {
    display: flex;
    align-items: center;
    pointer-events: none;
}

.deliv-st1-nav__icon {
    margin-right: 16px;
}

.deliv-st1-nav__name {
    font-size: 13px;
    line-height: 18px;
}

.deliv-st1-nav__check {
    min-width: 20px;
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    pointer-events: none;
}

.deliv-st1-nav .deliv-st1-nav__item.tabs-active .deliv-st1-nav__check {
    background: url(../img/radio-check.svg) no-repeat center center;
}

.deliv-st1-nav .deliv-st1-nav__item.tabs-active::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    background: url(../img/warning-arrow.svg) no-repeat center center;
    width: 20px;
    height: 20px;
    margin-top: 18px;
    margin-left: -10px;
}

.deliv-st1-content {
    border: 1px solid #000;
    display: flex;
    height: 517px;
    justify-content: space-between;
}

.deliv-st1-content-scroll-conv {
    width: 50%;
    height: 100%;
    overflow-x: hidden;
}

.deliv-st1-content-scroll {
    padding: 40px;
}

.deliv-st1-content__label {
    display: flex;
    margin-bottom: 36px;
    cursor: pointer;
}

.deliv-st1-content__label:last-child {
    margin-bottom: 0;
}

.deliv-st1-content-item__radio {
    margin-right: 23px;
}

.deliv-st1-content__info {
    margin-top: -6px;
}

.deliv-st1-content__info span {
    display: block;
    font-size: 16px;
    line-height: 30px;
}

.deliv-st1-content__label:hover span {
    text-decoration: underline;
}

.deliv-st1-content-maps {
    width: 50%;
    min-height: 100%;
}

.deliv-st1-content-map {
    width: 100%;
    height: 100%;
}

.deliv-st1-content-map__img {
    width: 100%;
    height: 100%;
}

.deliv-st1-content-item__radio {
    min-width: 20px;
    width: 20px;
    height: 20px;
    border-radius: 0;
    background: transparent;
    border: 1px solid #000;
    margin-right: 23px;
}

.deliv-st1-content-item__radio.focused {
    border: 1px solid #000;
}

.deliv-st1-content-item__radio.checked .jq-radio__div {
    background: url(../img/radio-check.svg) no-repeat center center;
    border-radius: 0;
    width: 100%;
    height: 100%;
    border: 0;
    box-shadow: 0 0 0;
    top: 0;
    left: 0;
    margin: 0;
}

.deliv-st2 {
    padding-bottom: 50px;
}

.deliv-st2-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.deliv-st2-form__select {
    margin-top: 15px;
    margin-right: 0;
    width: 211px;
}

.deliv-st2-form__placeinput {
    position:relative;
    margin-bottom: 30px;
    width: 330px;
    height: 50px;
}
.deliv-st2-form__placeinput:last-child {
    margin-right: auto;
    margin-left: 30px;
}
.deliv-st2-form__placeholder {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    position:absolute;
    left:5px;
    top:50%;
    transform:translateY(-50%);
    pointer-events:none;
    font-size: 18px;
    line-height: 25px;
    color: #8D8D8D;
    padding-left: 19px;
}
.deliv-st2-form__red {
    color: #FF87FA;
}
.deliv-st2-form__input {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    background: #F6F6F6;
    border: 0;
    width: 100%;
    height: 100%;
    padding-left: 19px;
    font-size: 18px;
    line-height: 25px;
    box-sizing: border-box;
}
.deliv-st2-form__input:focus {
    border: 1px solid #FF87FA;
}
.deliv-st2-form__input:placeholder {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #8D8D8D;
}
.deliv-st2-form__input:focus ~ .deliv-st2-form__placeholder,
.deliv-st2-form__input:valid ~ .deliv-st2-form__placeholder {
    display:none;
}

.deliv-st3 {
    padding-bottom: 0;
}

.deliv-st3-form {
    margin-bottom: 20px;
}

.deliv-st3-form__placeinput {
    width: 48%;
    margin-left: 0 !important;
}

.deliv-st3-form__label {
    width: 48%;
    display: flex;
    align-items: center;
    height: 50px;
}

.deliv-st3-form__label a {
    font-size: 13px;
    line-height: 18px;
    text-decoration-line: underline;
    color: #8D8D8D;
    max-width: 259px;
    display: block;
}

.deliv-st3-form__label a:hover {
    color: #FF87FA;
    transition: 0.3s;
}

.deliv-st3-form__check {
    width: 30px;
    height: 30px;
    border: 1px solid #000;
    border-radius: 0;
    background: transparent;
    margin-right: 21px;
}

.deliv-st3-form__check.focused {
    border: 1px solid #000;
}

.deliv-st3-form__check.checked .jq-checkbox__div {
    background: url(../img/radio-check.svg) no-repeat center center;
    border-radius: 0;
    width: 100%;
    height: 100%;
    border: 0;
    box-shadow: 0 0 0;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background-size: 70%;
    transform: rotate(0);
}

.deliv-st3-pay__title {
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 30px;
}

.deliv-st3-pay-wrap {
    display: flex;
    justify-content: space-between;
}

.deliv-st3-pay__btn {
    width: 450px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000000;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    color: #000000;
}

.deliv-st3-pay__btn:hover {
    border: 1px solid #FF87FA;
    color: #FF87FA;
    transition: 0.3s;
}

.deliv-st3-pay__btn-active {
    background: #FFEDFE;
    color: #000000;
    border: 1px solid transparent;
}

.order-cont {
    min-width: 450px;
    width: 450px;
    border: 1px solid #000;
    padding: 50px 30px;
}

.order-cont__title {
    font-size: 30px;
    line-height: 41px;
    margin-bottom: 20px;
}

.order-cont-wrap {
    margin-bottom: 50px;
}

.order-cont-item {
    display: flex;
    padding: 30px 0;
    border-bottom: 1px solid #ccc;
}

.order-cont-item:last-child {
    border-bottom: 0;
}

.order-cont-item__img {
    min-width: 120px;
    width: 120px;
    height: 120px;
    background: #F7F7F7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
}

.order-cont-item__img img {
    width: 90%;
}

.order-cont-item__cat {
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.order-cont-item__name {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    color: #000000;
}

.deliv-st4__btn {
    max-width: 450px;
    width: 100%;
    margin: 50px auto 0;
}

.deliv-st1__comment {
    font-size: 16px;
    line-height: 30px;
    text-decoration-line: underline;
    margin-top: 18px;
    display: inline-block;
}


/*======================================*/
/*========== Личный кабинет ============*/
/*======================================*/

.cabinet {
    padding-bottom: 150px;
}

.cabinet__title {
    text-align: center;
    margin-bottom: 50px;
}

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

.cabinet-nav {
    width: 450px;
}

.cabinet-nav-tabs {
    width: 100%;
}

.cabinet-nav-tab {
    width: 100%;
    margin-bottom: 30px;
    cursor: pointer;
}

.cabinet-nav-tab:hover {
    color: #000 !important;
}

.cabinet-nav-tab.tabs-active {
    border: 1px solid #FF87FA;
    color: #FF87FA;
}

.cabinet-nav-tab:active {
    color: #FF87FA;
}

.cabinet-nav__btn {
    width: 100%;
}

.cabinet-contents {
    max-width: 930px;
    width: 100%;
}

.cabinet-content {
    width: 100%;
}

.cabinet-content__title {
    font-weight: bold;
    font-size: 22px;
    line-height: 30px;
    text-transform: uppercase;
    color: #000000;
    width: 100%;
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 10px;
    text-align: left;
    margin-bottom: 30px;
    margin-top: 50px;
}
.cabinet-content__title:first-child {
    margin-top: 0;
}

.cabinet-content-form {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
    align-items: center;
}

.cabinet-content__input {
    width: 48%;
    height: 50px;
    background: #F6F6F6;
    padding-left: 21px;
    padding-right: 12px;
    border: 0;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 25px;
}

.cabinet-content__input:focus {
    border: 1px solid #FF87FA;
}

.cabinet-content__input::placeholder {
    font-size: 18px;
    line-height: 25px;
    color: #C4C4C4;
}

.cabinet-content__label {
    font-size: 18px;
    line-height: 25px;
    color: #C4C4C4;
    width: 100%;
    margin-bottom: 20px;
}

.cabinet-content__pass {
    font-size: 18px;
    line-height: 25px;
    text-decoration-line: underline;
    margin-top: 20px;
}

.cabinet-content__btn {
    width: 328px;
    border: 0;
    cursor: pointer;
    margin-top: 20px;
}

.cabinet-content-order {
    margin-bottom: 30px;
    transition: 0.5s;
}

.cabinet-content-order__name {
    font-size: 18px;
    line-height: 25px;
    text-transform: uppercase;
    padding-bottom: 6px;
    border-bottom: 1px solid #ccc;
    background: url(../img/select-arrow-icon.svg) no-repeat right 8px top 6px;
    cursor: pointer;
    transition: 0.3s;
}

.cabinet-content-order-wr {
    border: 1px solid transparent;
    padding: 0 40px;
    max-height: 0;
    overflow: hidden;
    transition: 0.5s;
}

.cabinet-content-order-active {
    margin-bottom: 50px;
}

.cabinet-content-order-active .cabinet-content-order-wr {
    max-height: 2500px;
    border: 1px solid #000;
    transition: 0.5s;
}

.cabinet-content-order-active .cabinet-content-order__name {
    background: url(../img/select-arrow-icon_up.svg) no-repeat right 8px top 6px;
    border-bottom: 1px solid #FF87FA;
    margin-bottom: 20px;
    transition: 0.3s;
}

.cabinet-content-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid #CCCCCC;
}

.cabinet-content-card:hover {
    color: #000;
}

.cabinet-content-card:first-child {
    margin-top: 10px;
}

.cabinet-content-card-place {
    display: flex;
    max-width: 450px;
    width: 100%;
}

.cabinet-content-card__img {
    min-width: 120px;
    width: 120px;
    height: 120px;
    margin-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F7F7F7;
}

.cabinet-content-card__img img {
    width: 90%;
}

.cabinet-content-card__cat {
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cabinet-content-card__name {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    color: #000000;
}

.cabinet-content-card-price-wr {
    max-width: 250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cabinet-content-card__num {
    font-size: 18px;
    line-height: 25px;
    text-transform: uppercase;
}

.cabinet-content-card__price {
    font-weight: bold;
    font-size: 30px;
    line-height: 41px;
    text-transform: uppercase;
}

.cabinet-content-card-result {
    display: flex;
    justify-content: space-between;
    height: 95px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.cabinet-content-card-result > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

.cabinet-content-card-result > div:nth-child(2) {
    margin-left: auto;
    margin-right: 56px;
}

.cabinet-content-card-result__title {
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
}

.cabinet-content-card-result__text {
    font-weight: bold;
    font-size: 18px;
    line-height: 25px;
    text-transform: uppercase;
    color: #000000;
    max-width: 400px;
}

.cabinet-content-card-result__text-pr {
    font-weight: bold;
    font-size: 40px;
    text-transform: uppercase;
}




.hover > a {
    color: #000 !important;
    text-decoration-line: underline !important;
}


/* ====== Media Quaries ====== */

/* 1200-1500 */
@media screen and (max-width: 1500px) {
    .container {
        width: 1140px;
    }

    /*Меню*/
    .mobile_menu_content > ul > li > ul {
        padding: 0 calc((100% - 1140px)/2);
    }
    .menu-banner {
        width: 400px !important;
        height: 300px !important;
        right: calc((100% - 1140px)/2);
    }


    /* ====== Header ====== */
    .nav {
        max-width: 600px;
    }
    .form-search__input {
        max-width: 500px;
    }
    .sub-menu-banner {
        width: 400px;
    }

    /*======= Footer ======*/
    .footer-menu__item {
        font-size: 16px;
    }
    .footer-menu {
        margin-right: 40px;
    }
    .footer-col_3 .footer-menu:first-child {
        margin-right: 80px;
    }
    .footer-col_2 {
        padding: 0 50px 0 50px;
        margin-right: 0;
    }

    /*===== Home =====*/
    .ban-min-item {
        width: 270px;
    }
    .ban-min-item span {
        font-size: 14px;
        width: 62%;
    }
    .disc-card_big {
        width: 49%;
    }
    .disc-card_small {
        width: 32%;
    }
    .product-card {
        margin: 0 10px;
    }
    .product-card__bg {
        height: 280px;
    }
    .product-card__name {
        font-size: 14px;
    }
    .product-card-price__current {
        font-size: 24px;
    }
    .product-card-price__sale {
        font-size: 18px;
    }
    .product-card__btn {
        width: 75px;
        height: 40px;
    }
    .insta-card {
        width: 175px;
    }
    .insta-card__bg {
        height: 175px;
        margin-bottom: 20px;
    }
    .blog-card {
        width: 400px;
    }
    .blog-wrap .blog-card:nth-child(1) {
        width: 710px;
    }
    .about__text {
        width: 47%;
        max-width: none;
    }

    /*================================================*/
    /*============= Результат поиска =================*/
    /*================================================*/
    .search-cat-card {
        margin: 0 10px;
    }
    .seares-wrap .product-card {
        width: 23%;
        margin: 0 1% 30px;
    }
    .seares-wrap .product-card__img {
    	margin: 0 auto;
    }
    .seares-filter_cat .seares-filter__range-wr {
        width: 140px;
    }
    .seares-filter__select {
        width: 140px;
    }
    .seares-filter__select_sale {
        width: 90px;
    }

    /*================================================*/
    /*============= Карточка продукта ================*/
    /*================================================*/
    .product-left {
        min-width: 550px;
        height: 550px;
    }
    .product-img {
        max-width: none;
        width: 85%;
    }
    .product-right {
        max-width: 550px;
    }
    .product__title_desk {
        font-size: 25px;
        line-height: 35px;
        min-height: 100px;
    }
    .product-param__prop {
        font-size: 16px;
    }
    .product-param__value {
        font-size: 16px;
    }
    .product-param {
        margin-bottom: 20px;
    }
    .product-param-wrap {
        margin-bottom: 30px;
    }
    .product-count__btn {
        width: 60px;
    }
    .product-count__input {
        width: 80px;
    }
    .product-count {
        width: 230px;
    }
    .product__btn {
        width: 260px;
    }
    .product-price {
        margin-bottom: 30px;
    }
    .product-count-btn {
        margin-bottom: 30px;
    }
    .product-comment__input {
        width: 46%;
    }
    .product-comment-left {
        margin-right: 30px;
    }

    /*======================================*/
    /*============= Корзина ================*/
    /*======================================*/
    .cartpg-order {
        padding: 50px 40px;
        width: 400px;
    }
    .cartpg-left {
        width: 730px;
    }
    .cartpg-card {
        padding-right: 50px;
    }
    .cartpg-card-count-warning {
        width: 360px;
    }

    /*========================================*/
    /*============= Избранное ================*/
    /*========================================*/
    .favor .product-card {
        width: 23%;
        margin: 0 1% 30px;
    }
    .favor-sim__link {
        width: 80px;
        height: 80px;
    }

    /*===================================*/
    /*============= Блог ================*/
    /*===================================*/
    .blog-other {
        min-width: 400px;
        width: 400px;
    }
    .blog-other .blog-card {
        height: 260px;
    }
    .blog-post {
        max-width: 700px;
    }
    .blog-post__pic {
        height: 500px;
    }

    /*===================================*/
    /*======== Акции и скидки ===========*/
    /*===================================*/
    .discounts-card {
        width: 48%;
    }
    .discounts-card__bg {
        height: 360px;
    }

    /*===================================*/
    /*=========== О компании ============*/
    /*===================================*/
    .about-pg__text {
        font-size: 16px;
        line-height: 22px;
    }

    /*======================================*/
    /*===== Акции и скидки одна акция ======*/
    /*======================================*/
    .catalog-stock {
        min-width: 600px;
        width: 600px;
    }
    .catalog-stock__text {
        width: 500px;
    }
    .catalog-cont_3col {
        width: 780px;
    }
    .catalog-cont_3col .product-card {
        width: 31%;
    }
    .catalog-cont_3col .product-card__bg {
        height: 240px;
    }
    .catalog-stock__text {
        margin-bottom: 0;
    }

    /*======================================*/
    /*========= Оформление заказа ==========*/
    /*======================================*/
    .deliv {
        max-width: 800px;
        width: 100%;
    }
    .order-cont {
        min-width: 320px;
        width: 320px;
    }
    .order-pg-wrap .order-cont-item {
        flex-direction: column;
    }
    .order-pg-wrap .order-cont-item__img {
        margin-bottom: 15px;
    }
    .order-pg-wrap .cartpg-order-param__value_3 {
        font-size: 30px;
    }
    .order-pg-wrap .cartpg-order-param__prop {
        font-size: 16px;
    }
    .order-cont-item__img {
        min-width: 80px;
        width: 80px;
        height: 80px;
    }
    .order-pg-wrap .seares-filter__select {
        width: 48%;
    }
    .deliv-st2-form__placeinput {
        width: 48%;
    }
    .deliv-st2-form__placeinput:last-child {
        margin-left: 0;
    }
    .deliv-st3-pay__btn {
        width: 48%;
    }

    /*======================================*/
    /*========== Личный кабинет ============*/
    /*======================================*/
    .cabinet-nav {
        width: 300px;
    }
    .cabinet-contents {
        max-width: 800px;
    }

}
/* 992-1200 */
@media screen and (max-width: 1200px) {
    .container {
        width: 960px;
    }

    /*Меню*/
    .mobile_menu_content > ul > li > ul {
        padding: 0 calc((100% - 960px)/2);
    }
    .mobile_menu_content > ul > li > a {
        font-size: 15px;
    }
    .menu-banner {
        right: calc((100% - 960px)/2);
    }

    /* ====== Header ====== */
    .nav {
        max-width: 520px;
    }
    .menu__link {
        font-size: 15px;
    }
    .form-search__input {
        width: 400px;
    }
    .sub-menu-banner {
        display: none;
    }

    /*======= Footer ======*/
    .footer-menu__item {
        font-size: 14px;
    }
    .footer-col_3 .footer-menu:first-child {
        margin-right: 50px;
    }
    .footer-col_2 {
        padding: 0 40px 0 40px;
    }

    /*===== Home =====*/
    .ban-min-item {
        width: 230px;
        height: 90px;
    }
    .disc-card_big {
        width: 100%;
    }
    .disc-card_small:nth-child(5) {
        display: none;
    }
    .disc-card_small {
        width: 48%;
    }
    .insta-card {
        width: 150px;
    }
    .insta-card__bg {
        height: 150px;
        margin-bottom: 12px;
    }
    .insta-card__name {
        font-size: 12px;
        line-height: normal;
    }
    .blog-wrap {
        height: auto;
        flex-direction: row;
    }
    .blog-card {
        width: 48%;
        margin-left: 0;
    }
    .blog-wrap .blog-card:nth-child(1) {
        width: 100%;
        margin-bottom: 40px;
    }
    .about-wrap {
        flex-direction: column;
    }
    .about__text {
        width: 100%;
        margin-bottom: 25px;
    }
    .product-card-status div {
        width: 85px;
        height: 40px;
        font-size: 13px;
    }

    /*================================================*/
    /*============= Результат поиска =================*/
    /*================================================*/
    .search-cat-card {
        width: 24%;
        margin: 0 10px;
    }
    .seares-filter_cat {
        padding-right: 200px;
    }
    .seares-filter_cat .seares-filter__price {
        margin-bottom: 30px;
    }

    /*================================================*/
    /*============= Карточка продукта ================*/
    /*================================================*/
    .product-left {
        min-width: 400px;
        height: 400px;
    }
    .product-comment-right {
        max-width: 400px;
        width: 100%;
    }
    .product-comment-captcha img {
        width: 90%;
    }

    /*======================================*/
    /*============= Корзина ================*/
    /*======================================*/
    .cartpg-order {
        padding: 50px 60px;
        width: 100%;
        order: 3;
    }
    .cartpg-left {
        width: 100%;
        order: 1;
    }
    .cartpg-status {
        order: 2;
        margin: 10px 0 50px;
    }
    .cartpg-card-count-warning {
        width: 360px;
    }
    .cartpg-wrap {
        flex-direction: column;
    }

    /*========================================*/
    /*============= Избранное ================*/
    /*========================================*/
    .favor-sim__link {
        width: 70px;
        height: 70px;
    }
    .product-card__bg {
        height: 240px;
    }

    /*===================================*/
    /*============= Блог ================*/
    /*===================================*/
    .blog-post-wrap {
        flex-direction: column;
    }
    .blog-post {
        width: 100%;
        max-width: none;
    }
    .blog-other {
        width: 100%;
        min-width: auto;
    }
    .blog-other-wrap {
        display: flex;
        justify-content: space-between;
    }
    .blog-other .blog-card:nth-child(3), .blog-other .blog-card:nth-child(4), .blog-other .blog-card:nth-child(5) {
        display: none;
    }
    .blog-other .blog-card {
        width: 48%;
        margin-bottom: 0;
    }
    .blog-other__btn {
        max-width: 450px;
        margin: 50px auto 0;
    }
    .blog-post {
        margin-bottom: 115px;
    }
    .blog-other__title {
        text-align: center;
        margin-bottom: 30px;
    }

    /*===================================*/
    /*======== Акции и скидки ===========*/
    /*===================================*/
    .discounts-card__bg {
        height: 320px;
    }
    .discounts-card__top {
        font-size: 70px;
        left: 50px;
    }
    .discounts-card__top_sm {
        font-size: 40px;
    }
    .discounts-card__promo {
        font-size: 18px;
        line-height: 30px;
    }

    /*=======================================*/
    /*=========== Сеть магазинов ============*/
    /*=======================================*/
    .chain-tab {
        font-size: 16px;
    }

    /*===============================*/
    /*=========== Бренды ============*/
    /*===============================*/
    .brands-words {
        columns: 3;
    }

    /*======================================*/
    /*===== Акции и скидки одна акция ======*/
    /*======================================*/
    .catalog-cont_3col {
        width: 600px;
    }
    .catalog-cont_3col .product-card {
        width: 48%;
    }
    .catalog-category {
        min-width: 250px;
        width: 250px;
    }
    .catalog-category__item span {
        font-size: 16px;
    }
    .catalog-wrap_f .seares-filter {
        padding-left: 290px;
    }
    .catalog-cont_3col {
        width: 670px;
    }
    .catalog-cont_3col .product-card__bg {
        height: 300px;
    }
    .catalog-stock-wrap {
        flex-wrap: wrap;
    }
    .catalog-stock {
        width: 100%;
        margin-bottom: 50px;
    }
    .catalog-stock__text {
        width: 100%;
        max-width: none;
    }

    /*======================================*/
    /*========= Оформление заказа ==========*/
    /*======================================*/
    .deliv-st1-nav .deliv-st1-nav__item.tabs-active::before {
        display: none;
    }
    .deliv-st1-nav__item {
        max-width: none;
        width: 200px;
        margin-bottom: 30px;
    }
    .deliv-st1-nav {
        flex-wrap: wrap;
    }
    .deliv {
        max-width: 700px;
        margin-right: 20px;
    }
    .deliv-st1-content-scroll {
        padding: 40px 25px;
    }
    .deliv-st1-content-item__radio {
        margin-right: 12px;
    }
    .deliv-st3-form__check {
        min-width: 30px;
    }

    /*======================================*/
    /*========== Личный кабинет ============*/
    /*======================================*/
    .cabinet-wrap {
        flex-direction: column;
    }
    .cabinet-nav {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 50px;
    }
    .cabinet-nav-tabs {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .cabinet-nav-tab {
        width: 48%;
    }
    .cabinet-nav__btn {
        width: 48%;
    }
    .cabinet-contents {
        width: 100%;
        max-width: none;
    }

}
/* 768-992 */
@media screen and (max-width: 992px) {
    .container {
        width: 720px;
    }

    .header {
        position: fixed !important;
    }
    .header-scroll {
        position: fixed !important;
        background: #fff;
        animation: none;
    }
    .header-scroll .nav-search-hide {
        display: flex;
    }
    .header-scroll .soc-num-persone {
        margin-bottom: 0;
    }
    .header-scroll .logo {
        margin-bottom: 0;
    }

    /*Меню*/
    .menu-banner {
        margin: 100px 20px 20px;
        position: static;
        right: auto;
        width: 90% !important;
        height: 300px !important;
    }
    .mobile_menu_content > ul > li > ul {
        padding: 0;
    }
    .body-over {
        overflow: hidden;
    }

    .mobile_menu_content ul {
        flex-direction: column;
        justify-content: flex-start;
        height: 100% !important;
        min-height: auto !important;
        max-height: none !important;
    }
    .mobile_menu_content {
        height: 100%;
    }

    /*Убираю эффекты меню десктопа*/
    .mobile_menu_content > ul > li > ul li:nth-child(2) {
        margin-top: 0;
    }
    .mobile_menu_content > ul > li > ul {
        max-height: none;
        height: auto;
    }
    .mobile_menu_content > ul > li > ul li ul {
        position: absolute;
        top: 0;
        left: 0;
        margin-left: 0;
        transition: 0.3s;
    }
    .mobile_menu_content > ul > li > ul li {
        width: auto;
    }
    .mobile_menu_content > ul > li > ul li:hover > ul {
        display: flex;
        animation: none;
    }
    .mobile_menu_content > ul > li > ul li.hover > ul {
        display: flex;
        animation: none;
    }
    .mobile_menu_content > ul > li:hover > ul {
        max-height: none;
        border-bottom: none;
        transition: 0.2s;
    }
    .mobile_menu_content li:last-child {
        margin-bottom: 100px !important;
    }


    /*Меню моблиьное*/
    .mobile_menu_overlay, .mobile_menu_container{
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .mobile_menu_overlay {
        top: 90px;
    }
    .mobile_menu_container, .mobile_menu_container ul li ul{
        -webkit-transition: all 200ms;
        -moz-transition: all 200ms;
        transition: all 200ms;
    }
    .mobile_menu_overlay{
        display: none;
        cursor: pointer;
        z-index: 10200;
        background: rgba(0, 0, 0, 0.5);
    }
    .mobile_menu_overlay_on {
        display: block;
    }
    .mobile_menu_container{
        -webkit-transform: translateX(-430px) !important;
        transform: translateX(-430px) !important;
        width: 430px;
        overflow-x: hidden;
        z-index: 10201;
        background: #fff;
    }
    .mobile_menu_container.loaded{
        -webkit-transform: translateX(0px) !important;
        transform: translateX(0px) !important;
    }
    .mobile_menu_container .mobile_menu_content{
        overflow: auto;
        max-height: none;
        padding-bottom: 30px;
    }
    .mobile_menu_container ul{
        margin: 0;
        padding: 0;
    }
    .mobile_menu_container ul li {
        list-style: none;
        border-bottom: 0;
    }
    .mobile_menu_container ul li:hover {
        border-bottom: 0;
    }
    .mobile_menu_container ul li a{
        display: block;
        padding: 15px 20px;
        line-height: 20px;
        font-size: 16px;
        background: transparent;
        color: #000;
        text-decoration: none;
        font-weight: bold;
    }
    .mobile_menu_container ul li a.parent{
        padding-right: 50px;
        background-size: 20px;
    }
    .mobile_menu_container ul li a.parent:hover{
        background-size: 20px;
    }
    .mobile_menu_container ul li a.back{
        padding-left: 50px;
        background: #fff url("../img/menu-back-arrow.svg") left 20px center no-repeat;
        background-size: 20px;
        box-sizing: border-box;
        min-height: 50px;
    }
    .mobile_menu_container ul li a.back:hover{
        background: #fff url("../img/menu-back-arrow.svg") left 20px center no-repeat;
        background-size: 20px;
    }
    .mobile_menu_container ul li a:hover{
        background: #fff;
    }
    .mobile_menu_container ul li ul{
        -webkit-transform: translateX(430px) !important;
        transform: translateX(430px) !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 2;
    }
    .mobile_menu_container ul li ul.loaded{
        -webkit-transform: translateX(0px) !important;
        transform: translateX(0px) !important;
    }
    .mobile_menu_container ul li ul.activity{
        overflow-y: auto;
        overflow-x: hidden;
    }
    .mobile_menu_container ul li a {
        padding: 16px 20px !important;
        box-sizing: border-box;
        color: #000 !important;
        font-size: 25px !important;
        line-height: normal !important;
    }
    .mobile_menu_content > ul {
        padding-top: 18px;
    }
    .mobile_menu_content > ul > li:first-child {
        background: url(../img/menu-arrow.svg) no-repeat right 20px top 30px;
    }
    .menu-sub-arrow {
        background: url(../img/menu-arrow.svg) no-repeat right 20px top 30px;
    }
    .back {
        display: block !important;
        width: 100%;
        text-align: center;
        font-size: 30px !important;
        font-weight: bold !important;
        padding: 40px 0 !important;
    }


    /* ====== Header ====== */
    .header {
        padding: 17px 0;
    }
    .logo-desk {
        display: none;
    }
    .logo-mob {
        display: block;
    }
    .mob-menu {
        display: block;
        min-width: 30px;
        min-height: 30px;
        background: url(../img/menu-open.svg) no-repeat center center;
    }
    .mob-menu_close {
        background: url(../img/menu-close.svg) no-repeat center center;
    }
    .header-wrap {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }
    .header-row {
        align-items: center;
        margin-bottom: 0;
    }
    .header-row:last-child {
        align-items: center;
    }
    .header-soc {
        display: none;
    }
    .header-pers__name {
        display: none;
    }
    .header-mag-nav__heart {
        display: none;
    }
    .soc-num-persone {
        margin-bottom: 0;
    }
    .header-or-1 {
        order: 1;
    }
    .header-or-2 {
        order: 2;
    }
    .header-or-3 {
        order: 3;
    }
    .header-or-4 {
        order: 4;
    }
    .header-or-5 {
        order: 5;
    }
    .header-mag-nav img {
        height: 34px;
    }
    .header-mag-nav__count {
        top: 0px;
        width: 18px;
        height: 18px;
    }
    .form-search {
        display: flex;
        align-items: center;
        flex-direction: column;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        display: none;
        z-index: 20000;
    }
    .form-search__input {
        max-width: none;
        width: 100%;
        height: 65px;
        background: #F2F2F2;
        padding-left: 39px;
    }
    .form-search__btn {
        top: 10px;
        right: 39px;
    }
    .form-search__btn svg {
        width: 45px;
        height: 45px;
    }
    .search-res {
        width: 100%;
        position: relative;
        display: block !important;
        z-index: 100;
    }
    .form-search__btn_close {
        top: 10px;
        right: 153px;
        display: block !important;
    }
    .form-search__btn_close svg {
        width: 45px;
        height: 45px;
    }

    .search-mob__btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .search-mob__btn svg {
        width: 42px;
        height: 42px;
    }
    .header-or-4 svg {
        width: 25px;
        height: 34px;
    }
    .header-or-5 svg {
        width: 36px;
        height: 37px;
    }

    .header-wr-1 {
        order: 1;
        width: 30%;
    }
    .header-wr-2 {
        order: 2;
        /*width: 33%;*/
    }
    .header-wr-3 {
        order: 3;
        width: 30%;
    }


    /*======= Footer ======*/
    .footer-wrap {
        flex-wrap: wrap;
    }
    .footer-menu__item {
        font-size: 18px;
    }
    .footer-col_2:after {
        display: none;
    }
    .footer-col_2 {
        padding-right: 0;
        padding-left: 60px;
    }
    .footer-menu {
        margin-right: 60px;
    }
    .footer-col_3 {
        width: 100%;
    }
    .footer-col_3 .footer-menu-wrap {
        flex-direction: column-reverse;
    }
    .footer-col_3 .footer-menu-wrap .footer-menu:last-child {
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 30px 60px 0;
        border-top: 1px solid #868686;
        border-bottom: 1px solid #868686;
        margin-bottom: 28px;
    }
    .footer-col_3 .footer-menu-wrap .footer-menu:last-child .footer-menu__item {
        width: 50%;
        margin-bottom: 38px;
    }
    .footer-col_3 .footer-menu:first-child {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-right: 0;
    }
    .footer-col_3 .footer-menu:first-child .footer-menu__item {
        margin-bottom: 0;
    }
    .footer-col_3 .footer__title {
        margin-bottom: 30px;
        height: 0;
    }
    .copy-wrap {
        border: 0;
        padding-top: 5px;
        padding-bottom: 40px;
    }
    .footer-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
    }

    /*===== Home =====*/
    .ban-min-wrap {
        flex-wrap: wrap;
    }
    .ban-min-item {
        width: 48%;
        height: 120px;
        margin-bottom: 30px;
    }
    .ban-min-item span {
        width: 58%;
    }
    .disc-card_big {
        height: 300px;
    }
    .disc-card__img {
        max-height: 200px;
    }
    .disc-card_big .disc-card__img {
        min-height: 300px;
    }
    .disc-card_small {
        padding-left: 30px;
        height: 300px;
    }
    .disc-card__text {
        max-width: 201px;
    }
    .disc-card_small .disc-card__text {
        font-size: 16px;
    }
    .product-card__img {
        max-width: 200px;
    }
    .product-card__bg {
        height: 210px;
    }
    .product-card__name {
        line-height: 19px;
        margin-bottom: 0;
        height: 80px;
        overflow: hidden;
    }
    .product-card-price__current {
        font-size: 20px;
    }
    .product-card-price__sale {
        font-size: 16px;
        padding: 0 5px;
    }
    .product-card__btn {
        width: 60px;
        height: 40px;
    }
    .insta-card {
        width: 210px;
    }
    .insta-card__bg {
        height: 210px;
        margin-bottom: 25px;
    }
    .insta-card__name {
        font-size: 16px;
    }
    .blog-card {
        width: 48%;
        height: 226px;
    }
    .blog-wrap .blog-card:nth-child(1) {
        width: 100%;
        height: 480px;
        margin-bottom: 30px;
    }
    .subscribe__title {
        max-width: 401px;
        margin: 0 auto 30px;
    }
    h2 {
        margin-bottom: 50px;
    }
    .ban-min {
        padding: 50px 0 30px;
    }
    .disc {
        padding: 60px 0;
    }
    .new {
        padding: 60px 0;
    }
    .hit {
        padding: 60px 0;
    }
    .insta {
        padding: 60px 0 90px;
    }
    .blog {
        padding: 120px 0 60px;
    }
    .about {
        padding: 60px 0 120px;
    }
    .offer-slide__title {
        margin-bottom: 0;
    }
    .offer-slide__text {
        margin-bottom: 60px;
    }
    .offer-slide-content {
        background-position: left 30% top !important;
    }
    .offer {
        margin-top: 90px;
    }
    .breadcrumbs {
        margin-top: 90px;
    }

    /*================================================*/
    /*============= Результат поиска =================*/
    /*================================================*/
    .search-cat-card {
        width: 31%;
        margin: 0 10px;
    }
    .seares-wrap {
        justify-content: flex-start;
    }
    .seares-wrap .product-card {
        width: 31%;
        margin: 0 1% 30px;
    }
    .seares-filter_cat .seares-filter__range-wr {
        width: 140px;
    }
    .seares-filter__select {
        width: 140px;
    }
    .seares-filter_cat .seares-filter__price {
        width: 140px;
    }

    /*================================================*/
    /*============= Карточка продукта ================*/
    /*================================================*/
    .product-wrap {
        flex-direction: column;
    }
    .product-left {
        min-width: auto;
        width: 100%;
        height: 690px;
        margin-bottom: 30px;
        overflow: hidden;
        margin-right: 0;
    }
    .breadcrumbs-wrap {
        overflow: hidden;
        white-space: nowrap;
    }
    .product-right {
        max-width: none;
        width: 100%;
    }
    .product__title_mob {
        display: block;
        margin-bottom: 50px;
        font-weight: 600;
        font-size: 30px;
        line-height: 50px;
        text-transform: uppercase;
        color: #000000;
    }
    .product__title_desk {
        display: none;
    }
    .product-param {
        margin-bottom: 30px;
    }
    .product-art-logo {
        margin-bottom: 30px;
    }
    .product-param-wrap {
        margin-bottom: 40px;
    }
    .product-price {
        margin-bottom: 44px;
    }
    .product-count {
        width: 47%;
    }
    .product-count__btn {
        width: 29%;
    }
    .product-count__input {
        width: 29%;
    }
    .product__btn {
        width: 47%;
    }
    .product-count-btn {
        margin-bottom: 44px;
    }
    .product-info-tab {
        font-size: 20px;
        line-height: 27px;
        text-transform: uppercase;
        color: #8A8A8A;
    }
    .product-info-tab.tabs-active {
        font-size: 20px;
        line-height: 27px;
    }
    .product-comment {
        flex-direction: column;
    }
    .product-comment-left {
        margin-right: 0;
        margin-bottom: 30px;
    }
    .product-comment-right {
        flex-direction: row;
        width: 100%;
        max-width: none;
    }
    .product-comment__btn {
        width: 48%;
    }
    .product-comment-captcha {
        width: 48%;
    }

    /*======================================*/
    /*============= Корзина ================*/
    /*======================================*/
    .cartpg-card__img {
        order: 1;
    }
    .cartpg-card-name-cat {
        order: 2;
    }
    .cartpg-card-count {
        order: 4;
        margin-left: 150px;
        margin-top: -25px;
    }
    .cartpg-card-price {
        order: 3;
        justify-content: flex-start;
    }
    .cartpg-card {
        flex-wrap: wrap;
    }
    .cartpg-card__cat {
        display: none;
    }
    .cartpg-card__close {
        top: 10%;
    }
    .cartpg-card-count-warning {
        width: 467px;
    }
    .cartpg-stock__text {
        margin-right: 14px;
    }
    .cartpg-order-param:first-child {
        display: none;
    }

    /*========================================*/
    /*============= Избранное ================*/
    /*========================================*/
    .favor .product-card {
        width: 47%;
        margin: 0 1.5% 30px;
    }
    .favor .product-card__bg {
        height: 330px;
    }
    .favor .product-card__name {
        font-size: 18px;
        line-height: 25px;
    }
    .favor-sim__link {
        width: 90px;
        height: 90px;
    }
    .favor .product-card-price__current {
        font-size: 30px;
    }
    .favor .product-card-price__sale {
        font-size: 20px;
    }

    /*===================================*/
    /*============= Блог ================*/
    /*===================================*/
    .blog-pg-close {
        display: none;
    }
    .blog-pg-wrap {
        margin-top: 0;
    }
    .blog-pg__title {
        margin-bottom: 70px;
    }
    .blog-pg-card {
        flex-direction: column;
    }
    .blog-pg-card__img {
        width: 100%;
        margin-bottom: 30px;
        height: 387px;
    }
    .blog-pg-card__cont {
        max-width: none;
        width: 100%;
        margin-left: 0;
    }
    .blog-post__pic {
        height: 480px;
    }
    .blog-post-control {
        margin-top: 80px;
    }
    .blog-post .blog-pg-card-vis-soc {
        margin-bottom: 50px;
    }

    /*===================================*/
    /*======== Акции и скидки ===========*/
    /*===================================*/
    .discounts-card {
        width: 100%;
    }
    .discounts-card__bg {
        height: 400px;
    }
    .discounts-card__top {
        font-size: 100px;
    }
    .discounts-card__top_sm {
        font-size: 60px;
    }
    .discounts-card__promo {
        font-size: 22px;
        line-height: 30px;
    }
    .discounts__title {
        margin-bottom: 50px;
    }

    /*===================================*/
    /*=========== 404 ошибка ============*/
    /*===================================*/
    .error-pg-wrap {
        background-position: center top 100px;
        background-size: 200%;
    }

    /*===================================*/
    /*=========== О компании ============*/
    /*===================================*/
    .about-pg-slider-wr {
        width: 100%;
    }
    .about-pg__text {
        width: 100%;
    }
    .about-pg_or1 {
        order: 1;
    }
    .about-pg_or2 {
        order: 2;
    }
    .about-pg_or3 {
        order: 4;
    }
    .about-pg_or4 {
        order: 3;
    }
    .about-pg {
        padding-bottom: 120px;
    }
    .about-pg__text {
        font-size: 18px;
        line-height: 30px;
    }

    /*=======================================*/
    /*=========== Сеть магазинов ============*/
    /*=======================================*/
    .tabs-items-sel_s {
        display: block;
        font-size: 18px;
        line-height: 25px;
        text-transform: uppercase;
        color: #FF87FA;
        border-bottom: 1px solid #000;
        padding-bottom: 6px;
        margin-bottom: 40px;
        background: url(../img/select-arrow-icon.svg) no-repeat right 8px center;
    }
    .tabs-items-sel_click_s {
        border-bottom: 1px solid #FF87FA;
        background: url(../img/select-arrow-icon_up.svg) no-repeat right 8px center;
    }
    .tabs-items_s {
        border: 1px solid #000000;
        background: #fff;
        padding: 30px 27px;
        width: 100%;
        position: absolute;
        margin-top: -26px;
        z-index: 50;
        display: none;
    }
    .tabs-item_s {
        margin-bottom: 18px;
    }
    .tabs-item_s:last-child {
        margin-bottom: 0;
    }
    .tabs_s {
        position: relative;
    }

    .chain-store {
        flex-wrap: wrap;
    }
    .chain-store-cont {
        order: 3;
        width: 100%;
    }
    .chain-store__photo {
        order: 1;
        width: 48%;
        margin-bottom: 40px;
    }
    .chain-store-map {
        order: 2;
        width: 48%;
        margin-bottom: 40px;
    }

    /*===============================*/
    /*=========== Бренды ============*/
    /*===============================*/
    .brands-words {
        columns: 2;
    }
    .brands-wrap {
        display: flex;
        flex-direction: row-reverse;
        position: relative;
    }
    .brands-words-wrap {
        width: 100%;
        margin-right: 0;
    }
    .brands-letters {
        position: fixed;
        bottom: 0;
        flex-direction: column;
    }
    .brands-letter {
        font-weight: 600;
        font-size: 12px;
        letter-spacing: 0;
        line-height: 80%;
        width: 10px;
        margin-bottom: 10px;
    }

    /*======================================*/
    /*===== Акции и скидки одна акция ======*/
    /*======================================*/
    .catalog-wrap_f .seares-filter {
        order: 2;
        padding-left: 0;
        margin-bottom: 50px;
    }
    .catalog-category {
        order: 1;
        min-width: auto;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between; 
        flex-direction: row;
        padding: 30px 20px 15px;
        border: 1px solid #000;
        margin-bottom: 60px;
    }
    .catalog-category__item {
        width: 48%;
    }
    .catalog-cont_3col {
        width: 100%;
        order: 3;
    }
    .catalog-cont_3col .product-card__bg {
        height: 210px;
    }
    .catalog-stock-wrap {
        padding-bottom: 100px;
    }

    /*======================================*/
    /*============= Один бренд =============*/
    /*======================================*/
    .catalog-brand {
        margin-bottom: 100px;
    }

    /*======================================*/
    /*========= Оформление заказа ==========*/
    /*======================================*/
    .order-pg-wrap {
        flex-direction: column-reverse;
    }
    .order-cont {
        width: 100%;
        min-width: auto;
        padding: 50px 60px;
        margin-bottom: 50px;
    }
    .order-pg-wrap .order-cont-item {
        flex-direction: row;
    }
    .order-cont-item__img {
        min-width: 120px;
        width: 120px;
        height: 120px;
    }
    .order-cont__title {
        text-align: left;
        padding-left: 73px;
        margin-bottom: 0;
    }
    .order-cont-wrap {
        margin-bottom: 20px;
    }
    .deliv-st1-content-maps {
        min-width: 315px;
        width: 315px;
    }
    .deliv-st1-content-scroll-conv {
        width: 100%;
    }
    .deliv {
        max-width: none;
        margin-right: 0;
    }
    .deliv-st1-nav__item {
        max-width: 210px;
    }
    .deliv-st1__comment {
        text-align: center;
        margin: 30px auto 0;
        display: block;
    }

    /*======================================*/
    /*========== Личный кабинет ============*/
    /*======================================*/
    .cabinet-content-card-result > div:nth-child(2) {
        margin-left: 0;
        margin-right: 0;
    }
    .cabinet-content-card-result {
        height: 120px;
    }
    .cabinet-content-card-result__text {
        max-width: 290px;
    }
    .cabinet {
        padding-bottom: 120px;
    }


}
/* 576-768 */
@media screen and (max-width: 767px) {
    .container {
        width: 540px;
    }

    /*Меню*/
    .mobile_menu_overlay, .mobile_menu_container{
        position: fixed;
        top: 50px;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .mobile_menu_overlay {
        top: 90px;
    }
    .mobile_menu_container{
        -webkit-transform: translateX(-100%) !important;
        transform: translateX(-100%) !important;
        width: 100%;
        overflow-x: hidden;
        z-index: 10201;
        background: #fff;
    }
    .mobile_menu_container.loaded{
        -webkit-transform: translateX(0px) !important;
        transform: translateX(0px) !important;
    }
    .mobile_menu_container ul li ul{
        -webkit-transform: translateX(100%) !important;
        transform: translateX(100%) !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 2;
    }
    .mobile_menu_container ul li ul.loaded{
        -webkit-transform: translateX(0px) !important;
        transform: translateX(0px) !important;
    }
    .menu-banner {
        height: 250px !important;
    }


    /*offer slider*/
    .slick-current .offer-slide-content-animate_left {
        left: 0;
        right: auto;
    }
    .slick-current .offer-slide-content-animate_right {
        right: 0;
        left: auto;
    }

    /*======= Footer ======*/
    .footer-menu__item {
        font-size: 14px;
    }
    .footer-menu {
        margin-right: 40px;
    }
    .footer-col_2 {
        padding-left: 45px;
    }
    .footer-col_3 .footer-menu-wrap .footer-menu:last-child .footer-menu__item {
        margin-bottom: 30px;
    }
    .copy-wrap {
        padding-top: 0;
    }

    /*===== Home =====*/
    .ban-min-item {
        margin-bottom: 20px;
    }
    .ban-min-item span {
        width: 62%;
        font-size: 13px;
    }
    .insta-card {
        width: 250px;
        margin-bottom: 50px;
    }
    .insta-card__bg {
        height: 250px;
    }
    .product-card {
        margin: 0 15px;
    }
    .disc-wrap {
        display: block;
        width: 100%;
        max-width: none;
    }
    .disc-card {
        display: flex !important;
        margin-bottom: 30px;
        box-sizing: border-box;
        padding: 0 30px !important;
    }
    .disc-card_big {
        width: 100%;
        max-width: 100%;
    }
    .disc-card_small {
        width: 100%;
        max-width: 100%;
    }
    .disc {
        padding: 60px 0 80px;
    }

    /*================================================*/
    /*============= Результат поиска =================*/
    /*================================================*/
    .search-cat-card {
        margin: 0 5px;
        padding: 20px 20px;
        height: 240px;
    }
    .search-cat-card__img {
        max-width: 70%;
        max-height: 80px;
    }
    .seares-wrap .product-card {
        width: 48%;
        margin: 0 1% 30px;
    }
    .seares-filter {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .seares-filter a {
    	display: block;
    	width: 47%;
    }
    .seares-filter a > div {
    	width: 100% !important;
    }
    .seares-filter__range-wr {
        order: 3;
        width: 100%;
        margin-top: 40px;
    }
    .search-cat-card__name {
        font-weight: 600;
        font-size: 15px;
        line-height: 22px;
        text-transform: uppercase;
        color: #000000;
        display: inline-block;
    }
    .search-cat-card__amount {
        font-weight: 300;
        font-size: 16px;
        line-height: 22px;
        text-transform: uppercase;
        color: #000000;
    }
    .seares-filter__price {
        order: 1;
    }
    .seares-filter__drop {
    	display: flex !important;
        position: static;
        order: 2;
    }
    .seares-filter_cat {
        justify-content: space-between;
        padding-right: 0;
    }
    .seares-filter_cat_item {
        width: 47% !important;
        margin-right: 0 !important;
        margin-top: 0;
        margin-bottom: 30px;
    }
    .seares-filter_cat_item:nth-child(1) {
        order: 1;
        margin-bottom: 0;
    }
    .seares-filter_cat_item:nth-child(2) {
        order: 3;
    }
    .seares-filter_cat_item:nth-child(3) {
        order: 4;
    }
    .seares-filter_cat_item:nth-child(4) {
        order: 5;
    }
    .seares-filter_cat_item:nth-child(5) {
        order: 6;
    }
    .seares-filter_cat_item:nth-child(6) {
        order: 7;
    }
    .seares-filter_cat_item:nth-child(7) {
        order: 2;
    }
    .seares-filter_cat .seares-filter__price {
        margin-top: 7px;
    }
    .seares-filter_cat .seares-filter__range-wr {
        margin-top: 5px;
    }

    /*================================================*/
    /*============= Карточка продукта ================*/
    /*================================================*/
    .product-left {
        height: 540px;
    }
    .product-status_item {
        width: 120px;
        height: 70px;
        font-size: 20px;
    }
    .product-price__current {
        font-size: 33px;
    }
    .product-price__sale {
        font-size: 26px;
    }
    .product-comment-captcha {
        height: auto;
        padding: 6px;
    }

    /*======================================*/
    /*============= Корзина ================*/
    /*======================================*/
    .cartpg-card-count {
        order: 3;
        margin: 0;
        margin-right: 30px;
    }
    .cartpg-card-price {
        order: 4;
    }
    .cartpg-card-price__current {
        font-size: 20px;
        line-height: 27px;
        margin-bottom: 2px;
    }
    .cartpg-card-price__sale {
        font-size: 16px;
        line-height: 22px;
    }
    .cartpg-card__img {
        margin-bottom: 30px;
    }
    .cartpg-card__close {
        top: auto;
        bottom: 20px;
    }
    .cartpg-stock {
        padding: 24px 0 24px 20px;
        height: auto;
    }
    .cartpg-stock__text {
        width: 200px;
    }
    .cartpg-card-count-warning {
        width: 540px;
    }
    .cartpg-status {
        height: 80px;
    }
    .cartpg-status__text {
        width: 261px;
        font-size: 16px;
        line-height: 20px;
        text-align: left;
    }
    .cartpg-status__progress {
        height: 100%;
    }

    /*========================================*/
    /*============= Избранное ================*/
    /*========================================*/
    .favor .product-card__bg {
        height: 260px;
    }
    .favor-sim__link {
        width: 80px;
        height: 80px;
    }

    /*===================================*/
    /*============= Блог ================*/
    /*===================================*/
    .blog-pg-card__img {
        height: 280px;
    }
    .blog-post__pic {
        height: 380px;
    }
    .blog-post__title {
        font-size: 20px;
        line-height: 27px;
    }
    .blog-post__text {
        font-size: 16px;
        line-height: 35px;
    }
    .blog-post-control__btn {
        width: 46%;
    }
    .blog-card__title {
        font-size: 20px;
        line-height: 27px;
    }
    .blog-other-wrap {
        flex-direction: column;
    }
    .blog-other .blog-card {
        width: 100%;
        margin-bottom: 30px;
    }
    .blog-other__btn {
        margin-top: 20px;
    }

    /*===================================*/
    /*======== Акции и скидки ===========*/
    /*===================================*/
    .discounts-card__bg {
        height: 340px;
    }
    .discounts-card__top {
        font-size: 80px;
    }
    .discounts-card__top_sm {
        font-size: 40px;
    }

    /*===================================*/
    /*=========== 404 ошибка ============*/
    /*===================================*/
    .error-pg-wrap {
        height: 438px;
        background-position: center top 70px;
        background-size: 200%;
    }
    .error-pg__mess {
        margin-bottom: 284px;
    }
    .error-pg__btn {
        min-height: 50px;
    }
    .error-pg__title {
        font-size: 20px;
        line-height: 27px;
    }
    .error-pg__mess {
        font-size: 20px;
        line-height: 27px;
    }

    /*===================================*/
    /*=========== О компании ============*/
    /*===================================*/
    .about-pg-slide {
        height: 360px;
    }


    /*===============================*/
    /*=========== Каталог ===========*/
    /*===============================*/
    .catalog__title {
        font-size: 20px;
        line-height: 27px;
        margin-bottom: 30px;
    }
    .catalog__text {
        font-size: 13px;
        line-height: 30px;
        max-height: 146px;
        overflow: hidden;
        position: relative;
    }
    .catalog__text_visible {
        max-height: 3500px;
        transition: 0.3s;
    }
    .catalog__text_show {
        display: block;
        position: absolute;
        bottom: 0;
        font-size: 13px;
        line-height: 30px;
        text-decoration-line: underline;
        color: #FF87FA;
        background: #fff;
        width: 100%;
    }
    .catalog__text_show-off {
        display: none;
    }
    .catalog__text_visible .catalog__text_show-on {
        display: none;
    }
    .catalog__text_visible .catalog__text_show-off {
        display: block;
    }

    /*======================================*/
    /*===== Акции и скидки одна акция ======*/
    /*======================================*/
    .catalog-stock {
        min-width: auto;
        height: 245px;
        margin-bottom: 30px;
    }
    .catalog-stock-wrap {
        padding-bottom: 50px;
    }
    .catalog-category {
        flex-direction: column;
    }
    .catalog-category__item {
        width: 100%;
    }
    .catalog-category__item span {
        font-size: 18px;
    }
    .catalog-stock-cont {
        left: 29px;
    }
    .catalog-stock__dis {
        font-size: 13px;
        line-height: 18px;
    }
    .catalog-stock__name {
        font-size: 18px;
        line-height: 25px;
    }

    /*======================================*/
    /*============= Один бренд =============*/
    /*======================================*/
    .catalog-brand {
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .catalog-brand__logo-wr {
        margin-right: 0;
        margin-bottom: 30px;
    }
    .catalog-brand .catalog__text {
        font-size: 13px;
        line-height: 30px;
        margin-bottom: 0;
    }

    /*======================================*/
    /*========= Оформление заказа ==========*/
    /*======================================*/
    .deliv-st2-form__placeinput:last-child {
        margin-right: 0;
    }
    .order-pg-wrap .seares-filter__select {
        order: inherit;
        margin-top: 14px;
    }
    .order-cont {
        padding: 30px;
    }
    .deliv-st1-content {
        flex-direction: column-reverse;
    }
    .deliv-st1-content-maps {
        min-width: auto;
        width: 100%;
        height: 300px;
        min-height: auto;
        border-bottom: 1px solid #000;
    }
    .deliv-st1-content {
        height: 654px;
    }

    /*======================================*/
    /*========== Личный кабинет ============*/
    /*======================================*/
    .cabinet-content__btn {
        width: 48%;
    }
    .cabinet-content-card {
        flex-direction: column;
    }
    .cabinet-content-card-place {
        width: 100%;
    }
    .cabinet-content-card-price-wr {
        width: 100%;
        max-width: none;
        margin-top: 20px;
    }
    .cabinet-content-card-result {
        flex-wrap: wrap;
        height: auto;
    }
    .cabinet-content-card-result > div:first-child {
        width: 100%;
    }
    .cabinet-content-card-result > div {
        min-height: 110px;
        margin-bottom: 30px;
    }
    .cabinet-content-card-result__text {
        width: 100%;
        max-width: none;
    }

}
/* <576 */
@media screen and (max-width: 576px) {
    .offer-slider {
        margin-top: 60px;
    }
    .offer-slider .container {
        display: flex;
        align-items: center;
        height: 100%;
    }
    .offer-slider .offer-slide-content {
        padding-top: unset;
    }
    .offer-slider .offer-slide-wrap {
        flex-wrap: wrap;
        width: 100%;
    }
    .offer-slider .offer-slide__title,
    .offer-slider .offer-slide__text {
        width: 100%;
    }
    .container {
        width: 94%;
    }
    .header {
        padding: 10px 0;
    }
    .offer {
        margin-top: 58px;
    }
    .breadcrumbs {
        margin-top: 58px;
    }
    .logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .logo-mob {
        width: 35px;
    }
    .header-mag-nav__count {
        top: 6px;
    }

    

    /*======= Footer ======*/
    .footer__title {
        font-weight: bold;
        font-size: 22px;
    }
    .footer-col_2 {
        padding-left: 0;
    }
    .footer-col_2:before {
        display: none;
    }
    .footer-col_1 .footer-menu-wrap, .footer-col_2 .footer-menu-wrap { 
        flex-direction: column;
        width: 100%; 
    }
    .footer-col_1, .footer-col_2 {
        width: 100%;
        max-height: 40px;
        overflow: hidden;
        transition: 0.3s;
    }
    .footer-col-active {
        max-height: 3000px;
        transition: 0.3s;
    }
    .footer-col_1 .footer-menu__item, .footer-col_2 .footer-menu__item {
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        padding: 6px 0;
        font-size: 18px;
        text-align: center;
        justify-content: center;
        margin: 5px auto;
    }
    .footer-col_1 .footer-menu, .footer-col_2 .footer-menu {
        margin-right: 0;
    }
    .footer-col_1 .footer__title, .footer-col_2 .footer__title {
        border-bottom: 1px solid #FFFFFF;
        padding-bottom: 5px;
        margin-bottom: 8px;
        background: url(../img/footer-menu-down.svg) no-repeat right 7px center;
    }
    .footer-col_1 {
        margin-bottom: 20px;
    }
    .footer-col-active .footer__title{
        background: url(../img/footer-menu-up.svg) no-repeat right 7px center;
        border-bottom: 1px solid #FF87FA;
    }
    
    .footer-col_3 .footer-menu-wrap .footer-menu:last-child {
        border-top: 0;
        padding: 30px 0;
        flex-direction: column;
        align-items: center;
        padding-bottom: 0;
    }
    .footer-col_3 .footer-menu-wrap .footer-menu:last-child .footer-menu__item {
        width: auto;
        text-align: center;
        margin-bottom: 20px;
        font-size: 18px;
    }
    .footer-col_3 .footer__title {
        margin-bottom: 0;
    }
    .footer-col_3 .footer-menu:first-child .footer-menu__item span {
        display: none;
    }
    .footer-col_3 .footer-menu:first-child .footer-menu__item img {
        width: 30px;
        height: 30px;
        margin-right: 0;
    }
    .footer-col_3 .footer-menu:first-child {
        max-width: 350px;
        width: 100%;
        margin: 0 auto;
    }
    .copy-wrap {
        border-top: 1px solid #868686;
        padding-top: 30px;
        flex-direction: column;
        align-items: center;
    }
    .copy {
        margin-bottom: 15px;
    }
    .footer-logo {
        margin-bottom: 30px;
    }

    /*===== Home =====*/
    h2 {
        font-size: 20px;
        line-height: 27px;
        margin-bottom: 30px;
    }
    .offer-slide {
        height: 320px;
    }
    .offer-slide__title {
        font-size: 60px;
        line-height: 82px;
        width: 45%;
    }
    .offer-slide__text {
        margin-bottom: 0;
        width: 45%;
        font-size: 18px;
        line-height: 25px;
    }
    .offer-slide-wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .offer-slide__btn {
        display: none;
    }
    .offer-slide-content {
        padding-top: 35px;
        align-items: flex-start;
        justify-content: center;
        background-position: left 40% top !important;
    }
    .subscribe-soc {
        flex-direction: column;
        align-items: center;
    }
    .slick-prev, .slick-next {
        display: none !important;
    }
    .search-mob__btn svg {
        width: 36px;
        height: 36px;
    }
    .header-or-4 svg {
        width: 21px;
        height: 29px;
    }
    .header-or-5 svg {
        width: 33px;
        height: 33px;
    }
    .header-mag-nav__count {
        top: 0px;
    }
    .form-search__btn_close svg {
        width: 30px;
        height: 30px;
    }
    .form-search__btn svg {
        width: 36px;
        height: 36px;
    }
    .form-search__input {
        height: 60px;
        padding-left: 18px;
    }
    .form-search__btn {
        right: 15px;
    }
    .form-search__btn_close {
        top: 14px;
        right: 75px;
    }
    .search-res {
        padding: 20px;
    }
    .search-res-card-price {
        flex-direction: column;
        min-width: auto;
        margin-left: 15px;
    }
    .search-res-card-price__current {
        margin-right: 0;
        margin-bottom: 7px;
    }
    .search-res-card__name {
        font-size: 14px;
    }
    .search-res-card__cat {
        margin-bottom: 7px;
    }
    .search-res-card__img {
        width: 80px;
        height: 80px;
    }
    .search-res-card {
        align-items: flex-start;
    }
    .ban-min-item {
        height: 80px;
        /*justify-content: center;*/
    }
    .ban-min-item span {
        width: 75%;
        font-size: 10px;
        line-height: 16px;
    }
    .offer-cat__btn {
        display: flex;
        width: 100%;
    }
    .disc-card {
        height: 250px;
    }
    .disc-card_big .disc-card__img {
        min-height: auto !important;
        max-height: 220px !important;
    }
    .disc-card__title {
        font-size: 50px !important;
        margin-bottom: 10px;
        line-height: normal;
    }
    .disc-card__text {
        font-size: 14px !important;
        line-height: 19px !important;
    }
    .product-card {
        max-width: 200px;
        width: 100%;
    }
    .product-card__name {
        margin-bottom: 8px;
    }
    .insta-card {
        width: 47%;
        margin-bottom: 30px;
    }
    .insta-card__bg {
        height: 160px;
        margin-bottom: 14px;
    }
    .insta-card__name {
        font-size: 14px;
    }
    .subscribe-form {
        flex-direction: column;
    }
    .subscribe-form__input {
        height: 50px;
        border-right: 1px solid #000;
    }
    .subscribe-form__btn {
        height: 50px;
        width: 100%;
    }
    .subscribe-soc {
        flex-direction: row;
        width: 218px;
    }
    .subscribe-soc__link span {
        display: none;
    }
    .subscribe-soc__link svg {
        margin-right: 0;
    }
    .subscribe-soc__link:nth-child(1) {
        order: 1;
    }
    .subscribe-soc__link:nth-child(2) {
        order: 3;
    }
    .subscribe-soc__link:nth-child(3) {
        order: 2;
    }
    .subscribe-soc__link:nth-child(1) svg {
        width: 33px;
        height: 33px;
    }
    .subscribe-soc__link:nth-child(3) svg {
        width: 29px;
        height: 30px;
    }
    .subscribe-soc__link:nth-child(2) svg {
        width: 26px;
        height: 26px;
    }
    .blog-card {
        width: 100%;
        margin-bottom: 30px;
        padding: 30px !important;
    }
    .blog-card__title {
        font-size: 20px !important;
        line-height: 27px !important;
        margin-bottom: 15px !important;
    }
    .blog-wrap .blog-card:nth-child(1) .blog-card__text {
        font-size: 14px;
        line-height: 19px;
        margin-bottom: 15px !important;
    }
    .blog-wrap {
        margin-bottom: 15px;
    }
    .blog__btn {
        width: 100%;
    }
    .about__text {
        font-size: 16px;
        line-height: 22px;
    }
    .about-wrap {
        margin-bottom: 35px;
    }
    .disc {
        padding: 50px 0 70px;
    }
    .new {
        padding: 50px 0 70px;
    }
    .hit {
        padding: 50px 0 70px;
    }
    .insta {
        padding: 50px 0 70px;
    }
    .subscribe {
        padding: 30px 0;
    }
    .blog {
        padding: 100px 0 50px;
    }
    .about {
        padding: 50px 0 100px;
    }
    .arcticmodal-container_i2 {
        padding: 0 !important;
    }
    .regModal {
        width: 100%;
        padding: 60px 30px;
    }
    .slider-nav_offer {
        margin-top: -15px;
        margin-bottom: 15px;
    }

    /*================================================*/
    /*============= Результат поиска =================*/
    /*================================================*/
    .search-pg__res {
        font-weight: 700;
    }
    .breadcrumbs {
        padding: 30px 0;
    }
    .breadcrumbs__back {
        display: block;
    }
    .breadcrumbs-wrap {
        display: none;
    }
    .search-pg__dis {
        margin-bottom: 50px;
    }
    .search-pg-wrap {
        padding-bottom: 120px;
    }
    .seares-filter__price {
        width: 47%;
        margin-right: 0;
    }
    .seares-filter__drop {
        width: 47%;
    }
    .seares-filter {
        margin-bottom: 50px;
    }
    .seares-wrap {
        justify-content: space-between;
    }
    .seares-wrap .product-card {
        width: 48%;
        max-width: none;
    }
    .seares-wrap .product-card__bg {
        height: calc(90vw / 2);
    }
    .seares-wrap .product-card-status {
        justify-content: space-between;
    }
    .seares-wrap .product-card-status div {
        width: 45%;
        height: 30px;
        font-size: 13px;
        margin-right: 0;
    }
    .seares-wrap .product-card__img {
        max-width: 90%;
    }
    .seares-wrap .product-card-cont {
        flex-wrap: wrap;
    }
    .seares-wrap .product-card-price {
        width: 100%;
        justify-content: space-between;
    }
    .seares-wrap .product-card__btn {
        width: 100%;
    }
    .seares-wrap .product-card__name {
        min-height: auto;
        height: 55px;
        overflow: hidden;
        margin-bottom: 17px;
    }
    .pagination__item:nth-child(4), .pagination__item:nth-child(5) {
        display: none;
    }
    .pagination__arrow {
        min-width: 32px;
    }
    .search-pg {
        padding-bottom: 100px;
    }
    .pagination {
        margin-top: 30px;
    }
    .slider-nav_search-cat {
        margin-top: 40px;
    }
    .seares-filter_cat_item:nth-child(2) {
        order: 3;
    }
    .seares-filter__drop {
        font-weight: 400;
    }
    .search-cat-card:hover {
        border: 1px solid transparent;
    }

    /*================================================*/
    /*============= Карточка продукта ================*/
    /*================================================*/
    .product__title_mob {
        font-size: 20px;
        line-height: 35px;
    }
    .product-left {
        height: 96vw;
    }
    .product-param__value {
        font-size: 12px;
        /*max-width: 40%;*/
    }
    .product-param__prop {
        font-size: 12px;
    }
    .product-price__auth {
        width: 100%;
        margin-top: 20px;
    }
    .product-price {
        flex-wrap: wrap;
    }
    .product-count {
        width: 100%;
        margin-bottom: 30px;
    }
    .product-count-btn {
        flex-wrap: wrap;
        margin-bottom: 30px;
    }
    .product__btn {
        width: 100%;
    }
    .product__amount span {
        display: block;
        margin-left: 0;
        margin-top: 6px;
    }
    .product-info-tabs {
        flex-direction: column;
    }
    .product-status_item {
        width: 70px;
        height: 30px;
        font-size: 13px;
        margin-right: 10px;
    }
    .product-wrap {
        padding-bottom: 100px;
    }
    .product-reviews-item {
        flex-direction: column;
        margin-bottom: 30px;
    }
    .product-reviews-item__ava {
        min-width: auto;
        max-width: 80px;
        width: 100%;
        height: 80px;
        margin-bottom: -80px;
    }
    .product-reviews-item__name {
        padding-left: 100px;
        margin-bottom: 80px;
    }
    .product-comment__input {
        width: 100%;
    }
    .product-comment-right {
        flex-direction: column;
    }
    .product-comment-captcha {
        width: 100%;
        height: auto;
        padding: 10px;
        margin-bottom: 30px;
    }
    .product-comment__btn {
        width: 100%;
    }
    .product-comment-captcha img {
        width: 100%;
    }

    .tabs-items-sel_t {
        display: block;
        font-weight: bold;
        font-size: 20px;
        line-height: 27px;
        text-transform: uppercase;
        border-bottom: 1px solid #000;
        padding-bottom: 6px;
        margin-bottom: 40px;
        background: url(../img/select-arrow-icon.svg) no-repeat right 8px center;
    }
    .tabs-items-sel_click_t {
        border-bottom: 1px solid #FF87FA;
        background: url(../img/select-arrow-icon_up.svg) no-repeat right 8px center;
    }
    .tabs-items_t {
        border: 1px solid #000000;
        background: #fff;
        padding: 30px 27px;
        width: 100%;
        position: absolute;
        margin-top: -26px;
        z-index: 50;
        display: none;
    }
    .tabs-item_t {
        margin-bottom: 18px;
    }
    .tabs-item_t:last-child {
        margin-bottom: 0;
    }
    .tabs_t {
        position: relative;
    }
    .share-soc {
        width: auto;
    }
    .share-soc__link {
        width: 30px;
        height: 30px;
    }
    .share-soc__link svg {
        width: 16px;
        height: 16px;
    }

    /*======================================*/
    /*============= Корзина ================*/
    /*======================================*/
    .cartpg-card-count-warning {
        width: 94vw;
    }
    .cartpg-cards {
        overflow: hidden;
    }
    .cartpg-card__img {
        min-width: 87px;
        width: 87px;
        height: 87px;
        margin-bottom: 0;
    }
    .cartpg-card-name-cat {
        margin-right: 0;
    }
    .cartpg-card__name {
        min-width: auto;
        width: auto;
        font-size: 14px;
        line-height: 19px;
        margin-right: 0;
        max-width: none;
    }
    .cartpg-card {
        padding-right: 0;
    }
    .cartpg-card-count__input {
        width: 40px;
        height: 40px;
    }
    .cartpg-card-count__btn {
        min-width: 40px;
        width: 40px;
        height: 40px;
    }
    .cartpg-card-count {
        min-width: 140px;
        width: 140px;
    }
    .cartpg-card-price__current {
        margin-bottom: 0;
    }
    .cartpg-card-price {
        margin-top: -4px;
    }
    .cartpg-stock {
        padding-left: 28px;
        justify-content: inherit;
    }
    .cartpg-stock__text {
        min-width: 200px;
        font-size: 16px;
        line-height: 21px;
    }
    .cartpg-stock__text a {
        font-size: 16px;
        line-height: 21px;
    }
    .cartpg-card-count-warning:before {
        left: 60px;
    }
    .cartpg-order {
        padding: 30px;
    }
    .cartpg-order-param__prop {
        font-weight: 300;
        font-size: 14px;
    }
    .cartpg-order-param__value_3 {
        font-size: 30px;
    }
    .cartpg-card-img-cat {
        width: 100%;
        margin-bottom: 30px;
    }
    .cartpg {
        padding-bottom: 100px;
    }
    .subscribe-ot-pg {
        margin-bottom: 100px;
    }
    .cartpg__title {
        font-size: 20px;
    }

    /*========================================*/
    /*============= Избранное ================*/
    /*========================================*/
    .product-card__del {
        font-size: 38px;
        top: -6px;
        right: 6px
    }
    .favor-sim__link {
        width: 60px;
        height: 60px;
    }
    .favor-sim__link:last-child {
        display: none;
    }
    .favor .product-card {
        width: 46%;
        margin: 0 2% 30px;
    }
    .favor .product-card-price__current {
        font-size: 20px;
    }
    .favor .product-card-price__sale {
        font-size: 16px;
    }
    .favor__title {
        font-size: 20px;
    }
    .favor .product-card__name {
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
    }

    /*===================================*/
    /*============= Блог ================*/
    /*===================================*/
    .blog-pg-card__img {
        min-height: auto;
        height: 50vw;
        min-width: auto;
        width: 100%;
    }
    .blog-pg-card__title {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 20px;
    }
    .blog-pg-card__text {
        font-size: 16px;
        line-height: 30px;
    }
    .blog-pg-card-soc {
        max-width: 219px;
        width: 100%;
        justify-content: space-between;
    }
    .blog-pg-card__vis {
        margin-right: 35px;
    }
    .blog-pg__title {
        margin-bottom: 20px;
        font-size: 20px;
    }
    .blog-post__pic {
        height: 65vw;
    }
    .blog-post__title {
        margin-bottom: 30px;
    }
    .blog-post .blog-pg-card-vis-soc {
        margin-bottom: 30px;
    }
    .blog-post-control {
        flex-direction: column-reverse;
        margin-top: 50px;
    }
    .blog-post-control__btn {
        width: 100%;
        margin-bottom: 30px;
    }
    .blog-other .blog-card {
        height: 70vw;
    }
    .blog-pg {
        padding-bottom: 100px;
    }

    /*===================================*/
    /*======== Акции и скидки ===========*/
    /*===================================*/
    .discounts__title {
        font-size: 20px;
        line-height: 27px;
    }
    .discounts-card {
        margin-bottom: 30px;
    }
    .discounts-card__bg {
        height: 70vw;
        margin-bottom: 20px;
    }
    .discounts-card__top {
        font-size: 50px;
        left: 28px;
    }
    .discounts-card__top_sm {
        font-size: 30px;
    }
    .discounts-card__promo {
        font-size: 17px;
        line-height: 25px;
    }

    /*===================================*/
    /*=========== 404 ошибка ============*/
    /*===================================*/
    .error-bread {
        display: block;
    }
    .error-pg {
        padding: 0 0 100px;
    }
    .error-pg-wrap {
        height: 438px;
        background-position: center center;
        background-size: 200%;
    }

    /*===================================*/
    /*=========== О компании ============*/
    /*===================================*/
    .about-pg-slide {
        height: 60vw;
    }
    .about-pg__text {
        font-size: 16px;
        line-height: 35px;
    }
    .about-pg__title {
        font-size: 20px;
        line-height: 27px;
        margin-bottom: ;
    }

    /*=======================================*/
    /*=========== Сеть магазинов ============*/
    /*=======================================*/
    .chain-store__photo {
        width: 100%;
        margin-bottom: 30px;
    }
    .chain-store-map {
        width: 100%;
        margin-bottom: 30px;
    }
    .chain__title {
        font-size: 20px;
        line-height: 27px;
        margin-bottom: 54px;
    }
    .chain-store-cont__item {
        font-size: 16px;
    }
    .chain-store-cont__item img {
        margin-right: 7px;
    }
    .chain-store-cont__item:last-child {
        margin-bottom: 0;
    }

    /*===============================*/
    /*=========== Бренды ============*/
    /*===============================*/
    .brands-words {
        columns: 1;
    }
    .brands-words-wrap {
        margin-right: 50px;
    }
    .brands__title {
        font-size: 20px;
        line-height: 27px;
    }
    .brands {
        padding: 0 0 100px;
    }
    .brands-letter {
        font-weight: 400;
        font-size: 12px;
        letter-spacing: 0;
        line-height: 80%;
        width: 10px;
        margin-bottom: 8px;
    }

    /*======================================*/
    /*===== Акции и скидки одна акция ======*/
    /*======================================*/
    .catalog-category {
        padding: 20px 14px;
    }
    .catalog {
        padding-bottom: 100px;
    }

    /*======================================*/
    /*========= Оформление заказа ==========*/
    /*======================================*/
    .order-pg-wrap .order-cont-item__img {
        min-width: 87px;
        width: 87px;
        height: 87px;
        margin-right: 10px;
    }
    .order-cont-item__cat {
        display: none;
    }
    .order-cont-item__name {
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
    }
    .order-cont__title {
        padding-left: 0;
        text-align: center;
    }
    .order-cont {
        padding: 30px 20px 30px 22px;
    }
    .order-pg-wrap .cartpg-order-param__prop {
        font-size: 14px;
    }
    .order-pg-wrap .cartpg-order__btn span {
        display: none;
    }
    .deliv-st1-nav__item {
        max-width: none;
        width: 100%;
    }
    .deliv-title-wrap {
        align-items: center;
    }
    .order-pg-wrap .seares-filter__select {
        width: 100% !important;
        margin-bottom: 30px;
    }
    .deliv-st2-form__placeinput {
        width: 100%;
    }
    .deliv-st3-form__label {
        width: 100%;
    }
    .deliv-st3-form__label a {
        max-width: none;
    }
    .deliv-st3-pay-wrap {
        flex-direction: column;
    }
    .deliv-st3-pay__btn {
        width: 100%;
        margin-bottom: 30px;
    }
    .deliv-st4__btn {
        margin-top: 20px;
    }
    .order-pg__title {
        font-size: 20px;
        line-height: 27px;
    }
    .order-cont__title {
        font-size: 20px;
        line-height: 27px;
    }
    .deliv-st3-pay {
        margin-top: 50px;
    }
    .order-pg {
        padding-bottom: 100px;
    }

    /*======================================*/
    /*========== Личный кабинет ============*/
    /*======================================*/
    .cabinet-nav__btn {
        width: 100%;
    }
    .cabinet-nav-tab {
        width: 100%;
    }
    .cabinet__title {
        font-size: 20px;
        line-height: 27px;
    }
    .cabinet-content__input {
        width: 100%;
    }
    .cabinet-content__pass {
        width: 100%;
        text-align: center;
        margin-top: 0;
        margin-bottom: 30px;
    }
    .cabinet-content__btn {
        width: 100%;
        margin-top: 0;
    }
    .cabinet {
        padding-bottom: 100px;
    }
    .cabinet-content-order__name {
        padding-right: 80px;
    }
    .cabinet-content-card-result__title {
        margin-bottom: 15px;
    }
    .cabinet-content-card__img {
        width: 87px;
        min-width: 87px;
        height: 87px;
        margin-right: 10px;
    }
    .cabinet-content-order-wr {
        padding: 0 24px;
    }
    .cabinet-content-card__cat {
        display: none;
    }
    .cabinet-content-card__name {
        font-size: 14px;
        line-height: 19px;
    }
    .cabinet-content-card__num {
        font-size: 16px;
        line-height: 22px;
    }
    .cabinet-content-card__price {
        font-size: 20px;
        line-height: 27px;
    }
    .cabinet-content-card-result__text-pr {
        font-size: 30px;
    }
    .cabinet-content-card-result {
        margin-bottom: 10px;
    }
    .cabinet-content-order__name {
        background: url(../img/select-arrow-icon.svg) no-repeat right 8px center;
    }
    .cabinet-content-order-active .cabinet-content-order__name {
        background: url(../img/select-arrow-icon_up.svg) no-repeat right 8px center;
    }
}


/*re*/
.disc {
    padding: 0;
}
.new {
    padding: 75px 0 0px;
}
.hit {
    padding: 75px 0 0;
}
.subscribe-ot-pg {
    margin-bottom: 0;
}
.blog {
    padding: 70px 0 75px;
}
.about {
    padding: 0 0 150px;
}
.product-card-status div {
    width: 79px;
    height: 28px;
    font-size: 13px;
}

.breadcrumbs {
    margin-top: 121px;
    padding: 10px 0 10px;
}
.cartpg-card__img img {
    display: block;
    width: auto;
    max-height: 105px;
}
.cartpg-card {
	align-items: center;
	justify-content: space-between;
}
.cartpg-card-price,
.cartpg-card-sum {
	margin-right: 8px;
}

.cartpg-card-price__current {
    font-size: 20px;
}
.cartpg-card-count {
	margin-top: 0;
}
.catalog-stock-wrap {
	display: block;
    padding-bottom: 0;
}
.catalog-stock {
    min-width: 100%;
    width: 100%;
    margin-bottom: 25px;
    height: 188px;
}

.catalog-stock__text {
    max-width: 100%;
    width: 100%;
}
.catalog__text {
	margin-bottom: 0;
}
.cabinet .product-card {
    width: 242px;
}
.product-card__img {
    max-width: 100%;
    width: auto;
    display: block;
    margin: 0 auto;
    max-height: 100%;
}
.product-card__bg > a {
	display: block;
	height: 100%;
}
.product-img {
    max-height: 100%;
    width: auto;
    display: block;
    max-width: 100%;
}
.order-cont-item__img img {
    width: auto;
    max-height: 100%;
    max-width: 100%;
}

.cartpg-card-price .cartpg-card-price__current,
.cartpg-card-price .cartpg-card-price__sale {
    font-weight: normal;
    color: grey;
}
.cartpg-card-price .cartpg-card-price__sale:before {background: grey}
.bx-sls .form-control.dropdown-block, .bx-slst .form-control.dropdown-block {
    background-color: #f5f5f5 !important;
    background: #f5f5f5;
    border: none !important;
    box-shadow: none;
}
.bx-sls .dropdown-block {
    border-radius: 2px;
    padding: 8px 22px 16px 30px;
    position: relative;
}
.bx-sls .dropdown-icon {
    top: 19px;
}
.bx-sls .bx-ui-sls-clear{
	top: 8px;
}
.bx-sls .dropdown-fade2white{
background:none;
}

@media screen and (max-width: 992px) {
	.offer-slide {
    	height: 349px;
	}
}
@media screen and (max-width: 576px) {
	.offer-slide {
    	height: 159px;
	}
	.offer {
		margin-top: 10px;
	}
	.cartpg-card {
		flex-direction: column;
	}
	.cartpg-card-sum {
		order:4;
	}
	.cartpg-card-price {
		order: 1;
	}
	.breadcrumbs {
		margin-top: 50px;
	}
	.cartpg-card-count {
		margin-right: 0;
	}
}
.search-pg__dis{
    margin-bottom: 30px;
}
.search-pg-wrap{
    padding-bottom: 30px;
}
/*Im 2022 START*/
@media (min-width: 993px){
    .product-card__name{
        min-height: 62px;
        height: 62px;
    }
}
@media screen and (max-width: 992px){
    .blog-pg-close {
        display: block;
    }
}
.search-res__btn{
    position: static;
    top: auto;
    left: auto;
}
.search-res{
    height: 70vh;
    overflow-y: auto;
}
.cartpg-card-count{
    margin-right: 0;
}
.cartpg-card-price, .cartpg-card-sum {
    margin-right: 0;
    width: 95px;
    padding: 0 10px;
    box-sizing: content-box;
}
.cartpg-card-count{
    margin-right: 0;
}
.cartpg-card > a{
    width: 25px;
}
@media screen and (max-width: 576px){
    .offer-slide {
        height: 208px;
    }
}
@media screen and (max-width: 576px){
    .offer-slider .container {
        align-items: flex-start;
    }
}
@media screen and (max-width: 576px){
    .offer-slider .offer-slide__btn{
        position: absolute;
        left: 0;
        top: 159px;
        width: 100%;
        display: flex;
    }
}
.offer-cat__btn{
    opacity: 0;
    position: relative;
    z-index: -1;
}
@media screen and (max-width: 576px){
    .slider-nav_offer {
        margin-top: -76px;
        margin-bottom: 15px;
    }
}
.cartpg-card-img-cat{
    width: 450px;
}
@media (max-width: 1199px){
    .cartpg-card-img-cat{
        width: 502px;
    }
}
@media (max-width: 992px){
    .cartpg-card-img-cat{
        width: auto;
    }
}
@media screen and (max-width: 576px){
    .offer-slider .offer-slide-wrap {
        flex-flow: column nowrap;
        align-items: normal;
    }
    .offer-slider .offer-slide__text {
        width: 36%;
        font-size: 13px;
        line-height: 20px;
    }
}

.seares-filter__select ul{
    padding: 17px 10px;
}
.seares-filter__select li{
    font-size: 14px;
}
@media screen and (max-width: 576px){
    .seares-filter__select .jq-selectbox__dropdown{
        min-width: 200px;
    }
}
@media screen and (max-width: 992px){
    .header-mag-nav__heart {
        display: flex;
        order: 4;
    }
}
.disc-card:nth-child(3),
.disc-card:nth-child(4),
.disc-card:nth-child(5){
    width: 450px;
}
@media screen and (max-width: 1500px){
    .disc-card:nth-child(3),
    .disc-card:nth-child(4),
    .disc-card:nth-child(5){
        width: 360px;
    }
    .disc-card:nth-child(1),
    .disc-card:nth-child(2){
        width: 555px;
    }
}
@media screen and (max-width: 1201px){
    .disc-card:nth-child(1),
    .disc-card:nth-child(2),
    .disc-card:nth-child(3),
    .disc-card:nth-child(4),
    .disc-card:nth-child(5){
        width: 100%;
    }
    .disc-card_small:nth-child(5) {
        display: block;
        margin-top: 30px;
    }
}

@media screen and (max-width: 767px){
    .disc-card_small:nth-child(5) {
        margin-top: 0;
    }
}
/*@media screen and (max-width: 767px){
    .about{
        display: none;
    }
}*/
.cabinet-nav__btn.selected:hover{
    color: #000;
}
.product-card__bg{
    background: none;
}
/*Im 2022 END*/