body:before{
    content: '';
    display: block;
    position: absolute;
    width: 100vw;
    height: 0;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 9;
    opacity: 0;
    cursor: pointer;
    -webkit-transition: opacity 0.4s 0.4s, height 0s 0.8s;
    -moz-transition: opacity 0.4s 0.4s, height 0s 0.8s;
    -o-transition: opacity 0.4s 0.4s, height 0s 0.8s;
    transition: opacity 0.4s 0.4s, height 0s 0.8s;
}

body.menuActive:before{
    opacity: 1;
    height: 100%;
    -webkit-transition: opacity 0.4s, height 0s;
    -moz-transition: opacity 0.4s, height 0s;
    -o-transition: opacity 0.4s, height 0s;
    transition: opacity 0.4s, height 0s;
}

header .burger{
    width: 36px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 25px;
    height: 25px;
    z-index: 10;
}

header .burger > span{
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -18px;
    top: 50%;
    background-color: #c26f25;
    height: 3px;
    width: 100%;
    -webkit-transition: margin-top 0.3s, opacity 0.3s, transform 0.3s, background-color 0.3s;
    -moz-transition: margin-top 0.3s, opacity 0.3s, transform 0.3s, background-color 0.3s;
    -o-transition: margin-top 0.3s, opacity 0.3s, transform 0.3s, background-color 0.3s;
    transition: margin-top 0.3s, opacity 0.3s, transform 0.3s, background-color 0.3s;
}

header .burger > span:first-child{
    margin-top: -12.5px;
}

header .burger > span:nth-child(2){
    margin-top: -1.5px;
}

header .burger > span:nth-child(3){
    margin-top: 9.5px;
}

header .burger:hover > span{
    background-color: #61922c;
}

header .burger.opened > span{
    background-color: #fff;
}

header .burger.opened > span:nth-child(2){
    opacity: 0;
}

header .burger.opened > span:first-child{
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -3px;
}

header .burger.opened > span:nth-child(3){
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -3px;
}

.filterBurger{
    position: absolute;
    top: 0;
    left: 0;
    width: 130px;
    padding-left: 30px;
    padding-right: 10px;
    cursor: pointer;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.filterBurger.filterBrands{
    left: 150px;
}

.filterBurger:hover,
.filterBurger.openedFilterBurger{
    color: #87b357;
}

.filterBurger > span{
    display: block;
    position: absolute;
    height: 2px;
    background-color: #87b357;
    left: 0;
}

.filterBurger > span:first-child{
    width: 20px;
    top: 2px;
}

.filterBurger > span:nth-child(2){
    width: 16px;
    top: 50%;
    margin-top: -1px;
}

.filterBurger > span:nth-child(3){
    width: 12px;
    bottom: 2px;
}

.typeFilterBlock .slideContent {
    display: block;
}

.closeFilter{
    display: block;
    position: absolute;
    top: 5px;
    right: 5px;
    height: 30px;
    cursor: pointer;
    font-size: 15px;
    line-height: 30px;
    text-align: right;
    padding-right: 30px;
}

.closeFilter:before, .closeFilter:after {
    content: '';
    display: block;
    position: absolute;
    width: 1px;
    height: 30px;
    background-color: #666666;
    left: 100%;
    top: 50%;
    margin-top: -15px;
    margin-left: -11px;
}

.closeFilter:before {
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.closeFilter:after {
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.certificates{
    max-width: 600px;
}

.certificateInfoBlock .certificate{
    float: none;
}

.certificateInfoBlock .certificates {
    display: block;
}

@media (min-width: 1200px){
    header .burger{
        display: none;
    }

    header .mainMenu{
        display: block;
    }

    header .social.socialMob{
        display: none;
    }

    .filterBurger{
        display: none;
    }

    header .searchLine.searchLineMob {
        display: none;
    }

    .closeFilter, .closeTxt{
        display: none;
    }
}

@media (max-width: 1199px) {
    body{
        min-width: auto;
    }

    .container {
        width: 950px;
    }

    .wrapper {
        padding-bottom: 205px;
    }

    .blockTitle .title {
        font-size: 30px;
        line-height: 36px;
    }

    header .burger{
        display: block;
    }

    header .mainMenu {
        width: 320px;
        opacity: 0;
        position: absolute;
        z-index: 10;
        background-color: #fff;
        left: 100vw;
        top: 100%;
        margin-top: 20px;
        padding: 15px 20px;
        -webkit-transition: opacity 0.3s, left 0.3s, margin-left 0.3s;
        -moz-transition: opacity 0.3s, left 0.3s, margin-left 0.3s;
        -o-transition: opacity 0.3s, left 0.3s, margin-left 0.3s;
        transition: opacity 0.3s, left 0.3s, margin-left 0.3s;
    }

    header .mainMenu.openedMenu{
        opacity: 1;
        left: 100%;
        margin-left: -320px;
    }

    header .searchLineMob{
        margin-bottom: 15px;
    }

    header .mainMenu li {
        float: none;
        padding-right: 0;
        width: auto;
    }

    header .mainMenu li + li{
        margin-top: 10px;
    }

    header .mainMenu .linkMenu {
        font-size: 14px;
        line-height: 24px;
    }

    header .social .listSocial {
        margin: 25px 0 0;
    }

    header .social li {
        padding: 0;
        width: auto;
    }

    header .social{
        display: none;
    }

    header .social.socialMob{
        display: block;
        width: 100%;
        padding: 0;
    }

    header .menuBrandLine .menuBrandBlock + .menuBrandBlock{
        display: none;
    }

    header .leftHead {
        position: absolute;
        top: 0;
        left: 0;
        width: 130px;
        padding: 5px 0;
    }

    header .logoBlock{
        height: auto;
        margin-top: 0;
    }

    header .logoBlock > img{
        max-width: 100%;
        height: 65px;
        width: auto;
    }

    header .navigation {
        width: 530px;
        padding-right: 50px;
    }

    header .searchBlock {
        width: 100%;
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 180px;
    }

    header .contactBlock {
        max-width: none;
        margin-top: 0;
        width: calc(100% - 530px);
    }

    header .contactBlock .phoneBlock{
        text-align: left;
    }

    header .mainHead {
        width: 100%;
    }

    header .headTop {
        padding: 20px 0;
    }

    header .linkBasket {
        margin: 0 auto;
        float: none;
    }

    header .headerWrap{
        padding-right: 190px;
        position: relative;
    }

    header .rightHead{
        float: none;
        position: absolute;
        right: 60px;
        top: 0;
    }

    header .menuBrandLine .menuBrandBlock .listBrandMenu {
        text-align: center;
    }

    header .menuBrandLine .listBrandMenu li {
        float: none;
        display: inline-block;
        padding: 2px 5px;
    }

    header .menuBrandLine .menuBrandBlock .listBrandMenu .linkBrand {
        padding: 0 10px;
    }

    header .menuBrandLine .listBrandMenu li:before {
        display: none;
    }

    footer .logoWrap {
        display: none;
    }

    footer .menuWrap {
        display: none;
    }

    footer {
        padding: 20px 0;
    }

    footer .social {
        padding: 8px 20px 7px 0;
    }

    footer .contactWrap {
        width: calc(100% - 345px);
    }

    .costBulletBlock {
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .costBulletBlock .typesProduct .typeBlock:before{
        display: none;
    }

    .costBulletBlock .typesProduct {
        padding-top: 70px;
        padding-bottom: 20px;  
    }

    .costBulletBlock .typesProduct .lineToTypes {
        height: 113px;
    }

    .costBulletBlock .welcomeBlock {
        margin-top: 40px;
        padding-bottom: 0;
    }

    .offerBulletBlock {
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .offerBulletBlock .blockTitle + .blockContent {
        margin-top: 25px;
    }

    .repairBlock .item.col6 {
        width: 620px;
        float: none;
        margin: 0 auto 5px auto;
    }

    .repairBlock .services .item:nth-child(2n) {
        float: none;
    }

    .repairBlock .services .lineToServices {
        display: none;
    }

    .repairBlock .service:before,
    .repairBlock .service:after {
        display: none;
    }

    .advantagesBulletBlock {
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .advantagesBulletBlock .blockTitle + .blockContent {
        margin-top: 25px;
    }

    .advantagesBulletBlock .advantage {
        padding-left: 110px;
    }

    .advantagesBulletBlock .advantage .iconAdvantage {
        height: 54px;
        width: 88px;
    }

    .advantagesBulletBlock .advantage .txt br{
        display: none;
    }

    .partnersBlock .imagePartners {
        max-width: 710px;
        height: 44px;
    }

    .block-vacancy-bottom p {
        font-size: 14px;
    }

    .block-contact:first-child {
        margin-right: 2%;
    }

    .block-contact {
        width: 49%;
        padding: 20px 25px;
    }

    .block-contact-middle a {
        font-size: 14px;
    }

    .block-contact-middle {
        min-height: 144px;
    }

    .basketBlock .basketItem{
        position: relative;
        padding-top: 95px;
        padding-bottom: 20px;
    }

    .basketBlock .basketItem .imageGood {
        position: absolute;
        width: 180px;
        height: 75px;
        top: 20px;
        left: 20px;
        background-position: left top;
    }

    .basketBlock .basketItem .tCell.middle{
        vertical-align: top;
    }

    .basketBlock .basketItem .deleteGood{
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .basketBlock .basketItem .toDetailed{
        position: absolute;
        margin-top: 0;
        width: 190px;
        right: 20px;
        bottom: 20px;
    }

    .basketBlock .basketItem .tCell:first-child,
    .basketBlock .basketItem .tCell:last-child {
        display: block;
        width: 0;
        padding: 0;
    }

    .basketBlock .basketItem .tCell:nth-child(2) {
        width: calc(100% - 400px);
        padding: 10px 20px 20px;
    }

    .basketBlock .basketItem .tCell:nth-child(3) {
        width: 170px;
        padding: 10px 0 52px 20px;
    }

    .basketBlock .basketItem .tCell:nth-child(4) {
        width: 230px;
        background-color: transparent;
        padding: 10px 20px 52px;
    }

    .basketBlock .basketResult {
        padding-left: 0;
    }

    .basketBlock .basketResult .tCell {
        padding: 15px 0;
    }

    .basketBlock .basketResult .tCell:first-child {
        width: 170px;
        padding-left: 20px;
    }

    .basketBlock .basketResult .tCell:nth-child(2) {
        width: 280px;
        padding-right: 20px;
        padding-left: 20px;
        background-color: transparent;
    }
    
    .basketBlock .basketResult .tCell:nth-child(3){
        width: calc(100% - 450px);
        padding-right: 20px;
        padding-left: 0;
    }

    .basketBlock .discountGoods {
        padding: 0;
    }

    .basketBlock .claimForm {
        margin-top: 30px;
    }

    .claimForm label {
        width: 240px;
        padding-right: 15px;
    }

    .claimForm .wrapInput {
        width: calc(100% - 240px);
    }

    .claimForm .infoClaim .cfix > .item {
        padding: 0 20px;
    }

    .claimForm .infoClaim .cfix > .item:first-child{
        width: 240px;
    }

    .claimForm .infoClaim .cfix > .item:nth-child(2){
        width: calc(100% - 240px);
    }

    .claimForm {
        padding-bottom: 30px;
    }

    .detailedGoodBlock .goodCostBlock {
        width: 100%;
        padding: 5px 210px 5px 0;
    }

    .detailedGoodBlock .featureBlock {
        width: 100%;
        margin-top: 30px;
        position: relative;
    }

    .detailedGoodBlock .featureBlock .col10 {
        padding-right: 30px;
        width: calc(100% - 150px);
    }

    .detailedGoodBlock .featureBlock .col2 {
        width: 150px;
        margin-top: -207px;
    }

    .detailedGoodBlock .goodCostBlock .costGood {
        margin-top: 30px;
        float: left;
        padding: 5px 20px;
    }

    .detailedGoodBlock .goodCostBlock .imageGood {
        height: 105px;
        text-align: left;
    }

    .select2-container--krajee .select2-selection--single {
        border: none !important;
    }

    .select2-container--krajee .select2-selection--single .select2-selection__arrow {
        height: 100% !important;
        top: 0 !important;
        right: 2px !important;
    }

    .deliveryBlock img {
        max-height: 40px;
    }

    .filterBurger{
        display: block;
    }

    .typeFilterBlock.link {
        display: none;
    }

    .titleBrandFilter{
        display: none;
    }

    .typeFilterBlock .typeGood{
        display: none;
    }

    .typeFilterBlock .typeFilterContent{
        display: none;
        margin-top: 0;
        width: 450px;
    }

    .typeFilterBlock .typeFilterContent.typeFilterBrands{
        position: fixed;
        top: 15px;
        left: 50%;
        margin-left: -225px;
        z-index: 10;
        background-color: #fff;
        height: calc(100vh - 30px);
    }

    .typeFilterBlock .typeFilterContent.typeFilterBrands .filterItem {
        margin-top: 0;
        padding: 40px 5px 10px;
        height: 100%
    }

    .typeFilterBlock .filterMarking {
        height: 100%;
        max-height: calc(100vh - 90px) !important;
    }

    .typeFilterBlock .typeFilterContent .filterItem {
        margin-top: 30px;
    }

    .titleFilter{
        display: none;
    }

    .shopPage .container > .grid{
        margin: -30px 0 0;
    }

    .shopPage .container > .grid > .item{
        width: 100%;
        padding: 30px 0 0;
    }

    .closeFilter,
    .closeTxt{
        display: block;
    }

    .goodsFilterBlock {
        padding-top: 24px;
        position: relative;
    }

    .goodsFilterBlock .titleFilter + .goodsFilterContent{
        margin-top: 0;
    }

    .goodsFilterBlock .titleFilter + .goodsFilterContent:after{
        content: "";
        display: block;
        clear: both;
    }

    .typeFilterBlock + .typeFilterBlock {
        margin-top: 0;
    }

    .shopSiteBlock .schemeBlock .scheme{
        height: 200px;
    }

    .shopSiteBlock .schemeBlock .scheme > img{
        max-height: 100%;
    }
}

@media (max-width: 991px){
    .container {
        width: 740px;
    }

    header .searchBlock {
        padding-left: 150px;
    }

    header .navigation {
        width: 100%;
    }

    header .contactBlock {
        margin-top: 20px;
        width: 100%;
    }

    header .contactBlock .phoneBlock {
        float: left;
        padding-right: 40px;
    }

    header .contactBlock .phoneBlock + .phoneBlock{
        margin-top: 0;
    }

    header .rightHead {
        right: 90px;
    }

    .advantagesBulletBlock .advantage .iconAdvantage {
        position: relative;
        left: auto;
        top: auto;    
    }

    .advantagesBulletBlock .advantage {
        padding-left: 0;
        max-width: 250px;
        margin: 0 auto;
    }

    .advantagesBulletBlock .advantage .captionAdvantage {
        display: block;
        margin-top: 15px;
    }

    .block-contact-middle {
        min-height: 168px;
    }

    .basketBlock .basketItem{
        padding-bottom: 72px;
    }

    .basketBlock .basketItem .tCell:nth-child(4) {
        width: 200px;
        padding: 20px 20px 0 0;
    }

    .basketBlock .basketItem .tCell:nth-child(3) {
        width: 200px;
        padding: 10px 20px 0 0;
    }

    .basketBlock .basketItem .tCell:nth-child(2) {
        width: calc(100% - 200px);
        min-height: 122px;
    }

    .basketBlock .basketItem .tCell{
        display: block;
        float: left;
    }

    .basketBlock .basketItem .toDetailed {
        right: auto;
        left: 20px;
    }

    .claimForm label {
        width: 185px;
    }

    .claimForm .wrapInput {
        width: calc(100% - 185px);
    }

    .claimForm .infoClaim .cfix{
        margin: 0;
    }

    .claimForm .infoClaim .cfix > .item {
        padding: 0;
    }

    .claimForm .infoClaim .cfix > .item:first-child{
        width: 100%;
    }

    .claimForm .infoClaim .cfix > .item:nth-child(2){
        width: 100%;
        margin-top: 20px;
    }

    .detailedGoodBlock .featureBlock .col10 {
        width: calc(100% - 150px);
    }

    .detailedGoodBlock .featureBlock .col2 {
        margin-top: 0;
    }

    .deliveryBlock img {
        max-height: 32px;
    }

    .detailedGoodBlock .featureBlock span {
        padding-bottom: 10px;
    }

    .deliveryBlock {
        padding: 15px;
    }

    .detailedGoodBlock .goodCostBlock {
        padding: 5px 0;
    }

    .numOnPage {
        float: left;
        margin: 15px 0 0 0;
        clear: left;
    }

    .shopSiteBlock .switchModeBlock .btnSwitch{
        margin-top: 38px;
    }

    .modeLine .shopCard .infoBlock {
        padding: 0 30px;
        width: 100%;
    }

    .modeLine .shopCard .imageGoodWrap {
        display: block;
        padding: 0 30px;
        width: 100%;
        text-align: left;
    }

    .modeLine .shopCard .aboutGood {
        width: 100%;
        display: block;
        position: relative;
    }

    .goodCard.shopCard .imageGood {
        height: 70px;
        line-height: inherit;
        display: block;
        padding-bottom: 20px;
    }

    .goodCard.shopCard .imageGood img {
        max-height: 100%;
        max-width: 100%;
    }

    .modeTile .shopCard .topBlock {
        float: left;
        padding-top: 0;
        width: 100%;
    }

    .modeTile .shopCard .nameGood {
        max-width: 100%;
        margin-top: 10px;
    }

    .modeTile .shopCard .aboutGood {
        margin-top: 0;
    }

    .shopSiteBlock .schemeBlock {
        display: none;
    }
}

@media (max-width: 767px){
    .grid{
        margin: -20px -10px 0;
    }

    .grid > .item {
        padding: 20px 10px 0;
    }

    body {
        font-size: 14px;
        line-height: 20px;
    }

    .container {
        width: 100%;
        max-width: 640px;
    }

    .wrapper {
        padding-bottom: 145px;
    }

    .blockTitle .title {
        font-size: 26px;
        line-height: 30px;
    }

    .blockTitle:after {
        height: 2px;
        width: 90px;
    }

    .breadcrumbs {
        padding: 15px 0 20px;
    }

    .pageTitle + * {
        margin-top: 25px;
    }

    .h3, h3 {
        font-size: 20px;
    }

    a {
        font-size: 14px;
        line-height: 20px;
    }

    .breadcrumbs .btnBack {
        display: none;
    }

    header .navigation {
        padding-right: 0;    
    }

    header .leftHead {
        width: auto;
        left: 50%;
        padding: 0;
        margin-left: -40px;
    }

    header .burger {
        top: 12px;
    }

    header .searchBlock {
        padding-left: 0;
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 15px;
        max-width: none;
        text-align: center;
    }

    /*header .searchBlock .searchLine,*/
    header .searchBlock .choicingCurrency .pre{
        display: none;
    }

    header .searchBlock .choicingCurrency .currencies {
        float: none;
        width: 100%;
        display: table;
        margin: 0 auto;
    }

    header .searchBlock .choicingCurrency .currencies .cur{
        display: inline-block;
    }

    header .headerWrap {
        padding-right: 0;
        padding-top: 50px;
    }

    header .rightHead {
        right: auto;
        left: 0;
        width: auto;
        top: 3px;
    }

    header .logoBlock {
        margin: 0 auto;
    }

    header .logoBlock > img{
        height: 50px;
    }

    header .linkBasket .iconBasket {
        width: 44px;
        height: 44px;
        border: 2px solid #f4a259;
        background-size: 60%;
    }

    header .linkBasket .valBasket {
        width: auto;
        position: absolute;
        top: 50%;
        margin-top: -9px;
        left: 50px;
    }

    header .linkBasket .valBasket .numGood + *{
        display: none;
    }

    header .menuBrandLine .menuBrandBlock .listBrandMenu.firstBlock .linkBrand {
        font-size: 15px;
        line-height: 22px;
    }

    header .contactBlock {
        width: auto;
        display: table;
        margin: 10px auto 0;
        float: none;
    }

    header .contactBlock .phoneBlock .phone,
    footer .contactBlock .phoneBlock .phone{
        display: block;
        font-size: 16px;
    }

    header .contactBlock .phoneBlock .shedule,
    footer .contactBlock .phoneBlock .shedule{
        font-size: 10px;
    }

    header .contactBlock .phoneBlock {
        padding-right: 0;
        margin-top: 10px;
        text-align: center;
    }

    header .contactBlock .phoneBlock,
    footer .contactBlock .phoneBlock{
        padding-left: 0;
    }

    footer .contactBlock {
        float: none;
        padding: 17px 0;
    }

    footer .contactBlock .phoneBlock{
        text-align: right;
    }

    footer .contactBlock .phoneBlock + .phoneBlock {
        
    }

    header .contactBlock .phoneBlock + .phoneBlock {
        margin-top: 10px;
        margin-left: 20px;
    }

    header .contactBlock .phoneBlock:before,
    footer .contactBlock .phoneBlock:before{
        display: none;
    }

    footer .social li {
        float: none;
        width: 100%;
    }

    footer .socialWrap {
        width: auto;
        max-width: 50%;
    }

    footer .contactWrap {
        width: auto;
        max-width: 50%;
        float: right;
    }

    .costBulletBlock {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .costBulletBlock .typesProduct {
        padding-top: 35px;
    }

    .costBulletBlock .typesProduct .typeLeft .type {
        margin-right: 0;
        padding: 10px 10px 5px;
    }

    .costBulletBlock .typesProduct .typeRight .type {
        margin-left: 0;
        padding: 10px 10px 5px;
    }

    .costBulletBlock .typesProduct .iconType {
        height: 25px;
    }

    .costBulletBlock .typesProduct .captionType {
        font-size: 14px;
        line-height: 20px;
        text-align: center;
    }

    .costBulletBlock .typesProduct .type {
        width: 100%;
        height: auto;
    }

    .costBulletBlock .typesProduct .type:before {
        display: none;    
    }

    .costBulletBlock .typesProduct .typeRight .iconType,
    .costBulletBlock .typesProduct .typeLeft .iconType {
        background-position: center;
    }

    .costBulletBlock .typesProduct .lineToTypes {
        height: 63px;
    }

    .costBulletBlock .typesProduct .typeRight .type:after {
        width: 20px;
    }

    .captionTxt {
        font-size: 16px;
    }

    .certificates {
        max-width: 380px;
    }

    .costBulletBlock .welcomeBlock {
        margin-top: 20px;
    }

    .offerBulletBlock .services .cfix{
        margin: -15px -15px 0;
    }

    .offerBulletBlock .services .item {
        padding: 15px 15px 0;
    }

    .offerBulletBlock .service::before {
        width: 16px;
    }

    .offerBulletBlock .services .item:nth-child(2n+1) .service:after {
        margin-left: 13px;
    }

    .offerBulletBlock .services .item:nth-child(2n) .service:after {
        margin-right: 12px;
    }

    .offerBulletBlock .services {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .offerBulletBlock .services .item:nth-child(2n) .service {
        padding-left: 5px;
    }

    .offerBulletBlock .services .item:nth-child(2n+1) .service {
        padding-right: 5px;
    }

    .offerBulletBlock {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .offerBulletBlock .blockTitle + .blockContent {
        margin-top: 15px;
    }

    .advantagesBulletBlock .advantage {
        padding-left: 0;
        max-width: none;
        margin: 0;
    }

    .advantagesBulletBlock .grid > .item{
        padding: 25px 0 0;
        width: 100%;
    }

    .advantagesBulletBlock .grid{
        margin: -25px 0 0;
    }

    .advantagesBulletBlock .advantage .iconAdvantage {
        height: 42px;
        width: 70px;
        float: left;
        margin-right: 15px;
    }

    .advantagesBulletBlock {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .partnersBlock{
        display: none;
    }

    .advantagesBulletBlock .advantage .captionAdvantage {
        font-size: 15px;
        line-height: 21px;
    }

    .block-vacancy-top span {
        display: block;
        font-size: 20px;
        float: none;
        margin-top: 10px;
    }

    .block-vacancy-top h2 {
        font-size: 20px;
        float: none;
    }

    .block-contact {
        width: 100%;
        padding: 20px 25px;
    }

    .block-contact:first-child {
        margin-right: 0;
    }

    .block-contact-middle {
        min-height: inherit;
    }

    .block-contact-bottom iframe{
        height: 300px !important;
    }

    .basketBlock .basketItem .tCell:nth-child(4) {
        width: 185px;
        padding: 10px 15px 0 0;
    }

    .basketBlock .basketItem .tCell:nth-child(3) {
        width: 185px;
        padding: 10px 15px 0 0;
    }

    .basketBlock .basketItem .tCell:nth-child(2) {
        width: calc(100% - 185px);
        min-height: 122px;
        padding: 10px 25px 10px 15px;
    }

    .basketBlock .basketItem .imageGood {
        width: 140px;
        height: 50px;
        left: 15px;
    }

    .basketBlock .basketItem {
        padding-top: 70px;
    }

    .basketBlock .basketItem .deleteGood {
        right: 15px;
    }

    .basketBlock .basketItem .toDetailed {
        left: 15px;
    }

    .basketBlock .basketResult .tCell:first-child {
        width: 130px;
        padding-left: 15px;
    }

    .costStandart .num.biggerNum,
    .resultInBasket .num.biggerNum {
        font-size: 20px;
    }

    .basketBlock .basketResult .tCell:nth-child(2) {
        width: 225px;
        padding-right: 15px;
        padding-left: 15px;
    }

    .basketBlock .basketResult .tCell:nth-child(3) {
        width: calc(100% - 355px);
        padding-right: 15px;
    }

    .claimForm label {
        display: block;
        width: 100%;
        float: none;
        text-align: left;
    }

    .claimForm .wrapInput {
        width: 100%;
        float: none;
    }

    .claimForm .formData {
        padding: 25px 0;
    }

    .claimForm .simpleTitle + .contentForm {
        margin-top: 25px;
    }

    .claimForm .itemInput + .itemInput {
        margin-top: 0px;
    }

    .form-group {
        margin-bottom: 5px;
    }

    label {
        font-size: 15px;
        line-height: 28px;
    }

    .claimForm .btnMain {
        margin-top: 25px;
    }

    .detailedGoodBlock .featureBlock .col10 {
        width: 100%;
        padding-right: 0;
    }

    .detailedGoodBlock .featureBlock .col2 {
        margin-top: 15px;
        width: 100%;
    }

    .deliveryBlock img {
        margin: 0 10px;
        max-height: 28px;
        max-width: 130px;
    }

    .deliveryBlock{
        max-width: 450px;
        margin: 0 auto;
        padding: 15px 0;
    }

    .pageTitle .title {
        font-size: 22px;
        line-height: 22px;
    }

    .detailedGoodBlock .goodCostBlock .imageGood {
        max-width: 450px;
        height: 85px;
    }

    .listPagination .page.oneStep a {
        height: 20px;    
        background: center 6px no-repeat;
    }

    .shopSiteBlock .switchModeBlock {
        padding: 10px 0;
    }

    .shopSiteBlock .switchModeBlock .btnSwitch {
        display: none;
    }

    .pagination {
        padding-top: 0;
    }

    .text_list {
        margin: 15px 0;
        padding: 15px 20px;
    }

    .text_list h2 {
        font-size: 20px;
    }

    .goodCard .nameGood {
        font-size: 16px;
    }

    .modeLine .shopCard .imageGoodWrap {
        padding: 0 20px;
    }

    .modeLine .shopCard .infoBlock {
        padding: 0 20px;
        width: 100%;
        min-height: inherit;
    }

    .goodCard.shopCard .imageGood {
        height: 60px;
        line-height: inherit;
        display: block;
        padding-bottom: 20px;
    }

    .modeLine .shopCard .aboutGood {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-direction: normal;
        -webkit-box-orient: vertical;
        -moz-box-direction: normal;
        -moz-box-orient: vertical;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-right: 0;
    }

    .modeLine .shopCard .topBlock {
        position: static;
        height: auto;
        padding: 15px 20px 0;
        text-align: left;
        right: auto;
        top: auto;
        width: 100%;
        -webkit-box-ordinal-group: 2;
        -moz-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }

    .modeLine .shopCard .btnMain {
        margin: 14px 0 0;
    }

    .modeLine .shopCard {
        padding: 15px 0;
    }

    .modeTile > .cfix > .item {
        width: 100%;
        padding: 15px 0 0;
    }

    .modeTile > .cfix{
        margin: -15px 0 0;
    }

    .modeTile .shopCard .shortFeatureBlock {
        max-height: none;
    }

    .similarGoodsBlock .simpleTitle + .cards {
        max-width: 450px;
        margin: 21px auto;
    }

    .modeLine .shopCard .costStandart {
        float: left;
        padding: 8px 0;
    }

    .modeLine .shopCard .btnMain {
        margin: 0 0 0 15px;
        float: right;
    }

    .typeFilterBlock .typeFilterContent .filterItem {
        margin-top: 20px;
    }

    .typeFilterBlock .optionContent .fields label{
        line-height: 40px;
    }

    .filterBurger {
        width: 115px;
    }

    .filterBurger.filterBrands {
        left: 130px;
    }

    .block-repair-top img {
        display: none;
    }
    .block-repair-top .brt_text {
        width: 100%;
        padding: 0;
    }
}

@media (max-width: 639px){
    .container {
        width: 100%;
        max-width: 640px;
    }

    .wrapper {
        padding-bottom: 153px;
    }

    footer .social li {
        padding: 0;
        width: auto;
        float: none;
    }

    footer .social li + li{
        margin-top: 10px;
    }

    footer .social .listSocial {
        margin: 0;
    }

    .basketBlock .basketItem .tCell:nth-child(4) {
        width: 100%;
        padding: 20px 15px 0;
    }

    .basketBlock .basketItem .tCell:nth-child(3) {
        width: 100%;
        padding: 0 15px;
    }

    .basketBlock .basketItem .tCell:nth-child(2) {
        width: 100%;
        min-height: none;
        padding: 10px 15px 20px;
    }

    .basketBlock .basketResult{
        display: block;
        padding: 5px 0;
    }

    .basketBlock .basketResult:after{
        content: "";
        display: block;
        clear: both;
    }

    .basketBlock .basketResult .tCell {
        display: block;
        padding: 2px 0;
    }

    .basketBlock .basketResult .tCell:first-child {
        width: 100%;
        padding-left: 15px;
    }

    .basketBlock .basketResult .tCell:nth-child(2) {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }

    .basketBlock .basketResult .tCell:nth-child(3) {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }

    .repairBlock .item.col6 {
        width: 100%;
        float: none;
        margin: 0 auto 5px auto;
    }

    .offerBulletBlock.repairBlock .services .item {
        padding: 0;
    }

    .repairBlock .item.col6 .service {
        display: block;
        width: 100%;
        height: 86px;
    }
    .repairBlock .service > span.service_left {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 41px;
        text-align: center;
        z-index: 1;
        background: rgba(0,0,0,0.8);
        color: #87b357;
        line-height: 42px;
        font-size: 14px;
    }
    .repairBlock .service > span.service_middle {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 82px;
        overflow: hidden;
    }
    .repairBlock .service > span.service_middle img {
        width: 100%;
    }
    .repairBlock .service > span.service_right {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 41px;
        text-align: center;
        z-index: 1;
        background: rgba(0,0,0,0.8);
        color: white;
        padding: 0;
        line-height: 1.2;
        font-size: 14px;
    }
    .repairBlock .service > span.service_middle:before,
    .repairBlock .service > span.service_middle:after {
        display: none;
    }
    .repairBlock .service > span.service_left:after {
        display: none;
    }
    .repairBlock .services .item:nth-child(2n) .service > span.service_right {
        padding: 0;
        text-align: center;
    }
}

@media (min-width: 480px){
    .costBulletBlock .typesProduct .captionType br{
        display: none;
    }
}

@media (max-width: 479px){
    .wrapper {
        padding-bottom: 200px;
    }

    header .mainMenu{
        width: 100%;
    }

    header .mainMenu.openedMenu {
        left: 0;
        margin-left: 0;
    }

    footer .socialWrap {
        max-width: none;
        float: none;
    }

    footer .social .listSocial {
        text-align: center;
    }

    footer .social {
        padding: 0;
    }

    footer .social .linkSocial{
        display: inline-block;
    }

    footer .contactWrap {
        max-width: none;
        float: none;
        margin-top: 15px;
    }

    footer .contactBlock {
        padding: 0;
        text-align: center;
    }

    footer .contactBlock .phoneBlock {
        text-align: center;
        display: inline-block;
    }


    footer .contactBlock .phoneBlock + .phoneBlock {
        margin-top: 0;
        margin-left: 15px;
    }

    .costBulletBlock .typesProduct .lineToTypes {
        display: none;
    }

    .costBulletBlock .typesProduct {
        padding-top: 25px;
    }

    .offerBulletBlock .service:before{
        display: none;
    }

    .offerBulletBlock .services .item:nth-child(2n+1) .service{
        border-right: none;
    }

    .offerBulletBlock .services .item:nth-child(2n) .service{
        border-left: none;
    }

    .offerBulletBlock .services .item:nth-child(2n+1) {
        text-align: left;
    }

    .offerBulletBlock .services .item{
        width: 100%;
    }

    .offerBulletBlock .services .item:nth-child(2n) .service {
        padding-left: 15px;
    }

    .offerBulletBlock .services .item:nth-child(2n+1) .service {
        padding-right: 0;
        padding-left: 15px;
    }

    .offerBulletBlock .services .lineToServices{
        display: none;
    }

    .offerBulletBlock .services .item:nth-child(2n+1) .service:after{
        left: 0;
    }

    .offerBulletBlock .services .item {
        padding: 15px 0 0;
    }

    .offerBulletBlock .services .cfix {
        margin: -15px 0 0;
    }

    .offerBulletBlock .service:after {
        width: 6px;
        height: 6px;
        margin-top: 0;
        top: 5px;
    }

    .offerBulletBlock .services .item:nth-child(2n+1) .service:after {
        margin-left: 0;
    }

    .offerBulletBlock .services .item:nth-child(2n) .service:after {
        margin-right: 0;
        right: auto;
        left: 0;
    }

    .offerBulletBlock .blockTitle + .blockContent {
        margin-top: 25px;
    }

    .offerBulletBlock .services {
        padding-top: 0;
        padding-bottom: 0;
    }

    .costBulletBlock .typesProduct .captionType br{
        display: block;
    }

    .pagination .count {
        display: block;
        float: left;
        padding-bottom: 10px;
    }

    .pagination .pages {
        display: block;
        float: left;
        padding-bottom: 10px;
    }

    .numOnPage {
        margin: 0;
    }

    .shopSiteBlock .switchModeBlock {
        padding: 0;
    }

    .certificates {
        max-width: 180px;
    }

    .similarGoodsBlock .simpleTitle + .cards {
        max-width: 290px;
    }

    .typeFilterBlock .typeFilterContent {
        width: 100%;
    }

    .typeFilterBlock .typeFilterContent.typeFilterBrands {
        left: 15px;
        margin-left: 0;
        width: calc(100% - 30px);
        height: calc(100vh - 90px);
    }

    .oneClick {
        display: block;
    }
    .oneClick .form-group {
        width: 100%;
    }
    .oneClick .btnMain {
        width: 100%;
    }
}