* {
    margin: 0px;
    padding: 0px;
    
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;    
}
html, body {
    height: 100%;
    width: 100%;
    margin: 0px;
    padding: 0px;

} 

body, td {  
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;  
    color: #383838;
}
body {
    background: #fff;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: normal;  
    color: #383838;
}
a {    
    color: #383838;   
    text-decoration: none;
    -webkit-transition: color .3s ease;
    -moz-transition: color .3s ease;
    -o-transition: color .3s ease;
    transition: color .3s ease;
}


/*body{ 
      min-height: 100vh; 
      margin: 0; 
      
      display: grid;
      grid-template-rows: auto 1fr auto;
}*/



/* Trick */
body { 
  display:flex; 
  flex-direction: column; 
}

.footerLayer {
  margin-top: auto; 
}







/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    background-clip: padding-box;
}


.headMenu a:hover, .textContent a:hover {
    color: #6E9160; 
}
.clear {
    clear: both;
}

.flexBox {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start; 
    flex-wrap: nowrap;       
}
.flexBoxStart {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center; 
    flex-wrap: nowrap;       
}
.flexBoxCenter {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center; 
    flex-wrap: nowrap;       
}

.layer {
    width: calc(100% - 40px);
    max-width: 1500px;
    margin: 0px auto;
}





/*CATEGORY*/
h1 {
    font-weight: 700;
    font-size: 30px;
    line-height: 35px;   
    text-transform: uppercase; 
    margin: 32px 0px 32px;
}
.breadLayer {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 22px;
    width: 100%;
    flex-direction: row;
    align-items: center;
    padding-bottom: 10px;
    overflow: auto;
}
.breadLayer a {
    white-space: nowrap;
    padding-right: 37px;
    position: relative;
    display: block;
}
.breadLayer a:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16px;
    content: " ";
    display: block;
    width: 5px;
    height: 5px;
    background: #CECECE;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    margin: auto;
}
.breadLayer span {
    white-space: nowrap;
}
.catLeft {
    background: #FBFBFB;
    border: 1px solid #EDEDED;
    width: 300px;
}
.catFilterTitle {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    padding: 15px 15px 15px 43px;
    border-bottom: 1px solid #EDEDED;
    position: relative;
    cursor: pointer;
}
.catFilterTitle:before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 12px;
    width: 17px;
    height: 9px;
    background:  url("../img/arrFilter.svg") 0% 0% no-repeat;
    margin: auto;
    -webkit-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease;
    transform: translateY(-1px);
}
.catFilterTitleHide:before {
    transform: translateY(-2px) rotateZ(-180deg);
}
.catFilterList {
    border-bottom: 1px solid #EDEDED;
    padding: 15px 0px;
    max-height: 370px;
    overflow: auto;
}
    /* Firefox */
    .catFilterList {
    scrollbar-width: auto;
    scrollbar-color: #e1e1e1 #FBFBFB;
    }

    /* Chrome, Edge, and Safari */
    .catFilterList::-webkit-scrollbar {
    width: 16px;
    }

    .catFilterList::-webkit-scrollbar-track {
    background: #FBFBFB;
    }

    .catFilterList::-webkit-scrollbar-thumb {
    background-color: #e1e1e1;
    border-radius: 50px;
    border: 5px solid #FBFBFB;
    }


.catFilterList:last-child {
    border-bottom: none;
}
.catFilterListHide {
    max-height: 0px;
    overflow: hidden;
    padding: 0 !important;
    border-bottom: none;
    margin: 0px !important;
}
.catFilterItem {
    display: block;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    padding: 7px 15px 7px 43px;
    position: relative;
}
.catFilterItem:before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    width: 12px;
    height: 12px;
    background:  url("../img/filterCircle.svg") 0% 0% no-repeat;
    margin: auto;    
}
.catFilterItemSel:before {
    background:  url("../img/filterCircleSel.svg") 0% 0% no-repeat;
}

.catFilterItemDel {
    display: block;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    padding: 7px 15px 7px 43px;
    position: relative;    
}
.catFilterItemDel:before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 16px;
    width: 9px;
    height: 9px;
    background:  url("../img/filterDel.svg") 50% 50% no-repeat;
    margin: auto;    
}

.catRight {
    width: calc(100% - 300px);
    
}
.goodList {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start; 
    flex-wrap: wrap;
    padding-top: 1px;     
    padding-left: 0px;  
    position: relative;   
}
.goodItem {
    border: 1px solid #EDEDED;
    max-width: 300px;
    width: 25%;
    margin-top: -1px;
    margin-left: -1px;
    
    padding: 22px 20px;
}
.goodItem:hover {
    -webkit-box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 14%);
    -moz-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.14);
    box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 14%);
    -webkit-transition: -webkit-box-shadow .3s ease;
    
}
.goodCode {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #787878;
}
.goodPic {
    width: 65px;
    align-items: center;
    height: 20px; 
}
.goodPicLike {
    width: 19px;
    height: 16px;
    background:  url("../img/goodLike.svg") 50% 50% no-repeat;
    cursor: pointer;
}
.goodPicLikeSel {
    background:  url("../img/goodLikeSel.svg") 50% 50% no-repeat !important;
}
.goodPicCompare {
    width: 24px;
    height: 19px;
    background:  url("../img/goodCompare.svg") 50% 50% no-repeat;
    cursor: pointer;
}
.goodPicCompareSel {
    background:  url("../img/goodCompareSel.svg") 50% 50% no-repeat !important;
}
.goodTitle {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    margin-top: 17px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 40px;
}
.goodImageLayer {
    width: 100%;
    height: 200px;
    margin: 30px 0px;
}
.goodImage {
    max-width: 100%;
    max-height: 100%;
}
.goodPriceLayer {
    align-items: center;
    justify-content: space-around;
}
.goodPrice {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: #202020;   
    position: relative; 
}
.goodButton {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    padding: 11px 15px 9px 50px;
    color: #FFFFFF;
    background: #607088;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;  
    position: relative;
    cursor: pointer;  
}
.goodButton:before {
    content: " ";
    width: 22px;
    height: 22px;
    background:  url("../img/goodCart.svg") 50% 50% no-repeat;
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    margin: auto;
}

.sortLayer {
    align-items: center; 
    position: absolute;
    top: -60px;
    right: 0px;   
}
.sortLayer span {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
}
.sortLayer select {
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    border: 1px solid #E3E3E3;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px; 
    width: 180px;
    height: 35px;
    margin-left: 10px;
    padding: 7px 30px 7px 10px;
    background: #F8F8F8 url("../img/arrFilter.svg") 92% 50% no-repeat; 
    color: #383838;
}

.sortLayer select {
    -webkit-appearance: none;
      -moz-appearance: none;
      text-indent: 1px;
      text-overflow: '';
}

.classFilterButton {
    position: absolute;
    top: -60px;
    left: 0px;  
    
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    padding: 11px 35px 9px 70px;
    color: #FFFFFF;
    background: #607088;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;   
    display: none;
    cursor: pointer;   
    text-transform: uppercase;
      
}
.classFilterButton:before {
    content: " ";
    width: 22px;
    height: 22px;
    background:  url("../img/filterPic.svg") 50% 50% no-repeat;
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 25px;
    margin: auto;
}

.catFilterPanel {
    
}
.catFilterClose {
    display: none;
}
.catFilterShow {
    display: none;
}
.catFilterPrice {
    overflow: auto;
    padding: 15px;
}
.catFilterPrice .flexBox {
    width: 100%;
}
.catFilterPrice input {
    background: #FBFBFB;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    width: 85px;
    
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    color: #3D3D3D;
    height: 29px;
}
.filterPanelPriceButton {
    background: #BDBDBD;
    border-radius: 5px;
    
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;

    text-align: center;

    color: #FFFFFF;
    height: 29px;
    width: 45px; 
    line-height: 29px;  
    cursor: pointer; 
    
}
.pagination {
    text-align: center;
    margin-bottom: 45px;
}
.paginationLayerAJAX {
    margin: 63px 0px 34px;
}
.paginationLayerAJAX a {
    width: 30px;
    height: 30px;
    background: #FFFFFF;
    border: 1px solid #EDEDED;
    border-radius: 5px;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    display: inline-block;
}
.firstPagination {
    margin-right: 42px;
    position: relative;
}
.firstPagination:before {
    content: " ";
    width: 15px;
    height: 1px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -30px;
    background: #CECECE;
    margin: auto;
}
.lastPagination {
    margin-left: 42px;
    position: relative;
}
.lastPagination:before {
    content: " ";
    width: 15px;
    height: 1px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -30px;
    background: #CECECE;
    margin: auto;
}

.paginationLayerAJAX b {
    width: 30px;
    height: 30px;
    background: #3E3E3E;
    border: 1px solid #3E3E3E;
    border-radius: 5px;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    display: inline-block;
    color: #fff; 
    margin: 0px 3px;       
}
.addPage {
    display: inline-block;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
    cursor: pointer;
}
.addPage:before {
    content: " ";
    position: absolute;
    bottom: 5px;
    left: 0px;
    right: 0px;
    width: 17px;
    height: 9px;
    background: url(../img/arrFilter.svg) 0% 0% no-repeat;
    margin: auto;
    -webkit-transition: bottom .2s ease;
    -moz-transition: bottom .2s ease;
    -o-transition: bottom .2s ease;
    transition: bottom .2s ease;
}
.addPage:hover:before {
    bottom: 0px !important;    
}
.addPage:after {
    content: " ";
    position: absolute;
    bottom: 5px;
    left: 0px;
    right: 0px;
    width: 17px;
    height: 9px;
    background: url(../img/arrFilter.svg) 0% 0% no-repeat;
    margin: auto;
    -webkit-transition: bottom .3s ease;
    -moz-transition: bottom .3s ease;
    -o-transition: bottom .3s ease;
    transition: bottom .3s ease;
}
.textContent {
    padding-top: 0px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 45px;
}
.textContent p {
    padding: 5px 0px;    
}
.textContent h2 {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;    
    text-transform: uppercase;
    margin: 15px 0px;
    color: #607088;
}
.textContent li {
    list-style: none;
    padding: 5px 0px;
    padding-left: 30px;
    background: url(../img/li.svg) 10px 11px no-repeat;
}

.textContent h3 {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;    
    text-transform: uppercase;
    margin: 15px 0px;
    color: #607088;
}


/*CATEGORY*/

/*FOOTER*/

.footerLayer {
    background: #F6F6F6;
    border-top: 5px solid #607088;
    border-bottom: 5px solid #607088;
    padding: 45px 0px;
}
.footerLeft {
    width: 290px;
    text-align: center;
}
.footerPhone {
    margin-top: 36px;
}
.footerPhone a {
    display: inline-block;
    font-weight: 500;
    font-size: 19px;
    line-height: 22px;
    margin-bottom: 10px;
}
.footerAddress {
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    margin-top: 21px;
}
.footerTime {
    font-weight: 500;
    font-size: 13px;
    line-height: 28px;
    color: #787878;
    margin-top: 10px;
}
.footerRight {
    width: calc(100% - 350px);
}
.footerRightList {
    flex-wrap: wrap;
    align-items: stretch;
}
.footerRightItem {
    width: 30%;
    margin-bottom: 30px;
}
.footerRightItem a {
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
}
.footerRightItem .footerRightItemTitle {
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    text-transform: uppercase;
}
.footerRightItemPic {
    justify-content: flex-start;    
}
.footerRightItemPic a {
    margin-right: 35px;
}
.footerPicFb {
    width: 32px;
    height: 30px;
    background: url("../img/fb.png") 50% 50% no-repeat;
}
.footerPicTw {
    width: 37px;
    height: 30px;
    background: url("../img/tw.png") 50% 50% no-repeat;
}
.footerPicIn {
    width: 32px;
    height: 30px;
    background: url("../img/in.png") 50% 50% no-repeat;
}
.footerRightText {
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #787878;
}
.infoLeft {
    width: 220px;
}
.infoRight {
    width: calc(100% - 250px);
}
.infoLeft a {
    font-weight: 500;
    font-size: 14px;
    line-height: 36px;
    display: block;
}
.infoLeft .infoLinkSel {
    color: #6E9160;
    font-weight: bold;
}

/*FOOTER*/

/*HEAD*/
.headLayer {
    background: #F8F8F8;
    border-bottom: 1px solid #F0F0F0;
}
.headBlock {
    padding: 16px 0px;
    align-items: center;
}
.headLogo {
    width: 105px;
}
.headLogo img {
    width: 100%;
}
.headLogo span {
    text-align: center;
    font-weight: 900;
    font-size: 27px;
    line-height: 21px;
    text-transform: uppercase;
    color: #000000;
    width: 100%;
    display: block;
    margin-top: 6px;
}
.headCenter {
    width: 740px;
}
.headMenu {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 28px;
}
.headSearchLayer {
    width: 100%;
}
.headCatalogButtton {
    border-radius: 5px 0px 0px 5px;
    background: #607088;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    line-height: 50px;
    padding: 2px 0px 2px 58px;
    position: relative;
    cursor: pointer;
    width: 250px;
    border: 1px solid #607088;
}
.headCatalogButtton:before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 22px;
    width: 17px;
    height: 16px;
    background:  url("../img/catalogPic.svg") 0% 0% no-repeat;
    margin: auto;
    -webkit-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease;
}
.headSearch {
    width: calc(100% - 250px);
    background: #F0F0F0;
    border: 1px solid #E3E3E3;
    border-radius: 0px 5px 5px 0px;
    height: 56px;
    position: relative;
}
.headSearchInput {
    background: none;
    width: 100%;
    border: none;
    line-height: 56px;
    padding-left: 20px;
    font-weight: 400;
    font-size: 14px;
    padding-right: 50px;
}
.headSearchButton {
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 20px;
    background:  url("../img/search.svg") 0% 0% no-repeat;
    width: 24px;
    height: 24px;
    margin: auto;
    cursor: pointer;
}
.headPhone {
    flex-direction: column;
    font-weight: 500;
    font-size: 20px;
    line-height: 22px;
    align-items: flex-end;
    height: 115px;
    margin-top: 10px;
}
.headPhoneCallBack {
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #787878;
    cursor: pointer;
    padding-top: 5px;
}
.headPhone *:hover {
    color: #383838 !important; 
}
.headAccount {
    text-align: right;
}
.headAccount a {
    font-weight: 400;
    font-size: 12px;
    line-height: 21px;
    color: #787878;
    position: relative;
    display: inline-block;
    padding-left: 31px;
    
    -webkit-transition: color .3s ease;
    -moz-transition: color .3s ease;
    -o-transition: color .3s ease;
    transition: color .3s ease;
}
.headAccount a:nth-child(1):before {
    content: " ";
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    background-color: #6E9160;
    -webkit-mask:  url(../img/enterAcc.svg) no-repeat 50% 50%;
    mask: url(../img/enterAcc.svg) no-repeat 50% 50%; 
    width: 21px;
    height: 21px;
    margin: auto;    
}
.headAccount a:nth-child(1) {
    margin-right: 20px;
}
.headAccount a:nth-child(2):before {
    content: " ";
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    width: 24px;
    height: 21px;
    margin: auto;  
    
    background-color: #6E9160;
    -webkit-mask:  url(../img/regAcc.svg) no-repeat 50% 50%;
    mask: url(../img/regAcc.svg) no-repeat 50% 50%;  
}
.headAccount a:hover {
    color: #607088;
}
.headAccount a:before {
    -webkit-transition: background .3s ease;
    -moz-transition: background .3s ease;
    -o-transition: background .3s ease;
    transition: background .3s ease;
}
.headAccount a:hover:before {
    background-color: #607088;
}

.headPic {
    width: 220px;
    margin-top: 25px;
}
.headPic a {
    position: relative;
}
.headPic a:before {
    content: " ";
    display: block;
    background-color: #6E9160;
    width: 40px;
    height: 30px; 
    margin: auto; 
    
    -webkit-transition: background .3s ease;
    -moz-transition: background .3s ease;
    -o-transition: background .3s ease;
    transition: background .3s ease;     
}
.headPic a:nth-child(1):before {
    -webkit-mask:  url(../img/comparePic.svg) no-repeat 50% 50%;
    mask: url(../img/comparePic.svg) no-repeat 50% 50%; 
}
.headPic a:nth-child(2):before {
    -webkit-mask:  url(../img/likePic.svg) no-repeat 50% 50%;
    mask: url(../img/likePic.svg) no-repeat 50% 50%; 
}
.headPic a:nth-child(3):before {
    -webkit-mask:  url(../img/cartPic.svg) no-repeat 50% 50%;
    mask: url(../img/cartPic.svg) no-repeat 50% 50%; 
}
.headPic a span {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    display: block;
    margin-bottom: 7px;
    margin-top: 8px;
}
.headPic a div {
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    color: #787878;
    text-align: center;
    display: block;
}
.headPic a:hover:before {
    background-color: #607088;
}

.menuBackground {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.80);
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease, visibility .3s ease;
    -moz-transition: opacity .3s ease, visibility .3s ease;
    -o-transition: opacity .3s ease, visibility .3s ease;
    transition: opacity .3s ease, visibility .3s ease;
}
.menuLayer {
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    background: #fff;
    z-index: 30;
    margin: auto;
    max-width: 1500px;
    max-height: 700px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    
    -webkit-transition: opacity .3s ease, visibility .3s ease;
    -moz-transition: opacity .3s ease, visibility .3s ease;
    -o-transition: opacity .3s ease, visibility .3s ease;
    transition: opacity .3s ease, visibility .3s ease;
    
}



.menuClode {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 28px;
    height: 28px;
    background:  url("../img/closeMenu.svg") 0% 0% no-repeat;
    cursor: pointer;
    z-index: 5;
}
.menuListLayer {
    height: 100%;
    max-width: 350px;
    border-right: 1px solid #EDEDED;
    background: #F8F8F8;
}
.menuList {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; 
    flex-wrap: nowrap;  
    position: relative;
}

.menuItem {
    text-transform: uppercase;
    z-index: 2;
    width: 100%;
}
.menuItemTitle {
    display: block;
    padding: 15px 10px 15px 30px;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    width: 100%;
}
.menuList .menuItemSel .menuItemTitle {
    color: #fff;
}

.menuItemBg {
    width: 100%;
    height: 60px;
    background: #607088;
    position: absolute;
    left: 0px;
    display: none;
    -webkit-transition: top .3s ease;
    -moz-transition: top .3s ease;
    -o-transition: top .3s ease;
    transition: top .3s ease;  
}

.menuItemBg:after {
    content: '';
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 30px 30px 30px 30px;
    border-color: transparent transparent transparent #607088;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    top: 0px;
    right: -60px;
    margin: auto;
    z-index: 3;
}

.menuItem .menuItemChild {
    position: absolute;
    top: 20px;
    left: 350px;
    padding: 40px;
    overflow: auto;
}
.menuItemChild {
    flex-wrap: wrap;
    justify-content: space-around;
    display: none;
    overflow: scroll;
}
.menuItemSel .menuItemChild {
    display: flex;
}

.menuItemChildItem {
    width: 24%;  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    flex-wrap: wrap;  
    margin-bottom: 50px; 
    min-width: 180px; 
}
.menuItemChildItem span {
    display: block;
    width: 130px;
    height: 130px;
    
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center; 
    flex-wrap: nowrap;
}
.menuItemChildItem span img {
    max-width: 100%;
    max-height: 100%;
}
.menuItemChildItem div {
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    text-transform: none;
    margin-top: 20px;
}

    /* Firefox */
    .menuItemChild {
    scrollbar-width: auto;
    scrollbar-color: #e1e1e1 #fff;
    }

    /* Chrome, Edge, and Safari */
    .menuItemChild::-webkit-scrollbar {
    width: 16px;
    }

    .menuItemChild::-webkit-scrollbar-track {
    background: #fff;
    }

    .menuItemChild::-webkit-scrollbar-thumb {
    background-color: #e1e1e1;
    border-radius: 50px;
    border: 5px solid #fff;
    }
    
.menuPhone {
    display: none;
}    
.menuAccount {
    display: none;
}


/*HEAD*/

/*PRODUCT*/

.prodLeftLayer {
    width: 50%;
    border: 1px solid #EDEDED;
}
.prodPhoto {
    display: flex;
    border-right: 1px solid #EDEDED;
    width: calc(100% - 195px);
    height: 560px;
}
.prodPhoto img {
    max-width: 90%;
    max-height: 90%;
}
.prodGallery {
    flex-direction: column;
    height: 560px;
    padding: 40px 0px;
    width: 195px;
    align-items: center;
    position: relative;
}
.prodGalleryWithOther {
    padding-bottom: 110px;
}
.prodGalleryItem {
    width: 90%;
    height: 120px;
}
.prodGalleryItem img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}

.prodGalleryOther {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    font-weight: 400;
    font-size: 14px;
    line-height: 70px;
    text-align: center;
    background: #F8F8F8;
    border-top: 1px solid #F0F0F0;
    cursor: pointer;
}
.prodGalleryOther b {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    cursor: pointer;
}
.prodGalleryOtherImg {
    display: none;
}




.showGallery {
    position: fixed;
    z-index: 99999;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: none;
    background: #000000e0;
    opacity: 0;
    
    -webkit-transition: opacity .3s ease;
    -moz-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease;
    
    overflow: hidden;
}

.showGalleryClose {
    position: fixed;
    z-index: 999999;
    top: 2%;
    right: 2%;
    display: none;
    opacity: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    font-family: verdana;
    width: 28px;
    height: 28px;
    
    -webkit-mask:  url(../img/closeMenu.svg) no-repeat 50% 50%;
    mask: url(../img/closeMenu.svg) no-repeat 50% 50%; 
    background-color: #fff;
}

.showGalleryLayer {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50000px;
    font-size: 0;
}
.showGalleryLayer div {
    max-height: 100%;
    display: inline-block;
    position: relative;
    height: calc(100% - 40px);
    top: 20px;
    width: 80%;
    
    
    
}
.showGalleryLayer div img {
    max-width: 90%;
    max-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.9);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.9);
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.9);    
}
.showGalleryLeft, .showGalleryRight {
    display: none;
    opacity: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 40px;
    height: 40px;
    background: #607088;
    cursor: pointer;
    z-index: 99999;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 25px;
    font-family: tahome;
    font-weight: bold;
    left: 2%;   
}
.showGalleryLeft span, .showGalleryRight span {   
    transform: scaleY(1.3) scaleX(0.6);
    display: block;
}
.showGalleryLeft span {
    margin-left: -3px;   
}
.showGalleryRight {
    right: 2%;
    left: auto;
}

.showGalleryLeft:after {
    content: " ";
    display: block;
    position: absolute;
    top: 11px;
    left: 14px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    width: 15px;
    height: 15px;
    transform: rotateZ(-135deg);
}

.showGalleryRight:after {
    content: " ";
    display: block;
    position: absolute;
    top: 12px;
    left: 7px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    width: 15px;
    height: 15px;
    transform: rotateZ(45deg);
}




.prodRightLayer {
    width: 50%;
    border: 1px solid #EDEDED;
    border-left: none;
}
.prodInfoLayer {
    align-items: stretch;
    height: 270px;
}
.prodInfo {
    width: calc(100% - 140px);
    border-right: 1px solid #EDEDED;
}
.prodInfo>div {
    max-width: 380px;
    margin: 20px auto 5px;
}
.prodCode {
    margin-bottom: 35px;
}
.prodCode span {
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
}
.prodCode>div {
    color: red;
    font-weight: 500;
    font-size: 14px;
    line-height: 30px;
    color: #b76565;
}
.prodInStock {
    color: #607088 !important;
}
.prodPrice {
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    text-transform: uppercase;
    position: relative;
}
.prodButton {
    color: #FFFFFF;
    background: #607088;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    padding: 12px 32px 12px 80px;
}
.prodButton:before {
    content: " ";
    width: 33px;
    height: 33px;
    background: url(../img/prodCart.svg) 50% 50% no-repeat;
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    margin: auto;
}
.prodClick {
    background: #E8E8E8;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    line-height: 47px;
    text-transform: uppercase;
    color: #607088;
}
.prodClickButton {
    padding-right: 25px;
    cursor: pointer;
}
.prodClickInput {
    background: none;
    width: calc(100% - 200px);
    border: none;
    line-height: 47px;
    padding-left: 20px;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    border: 1px solid #E8E8E8;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.prodDelivery {
    border-top: 1px solid #EDEDED;
}

.prodPic {
    flex-direction: column; 
    align-items: center;
    width: 140px;  
    justify-content: space-around;
    padding: 20px 0px;
}
.prodPic>div {
    width: 100%;
    text-align: center;
    padding-top: 46px;
    position: relative;
    cursor: pointer;
    
}
.prodPic>div>span {
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #787878;
    
}
.prodPic>div:before {
    content: " ";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    background-color: #A3A3A3;
    width: 40px;
    height: 35px;
    margin: auto;     
}
.prodPic>.selPic:before {
    background-color: #6E9160;    
}

.prodPic>div:nth-child(1):before {
    -webkit-mask:  url(../img/prodCompare.svg) no-repeat 50% 50%;
    mask: url(../img/prodCompare.svg) no-repeat 50% 50%; 
    
}
.prodPic>div:nth-child(2):before {
    -webkit-mask:  url(../img/prodLike.svg) no-repeat 50% 50%;
    mask: url(../img/prodLike.svg) no-repeat 50% 50%; 
    
}
.prodDelivery {
    padding: 19px 40px;
    height: 290px;
}
.prodDeliveryItem {
    width: calc(50% - 20px);
}
.prodDeliveryItemTitle {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    padding-bottom: 8px;
    position: relative;
    display: inline-block;
    margin-bottom: 14px;
    
}
.prodDeliveryItemTitle:before {
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    border-radius: 10px;
    background: #607088;
}
.prodDeliveryItem li {
    list-style: none;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #787878;
    margin-bottom: 5px;
}
.prodDeliveryItem li b {
    font-weight: 500;
    font-size: 13px;
    line-height: 30px;
    display: block;
    color: #383838;
}
.prodContent {
    margin-top: 50px;
}
.prodBrief {
    width: calc(50% - 60px);
}
.prodChar {
    width: calc(50%);
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
}

.prodCharItem {
    margin: 0px 0px;
    padding: 15px 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;   
    align-items: center;
}
.prodCharItem:nth-child(odd) {
    background: #f3f3f3;
}
.prodCharItem span:nth-child(1) {
    width: 35%;
}
.prodCharItem span:nth-child(2) {
    max-width: 62%;     
    text-align: right;
}

.blockTitle {
    font-weight: 500;
    font-size: 26px;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 30px;
}




.seeBackground {
    overflow: hidden;
    position: relative;
    height: 440px;
    margin-top: 0px;
}
.seeLayer {    
    display: flex;
    flex-flow: row nowrap;
    flex-wrap: nowrap;
    position: absolute;
    top: 8px;
    left: 0;
}
.seeLayer .listItem {
    flex: 0 0 25%;
    border-top: 1px solid #eaeaea; 
    max-width: inherit;
    border: 1px solid #EDEDED;
    padding: 22px 20px;
    margin-right: -1px;
}
.seeLayer .listItem:nth-child(1) {
    border-left: 1px solid #eaeaea;    
}
.seeLayer .listItem:hover {
    -webkit-box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 14%);
    -moz-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.14);
    box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 14%);
    -webkit-transition: -webkit-box-shadow .3s ease;
    margin-bottom: 0px;
}

.seeLayer .listItem:hover .listItemChar {
    display: none !important;
}


.seeArrLayer {
    position: relative;
    margin: 0px auto;
}

.seeArrRight {
    margin-top: -40px;     
    position: relative;    
    z-index: 5;
    background: #607088;
    width: 40px;
    height: 40px;
    color: #000;
    cursor: pointer;
    display: inline-block;
    position: absolute;
    right: -10px;
    bottom: -220px;
    
    -webkit-box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 14%);
    -moz-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.14);
    box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 14%);
    -webkit-transition: -webkit-box-shadow .3s ease;
}
.seeArrRight:after {
    content: " ";
    display: block;
    position: absolute;
    top: 12px;
    left: 7px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    width: 15px;
    height: 15px; 
    
    transform: rotateZ(45deg);
}
.seeArrLeft {
    margin-top: -40px;  
    position: relative;   
    z-index: 5;
    background: #607088;
    width: 40px;
    height: 40px;
    color: #000;
    cursor: pointer;
    display: inline-block;
    position: absolute;
    left: -10px;
    bottom: -220px;
    
    -webkit-box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 14%);
    -moz-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.14);
    box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 14%);
    -webkit-transition: -webkit-box-shadow .3s ease;   
    
}
.seeArrLeft:after {
    content: " ";
    display: block;
    position: absolute;
    top: 12px;
    left: 13px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    width: 15px;
    height: 15px;     
    transform: rotateZ(-135deg);
}



/*PRODUCT*/


/*MAIN*/


.bannerList {
    width: 100%;
    height: 500px; 
    position: relative;
    
    overflow: hidden;  
    cursor: pointer;
    
    
    
    
}
.bannerItem {
     
    background-size: cover;
    background-position: center;   
    width: 100%;
    height: 100%; 
    position: relative;
    
    position: absolute;
    left: 0;
    top: 0;   
    overflow: hidden;    
    
}
.bannerItem img {
    max-width: 100%;
    max-height: 100%;
}
.bannerItem:after {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 1;
    opacity: 0.7;
}

.bannerActive2 {     
    z-index: 2;    
}

.bannerActive1 {
    z-index: 1;
    left: 0 !important;
}

.bannerText {
    position: absolute;
    left: 5%;
    bottom: 50px;
    background: #ffffffed;
    z-index: 2;
    font-weight: bold;
    text-transform: uppercase;
    padding: 20px 30px;
    width: 450px;
    font-size: 18px;
    line-height: 24px;
    border-left: 8px solid #ff910f; 
}
.bannerText span {
    font-weight: normal;
    font-size: 13px;
    text-transform: none;
    display: block;
    margin-top: 3px;
}
.bannerDotLayer {
    padding-top: 20px;
    margin-bottom: 40px;
}
.bannerDotItem {
    width: 8px;
    height: 8px;
    background: #CECECE;
    border-radius: 50px;
    margin: 0px 5px;
    
    -webkit-transition: width .3s ease;
    -moz-transition: width .3s ease;
    -o-transition: width .3s ease;
    transition: width .3s ease;
}
.bannerDotItemActive {
    width: 24px;
    height: 8px;
    background: #B4B4B4;
    border-radius: 50px;
}
.mainCatLayer {
    border: 1px solid #EDEDED;
    margin-bottom: 80px;
}
.mainCatLayer>div {
    width: 50%;    
}
.mainCatBig {
    width: 66.6666%;
    padding: 23px 32px;    
    
}
.mainCatBigImg {
    width: 100%;
    margin-bottom: 20px;
}
.mainCatBigImg img {
    max-width: 100%;
    max-height: 100%;
}
.mainCatBigTitle {
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 37px;
}
.mainCatBigInfo {
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
}

.mainCatBlock {
        
}

.mainCatSmall {
    width: 33.333%;    
    flex-direction: column;
    align-items: stretch;
    
}
.mainCatSmallItem {
    width: 100%;
    height: 50%;
    padding: 15px 10px;
}

.mainCatBlock .mainCatSmallItem {
    border-right: 1px solid #EDEDED;
}
.mainCatBlock:nth-child(1)  .mainCatSmallItem {
    border-left: 1px solid #EDEDED;
}
.mainCatBlock  .mainCatSmallItem:nth-child(1) {
    border-bottom: 1px solid #EDEDED;
}

.mainCatSmallTitle {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 18px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 38px;
}
.mainCatSmallInfo {
    font-weight: 300;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    margin: 0px 0px 18px;
}
.mainCatSmallImg {
    width: 100%;
}
.mainCatSmallImg img {
    max-width: 90%;
    max-height: 100%;
}
.mainCatBig:hover, .mainCatSmallItem:hover {
    -webkit-box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 14%);
    -moz-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.14);
    box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 14%);
    -webkit-transition: -webkit-box-shadow .3s ease;
}

.mainH1 {
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
}
.mainPhoto {
    width: 100%;
    margin: 0px auto 40px;    
    justify-content: space-around;
}
.mainPhoto div {
    border: 5px solid #DEDEDE;
    width: 240px;
    height: 240px;
    -webkit-border-radius: 500px;
    -moz-border-radius: 500px;
    border-radius: 500px;
    background-size: cover !important;
    
    -webkit-transition: border .3s ease;
    -moz-transition: border .3s ease;
    -o-transition: border .3s ease;
    transition: border .3s ease;
}
.mainPhoto div:hover {
    border: 10px solid #DEDEDE;    
}
.mainPhoto div:nth-child(1) { background: url("../img/Ellipse1.png") 50% 50% no-repeat; }
.mainPhoto div:nth-child(2) { background: url("../img/Ellipse2.png") 50% 50% no-repeat; }
.mainPhoto div:nth-child(3) { background: url("../img/Ellipse3.png") 50% 50% no-repeat; }
.mainPhoto div:nth-child(4) { background: url("../img/Ellipse4.png") 50% 50% no-repeat; }

.mainBest {
    margin-bottom: 100px;
    position: relative;
}
.mainBestLeft {
    width: 300px;
    background: #FBFBFB;
    border: 1px solid #EDEDED;
    height: 419px;
}
.mainBestLeft div {
    font-weight: 500;
    font-size: 14px;
    line-height: 50px;
    width: calc(100% + 2px);
    padding-left: 35px;
    text-transform: uppercase;
    cursor: pointer;
    
    border: 1px solid #FBFBFB;
}
.mainBestLeftSel {
    background: #FFFFFF;
    border: 1px solid #EDEDED !important;
    margin-left: -1px;
    margin-top: -1px;
    
    font-weight: 700;
    font-size: 14px;
    line-height: 50px;
    color: #6E9160;
}
.mainBest .catRight .goodList {
    display: none;
}
/*MAIN*/

/*CART*/

.cartLeft {
    width: 50%;
}
.cartH1 {
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    text-transform: uppercase;
    color: #6E9160;
    margin-bottom: 19px;
    display: none;
}
.cartLeft .cartRowLayer {
    padding: 44px 0px 0px;
}
.cartInputLayer {
    width: calc(100% - 100px);
    margin: auto;
    margin-bottom: 23px;
}
.cartInputTitle {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 9px;
}
.cartInputElement input[type=text], .cartInputElement textarea, .cartInputElement input[type=password] {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    padding: 10px 20px;
    width: 100%;
    background: #FBFBFB;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
}
.cartInputElementRadio {
    margin-top: 20px;
}
.cartInputElementRadio  input[type=text] {
    margin-top: 15px;
}
.cartInputElement label {
    display: block;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    padding-left: 25px;
    position: relative;
}
.cartInputElement input[type=radio] {
    margin-right: 15px;
    position: absolute;
    z-index: -1;
    opacity: 0;
}


.cartInputElement input:checked+label:after {
    content: ' ';
    position: absolute;
    top: 0;
    left: 3px;
    bottom: 0;
    margin: auto;
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    flex-grow: 0;
    background: #787878;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;

    
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}
.cartInputElement input+label:before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #787878;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;

    
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.cartSumm {
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    padding: 25px 10px;
    
      
}

.cartButton {
    margin-top: 40px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    padding: 10px 35px;
    color: #FFFFFF;
    background: #607088;
    display: inline-block;
    margin-bottom: 80px;
    border-radius: 5px;
    cursor: pointer;
}










.cartRight {
    width: calc(50% + 1px);
    margin-left: -1px;
    
}

.cartGoodList {
    margin: 0px 0px 0px;
}
.cartGoodItem {
    border-bottom: 1px solid #E3E3E3;
    width: 100%;
    padding: 0px 50px;
    align-items: center;
}
.cartGoodItem:last-child {
    border-bottom: none;
}
.cartGoodImg {
    width: 120px;    
    height: 120px; 
    margin: 32px 0px;   
}
.cartGoodImg img {
    max-width: 100%;
    max-height: 100%;   
}
.cartGoodCenter {
    width: calc(100% - 300px);
}
.cartGoodTitle {
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 9px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.cartGoodCode {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 9px;
    color: #787878;
}
.cartGoodPic {
    width: 60px;
}

.cartGoodLike {
    width: 19px;
    height: 16px;
    background:  url("../img/goodLike.svg") 50% 50% no-repeat;
    cursor: pointer;
}
.cartGoodLikeSel {
    background:  url("../img/goodLikeSel.svg") 50% 50% no-repeat;
}
.cartGoodCompare {
    width: 24px;
    height: 19px;
    background:  url("../img/goodCompare.svg") 50% 50% no-repeat;
    cursor: pointer;
}
.cartGoodCompareSel {
    background:  url("../img/goodCompareSel.svg") 50% 50% no-repeat;
}

.cartGoodPrice {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 17px;
    text-align: center;
}
.cartGoodCount {
    width: 100%;
    position: relative;
}

.cartGoodCount input {
    width: 100%;
    line-height: 27px; 
    font-weight: 500;
    font-size: 18px; 
    color: #3D3D3D;
    text-align: center;
    background: #FBFBFB;
    border: 1px solid #CCCCCC; 
    border-radius: 5px;
}

.cartGoodPlus {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 29px;
    width: 29px;
    border-radius: 5px;
    background: #607088 url("../img/plus.svg") 50% 50% no-repeat;
    cursor: pointer;
}

.cartGoodMinus {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 29px;
    width: 29px;
    border-radius: 5px;
    background: #607088 url("../img/minus.svg") 50% 50% no-repeat;
    cursor: pointer;
}

.cartGoodRight {
    width: 100px;
}



.cartRowLayer {
    border: 1px solid #E3E3E3;    
}

/*CART*/

/*COMPARE*/

.compareLeft {
    width: 300px;
}    
.compareCatTitle {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 12px;
}
.compareSelect {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    border: 1px solid #E3E3E3;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    width: calc(100% - 25px);
    height: 35px;
    padding: 7px 30px 7px 10px;
    background: #F8F8F8 url(../img/arrFilter.svg) 95% 50% no-repeat;
    color: #383838;
}
.compareSelect {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}
.compareLeftList {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    
    border-top: 1px solid #EDEDED;
}
.compareLeftList>div {
    padding: 11px 0px;
    padding-left: 20px;
    
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center; 
    flex-wrap: nowrap; 
}
.compareLeftList>div:nth-child(even) {
    background: #FBFBFB;
}
.compareRightLayer {
    width: calc(100% - 300px);
    overflow: auto;
    padding-bottom: 60px;
    
}
.compareRightList {
    justify-content: flex-start;
    align-items: flex-start;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.compareItem {
    width: 320px;
    border: 1px solid #EDEDED;
    margin-right: -1px;
    position: relative;
}
.compareItemTop {
    padding: 28px;
    
}
.compareItemTitle {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    margin-top: 17px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 40px;
    margin-bottom: 20px;
    margin-top: 0px;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.compareItemImg {
    width: 100%;
    height: 150px;
    margin-bottom: 40px;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.compareItemImg img {
    max-width: 100%;
    max-height: 100%;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.compareChar {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    border-top: 1px solid #EDEDED;
}
.compareChar>div {
    padding: 11px 0px;
    padding-left: 20px;
    
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center; 
    flex-wrap: nowrap; 
}
.compareChar>div:nth-child(even) {
    background: #FBFBFB;
}
.compareLayer {
    margin-bottom: 80px;
}


.compareRightLayer::-webkit-scrollbar {
    height: 8px;
    width: auto;
}
.compareRightLayer::-webkit-scrollbar-track {
    background-color: #fff0;
}
.compareRightLayer::-webkit-scrollbar-thumb {
    background: #adadad;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 2px;
}
.compareButtonDel {
    font-weight: 400;
    font-size: 14px;
    line-height: 36px;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #6E9160;
    border-radius: 5px;
    width: 130px;
    text-align: center;
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    margin: auto;
    cursor: pointer;
}


/*COMPARE*/


body .blockShow {
    opacity: 1;
    visibility: visible;
}

.callbackBackground {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.80);
    z-index: 30;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease, visibility .3s ease;
    -moz-transition: opacity .3s ease, visibility .3s ease;
    -o-transition: opacity .3s ease, visibility .3s ease;
    transition: opacity .3s ease, visibility .3s ease;
}
.callbackLayer {
    background: #fff;
    width: 90%;
    max-width: 450px;
    overflow: auto;
    position: relative;
    max-height: 90%;
}
.callbackLayer .cartInputLayer {
        width: calc(100% - 60px);    
}
.callbackTitle {
    padding: 20px 30px 40px 30px;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: #607088;
    
}
.callbackClose {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 28px;
    height: 28px;
    background: url(../img/closeMenu.svg) 0% 0% no-repeat;
    cursor: pointer;
    z-index: 5;
}
.callbackLayer .cartButton {
    margin-top: 0px;
    margin-bottom: 30px;
    text-transform: uppercase;
}
#addCart .callbackLayer {
    max-width: 850px;
}
.cartBottomPanel {
    width: calc(100% - 100px);
    margin: auto;
}
.cartBottomPanel .cartButton {
    text-align: center;
}
#addCart .cartGoodList {
    max-width: calc(100% - 60px);
    margin: 0px auto 30px;
    border: 1px solid #E3E3E3;  
      
}

.prodSale {
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 16px;
    line-height: 13px;
    text-align: center;
    text-decoration: line-through;
}
.goodSale {
    position: absolute;
    top: -13px;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 12px;
    line-height: 13px;
    text-align: center;
    text-decoration: line-through;
}

.messLayer {
    position: fixed;
    z-index: 20;
    bottom: -20px;
    left: 0;
    right: 0;
    margin: auto;
    padding: 10px 24px;
    width: 280px;
    background: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #38383814;
    box-shadow: 0px 3px 4px rgb(0 0 0 / 15%);
    opacity: 0; 
    visibility: hidden; 
    -webkit-transition: bottom .3s ease, opacity .3s ease;
    -moz-transition: bottom .3s ease, opacity .3s ease;
    -o-transition: bottom .3s ease, opacity .3s ease;
    transition: bottom .3s ease, opacity .3s ease, visibility 0.3s linear;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    color: #607088;
    cursor: pointer;
}
.messLayerShow {
    opacity: 1;
    visibility: visible;
    bottom: 20px;
}

.categoryChild {
    flex-wrap: wrap;
    justify-content: space-around;
}

.categoryChildItem {
    max-width: 350px;
    min-width: 250px;
    margin-top: 40px;
}
.categoryChildItemImg {
    width: 100%;
    height: 150px;
    margin-bottom: 10px;
}
.categoryChildItemImg img {
    max-width: 100%;
    max-height: 100%;
}
.categoryChildItemTitle {
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    text-transform: none;
    text-align: center;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #959595;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #959595;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #959595;
}
.filterValueEmpty {
    opacity: 0.5;
}


.filterValueLoad:before {
    content: " ";
    display: block;
    position: absolute;
    margin: auto;
    z-index: 2;                
    opacity: 1;
    -webkit-transition: -webkit-transform .3s ease;
    -moz-transition: -moz-transform .3s ease;
    -o-transition: -o-transform .3s ease;
    transition: transform .3s ease;
    width: 8px;
    height: 8px;
    border-top: 4px solid #ffffff;
    border-right: 4px solid #607088;
    border-bottom: 4px solid #ffffff;
    border-left: 4px solid #607088;
    border-width: 2px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    
    opacity: 1 !important;
    
    transform: rotateZ(0);
    
    -webkit-animation:spin .8s linear infinite;
    -moz-animation:spin .8s linear infinite;
    animation:spin .8s linear infinite;  
    background: none;  
    
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
.catLayer {
    margin-bottom: 50px;
}
.emptyTitle {
    text-align: center;
    margin: 50px 0px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    margin-top: 17px;
}



.addPageLoad {
    color: #fff; 
    position: relative;   
}
.addPageLoad:after {      
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 2;
    opacity: 1;
    -webkit-transition: -webkit-transform .3s ease;
    -moz-transition: -moz-transform .3s ease;
    -o-transition: -o-transform .3s ease;
    transition: transform .1s ease;
    width: 16px;
    height: 16px;
    border-top: 4px solid #ffffff00;
    border-right: 4px solid #607088;
    border-bottom: 4px solid #ffffff00;
    border-left: 4px solid #607088;
    border-width: 8px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    opacity: 1 !important;
    transform: rotateZ(0);
    -webkit-animation: spin .8s linear infinite;
    -moz-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}

.cartFormError {
    float: right;
    font-size: 12px;
    color: red;
}
.loginAccount {
    cursor: pointer;
}
.cardPayLayer {
    background: #FBFBFB;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    padding: 10px 20px;    
    margin-bottom: 20px;
}
.cardPayLayer>span {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}
.cardPayLayer>div>span {
    display: inline-block;
    width: 140px;
    float: left;
}
.cardPayLayer>div>div {
    font-weight: bold; 
    display: inline-block; 
    white-space: nowrap;
}
.prodBuyFlex {
    align-items: center;
}

.buttonCredit {
    color: #fff;   
    background: #9d9d9d;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    line-height: 26px;
    padding: 5px 10px 5px 10px;
    text-align: center;
    margin-top: 10px;
}