@charset "UTF-8";

html {
    width: 100%;
    height: 100%;
    min-height: 100%;
}

body {
    font-family: "Rubik", "Helvetica Neue", Arial, "sans-serif";
    min-height: 100%;
    height: 100%;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    min-width: 320px;
    color: #333;
    background-color: #fff;
}

body.fixed {
    overflow: hidden;
}

.body-majordev {
    overflow: hidden;
}

/****************************************************
  *
  * Загрузка
  *
*****************************************************/

.loading {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
    z-index: 99;
    background: rgba(255, 255, 255, .9);
}

.loading .loading-wrapper {
    width: 20px;
    height: 30px;
    position: absolute;
    top: 50%;
    margin-top: -15px;
    left: 50%;
    margin-left: -10px;
}

.loading .loading-part {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 1;
    top: 0;
    background: #ccc;
    animation: majordev1 0.8s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}

.loading .loading-left {
    background: url("../images/icons/left-part.svg") no-repeat center;
    right: -6px;
    bottom: 0;
    animation-direction: alternate-reverse;
}

.loading .loading-right {
    background: url("../images/icons/right-part.svg") no-repeat center;
    left: -6px;
    top: 0;
}

@keyframes majordev1 {
    0% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(10px);
    }
}

/****************************************************
  *
  * Стиль скролла
  *
*****************************************************/

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: #ebebeb;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: #276cae;
}

::selection {
    background: #ffb21d;
}
::-moz-selection {
    background: #ffb21d;
}

/****************************************************
  *
  * Левая колонка
  *
*****************************************************/

.wrp-majordev {
    margin-bottom: 40px;
}

.wrp-majordev .is-selected a {
    color: #000;
    font-weight: bold;
}

/****************************************************/

/****************************************************
  *
  * Модуль поиск
  *
*****************************************************/

.wrp-search {
    position: relative;
    margin-top: 12px;
}

.wrp-search button {
    position: absolute;
    right: 14px;
    top: 50%;
    margin-top: -11px;
    width: 22px;
    height: 22px;
    min-height: 10px;
    border-radius: 0;
    border: none;
    background-image: url("../images/icons/search.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
    background-color: inherit;
    padding: 0;
}

.wrp-search input[type="search"] {
    padding: 0 46px 0 14px;
    height: 38px;
}

.row-search-page {
    margin-top: 0;
    margin-bottom: 40px;
}

/****************************************************/

/****************************************************
  *
  * Шапка сайта
  *
*****************************************************/

.majordev-header__v1 {
    padding: 20px 0 20px 0;
    font-size: 14px;
    position: relative;
    margin: 0 20px 10px 20px;
    border-bottom: 1px solid #ccc;
    z-index: 9;
}

.majordev-header__v1 .section-inner {
    padding: 0;
}

.majordev-header__v1 .h-logo {
    float: left;
    margin-top: 9px;
    margin-right: 44px;
}

.majordev-header__v1 .h-logo a {
    display: block;
}

.majordev-header__v1 .h-logo a:hover {
    opacity: .5;
}

.majordev-header__v1 .h-logo a img {
    height: 24px;
    display: block;
}

.majordev-header__v1 .h-catalog {
    float: left;
}

.majordev-header__v1 .h-catalog .btn-hcatalog {
    display: block;
    background: #276cae;
    color: #fff;
    font-weight: bold;
    height: 46px;
    padding-left: 66px;
    padding-right: 36px;
    line-height: 46px;
    border-radius: 10px;
    position: relative;
}

.majordev-header__v1 .h-catalog .btn-hcatalog .icon {
    position: absolute;
    left: 26px;
    width: 20px;
    height: 2px;
    top: 22px;
    background: #fff;
    transition-property: background-color,transform;
    transition-duration: .3s;
}

.majordev-header__v1 .h-catalog .btn-hcatalog .icon:before {
    content: '';
    position: absolute;
    top: -6px;
    width: 20px;
    height: 2px;
    border-radius: 5px;
    background: #fff;
    transition-property: background-color,transform;
    transition-duration: .3s;
}

.majordev-header__v1 .h-catalog .btn-hcatalog .icon:after {
    position: absolute;
    content: '';
    top: 6px;
    width: 20px;
    height: 2px;
    border-radius: 5px;
    background: #fff;
    transition-property: background-color,transform;
    transition-duration: .3s;
}

.majordev-header__v1 .h-catalog .active-btn {
    background: #1f3e7d;
}

.majordev-header__v1 .h-catalog .active-btn .icon {
    background: transparent;
}

.majordev-header__v1 .h-catalog .active-btn .icon:before {
    transform: translateY(6px) rotate(45deg);
}

.majordev-header__v1 .h-catalog .active-btn .icon:after {
    transform: translateY(-6px) rotate(-45deg);
}

.majordev-header__v1 .h-search {
    float: left;
    margin-left: 44px;
    max-width: 440px;
    width: 100%;
}

.majordev-header__v1 .h-search .form-search {
    position: relative;
}

/*.majordev-header__v1 .h-search .form-search button {*/
    /*position: absolute;*/
    /*right: 14px;*/
    /*top: 50%;*/
    /*margin-top: -11px;*/
    /*width: 18px;*/
    /*height: 18px;*/
    /*min-height: 10px;*/
    /*border-radius: 0;*/
    /*border: none;*/
    /*background-image: url(../images/icons/search.svg);*/
    /*background-repeat: no-repeat;*/
    /*background-position: center;*/
    /*background-size: 18px;*/
    /*background-color: inherit;*/
    /*padding: 0;*/
/*}*/

.majordev-header__v1 .h-search .form-search button {
    position: absolute;
    background: #e1e1e1;
    color: #8a8a8a;
    right: -100px;
    border: 1px solid #e1e1e1;
}

.majordev-header__v1 .h-contacts {
    float: left;
    margin-left: 100px;
}

.majordev-header__v1 .h-contacts a {
    color: #4e4e4e;
    display: block;
}

.majordev-header__v1 .h-contacts a:hover {
    color: #276cb1;
}

.majordev-header__v1 .h-contacts .phone a {
    line-height: 34px;
    color: #000;
}

.majordev-header__v1 .h-contacts .email a {
    line-height: 34px;
}

.majordev-header__v1 .h-contacts .more-info-vr1 {
    padding: 14px 10px;
}

.majordev-header__v1 .h-contacts .more-info-body {
    width: 558px;
}

.majordev-header__v1 .h-contacts .btn-order-body {
    float: right;
}

.majordev-header__v1 .h-contacts .more-info-body .btn-link {
    padding: 0 26px;
    min-height: auto;
    line-height: 36px;
    height: 36px;
    color: #fff;
}

.majordev-header__v1 .h-contacts:hover .more-info-body {
    visibility: visible;
    opacity: 1;
}

.majordev-header__v1 .h-contacts:hover .circle,
.majordev-header__v1 .h-contacts:hover .circle:after,
.majordev-header__v1 .h-contacts:hover .circle:before {
    background: #286cae;
}

.majordev-header__v1 .h-navi {
    float: right;
}

.majordev-header__v1 .h-navi li:last-child {
    margin-right: 0;
}

.majordev-header__v1 .h-navi a {
    display: block;
    line-height: 46px;
    height: 46px;
    color: #4e4e4e;
    min-width: 10px;
}

.majordev-header__v1 .h-navi a:hover {
    color: #276cb1;
}

.majordev-header__v1 .h-navi .count {
    position: absolute;
    width: 20px;
    height: 20px;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    margin-left: 5px;
    border: 1px solid #dcdcdc;
    top: 50%;
    margin-top: -10px;
    right: -32px;
}

.section-inner-auth .h-contacts {
    margin-left: 50px;
}

.section-inner-auth .h-navi {
    margin-left: 50px;
}

.nav-icon {
    position: relative;
    padding-left: 30px;
    display: block;
}

.nav-icon:before {
    content: '';
    width: 18px;
    height: 18px;
    background: #ccc;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -9px;
}

.nav-icon.nav-phone:before {
    background: url("../images/icons/phone.svg") no-repeat center;
}

.nav-icon.nav-email:before {
    background: url("../images/icons/mail.svg") no-repeat center;
}

.nav-icon.nav-login:before {
    background: url("../images/icons/user.svg") no-repeat center;
}

.nav-icon.nav-logout:before {
    background: url("../images/icons/logout.svg") no-repeat center;
}

.nav-icon.nav-favourites:before {
    background: url("../images/icons/favourites-null.svg") no-repeat center;
}

.majordev-header__v1 .h-cart {
    float: right;
    margin-left: 64px;
    line-height: 46px;
}

.majordev-header__v1 .h-cart.cart-empty .summ-cart {
    display: none;
}

.majordev-header__v1 .h-cart a {
    display: block;
    color: #4e4e4e;
    position: relative;
    padding-left: 27px;
}

.majordev-header__v1 .h-cart a:before {
    content: '';
    width: 15px;
    height: 18px;
    background: url("../images/icons/cart.svg") no-repeat center;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
}

.majordev-header__v1 .count-cart {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    margin-left: 10px;
    height: 20px;
    font-size: 12px;
    line-height: 20px;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    background: #2e4179;
    color: #fff;
    border: 1px solid #2e4179;
}

.majordev-header__v1 .summ-cart {
    color: #000;
    font-weight: bold;
    margin-left: 10px;
}

/****************************************************/

/****************************************************
  *
  * 3 главные кнопки
  *
*****************************************************/

.navigation-catalog {
    border-bottom: 1px solid #ccc;
    margin-bottom: 25px;
    padding-bottom: 20px;
}

.btn-catalog {
    background: #eaeaea;
    border-radius: 10px;
    padding: 12px 10px;
    display: block;
    cursor: pointer;
    position: relative;
}

.btn-catalog:hover {
    background: #2e417a;
}

.btn-catalog:after {
    content: '';
    position: absolute;
    right: 20px;
    width: 10px;
    height: 10px;
    top: 50%;
    margin-top: -5px;
    background: url("../images/icons/arrow-right.svg") no-repeat center;
}

.icons-catalog {
    position: absolute;
    left: 20px;
    top: 50%;
    width: 26px;
    margin-top: -13px;
}

.icons-catalog img {
    display: block;
}

.name-catalog {
    margin-left: 52px;
}

.name-catalog .title {
    line-height: 30px;
    color: #355a90;
    display: block;
    font-size: 14px;
}

.navigation-catalog .item-link {
    margin-bottom: 20px;
}

.btn-catalog:hover .title,
.btn-catalog:hover .about-btn {
    color: #fff;
}

.btn-catalog.active-btn {
    background: #2e417a;
}

.btn-catalog.active-btn .name-catalog .title {
    color: #fff;
}

.navigation-catalog .item-link-0 a {
    background: #276cae;
}

.navigation-catalog .item-link-0 a .name-catalog .title {
    color: #fff;
}

.btn-catalog .icon {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 2px;
    top: 19px;
    background: #fff;
    transition-property: background-color,transform;
    transition-duration: .3s;
}

.btn-catalog .icon:before {
    content: '';
    position: absolute;
    top: -6px;
    width: 20px;
    height: 2px;
    border-radius: 5px;
    background: #fff;
    transition-property: background-color,transform;
    transition-duration: .3s;
}

.btn-catalog .icon:after {
    position: absolute;
    content: '';
    top: 6px;
    width: 20px;
    height: 2px;
    border-radius: 5px;
    background: #fff;
    transition-property: background-color,transform;
    transition-duration: .3s;
}

.btn-catalog.active-btn .icon {
    background: transparent;
}

.btn-catalog.active-btn .icon:before {
    transform: translateY(6px) rotate(45deg);
}

.btn-catalog.active-btn .icon:after {
    transform: translateY(-6px) rotate(-45deg);
}

.navigation-catalog .item-link-logo {
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
    height: 87px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.navigation-catalog .item-link-logo a,
.navigation-catalog .item-link-logo span {
    display: block;
    margin-top: 8px;
}

.navigation-catalog .item-link-logo a img {
    display: block;
    width: 100%;
}

/****************************************************/

/****************************************************
  *
  * Меню MAJORDEV
  *
*****************************************************/

.navigation-majordev a {
    color: #ababab;
}

.navigation-majordev a:hover {
    color: #000;
}

.navigation-majordev ul.nav li {
    padding-bottom: 15px;
    font-size: 14px;
}

/****************************************************/

/****************************************************
  *
  * Блок Контакты
  *
*****************************************************/

.wrp-contactus {
    font-size: 14px;
    color: #4e4e4e;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    margin-bottom: 0;
}

.wrp-contactus a {
    display: block;
    color: #4e4e4e;
}

.wrp-contactus a:hover {
    color: #000;
}

.wrp-contactus span {
    display: block;
}

.wrp-contactus .time,
.wrp-contactus .icon-email {
    margin-bottom: 20px;
}

.wrp-contactus .number-phone-1 {
    padding-bottom: 5px;
}

.wrp-contactus .title-phone {
    display: block;
    font-size: 12px;
    font-weight: bold;
    padding-bottom: 5px;
}

.wrp-contactus .time {
    display: block;
}

.icon-time:before {
    margin-top: -18px;
    opacity: .7;
    background: url("../images/icons/time.svg") no-repeat center;
}

.icon-email:before {
    opacity: .7;
    background: url("../images/icons/email.svg") no-repeat center;
}

.icon-phone:before {
    margin-top: -32px;
    opacity: .7;
    background: url("../images/icons/phone-black.svg") no-repeat center;
}

.icon-communication:before {
    margin-top: -32px;
    opacity: .7;
    background: url("../images/icons/communication.svg") no-repeat center;
}

/****************************************************/

/****************************************************
  *
  * Подписка
  *
*****************************************************/

.row-subscription p.big-text {
    padding-bottom: 0;
}

.row-subscription .h2 {
    margin-bottom: 0;
}

.form-subscribe {
    float: left;
    max-width: 440px;
    position: relative;
}

.form-subscribe .input {
    display: inline-block;
    width: 258px;
    vertical-align: top;
    padding: 0;
}

.form-subscribe .input-submit {
    width: 158px;
    display: inline-block;
    vertical-align: top;
    margin-left: 20px;
}

.form-subscribe .input .input-help {
    min-width: 450px;
}

.form-subscribe .input-submit input[type="submit"] {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

.row-subscription .separator-text {
    float: left;
    line-height: 46px;
    margin: 0 50px;
}

.navigation-social {
    float: left;
}

.navigation-social a {
    display: block;
}

.navigation-social li {
    margin-right: 70px;
}

.row-column .navigation-social img {
    height: 46px;
    display: block;
    width: auto;
}

/****************************************************/

/****************************************************
  *
  * Подвал
  *
*****************************************************/

.majordev-footer .section-inner {
    padding: 0 0 0 20px;
}

.row-footer {
    margin-top: 60px;
    padding-top: 60px;
    font-size: 14px;
    font-weight: 300;
    border-top: 1px solid #dcdcdc;
    position: relative;
    overflow: hidden;
    z-index: 2;
    margin-right: -40px;
}

.row-footer:before {
    content: '';
    width: 880px;
    height: 472px;
    display: block;
    overflow: hidden;
    position: absolute;
    right: -350px;
    bottom: -10px;
    opacity: .3;
    background: url("../images/icons/majordev.svg") no-repeat center;
}

.row-footer a {
    color: #333;
}

.row-footer a:hover {
    color: #456cac;
}

.row-navigation-footer {
    position: relative;
    z-index: 2;
}

.row-navigation-footer li {
    padding-bottom: 15px;
}

.row-dopcontacts {
    font-size: 18px;
    position: relative;
    z-index: 3;
    padding-top: 60px;
    padding-bottom: 20px;
}

.row-dopcontacts a {
    color: #333;
}

.row-dopaddress {
    padding-bottom: 20px;
}

.row-dopaddress .address {
    display: inline-block;
}

.row-copyright {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}

.text-copyright {
    padding-bottom: 10px;
}

.navigation-copyright {
    font-size: 12px;
    float: left;
}

.region {
    float: left;
    font-size: 12px;
    margin-left: 100px;
}

.region .region-item {
    display: block;
    padding-left: 30px;
    position: relative;
}

.region .region-item img {
    position: absolute;
    left: 0;
    top: 50%;
    height: 14px;
    margin-top: -9px;
}

.majordev-footer-mini .row-footer {
    padding-top: 20px;
}

.majordev-footer-mini .row-footer:before {
    content: none;
}

.majordev-footer-mini .row-dopcontacts {
    padding-top: 20px;
    padding-bottom: 20px;
}

.majordev-footer-mini .row-copyright {
    padding-bottom: 20px;
}

.row-payment {
    position: relative;
    z-index: 2;
    padding-top: 45px;
    max-width: 1020px;
}

.row-payment .row-column .inner-column img {
    width: auto;
    height: 20px;
    border-radius: 0;
}

.row-payment .row-column .payment-item-2 img {
    height: 24px;
}

.row-payment .row-column .payment-item-4 {
    border-left: 1px solid #dcdcdc;
    padding-left: 44px;
}

.row-payment .row-column .system-label {
    border-left: 1px solid #dcdcdc;
    padding-left: 44px;
    font-size: 11px;
    color: #8a8a8a;
}

.row-payment .row-column .payment-item-label {
    font-size: 11px;
    width: 80px;
    color: #8a8a8a;
}

.row-payment .row-column .system-logo img {
    height: 30px;
}

/****************************************************/

/****************************************************
  *
  * Каталог на главной
  *
*****************************************************/

.row-navi-catalog {
    padding-top: 20px;
    margin-bottom: 0px!important;
    position: relative;
    z-index: 3;
}

.row-navi-catalog li {
    margin-bottom: 30px;
}

.row-navi-catalog li a {
    display: block;
    font-weight: bold;
}

/****************************************************
  *
  * Мультибаннер
  *
*****************************************************/

.row-banner-multi {
    position: relative;
    margin-top: 10px;
}

.row-banner-multi:before {
    content: '';
    position: absolute;
    left: -20px;
    right: -20px;
    background: #f3f3f3;
    top: -350px;
    bottom: -20px;
    width: auto;
    display: block;
    border-radius: 0 0 10px 10px;
}

.row-banner-multi .row-column {
    position: relative;
    z-index: 2;
}

/****************************************************/

/****************************************************
  *
  * Слайдер
  *
*****************************************************/

.js-slider-block_v1 {
    position: relative;
    float: left;
    width: 100%;
    border-radius: 5px;
}

.js-slider-block_v1 .slick-list {
    width: 100%;
    overflow: hidden;
    float: left;
    border-radius: 5px 5px 0 0;
}

.js-slider-block_v1 .slider-item {
    float: left;
    width: 100%;
    height: 260px;
    background-size: cover;
    border-radius: 10px;
}

.js-slider-block_v1 .slider-item .slider-title {
    color: #fff;
    padding: 60px 40px 0 40px;
    font-size: 24px;
}

.js-slider-block_v1 .slider-item .slider-title a {
    color: #fff;
}

.js-slider-block_v1 .slider-item .slider-desc {
    font-size: 14px;
    color: #fff;
    font-weight: 300;
    padding: 20px 40px 0 40px;
}

.slick-slide {
    float: left;
    border-radius: 10px 10px 0 0;
    outline: none;
}

.slick-slide div,
.slick-slide div a {
    outline: none;
}

.js-slider-block_v1 .slick-button-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    height: auto;
    width: 20px;
    z-index: 2;
    background: #5682c2;
    border: none;
    border-radius: 10px;
    padding: 0;
    opacity: 0;
}

.js-slider-block_v1:hover .slick-button-nav {
    opacity: 1;
}

.js-slider-block_v1 .slick-button-nav:hover {
    background-color: rgba(255, 255, 255, .2);
}

.js-slider-block_v1 .slick-dots {
    position: absolute;
    bottom: 20px;
    left: 40px;
    right: 0;
    text-align: center;
}

.js-slider-block_v1 .slick-dots li {
    float: left;
    margin-right: 14px;
}

.js-slider-block_v1 .slick-dots li button {
    cursor: pointer;
    outline: none;
    width: 10px;
    height: 10px;
    background: #ccc;
    min-height: auto;
    border: none;
    display: block;
    border-radius: 50%;
    text-indent: -999999px;
    padding: 0;
}

.js-slider-block_v1 .slick-dots li.slick-active button {
    background: #276cb1;
}

.js-slider-block_v1 .slick-prev {
    left: 0;
    background-image: url(../images/icons/left-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

.js-slider-block_v1 .slick-next {
    right: 0;
    background-image: url(../images/icons/right-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

.js-carusel-block_v1 .slick-disabled {
    background-color: #ccc!important;
}

/****************************************************/

.row-modul,
.row-module {
    margin-bottom: 40px;
}

/****************************************************
  *
  * Баннер
  *
*****************************************************/

.banner-block_v1 {
    min-height: 260px;
    max-height: 260px;
    color: #fff;
    border-radius: 10px;
    background-size: cover;
}

.banner-block_v1 .banner-title {
    color: #3c3c3c;
    padding: 60px 40px 0 40px;
    font-weight: 300;
    font-size: 24px;
}

.banner-block_v1 .banner-desc {
    font-size: 14px;
    color: #67686b;
    font-weight: 300;
    padding: 20px 40px 0 40px;
}

.banner-block_v2 {
    min-height: 120px;
    max-height: 120px;
    color: #fff;
    border-radius: 10px;
    background-size: cover;
}

.banner-block_v2 .banner-title {
    font-weight: 300;
    font-size: 14px;
    padding: 20px 40px 0 40px;
}

.banner-block_v2 .banner-title span {
    font-weight: bold;
    color: #ff7a00;
}

.banner-block_v3 {
    margin-top: 20px;
    min-height: 120px;
    max-height: 120px;
    color: #fff;
    border-radius: 10px;
    background: #2e417a;
    position: relative;
    overflow: hidden;
}

.banner-block_v3:before {
    content: '';
    width: 120px;
    background: url("../images/icons/sale.svg") no-repeat center;
    position: absolute;
    left: -30px;
    top: -3px;
    bottom: -3px;
}

.banner-block_v3 .banner-title {
    font-weight: 300;
    font-size: 14px;
    padding: 20px 40px 0 40px;
    position: relative;
}

.banner-block_v3 .banner-title:after {
    /*content: '';*/
    width: 12px;
    height: 12px;
    background: url("../images/icons/anchor.svg") no-repeat center;
    position: absolute;
    right: 38px;
    top: 51px;
}

.banner-block_v3 .banner-time {
    padding-left: 70px;
    margin-top: 10px;
    font-size: 14px;
    position: relative;
}

.banner-block_v3 .banner-time:after {
    content: '';
    width: 16px;
    height: 16px;
    background: url("../images/icons/timer.svg") no-repeat center;
    position: absolute;
    left: 40px;
    top: 50%;
    margin-top: -8px;
}

/****************************************************/

/****************************************************
  *
  * Баннер карусель
  *
*****************************************************/

.slick-list:before,
.slick-list:after {
    content: '';
    width: 100%;
    display: table;
}

.slick-list {
    position: relative;
    overflow: hidden;
    outline: none;
}

.slick-track {
    outline: none;
}

.row-banner-carusel {
    padding-top: 25px;
    padding-bottom: 25px;
    margin-left: -20px;
    margin-right: -20px;
}

.row-banner-carusel .row-title {
    margin-left: 20px;
    margin-right: 20px;
}

.js-carusel-block_v1 {
    position: relative;
    outline: none;
}

.carusel-item {
    background: #f3f3f3;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.carusel-item a {
    color: #000;
    outline: none;
}

.carusel-item .carusel-subtitle {
    color: #898989;
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
}

.carusel-item .carusel-title {
    font-size: 18px;
    font-weight: 300;
    padding: 10px 0 20px 0;
}

.carusel-item .carusel-desc {
    font-size: 14px;
    font-weight: 300;
    display: table;
    height: 50px;
    padding-right: 112px;
}

.carusel-item .carusel-desc p {
    display: table-cell;
    vertical-align: middle;
    padding-bottom: 0;
}

.carusel-item .carusel-image {
    position: absolute;
    right: 10px;
    bottom: -20px;
    width: 120px;
}

.carusel-item-catalog {
    padding: 0;
    margin-bottom: 40px;
}

.carusel-item-catalog a {
    display: block;
    padding: 20px;
}

.carusel-item-catalog .carusel-image {
    bottom: auto;
    top: 30px;
}

.carusel-item-catalog .carusel-title {
    min-height: 88px;
}

.carusel-item .carusel-image img {
    display: block;
    width: 100%;
}

.js-carusel-block_v1 .slick-button-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    height: auto;
    width: 15px;
    z-index: 2;
    background: #276cae;
    border: none;
    opacity: 0;
    padding: 0;
}

.js-carusel-block_v1:hover .slick-button-nav {
    opacity: 1;
}

.js-carusel-block_v1 .slick-prev {
    left: 0;
    background-image: url("../images/icons/left-arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 8px;
}

.js-carusel-block_v1 .slick-next {
    right: 0;
    background-image: url("../images/icons/right-arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

.js-carusel-block_v1 .slick-button-nav:hover {
    background-color: #284969;
}

/****************************************************/

/****************************************************
  *
  * Продукты карусель
  *
*****************************************************/

.row-products-carusel {
    margin-left: -20px;
    margin-right: -20px;
    position: relative;
    padding-bottom: 50px;
}

.row-products-carusel:before {
    content: '';
    position: absolute;
    left: 20px;
    right: 20px;
    height: 1px;
    bottom: 0;
    background: #f3f3f3;
}

.row-products-carusel .row-title {
    margin-left: 20px;
    margin-right: 20px;
}

.row-products-newprd .product-view-var1 {
    margin-bottom: 40px;
}

.row-products-homevirus {
    padding-bottom: 40px;
}

.row-products-homevirus .product-view-var1 {
    margin-bottom: 40px;
}

/****************************************************
  *
  * Отображение товара вид 1
  *
*****************************************************/

.product-view-var1 img {
    border-radius: 10px;
    display: block;
    width: 100%;
}

.product-vv1-image {
    border-radius: 10px;
    float: left;
    padding: 5px;
    max-width: 150px;
    border: 1px solid #eaeaea;
}

.product-vv1-image a,
.product-vv1-image img {
    display: block;
    width: 100%;
}

.product-vv1-info {
    margin-left: 170px;
    position: relative;
    min-height: 150px;
}

.product-vv1-name {
    height: 58px;
    width: 100%;
    overflow: hidden;
    display: table;
}

.product-vv1-name a {
    display: table-cell;
    vertical-align: middle;
    font-size: 16px;
    color: #474747;
    outline: none;
}

.product-vv1-savingprice {
    font-size: 14px;
    position: absolute;
    top: 74px;
}

.product-vv1-badge {
    font-size: 12px;
    position: absolute;
    top: 50%;
    margin-top: -10px;
    margin-left: 20px;
    left: 100%;
    width: 400px;
}

.badge-item {
    padding: 1px 8px 0px 8px;
    border-radius: 10px;
    height: 20px;
    line-height: 18px;
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
}

.badge-red {
    background: #ffffff;
    color: #292929;
    border: 1px solid #f91155;
}

.badge-green {
    background: #79b387;
    color: #fff;
}

.badge-orange {
    background: #ff6600;
    color: #fff;
}

.badge-blue {
    background: #ffffff;
    color: #292929;
    border: 1px solid #4c69a2;
}

.product-vv1-action {
    position: absolute;
    bottom: 10px;
}

.product-vv1-action .compare-at-price {
    color: #636363;
    display: inline-block;
    vertical-align: middle;
    text-decoration: line-through;
    background: #f3f3f3;
    font-size: 14px;
    border-radius: 10px;
    padding: 5px 15px 3px 15px;
    margin-right: 10px;
}

.product-vv1-action .relevant-price {
    display: inline-block;
    vertical-align: middle;
    background: #eaeaea;
    border-radius: 10px;
    line-height: 31px;
    height: 30px;
    padding: 0 18px;
    color: #2d6cd5;
    margin-right: 10px;
    min-width: 100px;
    font-weight: bold;
    text-align: center;
}

.product-vv1-action .elevant-price-phone {
    font-size: 12px;
}

.product-vv1-action .btn-addcart {
    display: inline-block;
    vertical-align: middle;
    background: #eaeaea;
    border-radius: 10px;
    padding-left: 0;
    padding-right: 0;
    border: none;
    width: 33px;
    height: 33px;
    min-height: auto;
    overflow: hidden;
    position: relative;
}

.product-vv1-action .btn-addcart:hover {
    background: #456cac;
}

.product-vv1-action .btn-addcart span {
    text-indent: -999999px;
    display: block;
}

.product-vv1-action .btn-addcart i {
    display: block;
    position: absolute;
    width: 15px;
    height: 18px;
    background: url("../images/icons/addcart.svg") no-repeat center;
    left: 50%;
    top: 50%;
    margin-left: -7px;
    margin-top: -10px;
    border-radius: 0;
}

.product-vv1-action .delete-product {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.product-cert-photo-vr1__rl1 .product-certificate-vr1__rl1 {
    float: right;
    display: table;
    width: 140px;
    height: 168px;
    border: 1px solid #eaeaea;
    border-radius: 10px;
}

.product-cert-photo-vr1__rl1 .product-certificate-vr1__rl1 .middle {
    display: table-cell;
    vertical-align: middle;
    padding: 0 20px;
}

.product-cert-photo-vr1__rl1 .product-certificate-vr1__rl1 img {
    display: block;
    width: 100%;
    border-radius: 10px;
}

/****************************************************
  *
  * Отображение товара вид 2
  *
*****************************************************/

.product-vv2-image {
    border-radius: 10px;
    float: left;
    padding: 5px;
    max-width: 120px;
    border: 1px solid #eaeaea;
}

.product-vv2-image a,
.product-vv2-image img {
    display: block;
    width: 100%;
}

.product-vv2-info {
    margin-left: 140px;
    position: relative;
}

.product-vv2-info .product-vv1-savingprice {
    top: 56px;
}

.product-vv2-info .product-vv1-action {
    position: relative;
    bottom: auto;
    padding-top: 24px;
}

.row-article-clients {
    margin-bottom: 80px;
}

/****************************************************
  *
  * Кнопка категория
  *
*****************************************************/

.row-category-popular {
    margin-bottom: 50px;
    border-bottom: 1px solid #f3f3f3;
    padding-bottom: 50px;
}

.category-item-link {
    display: table;
    width: 100%;
    height: 80px;
    text-align: center;
    margin-bottom: 10px;
}

.category-item-link a {
    display: table-cell;
    background: #f3f3f3;
    vertical-align: middle;
    color: #456cac;
    padding: 0 10px;
    border-radius: 10px;
}

.category-item-link a:hover {
    background: #2e417a;
    color: #fff;
}

.category-item-link .image {
    display: table;
    height: 60px;
    width: 100%;
    padding: 5px;
    margin-top: 20px;
}

.category-item-link .image .middle {
    vertical-align: middle;
    display: table-cell;
}

.category-item-link .image .middle img {
    border-radius: 0;
    display: inline-block;
    vertical-align: top;
    max-width: 100px;
    width: auto;
}

.category-item-link .label {
    padding-bottom: 20px;
}

/****************************************************
  *
  * Список миссия
  *
*****************************************************/

.mission-item {
    display: table;
    width: 100%;
    height: 50px;
}

.mission-item .image {
    float: left;
    min-width: 50px;
    text-align: center;
    margin-right: 20px;
}

.mission-item .image img {
    width: auto;
    display: inline-block;
    height: 50px;
    vertical-align: top;
    border-radius: 0;
}

.mission-item .text {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

.mission-item .text p {
    padding-bottom: 0;
}

.mission-item .h1,
.mission-item .h2,
.mission-item .h3,
.mission-item .h4,
.mission-item .h5 {
    margin-bottom: 10px;
}

.mission-item .row-title strong {
    position: relative;
}

.mission-item .row-title strong:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: #2c6eac;
    border-radius: 10px;
}

/****************************************************
  *
  * Промо баннер
  *
*****************************************************/

.row-promo-banner {
    padding-top: 80px;
    margin-bottom: 140px;
}

.modul-banner-vr1__rl1 {
    background: #fbfbfb;
    border-radius: 10px;
    position: relative;
    padding: 100px 0 100px 200px;
}

.modul-banner-vr1__rl1 .sub-title {
    font-weight: 300;
    font-size: 14px;
}

.modul-banner-vr1__rl1 .sub-title a {
    color: #000;
}

.modul-banner-vr1__rl1 .navigation-banner li {
    font-weight: 300;
    font-size: 14px;
}

.modul-banner-vr1__rl1 .modul-banner-image {
    position: absolute;
    right: 40px;
    top: -42px;
    width: 40%;
    text-align: center;
}

.modul-banner-vr1__rl1 .modul-banner-image img {
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

/****************************************************
  *
  * Карточка товара вид 1
  *
*****************************************************/

.product-header-vr1__rl1 .product-vv1-image {
    max-width: none;
    float: none;
    background: #fff;
}

.product-header-vr1__rl1 .product-vv1-image img {
    border-radius: 10px;
}

.product-header-vr1__rl1 .product-name-rf {
    background: #e8e8e8;
    border-radius: 10px;
    padding: 4px 8px;
    font-size: 14px;
    display: inline-block;
    vertical-align: top;
    margin-top: 5px;
}

.product-header-vr1__rl1 h1 {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 0;
}

.purchase_options {
    margin-top: 70px;
    max-width: 620px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.purchase_options:before {
    content: '';
    position: absolute;
    left: 20px;
    bottom: -15px;
    border-radius: 4px;
    border: 10px solid transparent;
    border-top: 10px solid #3875b2;
}

.purchase_options h2 {
    margin-bottom: 0;
}

.product-characteristics {
    font-size: 14px;
}

.product-characteristics-min {
    font-size: 14px;
    padding-top: 20px;
}

.product-characteristics .list:after,
.product-characteristics .list:before,
.product-characteristics-min .list:before,
.product-characteristics-min .list:after {
    content: '';
    width: 100%;
    display: table;
}

.product-characteristics li {
    float: left;
    width: 50%;
    padding: 5px 0;
}

.product-characteristics-min li {
    padding: 5px 0;
    float: left;
    width: 31.3333333%;
    margin-right: 2%;
}

.product-characteristics .characteristics-name {
    min-width: 200px;
    display: inline-block;
    color: #959595;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.product-characteristics-min .characteristics-name {
    color: #959595;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-characteristics-min .characteristics-count {
    color: #000;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rating:before,
.rating:after {
    content: '';
    width: 100%;
    display: table;
}

.star {
    float: left;
    width: 16px;
    height: 16px;
    margin-right: 5px;
    background: url("../images/icons/rating-y.svg") no-repeat center;
}

.star-empty {
    background: url("../images/icons/rating-n.svg") no-repeat center;
}

.rating .rating-value,
.rating .review-count {
    float: left;
    line-height: 14px;
}

.rating-none {
    display: none;
}

.rating-value {
    font-size: 12px;
    border-radius: 10px;
    padding: 1px 8px;
    margin-left: 20px;
    margin-right: 20px;
    background: #48b01a;
    color: #fff;
}

.review-count a {
    font-size: 12px;
    color: #858585;
}

.product-cart {
    padding-bottom: 20px;
}

.product-delivery {
    font-size: 14px;
    max-width: 330px;
    margin-bottom: 20px;
    padding-left: 28px;
    position: relative;
}

.product-delivery:before {
    position: absolute;
    left: 0;
    width: 18px;
    height: 18px;
    background: #ccc;
    top: 5px;
    content: '';
    background: url("../images/icons/download.svg") no-repeat center;
}

.product-delivery p {
    padding: 0;
}

.inner-column-cart {
    position: relative;
}

.row-cart-ma {
    font-size: 14px;
}

.price-sale {
    display: inline-block;
    vertical-align: middle;
}

.row-cart-ma .price-sale {
    margin-right: 40px;
}

.price-sale .price-sale-none {
    display: none;
}

.stocks {
    display: inline-block;
    vertical-align: middle;
}

.sku-stock .stock-green {
    float: left;
    width: 5px;
    height: 18px;
    border-radius: 3px;
    background: #42c61f;
    margin-right: 2px;
}

.sku-stock .stock-red {
    float: left;
    width: 5px;
    height: 18px;
    border-radius: 3px;
    background: #f1370a;
    margin-right: 2px;
}

.label-stock {
    display: inline-block;
    margin-left: 5px;
}

.row-cart-md {
    padding-top: 20px;
}

.product-vv1-price .row-cart-md {
    padding-top: 0;
}

.old-price {
    color: #636363;
    display: inline-block;
    vertical-align: middle;
    text-decoration: line-through;
    background: #f3f3f3;
    font-size: 13px;
    border-radius: 10px;
    padding: 5px 15px 3px 15px;
    margin-right: 10px;
}

.price {
    display: inline-block;
    vertical-align: middle;
    background: #eaeaea;
    border-radius: 10px;
    line-height: 30px;
    padding: 3px 18px 0 18px;
    color: #2d6cd5;
    margin-right: 10px;
}

.btn-addcart {
    background: #456cac;
    color: #fff;
    width: auto;
    border-radius: 10px;
    padding-left: 50px;
    padding-right: 22px;
    min-height: 36px;
    position: relative;
}

.btn-addcart i {
    position: absolute;
    width: 26px;
    height: 26px;
    top: 50%;
    left: 5px;
    margin-top: -13px;
    background-color: #2e4179;
    background-image: url("../images/icons/cart-white.svg");
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center;
    border-radius: 10px;
}

.btn-addcart:hover {
    background: #2e4179;
}

.product-age {
    float: right;
    margin-top: -62px;
}

.product-age .age-count {
    border-radius: 10px;
    text-align: center;
    width: 50px;
    padding: 10px 0 7px 0;
    border: 1px solid #dcdcdc;
}

.product-age .age-label {
    width: 50px;
    font-size: 12px;
    font-weight: 300;
    text-align: center;
    color: #959595;
    padding-top: 5px;
}

.product-sliderimage-vr1__rl1 {
    margin-left: -20px;
    margin-right: -20px;
}

.sliderimage-item {
    overflow: hidden;
    border-radius: 10px;
}

.sliderimage-item img {
    width: 100%;
    display: block;
}

.text-aboutmin img {
    display: block;
    width: 100%;
}

.more-information {
    font-weight: 300;
}

.more-information .more-item {
    padding-bottom: 20px;
}

.more-item-label {
    font-weight: bold;
    padding-bottom: 4px;
}

.comment-count  {
    color: #000;
}

.comment-count .big {
    font-size: 36px;
}

.comment-bars {
    padding-top: 20px;
}

.comment-bars-item {
    margin-bottom: 5px;
}

.comment-bars .bar,
.comment-bars .rating,
.comment-bars .rating-hint {
    float: left;
    min-width: 75px;
}

.comment-bars .bar {
    background: #d4d4d4;
    width: 70%;
    height: 5px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 3px;
    margin-left: 10px;
    margin-right: 10px;
}

.comment-bars .bar .filling {
    background: #959595;
    height: 5px;
    border-radius: 10px;
}

.comment-bars .bar .bg-line-1 {
    background: #ff6f31;
}

.comment-bars .bar .bg-line-2 {
    background: #ff9f02;
}

.comment-bars .bar .bg-line-3 {
    background: #ffcf02;
}

.comment-bars .bar .bg-line-4 {
    background: #9ace6a;
}

.comment-bars .bar .bg-line-5 {
    background: #57bb8a;
}

.comment-bars .rating .star {
    width: 10px;
    height: 10px;
    background: url("../images/icons/rating-s.svg") no-repeat center;
}

.comment-bars .rating .no-star {
    font-size: 10px;
    display: block;
    height: 10px;
    line-height: 10px;
    color: #bbb;
}

.comment-bars .rating-hint {
    color: #a0a0a0;
    font-weight: bold;
    font-size: 10px;
    line-height: 12px;
    min-width: auto;
}

.product-lastcomment-vr1__rl1 .h2 {
    padding-bottom: 18px;
}

.lastcomment-items {
    padding-top: 40px;
}

.lastcomment-item {
    background: #f3f3f3;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    font-size: 14px;
    min-height: 162px;
}

.lastcomment-name {
    float: left;
}

.lastcomment-date {
    float: right;
}

.lastcomment-rating {
    padding: 10px 0;
}

.lastcomment-item p {
    padding-bottom: 0;
    font-weight: 300;
}

.products-option-item {
    position: relative;
}

.products-option-item a {
    color: #7b7b7b;
}

.products-option-item a:hover {
    color: #000;
}

.o-item-name {
    margin-right: 150px;
}

.products-option-item .product-vv1-action {
    right: 0;
    bottom: auto;
    top: -6px;
}

.o-item-desc {
    font-size: 12px;
    padding-top: 10px;
    margin-right: 300px;
}

.page-product .info {
    font-size: 12px;
    color: #ccc;
    padding-top: 30px;
}

.page-product .info p {
    padding-bottom: 0;
}

.product-similar-vr1__rl1 .column,
.product-recently-vr1__rl1 .column {
    padding-bottom: 20px;
}

.anchor-faq-vr1__rl1 {
    padding-top: 114px;
    padding-left: 200px;
}

/****************************************************
  *
  * Скидки и акции у товара стикиры
  *
*****************************************************/

.product-label-list {
    padding-top: 3px;
    display: inline-block;
    vertical-align: top;
}

.product-label {
    display: inline-block;
    vertical-align: top;
    font-size: 12px;
    font-weight: 300;
    border-radius: 10px;
    padding: 4px 8px;
    margin-right: 10px;
}

.product-share {
    background: #48b01a;
    color: #fff;
}

/****************************************************
  *
  * Написать отзыв Форма
  *
*****************************************************/

.row-from {
    position: relative;
}

.row-from .success-form {
    position: absolute;
    left: 0;
    right: 0;
    display: table;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    background: #f3f3f3;
    text-align: center;
    border-radius: 10px;
}

.row-from span.error {
    display: block;
    font-size: 12px;
    padding-top: 5px;
    color: #c37272;
}

.row-from .success-form .middle {
    display: table-cell;
    vertical-align: middle;
    padding: 40px;
}

.row-from .success-form .middle h2 {
    padding-bottom: 20px;
}

.form-addreview {
    padding-top: 30px;
    min-height: 694px;
}

.review-form-fields {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 40px;
}

.row-rate {
    height: 24px;
    overflow: hidden;
}

.rate {
    display: inline-block;
    vertical-align: top;
}

.rate .star {
    width: 24px;
    height: 24px;
}

.rate .star-empty {
    float: left;
    width: 24px;
    height: 24px;
    margin-right: 5px;
    cursor: pointer;
    background: url("../images/icons/rating-n.svg") no-repeat center;
}

.rate-clear {
    vertical-align: top;
    line-height: 30px;
    height: 24px;
    font-size: 12px;
    overflow: hidden;
    display: none;
}

.captcha-img {
    float: left;
    max-width: 150px;
}

.captcha-img img {
    height: 46px;
    border-radius: 10px;
}

.captcha-field {
    margin-left: 200px;
}

.captcha-refresh {
    font-size: 12px;
    color: #ccc;
    cursor: pointer;
    padding-top: 5px;
}

.captcha-refresh:hover {
    color: #000;
}

.review-form-fields .input-submit input[type="submit"] {
    background: #456cac;
    color: #fff;
    max-width: 200px;
}

/****************************************************
  *
  * Все отзывы о товаре
  *
*****************************************************/

.review {
    padding-bottom: 20px;
}

.reviews-items .reviews-items {
    padding-left: 40px;
}

.review-item .review .username,
.review-item .review .staff {
    display: inline-block;
    vertical-align: top;
    font-weight: bold;
    margin-right: 20px;
    margin-bottom: 10px;
}

.review-item .review span.date {
    line-height: 20px;
}

.review-ratings {
    padding: 0 0 10px 0;
}

.review-actions .review-reply {
    font-size: 14px;
    font-weight: 300;
    color: #5983ca;
    cursor: pointer;
}

.review-actions .review-reply:hover {
    color: #000;
}

.review p {
    padding-bottom: 0;
    font-weight: 300;
}

/****************************************************
  *
  * Якоря FAQ
  *
*****************************************************/

.navigation-anchorfaq {
    background: #456cac;
    border-radius: 10px;
    padding: 40px;
}

.navigation-anchorfaq a {
    color: #fff;
    padding: 5px 0;
    display: block;
    font-weight: 300;
}

.navigation-anchorfaq .nav {
    border-left: 1px solid #5b83c3;
    padding-left: 40px;
}

.navigation-anchorfaq .nav li {
    padding: 10px 0;
}

/****************************************************
  *
  * Форма входа в личный кабинет
  *
*****************************************************/

.page-login {
    padding-top: 80px;
    padding-bottom: 100px;
    margin-bottom: 0;
}

.page-login .wa-field {
    padding-top: 10px;
    padding-bottom: 10px;
}

.page-login .wa-field .wa-name {
    padding-bottom: 5px;
}

.page-login .form-login {
    max-width: 320px;
}

.page-login .login-forgotpassword-url {
    font-size: 14px;
    display: block;
    padding-top: 5px;
}

.page-login input[type="submit"] {
    background: #456cac;
    color: #fff;
}

.page-login .row-action-signup strong {
    font-size: 18px;
}

.page-login .wa-login-form-actions {
    padding-top: 20px;
}

.row-login-best {
    color: #525252;
    padding-top: 60px;
    margin-top: 60px;
    border-top: 1px solid #dcdcdc;
}

.row-login-best .column {
    margin-bottom: 60px;
}

.row-login-best .col-3:nth-child(3n+1) {
    clear: both;
}

.row-login-best p {
    padding-bottom: 0;
}

.row-login-best .sub-title {
    color: #525252;
}

.row-login-best .mission-item .text {
    width: 100%;
}

.row-login-best .lg-bottom {
    padding-top: 40px;
}

/****************************************************
  *
  * Форма регистрации в личный кабинет
  *
*****************************************************/

.page-registr {
    padding-top: 80px;
    padding-bottom: 100px;
}

.page-registr .wa-field {
    padding-top: 10px;
    padding-bottom: 10px;
}

.page-registr .form-registr {
    max-width: 520px;
}

.page-registr .wa-field .wa-name {
    padding-bottom: 5px;
}

.page-registr .wa-field .wa-value p {
    padding-bottom: 0;
}

.page-registr .wa-login-forgotpassword-url {
    font-size: 12px;
}

.page-registr input[type="submit"] {
    background: #456cac;
    color: #fff;
}

.page-registr .row-action-login strong {
    font-size: 18px;
}

.page-registr .wa-signup-form-actions {
    padding-top: 20px;
}

.page-registr .captcha-field {
    margin-left: 0;
}

.group-input-captcha {
    padding-top: 10px;
}

.group-input-captcha label {
    margin-left: 20px;
    margin-right: 20px;
}

.group-input-captcha .input-captcha {
    padding-top: 0;
}

.info-notification {
    font-size: 12px;
}

.info-notification p {
    padding-bottom: 0;
    color: #a0a2a5;
}

/****************************************************
  *
  * Восстановление пароля
  *
*****************************************************/

.page-forgot {
    padding-top: 80px;
    padding-bottom: 100px;
}

.page-forgot .wa-field {
    padding-top: 10px;
    padding-bottom: 10px;
}

.page-forgot .form-forgot {
    max-width: 320px;
}

.page-forgot .wa-field .wa-name {
    padding-bottom: 5px;
}

.page-forgot .wa-forgotpassword-button {
    padding-top: 20px;
}

.page-forgot input[type="submit"] {
    background: #456cac;
    color: #fff;
}

/****************************************************
  *
  * Страница "Результат поиска"
  *
*****************************************************/

.empty-search {
    padding-bottom: 80px;
}

.empty-search p {
    max-width: 340px;
}

.products-list-action {
    padding-bottom: 30px;
}

.products-list-action button {
    padding: 0 16px;
    font-size: 14px;
    min-height: 36px;
}

.products-list-favorites {
    padding-bottom: 40px;
}

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

.profile-items {
    margin-top: 30px;
    background: #456cad;
    border-radius: 10px;
    padding: 15px 20px;
    position: relative;
    margin-bottom: 40px;
    z-index: 2;
}

.profile-items li {
    padding: 5px 0;
}

.profile-items li a {
    color: #fff;
    font-size: 14px;
}

.profile-items li.is-selected a {
    color: #789bd8;
}

/****************************************************
  *
  * Профиль пользователя
  *
*****************************************************/

.column-catalog .profile-page {
    margin-top: 30px;
}

.row-fields-profile,
.row-edit-profile {
    max-width: 720px;
}

.fields-profile .field-profile:first-child {
    padding: 0 0 10px 0;
}

.fields-profile .field-profile {
    padding: 10px 0;
}

.fields-profile .field-name {
    padding-bottom: 5px;
    margin-bottom: 0;
}

.fields-profile .field-value {
    background: #e1e7f1;
    padding: 20px;
    color: #3d5682;
    border-radius: 5px;
}

.fields-profile .field-profile-help-top {
    padding-bottom: 10px;
    font-size: 14px;
}

.fields-profile .field-profile-help-bottom {
    padding-top: 10px;
    color: #a0a2a5;
    font-size: 12px;
}

.banner-profile {
    padding-top: 30px;
    padding-bottom: 30px;
}

.banner-profile .carusel-item {
    margin-bottom: 20px;
}

.banner-profile .carusel-item .carusel-title {
    padding-right: 130px;
}

.text-success {
    padding: 40px;
    font-weight: bold;
    background: #f3f3f3;
    border-radius: 5px;
    margin-bottom: 40px;
}

.text-success p {
    padding-bottom: 0;
}

/****************************************************
  *
  * Мои заказы
  *
*****************************************************/

.order-item {
    padding: 20px;
    border: 1px solid #f3f3f3;
    border-radius: 5px;
}

.order-header {
    display: block;
    position: relative;
    margin-bottom: 20px;
}

.order-header .badge-item {
    font-size: 12px;
    background: #ccc;
}

.order-header .order-number {
    font-size: 16px;
    color: #474747;
    margin-right: 120px;
}

.status-processing .badge-item {
    background: #f91155;
    color: #fff;
}

.status-shipped .badge-item {
    background: #4510de;
    color: #fff;
}

.status-completed .badge-item {
    background: #4bb518;
    color: #fff;
}

.status-paid .badge-item {
    background: #ff9308;
    color: #fff;
}

.status-new .badge-item {
    background: #2172ff;
    color: #fff;
}

.order-header .date {
    position: absolute;
    right: 0;
    top: 2px;
}

.order-list {
    padding-bottom: 20px;
    max-height: 120px;
    height: 120px;
    position: relative;
    overflow: hidden;
}

.order-list .goods-list li {
    border-bottom: 1px solid #dcdcdc;
    padding-bottom: 14px;
    padding-top: 14px;
    font-size: 12px;
    color: #888;
}

.order-list .goods-list li:last-child {
    border-bottom: none;
}

.order-list:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(0deg, rgba(255,255,255,1) 33%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(255,255,255,1) 33%, rgba(255,255,255,0) 100%);
    background: linear-gradient(0deg, rgba(255,255,255,1) 33%, rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
    height: 50px;
    bottom: 0;
}

.order-params .order-param {
    font-size: 12px;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    text-align: center;
    padding: 10px 10px;
    margin-bottom: 10px;
}

.order-params .order-param:last-child {
    margin-bottom: 0;
}

.order-params-page .order-param {
    font-size: 14px;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    text-align: center;
    padding: 10px 20px;
}

.content-profile .column {
    padding-bottom: 40px;
}

.orders-items .no-results {
    margin: 0 20px;
}

/****************************************************
  *
  * Подробный заказ
  *
*****************************************************/

.row-status-order h1 {
    position: relative;
    display: inline-block;
    vertical-align: top;
}

.row-status-order .badge-item {
    position: absolute;
    left: 100%;
    top: 50%;
    line-height: 20px;
    height: 20px;
    font-size: 14px;
    font-weight: normal;
    margin-top: -10px;
    margin-left: 44px;
}

.product-order:before,
.product-order:after {
    content: '';
    width: 100%;
    display: table;
}

.product-order {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f3f3f3;
}

.product-order .product-vv1-image {
    max-width: 96px;
}

.product-order .product-vv1-content {
    margin-left: 116px;
    padding-top: 10px;
}

.product-order .product-vv1-content .name {
    padding-bottom: 20px;
}

.plugin-majordev-order {
    text-align: right;
}

.plugin-majordev-order input[type="submit"] {
    font-weight: bold;
    background: #456cac;
    color: #fff;
    height: 62px;
    font-size: 12px;
    max-width: 320px;
}

.order-total table {
    width: 100%;
}

.order-total table tr td:first-child {
    font-weight: normal;
}

.order-total table tr td:last-child {
    font-weight: bold;
    text-align: right;
}

.keys-filds {
    padding: 20px 20px 20px 60px;
    position: relative;
    background: #f3f3f3;
    border-radius: 5px;
    margin-top: 20px;
}

.keys-filds:before {
    content: '';
    width: 20px;
    height: 20px;
    background: url("../images/icons/key.svg") no-repeat center;
    position: absolute;
    left: 20px;
    top: 24px;
}

.keys-filds .label {
    float: left;
    line-height: 30px;
}

.keys-filds .keys-count {
    margin-left: 190px;
    line-height: 30px;
}

.form-pinstatus {
    margin-bottom: 40px;
    max-width: 520px;
}

.form-pinstatus .input {
    max-width: 320px;
}

/****************************************************
  *
  * Бонусная программа
  *
*****************************************************/

.affiliate-list table {
    font-size: 14px;
}

.affiliate-list table tr td:first-child {
    font-weight: normal;
}

.balance-affiliate {
    background: #e8e8e8;
    border-radius: 5px;
    padding: 80px 40px;
    margin-bottom: 40px;
    position: relative;
}

.balance-affiliate:before {
    content: '';
    width: 260px;
    height: 142px;
    position: absolute;
    left: 100px;
    top: 50%;
    margin-top: -71px;
    background: url("../images/bg/svg/affiliate.svg") no-repeat center;
}

.balance-affiliate .h2 {
    color: #1749a0;
    padding-left: 50%;
    padding-bottom: 0;
}

/****************************************************
  *
  * Новости рынка - список новостей
  *
*****************************************************/

.companychap-items {
    margin-top: 25px;
    background: #f3f3f3;
    border-radius: 10px;
    padding: 15px 20px;
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.companychap-items li {
    padding: 5px 0;
}

.companychap-items li a {
    display: block;
    color: #9c9c9c;
    font-size: 14px;
}

.companychap-items li a:hover,
.companychap-items li.is-selected a {
    color: #000;
}

.blog-page {
    margin-top: 25px;
}

.post-item {
    background: #f3f3f3;
    padding-bottom: 20px;
    border-radius: 5px;
}

.post-item-color a {
    color: #fff;
}

.post-item-color span.date {
    color: #fff;
    padding-left: 0;
}

.post-item-color span.date:before {
    content: none;
}

.post-item-color .post-link:after {
    content: none;
}

.post-text {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.post-background {
    width: 100%;
    height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px 5px 0 0;
    background-position: center;
}

.post-link {
    width: 100%;
    font-size: 14px;
    height: 66px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.post-link:after {
    content: '';
    width: 100%;
    height: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgb(243,243,243);
    background: -moz-linear-gradient(0deg, rgba(243,243,243,1) 0%, rgba(243,243,243,0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(243,243,243,1) 0%, rgba(243,243,243,0) 100%);
    background: linear-gradient(0deg, rgba(243,243,243,1) 0%, rgba(243,243,243,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f3f3f3",endColorstr="#f3f3f3",GradientType=1);
}

.img-shadow {
    display: block;
    -webkit-box-shadow: 0 0 12px 6px rgba(1,1,1,.1);
    box-shadow: 0 0 12px 6px rgba(1,1,1,.1);
    border-radius: 10px;
    margin-bottom: 20px;
}

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

.sale-item {
    border: 1px solid #f2f2f2;
    border-radius: 5px;
}

.content-blog .col-2,
.content-blog .col-3,
.content-blog .col-4,
.content-blog .col-5 {
    width: 50%;
}

.sale-name {
    padding-bottom: 0;
    margin-bottom: 0;
}

.sale-item .icons {
    margin: -1px 0 -1px -1px;
}

.sale-item .row-column .inner-column img {
    border-radius: 5px 0 0 5px;
}

.sale-item .sale-desc {
    margin-bottom: 0;
    padding-top: 20px;
    font-size: 14px;
    padding-right: 20px;
}

.sale-item .sale-desc p {
    padding-bottom: 0;
}

.content-blog div.no-results,
.content-blog div.no-results {
    margin-left: 20px;
    margin-right: 20px;
}

/****************************************************
  *
  * Страница новости
  *
*****************************************************/

.row-title-news {
    border-radius: 10px;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding: 140px 80px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.row-title-news:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    background: #0d0d0d;
    opacity: .5;
}

.row-title-news .title {
    position: relative;
    z-index: 2;
}

.row-title-news h1 {
    padding-bottom: 0;
    color: #fff;
}

.row-title-news .date {
    color: #fff;
}

.row-title-news span.date:before {
    background: url("../images/icons/date-white.svg") no-repeat center;
}

.row-text-news {
    max-width: 780px;
    padding-top: 40px;
}

.row-text-news figure {
    display: block;
    width: 100%;
    padding-bottom: 20px;
}

.row-text-news figure img {
    display: block;
    width: 100%;
    border-radius: 10px;
}

.row-text-news h2,
.row-text-news h3 {
    margin-bottom: 10px;
}

.row-text-news .cat-product-grid-v1 {
    padding-bottom: 0!important;
}

.row-text-news .cat-product-views-v1 .product-grid-info {
    border-bottom: none;
    padding-bottom: 0;
}

/****************************************************
  *
  * Страница акции
  *
*****************************************************/

.row-text-promo {
    max-width: 780px;
    float: left;
}

.row-text-promo figure {
    display: block;
    width: 100%;
    padding-bottom: 40px;
}

.row-text-promo figure img {
    display: block;
    width: 100%;
    border-radius: 5px;
}

.row-text-promo h2,
.row-text-promo h3 {
    margin-bottom: 30px;
}

.row-text-promo .row-module {
    padding-top: 20px;
}

.row-promo-action {
    float: right;
    max-width: 200px;
}

/****************************************************
  *
  * Выдвижной катлог разделов
  *
*****************************************************/

.section-mjr {
    position: absolute;
    left: 280px;
    top: 78px;
    right: 40px;
    z-index: 99;
    background: #fff;
    display: none;
    -webkit-box-shadow: 0px 0px 11px 1px rgba(50, 50, 50, 0.2);
    -moz-box-shadow: 0px 0px 11px 1px rgba(50, 50, 50, 0.2);
    box-shadow: 0px 0px 11px 1px rgba(50, 50, 50, 0.2);
    border-radius: 10px;
}

.row-navmjr {
    padding: 0 40px 40px 40px;
    position: relative;
}

.row-navmjr button.close {
    position: absolute;
    right: 40px;
    top: 40px;
}

.row-navmjr .row-all-catalog-v2 {
    padding-top: 50px;
}

.all-catalog-item .level-main .nav-sub li.level-hover {
    padding: 0;
    border-bottom: 1px solid #d6d6d6;
}

.all-catalog-item .level-main .nav-sub li.level-hover:last-child {
    border-bottom: none;
}

.all-catalog-item .level-main .nav-sub li.level-hover a {
    padding: 10px 0;
    display: block;
    position: relative;
}

.all-catalog-item .level-main .nav-sub li.level-hover a:hover {
    background: #e8e8e8;
}

.all-catalog-item .level-main .nav-sub li.level-hover a:after {
    content: '';
    position: absolute;
    right: 10px;
    width: 10px;
    height: 10px;
    top: 15px;
    background: url("../images/icons/arrow-right.svg") no-repeat center;
}

.all-catalog-item .level-main .nav-sub li.level-hover li.item-child a:after {
    content: none;
}

.nav-hover {
    z-index: 99;
    padding: 10px 20px;
    position: absolute;
    left: 100%;
    margin-left: -20px;
    background: #fff;
    width: 300px;
    top: -10px;
    bottom: -10px;
    display: none;
    -webkit-box-shadow: 0 0 12px 6px rgba(1,1,1,.1);
    box-shadow: 0 0 12px 6px rgba(1,1,1,.1);
}

.all-catalog-item .level-main .nav-sub li.item-child {
    padding: 0;
    border-bottom: 1px solid #e9e9e9;
}

.all-catalog-item .level-main .nav-sub li.item-child strong {
    padding: 10px 0;
    display: block;
}

.all-catalog-item .level-main .nav-sub li.item-child:last-child {
    border-bottom: none;
}

.nav-hover li.item-child a {
    display: block;
}

.level-hover:hover .nav-hover {
    display: block;
}

.all-catalog-item .level-main .top-brands {
    background: #f3f3f3;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 20px;
    position: relative;
}

/****************************************************
  *
  * Раздел Office 365
  *
*****************************************************/

.col-office {
    max-width: 146px;
}

.module-axmd-v1 .col-color-grey-1 {
    position: relative;
}

.module-axmd-v1 .col-color-grey-1 .h2 {
    color: #fff;
}

.module-axmd-v1 .col-color-grey-1 .layer {
    padding: 40px 40px 20px 40px;
}

.module-axmd-v1 .col-color-grey-1:before {
    content: '';
    position: absolute;
    left: 20px;
    right: 0;
    z-index: 3;
    top: 0;
    bottom: 0;
    background: #ff6d02;
    border-radius: 5px;
}

.module-axmd-v1 .col-color-grey-1 .inner-column {
    position: relative;
    z-index: 5;
    color: #fff;
}

.module-axmd-v1 .col-color-grey-2 {
    position: relative;
}

.module-axmd-v1 .col-color-grey-2 .layer {
    padding: 40px 20px 20px 20px;
}

.module-axmd-v1 .col-color-grey-2:before {
    content: '';
    position: absolute;
    left: -10px;
    right: -20px;
    top: 0;
    z-index: 2;
    bottom: 0;
    background: #444546;
    border-radius: 5px;
}

.module-axmd-v1 .col-color-grey-2 .inner-column {
    position: relative;
    z-index: 5;
    color: #fff;
}

.module-axmd-v1 .col-color-grey-3 {
    position: relative;
}

.module-axmd-v1 .col-color-grey-3 .layer {
    padding: 40px 40px 20px 40px;
}

.module-axmd-v1 .col-color-grey-3:before {
    content: '';
    position: absolute;
    left: -10px;
    right: 20px;
    top: 0;
    bottom: 0;
    background: #5a5a5a;
    background-size: cover;
    border-radius: 5px;
}

.module-axmd-v1 .col-color-grey-3 .inner-column {
    position: relative;
    z-index: 5;
    color: #fff;
}

.product-notfound {
    padding-bottom: 80px;
}

.product-notfound .carusel-product-item {
    margin-bottom: 40px;
}

.all-catalog-nav-v2 {
    margin-top: 40px;
}

.all-catalog-nav-v2:after,
.all-catalog-nav-v2:before {
    content: '';
    width: 100%;
    display: table;
}

.all-catalog-nav-rg__banner {
    padding: 40px;
    background: #f3f3f3;
    border-radius: 10px;
    margin-top: 60px;
}

.all-catalog-nav-rg__banner h5,
.all-catalog-nav-rg__banner p {
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.all-catalog-nav-rg__banner p {
    color: #848484;
}

.row-partner {
    text-align: left;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 60px;
}

.row-partner p {
    margin: 0;
    padding: 0;
}

.row-partner img {
    display: block;
    margin-left: 20px;
    width: 100%;
    max-width: 100px;
}

@media screen and (max-width: 1880px) {

    .row-navi-catalog li {
        margin-right: 22px;
    }

    .row-navi-catalog li a {
        font-size: 14px;
    }

    .row-view-grid .row-column .col-20 {
        width: 25%!important;
    }

}

@media screen and (max-width: 1790px) {

    .majordev-header__v1 .h-search {
        max-width: 280px;
    }

}

@media screen and (max-width: 1680px) {

    .article-name {
        font-size: 14px;
    }

    .product-vv1-action .compare-at-price {
        font-size: 10px;
    }

    .product-vv1-action .relevant-price {
        font-size: 13px;
    }

    .cat-product-views-v1 .product-grid-action .compare-at-price {
        font-size: 10px;
    }

    .row-navi-catalog li {
        margin-right: 16px;
    }

    .row-navi-catalog li a {
        font-weight: normal;
    }

}

@media screen and (max-width: 1520px) {

    .column-filters {
        width: 200px;
    }

    .column-catalog {
        margin-left: 230px;
    }

    .column-catalog-full {
        margin-left: 0;
    }

    .product-vv1-image {
        max-width: 100px;
    }

    .product-vv1-info {
        margin-left: 120px;
    }

    .product-vv1-name a {
        font-size: 14px;
    }

    .product-vv1-info {
        min-height: 110px;
    }

    .product-vv1-savingprice {
        top: 50px;
        font-size: 12px;
    }

    .product-vv1-action .relevant-price {
        min-width: auto;
    }

    .carusel-item .carusel-desc {
        font-size: 12px;
    }

    .product-vv1-name {
        height: 44px;
    }

    .all-catalog-top-v2 .navigation-default .link-level-1 {
        padding: 16px 10px!important;
        font-size: 14px!important;
    }

    .all-catalog-top-v2 .navigation-default .mini-title {
        padding-left: 10px!important;
    }

    .wrp-contactus {
        font-size: 12px;
    }

    .row-best-manufacturers .grid-modul-imglable-v1 .image {
        padding: 5px 20px;
    }

    .row-best-manufacturers .grid-modul-imglable-v1 .image .middle img {
        max-width: none;
        width: 100%;
    }

    .row-products-catalogs .carusel-title {
        font-size: 14px;
    }

    .banner-block-v4 .banner-title h4 {
        font-size: 14px;
    }

}

@media screen and (max-width: 1380px) {

    .section-left {
        width: 200px;
    }

    .section-main {
        margin-left: 200px;
    }

    .title-desktop {
        display: none;
    }

    .majordev-header__v1 .h-navi .count {
        right: -18px;
    }

    .label-cart {
        display: none;
    }

    .majordev-header__v1 .count-cart {
        margin-left: 0;
    }

    .section-left {
        display: none;
    }

    .product-header-vr1__rl1:before {
        left: 0!important;
    }

    .product-header-vr1__rl1 .col-image {
        padding-left: 20px;
    }

    .section-main {
        margin-left: 0;
        margin-right: 0;
    }

}

@media screen and (max-width: 1380px) {

    .product-header-vr1__rl1 .col-buyarea .col-abts {
        max-width: 100%!important;
        margin-right: 0px!important;
    }

    .product-header-vr1__rl1 .col-buyarea .col-cart {
        position: relative!important;
        right: auto!important;
        top: auto!important;
        width: auto!important;
        margin-left: 20px;
        margin-right: 20px;
        min-height: auto!important;
    }

}

@media screen and (max-width: 1080px) {

    .row-view-grid .row-column .col-20 {
        width: 33.333333333%!important;
    }

    .row-sorting .sorting-list .nav-left li {
        margin-right: 10px;
    }

    .sort-filters a {
        font-size: 11px;
    }

    .row-sorting .sorting-list {
        float: left;
    }

    .row-sorting .view-filters {
        float: none;
        clear: both;
        padding-top: 20px;
    }

    .row-sorting .view-filters:before,
    .row-sorting .view-filters:after {
        content: '';
        width: 100%;
        display: table;
    }

    .view-filters button {
        float: left;
        margin-left: 0;
        margin-right: 20px;
    }

}

@media screen and (max-width: 980px) {

    .column-filters {
        display: none;
        float: none;
    }

    .column-catalog {
        margin-left: 0;
    }

    .product-header-vr1__rl1 .col-image {
        float: none;
        margin-left: auto;
        margin-right: auto;
    }

    .product-header-vr1__rl1 .col-buyarea {
        margin-left: 0!important;
    }

    .product-price-vr1__rl1,
    .product-aboutarea-vr1__rl1 .product-aboutmin-vr1__rl1,
    .product-characteristics-vr1__rl1,
    .product-soevr1__rl1,
    .product-commentform {
        margin-left: 0!important;
        max-width: 100% !important;
    }

    .majordev-header__v1 .h-search {
        display: none;
    }

    .module-asmd-v2 .col-25 {
        width: 50%;
    }

}

@media screen and (max-width: 780px) {

    .row-view-grid .row-column .col-20 {
        width: 50%!important;
    }

}

@media screen and (max-width: 580px) {

    .majordev-header__v1 .h-navi li {
        margin-right: 10px;
    }

    .majordev-header__v1 .h-cart {
        margin-left: 38px;
    }

    .majordev-header__v1 .h-catalog .btn-hcatalog {
        height: 32px;
        line-height: 35px;
        padding-left: 42px;
        padding-right: 16px;
    }

    .majordev-header__v1 .h-catalog .btn-hcatalog .icon {
        left: 12px;
        top: 16px;
    }

    .majordev-header__v1 {
        padding: 10px 0 10px 0;
    }

    .majordev-header__v1 .h-cart,
    .majordev-header__v1 .h-navi a {
        line-height: 32px;
        height: 32px;
    }

    .product-vv1-price-item .idx-count {
        display: block;
        float: left;
    }

    .product-header-vr1__rl1 .table-row {
        display: block;
    }

    .product-vv1-price-item .price-name {
        width: 100%;
        padding-bottom: 20px;
        margin-left: 30px;
        display: block;
    }

    .product-vv1-price-item .price-count {
        width: auto;
    }

    .product-price-vr1__rl1 button.btn-addcart {
        padding-left: 35px;
    }

    .product-price-vr1__rl1 .product-vv1-price-item .price-button .md-count {
        margin-right: 0!important;
    }

    .product-vv1-action .relevant-price {
        padding: 0 4px;
        margin-right: 0;
    }

    .product-price-vr1__rl1 button.btn-addcart {
        font-size: 11px;
    }

    .product-bestmd-vr1__rl1 .col-25 {
        width: 50%;
    }

    .prd-best-item {
        margin-bottom: 20px;
    }

    .product-aboutarea-vr1__rl1 .product-aboutmin-vr1__rl1 {
        padding-right: 0!important;
    }

    .product-layer-vr1__rl {
        position: relative!important;
        top: auto!important;
        width: 100%!important;
        right: auto!important;
    }

    .review-form-fields {
        padding: 10px;
    }

    .product-similar-vr1__rl1 .col-3,
    .product-recently-vr1__rl1 .col-3 {
        width: 100%;
    }

    .product-header-vr1__rl1 .col-buyarea .col-cart li:last-child {
        display: none;
    }

    .row-column-middle {
        display: block;
    }

    .table-row {
        display: block;
    }

    .column-middle {
        display: block;
    }

    .row-column-middle .column-middle {
        width: 100% !important;
    }

    .cat-product-grid-v1 .inner-column {
        padding: 5px;
        margin: 0 5px;
    }

    .row-view-grid .row-column {
        margin: 0 -5px;
    }

    .cat-product-grid-v1 {
        padding-bottom: 10px!important;
    }

}

@media screen and (max-height: 780px) {

    .wrp-contactus {
        position: relative;
        left: 0;
    }

}