/* overall */
* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
img {
    width: 100%;
}
a {
    text-decoration: none;
    color: inherit;
}
ul, li {
    list-style: none;
}
input {
    color: #201A2A !important;
    caret-color: #908D95;
    font-size: 14px;
}
input:focus {
    outline: none;
}
* > input:focus::placeholder {
    color: transparent;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
button, button:focus {
    outline: none;
}
button:disabled {
    opacity: .5;
}
.hidden {
    display: none;
}
.modal {
    padding-right: 17px;
}
.fixed {
    overflow: hidden;
}
svg {
    pointer-events: none;
}
.pop-name:hover {
    color: #882FF2;
}
/* header */
.header {
    width: 100%;
}
.header__upper-part {
    width: 100%;
    height: 56px;
    background: #FFC107;
}
.header__upper-part:hover {
    opacity: .9;
}
.header__upper-part--image {
    display: block;
    max-width: 1000px;
    margin: 0 auto;
    height: 100%;
    background: url('../img/header-banner.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

}
.header__main {
    width: 100%;
    background: #882FF2;
}
.header__main-inner {
    max-width: 1250px;
    margin: 0 auto;
    height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fff;
}
.header__main-nav ul {
    padding-left: 24px;
    position: relative;
}
.header__main-nav ul::before {
    content: url('../img/party.png');
    position: absolute;
    top: 0;
    left: 0;
    margin-right: 8px;
}
.header__main-nav ul, .header__main-nav ul li  {
    display: inline;
}
.header__main-nav ul li:hover {
    text-decoration: underline;
}
.header__main-nav ul li:not(:last-child) {
    margin-right: 16px;
}
.header__main-contacts, .header__main-contacts > div {
    display: inline-block;
}
.header__main-contacts--number:hover {
    text-decoration: underline;
}
.header__main-contacts--button {
    position: relative;
    padding: 0 22px 0 24px;
    margin-left: 20px;
    font-weight: bold;
    cursor: pointer;
}
.header__main-contacts--button i:last-child {
    position: absolute;
    top: 0;
    right: 0;
}
.header__main-contacts--button i:first-child {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
}

.header__sub {
    width: 100%;
}
.header__sub-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 16px;
    max-width: 1250px;
    margin: 0 auto;
    padding: 16px 0 32px 0;
}
.header__sub-logo {
    flex-basis: 180px;
    height: 40px;
}
.header__sub-catalog {
    flex-basis: 196px;
    height: 40px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #882FF2;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.header__sub-catalog:hover {
    background: #fff;
    color: #882FF2;
    border: 1px solid #882FF2;
}
.header__sub-catalog:hover .hamburger-inner,
.header__sub-catalog:hover .hamburger-inner::before,
.header__sub-catalog:hover .hamburger-inner::after {
    background-color: #882FF2 !important;
}
.header__sub-catalog--inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 146px;
}
.hamburger {
    padding: 0;
    display: inline-block;
    cursor: pointer;
    -webkit-transition-property: opacity, -webkit-filter;
    transition-property: opacity, -webkit-filter;
    -o-transition-property: opacity, filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    -webkit-transition-duration: 0.15s;
         -o-transition-duration: 0.15s;
            transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible; }
.hamburger:hover {
    opacity: 0.7; }

.hamburger-box {
    width: 20px;
    height: 8px;
    display: inline-block;
    position: relative; 
}
.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px; 
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 20px;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.15s;
         -o-transition-duration: 0.15s;
            transition-duration: 0.15s;
    -webkit-transition-timing-function: ease;
         -o-transition-timing-function: ease;
            transition-timing-function: ease; 
}
.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;         
}
.hamburger-inner::before {
    top: -5px; 
}
.hamburger-inner::after {
    bottom: -5px; 
}
.header__sub-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-basis: 470px;
}
.header__sub-search--input {
    border: none;
    background: #F3F3F4;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(100% - 90px);
    flex-shrink: 5;
    height: 40px;
    padding: 12px 0 12px 16px;    
}
.header__sub-search--input::-webkit-input-placeholder {
    color: #908D95;
}
.header__sub-search--input::-moz-placeholder {
    color: #908D95;
}
.header__sub-search--input:-ms-input-placeholder {
    color: #908D95;
}
.header__sub-search--input::-ms-input-placeholder {
    color: #908D95;
}
.header__sub-search--input::placeholder,
.header__sub-search--input:focus {
    color: #908D95;
}
.header__sub-search--button {
    font-size: 14px;
    border: none;
    background: #882FF2;
    border-radius: 0px 4px 4px 0px;   
    width: 90px;
    height: 40px; 
    color: #fff;
    font-weight: bold;
    cursor: pointer;

}
.header__sub-search--button:hover {
    opacity: .9;
}
.header__sub-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 300px;
}
.header__sub-items > div {
    text-align: center;
}
.header__sub-items > div:hover > a span svg path,
.header__sub-items > div:hover > a p {
    fill: #882FF2;
    color: #882FF2;
}
.header__sub-items > div:active > a span svg path,
.header__sub-items > div:active > a p {
    fill: #882FF2;
    color: #882FF2;
}
.header__basket a span {
    position: relative;
}
.header__basket a span::after {
    content: attr(data-count);
    width: 17px;
    height: 17px;
    border-radius: 50%;
    font-size: 12px;
    line-height: 17px;
    text-align: center;
    top: -9px;
    right: -8px;
    background: #FD2A50;
    color: #fff;
    position: absolute;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 1px solid #fff;
}

/* main */

.main {
    width: 100%;
}
.main__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1034px;
    grid-template-columns: 1fr 1034px;
    max-width: 1250px;
    margin: 0 auto;
}
.main__inner-sidebar {
    margin-right: 16px;
}
.main__inner-sidebar--filters {
    padding: 0 20px 16px 0;
}
.main__sidebar-item h3 {
    margin-bottom: 16px;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
}
.main__sidebar-item:not(:first-child) h3 {
    margin-top: 16px;
}
.main__sidebar-item ul li:not(:last-child) {
    margin-bottom: 16px;
}
.main__sidebar-item ul li {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
}
.main__sidebar-item li:hover a {
    color: #882FF2;
}
.main__inner-sidebar--delivery img {
    width: 120px;
    height: 120px;
}
.main__inner-sidebar--delivery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 180px;
    background: #F3F3F4;
    padding: 16px 0;
    text-align: center;
}
.main__inner-delivery--content h3 {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
}
.main__inner-delivery--content p {
    margin-bottom: 16px;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
}
.main__sidebar-item:first-child ul li {
    padding-left: 24px;
    position: relative;
}
.main__sidebar-item:first-child ul li img {
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
}

/* main--slider */
.main__inner-body hr {
    border: 1px solid #EAE9ED;
}
.main__inner-body--slider {
    margin: 0 auto;
}
.main__inner-body--slider .slick-track {
    height: auto;
}
.main__inner-body--slider:hover .slick-next--custom, 
.main__inner-body--slider:hover .slick-prev--custom {
    opacity: .75;
}
.slick-next--custom {
    right: 19px !important;
}
.slick-prev--custom {
    left: 16px !important;
}
.slick-next--custom, 
.slick-prev--custom {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    font-size: 20px;
    display: block;
    -webkit-box-shadow: 0px 2px 8px rgba(32, 26, 42, 0.25);
            box-shadow: 0px 2px 8px rgba(32, 26, 42, 0.25);
    border-radius: 99px;
    border: none;
    width: 40px;
    height: 40px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 1;
    cursor: pointer;
    opacity: 0;
}
.slick-next--custom:hover, 
.slick-prev--custom:hover {
    opacity: 1 !important;
}
.slick-next--custom img, 
.slick-prev--custom img {
    width: 16.5px;
    height: 15.5px;
}
/* main--kit */
.main__inner-body--kit {
    padding: 0 0 16px 0;
    margin: 0 auto;
}
.main__inner-body--kit > h3 {    
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    margin: 16px 0;
}
.main__inner-kit--items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.main__inner-kit--item {
    width: 246px;
    height: 234px;
    background: #F3F3F4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.main__inner-kit--item h3 {
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    text-align: center;    
}
.main__inner-kit--item:not(:nth-child(2)) > h3 {
    margin-bottom: 29px;
}
.main__inner-kit--item img {
    width: 120px;
    height: 120px;
}

/* main--items */

/* items--cards */
.main__inner-body--popular,
.main__inner-body--poppers,
.main__inner-body--gift,
.main__inner-body--news {
    margin: 0 auto;
}
.main__inner-cards--title {
    clear: both;
    margin: 16px 0;
    height: 21px;
}
.main__inner-cards--title > p:first-child { 
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    float: left;
}
.main__inner-cards--title > p:last-child { 
    float: right;  
    color: #882FF2;
    font-size: 14px;
    line-height: 16px;
}
.main__inner-cards--title p br {
    display: none;
}
.main__inner-cards--items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 258.5px 258.5px 258.5px 258.5px;
    grid-template-columns: 258.5px 258.5px 258.5px 258.5px;
    margin: 0 auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.main__inner-cards--item {
    padding: 16px;
    border: 1px solid transparent;
}
.main__inner-cards--item:hover {
    border: 1px solid #EAE9ED;
}
.main__inner-cards--item:hover > .main__cards-item__image svg path {
    fill: #201A2A;
}
.main__cards-item__image .svg:hover > svg path {
    fill: #882FF2;
}
.main__cards-item__image .svg:active > svg path {
    fill: #882FF2;
}
.main__cards-item__image {
    width: 100%;
    text-align: center;
    position: relative;
    padding: 0 0 16px 0;
}
.main__cards-item__image .svg {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}
.main__cards-item__image .svg svg path {
    fill: #D2D1D4;
}
.main__cards-item__image .svg:first-child {
    top: 0;
}
.main__cards-item__image .svg:last-child {
    top: 43px !important;
}
.main__cards-item__image::before {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 12px;
    line-height: 14px;
    padding: 2px 8px;
    border-radius: 99px;
    position: absolute;
    color: #fff;
    top: 0;
    left: 0;
}
.top--sales .main__cards-item__image::before {
    content: "Топ продаж";
    background: #FFC107;
}
.top--action .main__cards-item__image::before {
    content: "Акция";
    background: #FD2A50;
}
.top--new .main__cards-item__image::before {
    content: "Новинка";
    background: #00CD5A;
}
.main__cards-item--content {
    width: 100%;
}
.main__cards-item--rate {
    margin-bottom: 16px;
    clear: both;
    height: 16px;
}
.main__cards-item--rate span {
    font-size: 14px;
    line-height: 16px;
}
.main__cards-item--rate span:first-child {
    float: left;
    color: #D2D1D4;
}
.main__cards-item--rate span:first-child i.active {
    color: #FFC107;
}
.main__cards-item--rate span:last-child {
    float: right;
    color: #908D95;
}
.main__cards-item--name {
    height: 32px;
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    font-weight: 500;
}
.main__cards-item--name img {
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
}
.main__cards-item--capacity span,
.main__cards-item--power span {
    color: #908D95;
    margin-right: 4px;
}
.main__cards-item--capacity,
.main__cards-item--power {
    margin-bottom: 16px;
}
.main__cards-item--price {
    margin-bottom: 16px;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
}
.main__item-old--price {
    display: none;
    -webkit-text-decoration-line: line-through;
            text-decoration-line: line-through;
    color: #908D95;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
}
.top--action .main__item-old--price {
    display: initial;
}
.top--action .main__item-new--price {
    color: #FD2A50;
}
.main__cards-item--button {
    border: none;
    width: 100%;
    background: #882FF2;
    font-weight: bold;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    height: 40px;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
}
.main__cards-item--button svg {
    margin-right: 9px;
}
.main__cards-item--button svg path {
    fill: #fff;
}
.main__cards-item--button:hover {
    opacity: .9;
}
.slick-next--custom__item {
    right: 8px !important;
}
.slick-prev--custom__item {
    left: 8px !important;
}
.slick-next--custom__item, 
.slick-prev--custom__item {
    position: absolute;
    top: 50%;
    font-size: 20px;
    display: block;
    -webkit-box-shadow: 0px 2px 8px rgba(32, 26, 42, 0.25);
            box-shadow: 0px 2px 8px rgba(32, 26, 42, 0.25);
    border-radius: 99px;
    border: none;
    width: 40px;
    height: 40px;
    padding: 0;
    opacity: .75;
    background: #fff;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 1;
    cursor: pointer;
}
.slick-next--custom__item:hover, 
.slick-prev--custom__item:hover {
    opacity: 1 !important;
}
.slick-next--custom__item img, 
.slick-prev--custom__item img {
    width: 16.5px;
    height: 15.5px;
}

/* body--gift */

.main__gift-content {
    padding: 16px;
    min-height: 112px;
    background: #F3F3F4;
    color: #201A2A;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 80px 16px 1fr 16px 192px;
    grid-template-columns: 80px 1fr 192px;
    grid-gap: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.main__gift-content p {
    font-size: 24px;
    line-height: 28px;
}
.main__gift-content p span {
    color: #FD2A50;
}
.main__gift-content--button {
    border: 1px solid #882FF2;
    width: 100%;
    background: transparent;
    font-weight: bold;
    font-size: 14px;
    line-height: 24px;
    color: #882FF2;
    height: 40px;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
}
.main__gift-content--button:hover {
    background: #882FF2;
    color: #fff;
    border: none;
}

/* body--follow */
.main__inner-body--follow {
    margin: 8px auto 0 auto;
}
.main__follow-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 80px 16px 1fr 16px 328px;
    grid-template-columns: 80px 1fr 328px;
    grid-column-gap: 16px;
    padding: 16px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #FFC107;
}
.main__follow-content--text p:first-child {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 8px;
}
.main__follow-content--text p:last-child {
    font-size: 14px;
    line-height: 16px;
}
.main__follow-content--input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40px;
}
.main__follow-content--input input {
    border: none;
    background: #F3F3F4;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 12px 0 12px 16px;    
}
.main__follow-content--input input::-webkit-input-placeholder {
    color: #908D95;
}
.main__follow-content--input input::-moz-placeholder {
    color: #908D95;
}
.main__follow-content--input input:-ms-input-placeholder {
    color: #908D95;
}
.main__follow-content--input input::-ms-input-placeholder {
    color: #908D95;
}
.main__follow-content--input input::placeholder,
.main__follow-content--input input:focus {
    color: #908D95;
}
.main__follow-content--input input:focus::placeholder {
    color: transparent;
}
.main__follow-content--input button {
    border: none;
    background: #882FF2;
    border-radius: 0px 4px 4px 0px;   
    width: 140px;
    height: 40px; 
    color: #fff;
    font-weight: bold;
    cursor: pointer;

}
.main__follow-content--input button:hover {
    opacity: .9;
}

/* footer */
.footer {
    width: 100%;
}
.footer__inner {
    max-width: 1250px;
    margin: 0 auto;
}
.footer__inner-body {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 16px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 0 16px 0;
}
.footer__logo-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
.footer__logo-image {
    margin-bottom: 16px;
    width: 180px;
}
.footer__information-content h3,
.footer__customers-content  h3 {
    font-weight: bold;
    font-size: 18px;
    line-height: 21px; 
    margin-bottom: 8px;   
}
.footer__information-content ul li:not(:last-child),
.footer__customers-content ul li:not(:last-child) {
    margin-bottom: 8px;    
}
.footer__customers-content ul li:hover,
.footer__information-content ul li:hover {
    color: #882FF2;
}
.footer__contacts-data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.footer__contacts-item {
    padding-left: 44px;
    position: relative;
}
.footer__contacts-item:not(:last-child) {
    margin-bottom: 16px;
}
.contact__phone-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    background: #FFC107;  
    color: #fff;
}
.contact__phone-wrapper i {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
}
.footer__contacts-item h3 {
    font-size: 18px;
    line-height: 21px;
    font-weight: normal;
}
.footer__contacts-item p {
    font-size: 12px;
    line-height: 16px;
    color: #908D95;
}
.footer__inner-rights {
    padding: 16px 0;
}

/* mobile menu */
/* overlay */
.overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
/* mobile */
.mobile-menu {
    min-height: 100vh;
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background: #fff;
    overflow: hidden;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.mobile-menu__inner {
    height: 100%;
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
}
.mobile-menu__inner hr {
    margin: 0;
}
.mobile-menu__auth {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    
}
.mobile-menu__auth img {
    width: 40px;
}
.mobile-menu__auth h3 {
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;    
    margin-left: 8px;
}
.mobile-menu__like a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    
}
.mobile-menu__libra a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    
}
.mobile-menu__like a span,
.mobile-menu__libra a span{
    margin-right: 8px;
    
}
.mobile-menu-catalog {
    width: 196px;
    height: 40px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #882FF2;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.mobile-menu-catalog:hover {
    background: #fff;
    color: #882FF2;
    border: 1px solid #882FF2;
}
.mobile-menu-catalog:hover .hamburger-inner,
.mobile-menu-catalog:hover .hamburger-inner::before,
.mobile-menu-catalog:hover .hamburger-inner::after {
    background-color: #882FF2 !important;
}
.mobile-menu-catalog--inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 146px;
}
.mobile-menu__nav {
    margin: 8px 0;
    padding-left: 8px;
}
.mobile-menu__nav ul {
    position: relative;
    padding-left: 24px;
}
.mobile-menu__nav ul::before {
    content: url('../img/party.png');
    position: absolute;
    top: 0;
    left: 0;
    margin-right: 8px;
}
.mobile-menu__nav ul li:not(:last-child) {
    margin-bottom: 16px;
}
.mobile-menu__contact--button {
    padding: 0 0 0 32px;
    position: relative;
    font-weight: bold;
    width: 238px;
    cursor: pointer;
}
.mobile-menu__contact--button i:last-child {
    position: absolute;
    top: 0;
    right: 0;
}
.mobile-menu__contact--button i:first-child {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
}
.mobile-menu__contact {
    padding-left: 44px;
    position: relative;
}
.contact__phone-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    background: #FFC107;  
    color: #fff;
}
.contact__phone-wrapper i {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
}
.mobile-menu__contact h3 {
    font-size: 18px;
    line-height: 21px;
    font-weight: normal;
}
.mobile-menu__contact p {
    font-size: 12px;
    line-height: 16px;
    color: #908D95;
}
.mobile-menu__closer {
    cursor: pointer;
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 20px;
    display: none;
}

/* contact popup */
.contact-popup {
    position: fixed;
    display: none;
    z-index: 3;
    left: 0;
    top: 0;
    padding-right: 17px;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
.contact-popup__inner {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    padding: 16px 16px 16px 0;
    width: 360px;
    background: #fff;   
    -webkit-box-shadow: 0px 4px 16px rgba(32, 26, 42, 0.15);   
            box-shadow: 0px 4px 16px rgba(32, 26, 42, 0.15);
    border-radius: 4px;
    z-index: 4;
}
.contact-popup__box {
    width: 100%;
    height: 100%;
    position: relative;
}
.contact-popup__box > h3 {
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    padding-left: 16px;
}
.contact-back__button {
    display: none;
    padding-left: 16px;
}
.contact-popup__wrapper {
    margin-top: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.contact-popup__wrapper > div {
    padding-left: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 52px;
}
.contact-popup__wrapper > div p {
    font-size: 14px;
    line-height: 16px;
}
.contact-popup__wrapper > div p span {
    color: #908D95;
}
.contact-popup__wrapper > div > a {
    display: block;
    width: 36px;
    margin-right: 8px;
}
.popup__contacts-data {
    padding-left: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 8px;
    margin-bottom: 16px;
}
.popup__contacts-item {
    padding-left: 44px;
    position: relative;
}
.popup__contacts-item:not(:last-child) {
    margin-bottom: 16px;
}
.popup__contacts-item h3 {
    font-size: 18px;
    line-height: 21px;
    font-weight: normal;
}
.popup__contacts-item p {
    font-size: 12px;
    line-height: 16px;
    color: #908D95;
}
.contact-popup__input {
    padding-left: 16px;
}
.contact-popup__input p {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 8px;
    color: #201A2A;
}
.contact-popup--input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40px;
    max-width: 328px;
}
.contact-popup--input input {
    border: none;
    background: #F3F3F4;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 12px 0 12px 16px;    
}
.contact-popup--input input::-webkit-input-placeholder {
    color: #908D95;
}
.contact-popup--input input::-moz-placeholder {
    color: #908D95;
}
.contact-popup--input input:-ms-input-placeholder {
    color: #908D95;
}
.contact-popup--input input::-ms-input-placeholder {
    color: #908D95;
}
.contact-popup--input input::placeholder,
.contact-popup--input input:focus {
    color: #908D95;
}
.contact-popup--input button {
    border: none;
    background: #882FF2;
    border-radius: 0px 4px 4px 0px;   
    width: 110px;
    height: 40px; 
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}
.contact-popup--input button:hover {
    opacity: .9;
}
.contact-popup__input p:last-child {
    margin: 8px 0 0 0;
    font-size: 12px;
    line-height: 16px;
    color: #908D95;
}
.contact-popup__closer {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 20px;
}
.commit-popup__inner > p {
    margin-bottom: 24px;
}
/* another popups */
.like-popup, 
.libra-popup,
.basket-popup,
.commit-popup {
    position: fixed;
    display: none;
    z-index: 3;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    padding-right: 17px;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);   
    overflow-x: hidden;
    overflow-y: auto; 
}
.like-popup__inner, 
.libra-popup__inner,
.basket-popup__inner,
.commit-popup__inner {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    padding: 16px;
    width: 360px;
    background: #fff;   
    -webkit-box-shadow: 0px 4px 16px rgba(32, 26, 42, 0.15);   
            box-shadow: 0px 4px 16px rgba(32, 26, 42, 0.15);
    border-radius: 4px;
    z-index: 4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.popup__inner-image {
    width: 120px;
    height: 120px;
}
.popup__inner-title {
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    margin: 16px 0;
}
.popup__inner-button--inline {
    border: none;
    width: 100%;
    background: #882FF2;
    font-weight: bold;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    height: 40px;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
}
.popup__inner-button--inline:hover {
    opacity: .9;
}
.popup__inner-button--outline {
    border: 1px solid #882FF2;
    width: 100%;
    background: #fff;
    font-weight: bold;
    font-size: 14px;
    line-height: 24px;
    color: #882FF2;
    height: 40px;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    margin-top: 16px;
}
.popup__inner-button--outline:hover {
    border: none;
    background: #882FF2;
    color: #fff;
}

/* CUSTOM PRODUCT PAGE STYLES */
/* main */
.main__inner-body--nav {
    margin: 0 auto;
}
.main__inner-body--nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.main__inner-body--nav ul li {
    padding-right: 24.5px;
    margin-right: 15px;
    position: relative;
}
.main__inner-body--nav ul li:hover a {
    color: #882FF2;
}
.main__inner-body--nav ul li i {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
    
}
.main__cards-product--image {
    margin-top: 16px;
    width: 312px;
    height: 312px;
    min-width: 312px;
}
.main__cards-product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.main__cards-product:hover {
    border: 1px solid transparent;
}
.main__cards-product--title {
    font-size: 36px;
    line-height: 30px;
    font-weight: normal;
}
.main__cards-product-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 170px;
    margin: 20px 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.main__card-product--type {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 12px;
    line-height: 14px;
    padding: 2px 8px;
    border-radius: 99px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: none;
}
.top--sales .main__card-product--type:nth-child(1) {
    display: block;
    background: #FFC107;
}
.top--action .main__card-product--type:nth-child(2) {
    display: block;
    background: #FD2A50;
}
.top--new .main__card-product--type:nth-child(3) {
    display: block;
    background: #00CD5A;
}
.main__cards-product-icons .svg {
    cursor: pointer;
}
.main__cards-product-icons .svg:hover > svg path {
    fill: #882FF2;
}
.main__cards-product-icons .svg:active > svg path {
    fill: #882FF2;
}
.main__cards-product-icons .svg svg path {
    fill: #D2D1D4;
}
.main__cards-product--rate {
    width: 200px;
}
.main__cards-product--name {
    height: 32px;
    margin-bottom: 16px;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.main__cards-product--name span {
    color: #908D95;
}
.main__cards-product--name img {
    left: 0;
    width: 16px;
    height: 16px;
    margin: 0 8px;
}
.main__cards-product--button {
    width: 140px;
}
.main__inner-products--grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 258.5px 258.5px 258.5px 258.5px;
    grid-template-columns: 258.5px 258.5px 258.5px 258.5px;
    margin: 0 auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.main__inner-products--title {
    margin: 16px 0;
    height: 21px;
}
.main__inner-products--title p {
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    float: left;
}
.main__cards-product--name {
    padding-left: 0;
}
.main__cards-products--store {
    padding: 16px;
    background: #FFC107;
    cursor: pointer;
}
.main__cards-products--store:hover {
   opacity: .9;
}
.main__cards-products--store h3 {
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
}
.main__products-store--image {
    margin-bottom: 16px;
}
.cards-items__mobile--only {
    display: none;
}
.main__cards-store--button {
    border: none;
    width: 100%;
    background: #882FF2;
    font-weight: bold;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    height: 40px;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
}
.main__cards-store--button:hover {
    opacity: .9;
}
/* comments */
.main__inner-body--comments {
    padding-bottom: 32px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.main__body-comments--trigger {
    width: 100%;
    border-bottom: 1px solid #EAE9ED;
}
.main__body-trigger--inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.main__inner-trigger--item {
    width: 84px;
    height: 46px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
}
.main__inner-trigger--item.is--active {
    border-bottom: 2px solid #882FF2;
    z-index: 1;
    color: #882FF2;
}
.main__comments-content {
    padding-top: 16px;
}
.main__inner-body--comments {
    margin: 0 auto;
}
.comment__content-title {
    margin: 0 0 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.comment__content-title > * {
    margin-left: 16px;
}
.comment__content-title h3 {
    font-size: 18px;
    line-height: 21px;    
}
.comment__content-title span:last-child {
    color: #D2D1D4;
}
.comment__content-title span:nth-child(2) {
   color: #908D95;
}
.comment__content-input {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 16px 100px 16px 170px;
    grid-template-columns: 1fr 100px 170px;
    grid-column-gap: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.comment__content-input span i {
    color: #FFC107;
}
.comment__content-input input {
    height: 40px;
    padding: 12px 0 12px 15px;
    background: #F3F3F4;
    border-radius: 4px;
    border: none;
}
.comment__content-input input::-webkit-input-placeholder {
    font-size: 14px;
    line-height: 16px;
    color: #908D95;    
}
.comment__content-input input::-moz-placeholder {
    font-size: 14px;
    line-height: 16px;
    color: #908D95;    
}
.comment__content-input input:-ms-input-placeholder {
    font-size: 14px;
    line-height: 16px;
    color: #908D95;    
}
.comment__content-input input::-ms-input-placeholder {
    font-size: 14px;
    line-height: 16px;
    color: #908D95;    
}
.comment__content-input input::placeholder {
    font-size: 14px;
    line-height: 16px;
    color: #908D95;    
}
.comment__content-button {
    border: 1px solid #882FF2;
    background: transparent;
    font-weight: bold;
    font-size: 14px;
    line-height: 24px;
    color: #882FF2;
    height: 40px;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
}
.comment__content-button:hover {
    background: #882FF2;
    color: #fff;
    border: none;
}
.comment__content-items--user {
    margin-bottom: 32px;
}
.comment__content-item--user {
    margin-top: 32px;
    padding-left: 56px;
    position: relative;
}
.comment__content-user--name {
    clear: both;
    height: 21px;
}
.comment__user-info {
    float: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.comment__user-name {
    margin-right: 8px;
    font-weight: bold;
}
.comment__content-user--name span {
    float: right;
    color: #D2D1D4;
}
.comment__user-date {
    color: #908D95;
}
.comment__content-item--image {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
}
.comment__content-open {
    background: #F3F3F4;
    border-radius: 4px;
    width: 100%;
    height: 32px;    
    border: none;
    font-size: 14px;
    line-height: 16px;
    cursor: pointer;    
}
.main__comments-content > p:first-child {
    font-weight: bold;
}
.main__comments-content > p:not(:last-child) {
    margin-bottom: 16px;
}
/* table */
.main__cards-table--wrapper {
    width: 100%;
    border: 1px solid #EAE9ED;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 4px;
    padding: 16px;
}
.main__cards-table--wrapper:last-child {
    margin-top: 16px;
}
.main__cards-table--wrapper h3 {
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
}
.main__cards-table--wrapper table {
    width: 100%;
    border-collapse:separate; 
    border-spacing:0 16px;
}
.main__cards-table--wrapper table button {
    width: 150px;
    float: right;
}
.main__cards-table--wrapper table tr {
    width: 100%;
}
.main__cards-table--wrapper table tr td {
    font-weight: bold;
    width: 25%;
    vertical-align: middle;
}
.main__cards-table--wrapper table tr td:nth-child(2) {
    font-weight: normal;
    color: #908D95;
}
/* kits */
.main__cards-product--content > p {
    margin-top: 16px;
}
.main__cards-product-icons--kits {
    width: 60px;
}
.cards-kit--image__trigger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 16px;
}
.cards-kit--images__tabs  {
    width: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.kit--images__tab {
    opacity: .5;
    cursor: pointer;
}
.kit--images__tab:not(:last-child) {
    margin-bottom: 8px;
}
.cards-kit--images__tabs img.active {
    opacity: 1;
}
.cards-kit--image {
    min-width: 246px;
}

/* cart */
.main__inner-body--cart {
    margin: 0 auto;
}
.main__inner-body--cart h1 {
    font-weight: normal;
    font-size: 36px;
    line-height: 30px;
}
.main-cart__inner {
    margin-top: 16px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 16px;
}
.main-cart__inner hr:last-child {
    margin: 0;
}
.main-cart__inner--items {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1/4;
}
.main-cart__inner--item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.main-cart__inner--item:not(:last-child) {
    margin-bottom: 16px;
}
.cart__item-image {
    width: 80px;
    margin-right: 16px;
}
.cart__item-count--wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
}

.cart__item-count--item > button:hover {
    opacity: .9;
}
.cart__item-count--item:nth-child(2) {
    position: relative;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #F3F3F4;
    border-radius: 4px;
    height: 40px;
    color: #908D95;
}
.cart__item-count--item button {
    width: 37px;
    height: 40px;
    background: #882FF2;
    border: none;
    position: absolute;
    font-weight: bold;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    cursor: pointer;
}
.main-cart__inner--promo {
    margin-right: 16px;
}
.main-cart__inner--promo h3 {
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
}
.cart__item-count--item button:first-child {
    border-radius: 4px 0px 0px 4px;
    left: 0;
}
.cart__item-count--item button:last-child {
    border-radius: 0px 4px 4px 0px;
    right: 0;
}
.cart__item-count--item:nth-child(3) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    font-weight: bold;
    font-size: 24px;
    line-height: 28px
}
.top--sales .cart__item-count--item > .main__item-old--price {
    display: block;
    margin-right: 8px;
}
.top--sales .cart__item-count--item > .main__item-new--price {
    color: #FD2A50;
}
.cart__item-count--item > .svg {
    position: absolute;
    right: 0;
    opacity: .5;
    cursor: pointer;
}
.cart__item-count--item > .svg:hover {
    opacity: 1;
}
.cart__inner--promo--input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 16px;
    width: 100%;
}
.cart__inner--promo--input input {
    border: none;
    background: #F3F3F4;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 40px;
    padding: 12px 0 12px 16px;    
}
.cart__inner--promo--input input::-webkit-input-placeholder {
    color: #908D95;
}
.cart__inner--promo--input input::-moz-placeholder {
    color: #908D95;
}
.cart__inner--promo--input input:-ms-input-placeholder {
    color: #908D95;
}
.cart__inner--promo--input input::-ms-input-placeholder {
    color: #908D95;
}
.cart__inner--promo--input input::placeholder,
.cart__inner--promo--input :focus {
    color: #908D95;
}
.cart__inner--promo--input button {
    border: none;
    background: #882FF2;
    border-radius: 0px 4px 4px 0px;   
    width: 140px;
    height: 40px; 
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}
.cart__inner--promo--input button:hover {
    opacity: .9;
}
.main-cart__inner--overall {
    padding: 16px;
    border: 1px solid #EAE9ED;
    border-radius: 4px;
}
.main-cart__inner--overall > div {
    clear: both;
    margin-bottom: 16px;
    line-height: 20px;
    height: 21px;
}
.main-cart__inner--overall > div > p:first-child {
    float: left;
}
.main-cart__inner--overall > div > p:last-child {
    float: right;
}
.cart__inner-whole,
.main-cart__inner--overall > div > p:last-child {
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
}
.cart__inner-discount > p:last-child {
    color: #FD2A50;
}
.cart__inner-free > p:last-child {
    color: #00CD5A;
}
.cart__inner-button {
    border: none;
    background: #882FF2;
    border-radius: 4px;   
    width: 100%;
    height: 40px; 
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}
.cart__inner-button:hover {
    opacity: .9;
}
/* order form */
.nav-form__order ul li a i {
    left: 0;
    font-size: 20px;
}
.nav-form__order ul li {
    padding-left: 30px;
}
.main__inner-body--form {
    margin: 0 auto;
    padding: 16px 0;
}
.main__inner-body--form h3 {
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
}
.form-group--content p {
    color: #908D95;
}
.form-group--input {
    margin: 16px 0;
    display: -ms-grid;
    display: grid;
    grid-gap: 16px;
    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: 1fr 1fr;
}
.form-group--input input {
    border: none;
    background: #F3F3F4;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 40px;
    padding: 12px 0 12px 16px;    
}
.form-group--input input::-webkit-input-placeholder {
    color: #908D95;
}
.form-group--input input::-moz-placeholder {
    color: #908D95;
}
.form-group--input input:-ms-input-placeholder {
    color: #908D95;
}
.form-group--input input::-ms-input-placeholder {
    color: #908D95;
}
.form-group--input input::placeholder,
.form-group--input :focus {
    color: #908D95;
}
.form-group--row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
}
.form-group--radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 20px;
    margin-right: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.form-group--radio input {
    width: 20px;
    height: 20px;
    opacity: 0;
    position: absolute;
    margin: 0;
    z-index: 1;
    cursor: pointer;
}
.radio-checker {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #908D95;
    border-radius: 50%;
    background: trasparent;
}
.radio-checker::before {
    content: "";
    height: 12px;
    width: 12px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    border-radius: 0px;
    position: absolute;
    border-radius: 50%;
    background: #882FF2;
    display: none;
}
.form-radio__container > input:checked ~ span::before {
    display: block;
}
.form-radio__container > input:checked ~ span {
    border: 1px solid #882FF2;
}
.form-radio__container {
    position: relative;
    width: 20px;
    height: 20px;
}
.form-group--radio label {
    margin-left: 10px;
}
.form-group--radio label span {
    color: #908D95;
}
.bottom-form input:last-child {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
}
.form-group hr {
    margin: 20px 0 16px;
}
.form__inner-overall {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.form-overall--price span {
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    margin-left: 8px;
}
.form__inner-submit {
    border: none;
    background: #882FF2;
    border-radius: 4px;
    width: 163px;
    height: 40px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}
.form-group > p {
    color: #908D95;
    margin-top: 16px;
}

/* liked */
.main__inner-body--liked {
    margin: 0 auto;
}
.main__inner-body--liked h1 {
    font-weight: normal;
    font-size: 36px;
    line-height: 30px;
    margin-bottom: 16px;
}
.main__inner-cards--liked {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 258.5px 258.5px 258.5px 258.5px;
    grid-template-columns: 258.5px 258.5px 258.5px 258.5px;
    margin: 0 auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.main__inner-cards--liked .main__inner-cards--item .main__cards-item__image > .svg:nth-child(3) svg path {
    fill: #882FF2;
}
.main__inner-cards--liked .main__inner-cards--item .main__cards-item__image > .svg:nth-child(3) {
    top: 0 !important;
}
.main__inner-cards--liked .main__inner-cards--item .main__cards-item__image > .svg:nth-child(2) {
    top: 48px !important;
}
/* login */
.login-form h1 {
    font-size: 36px;
    line-height: 30px;
    font-weight: normal;
    margin-bottom: 16px;
}
.login-form .form-group--input {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
}
.form-group--checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 20px;
    margin-right: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.form-group--checkbox input {
    width: 20px;
    height: 20px;
    opacity: 0;
    position: absolute;
    margin: 0;
    z-index: 1;
    cursor: pointer;
}
.checkbox-checker {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #908D95;
    background: transparent;
    border-radius: 4px;
}
.checkbox-checker::before {
    content: "";
    left: 6px;
    top: 3px;
    position: absolute;
    background: #882FF2;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    display: none;
}
.form-checkbox__container > input:checked ~ span::before {
    display: block;
}
.form-checkbox__container > input:checked ~ span {
    background: #882FF2;
}
.form-checkbox__container {
    position: relative;
    width: 20px;
    height: 20px;
}
.form-group--checkbox label {
    margin-left: 10px;
}
.form-group--checkbox label span {
    color: #908D95;
}
.form__inner-login--button {
    border: none;
    background: #882FF2;
    border-radius: 4px;
    width: 100%;
    height: 40px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    margin: 16px 0;
}
.form__inner-registration--button {
    border: 1px solid #882FF2;
    width: 100%;
    background: #fff;
    color: #882FF2;
    height: 40px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    margin: 16px 0;
}
.form__inner-login--button:enabled:hover {
    opacity: .9;
}
.form__inner-registration--button:hover {
    border: 1px solid transparent;
    background: #882FF2;
    color: #fff;
}
.form__inner-registration--button a {
    width: 100%;
    height: 100%;
}
.form-group--row-login {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
}
.form-attention--block p {
    color: #FD2A50;
}
.form-attention--block {
    margin-bottom: 16px;
}
.form-group--forgot-password p {
    color: #882FF2;
}
.form-group--forgot-password p:hover {
    text-decoration: underline;
}
.main__inner-body--form.login-form > p {
    color: #908D95;
}
/* registration */
.registration-form h1 {
    font-size: 36px;
    line-height: 30px;
    font-weight: normal;
    margin-bottom: 16px;
}
.registration-form .form-group--input {
    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: 1fr 1fr;
}
.registration-form--password input:first-child,
.registration-form--password input:nth-child(2) {
    grid-column: 1/-1;
}
.form-registration--captcha {
    width: 100%;
    margin-bottom: 16px;
}
.form-registration--captcha input {
    border: none;
    background: #F3F3F4;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 40px;
    padding: 12px 0 12px 16px; 
}
.form__inner-login--ref {
    width: 100%;
    text-align: center;
    color: #882FF2;
}
.form__inner-login--ref:hover {
    text-decoration: underline;
}

/* setting */
.setting-form h1 {
    font-size: 36px;
    line-height: 30px;
    font-weight: normal;
    margin-bottom: 16px;
}
.form-group__setting--password {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}
.form-group__setting--address {
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
.form-group__setting--address input:first-child {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1/4;
}
.form-group__setting--address input:nth-child(2) {
    -ms-grid-column: 4;
    -ms-grid-column-span: 3;
    grid-column: 4/7;
}
.form-group__setting--address input:nth-child(3) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
}
.form-group__setting--address input:nth-child(4) {
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-column: 3/5;
}
.form-group__setting--address input:nth-child(5) {
    -ms-grid-column: 5;
    -ms-grid-column-span: 2;
    grid-column: 5/7;
}
.form__inner-setting--button {
    border: none;
    background: #882FF2;
    border-radius: 4px;
    width: 100%;
    height: 40px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    margin: 16px 0;
}
.form__inner-setting--button:hover {
    opacity: .9;
}
.form-group--selects {
    display: -ms-grid;
    display: grid;
    margin: 16px 0;
    grid-gap: 16px;
    -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
}
.input-select--wrapper {
    position: relative;
}
.input-select--wrapper i {
    position: absolute;
    top: 50%;
    right: 17px;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
}
/* discount block */
.main__inner-body--discount {
    margin: 16px auto 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 80px 16px 1fr;
    grid-template-columns: 80px 1fr;
    grid-column-gap: 16px;
    background: #FFC107;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 16px;
}
.main__inner-discount--image {
    width: 80px;
}
.main__inner-discount--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.main__inner-discount--content h2 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 16px;
    line-height: 24px;
}
.main__inner-discount--content h2 span {
    font-weight: bold;
}
/* password remember */
.recover-form h1 {
    font-size: 36px;
    line-height: 30px;
    font-weight: normal;
    margin-bottom: 16px;
}
/* blogs page */
.main__inner-body--blogs {
    margin: 16px auto 0;
    display: -ms-grid;
    display: grid;
    grid-gap: 16px;
    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: 1fr 1fr;
}
.main__inner-body--blog {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 16px;
    grid-auto-rows: minmax(min-content, max-content);
}
.main__inner-body--blog > p {
    font-size: 18px;
    line-height: 21px;
}
.main__inner-body--blog > p:hover {
    color: #882FF2;
}
.main__inner-blog--adder {
    margin: 16px auto 34px;
    background: #F3F3F4;
    border-radius: 4px;
    color: #201A2A;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 32px;
    cursor: pointer;
}
.main__inner-blog--adder:hover {
    opacity: .9;
}
.main__inner-blog--pagination {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.main__inner-blog--pagination ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 175px;
    position: relative;
    padding: 0 15px;
}
.main__inner-blog--pagination ul i {
    position: absolute; 
    color: #908D95;
    top: 5px;
    cursor: pointer;
}
.main__inner-blog--pagination ul i:first-child {
    left: 0;
}
.main__inner-blog--pagination ul i:last-child {
    right: 0;
}
.main__inner-blog--pagination ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    padding: 2px 8px;
    border-radius: 4px;   
    color: #908D95;
    font-size: 18px;
    line-height: 21px;
}
.main__inner-blog--pagination ul li:not(.actived):hover {
    color: #882FF2;
}
.main__inner-blog--pagination ul li.actived {
    background: #882FF2;
    color: #fff;
}
.main__inner-blog--pagination ul li.actived:hover {
    opacity: .9;
}
/* blog */
.main__inner-blog--info {
    margin: 0 auto;
}
.main__inner-blog--info h1 {
    font-size: 36px;
    line-height: 30px;
    margin: 16px 0;
    font-weight: normal;
}
.main__inner-blog--content p:not(:last-child) {
    margin-bottom: 16px;
}


/* compare */
.main__inner-body--compare {
    margin: 0 auto;
}
.main__inner-body--compare h1 {
    font-weight: normal;
    font-size: 36px;
    line-height: 30px;
    margin-bottom: 16px;
}
.main__compare--wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.main__cards--comparing {
    width: 75%;
    overflow-x: scroll;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 258.5px 258.5px 258.5px 258.5px 258.5px 258.5px 258.5px 258.5px;
    grid-template-columns: 258.5px 258.5px 258.5px 258.5px 258.5px 258.5px 258.5px 258.5px;
}
.main__cards--comparing::-webkit-scrollbar {
    height: 8px;
}
.main__cards--comparing::-webkit-scrollbar-thumb {
    background: #D2D1D4;
    border-radius: 4px;
  }
.main__cards--comparing .main__cards-item--name {
    padding: 0;
    margin-bottom: 0;
}
.main__cards--comparing .main__cards-item--name,
.main__cards--comparing .main__cards-item--capacity,
.main__cards--comparing .main__cards-item--power,
.main__cards--comparing .main__cards-item--structure {
    margin-bottom: 0;
    height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 16px;
}
.main__cards--comparing .main__cards-item--price {
    margin: 16px 0;
    padding: 0 16px;
}
.main__cards--comparing .main__cards-item--capacity,
.main__cards--comparing .main__cards-item--structure {
   background: #F3F3F4; 
}
.main__cards--comparing .main__inner-cards--item {
    padding: 16px 0;
}
.main__cards-item--button-wrapper,
.main__cards--comparing .main__cards-item--rate {
    padding: 0 16px;
}
.main__cards--comparing .main__inner-cards--item {
    padding: 16px 0;
    border: none;
}
.main__inner-comparer {
    width: 25%;
    padding: 16px 0;
    border-right: 1px solid #EAE9ED;
}
.main__comparer-table {
    margin-top: 310px;
}
.main__comparer-table--item {
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;  
    height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;  
    padding: 0 16px;
}
.main__comparer-table--item:nth-child(2n) {
    background: #F3F3F4;
}
.main__cards--comparing .main__inner-cards--item .main__cards-item__image > .svg:nth-child(2) svg path {
    fill: #882FF2;
}
.main__cards--comparing .main__inner-cards--item .main__cards-item__image > .svg:nth-child(3) {
    top: 0 !important;
}
.main__cards--comparing .main__inner-cards--item .main__cards-item__image > .svg:nth-child(2) {
    top: 48px !important;
}