.productCategory{
    margin-top: 20px;
}
.blockAttrCategory ul{
    padding:0;
    max-height: 200px;
    overflow-y: auto;
    margin: 0;
}
.blockAttrCategory ul li{
    clear: both;
    list-style: none;
}
.blockAttrCategory ul li label{
    font-weight: normal;
    cursor: pointer;
}
.blockAttrCategory ul li label span{
    font-size: 14px;
}
.blockAttrCategory ul li input[type=checkbox] {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    margin: 0 5px 0 0;
    background: 0 0;
    border: 1px solid #dedede;
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
}
.blockAttrCategory ul li input[type=checkbox]:checked:after{
    content: '\2714';
    font-size: 10px;
    line-height: 11px;
    text-align: center;
    display: block;
    outline: none;
    color: #1aa8ff;
    outline: 1px solid #fff;
}
.blockAttrCategory ul li a i{
    position: absolute;
    right: 0;
}
.blockAttrCategory a{
    display: block;
    position: relative;
    color: #101419;
    font-size: 15px;
}
.blockAttrCategory a:focus, .blockAttrCategory a:hover{
    text-decoration: none;
    color: #101419;
}
.blockAttrCategory > p{
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.productCategory .items{
    margin-bottom: 10px;
}

.productCategory.products .items .productImg{
    height: 260px;
}
.productContainer > h1{
    margin-top: 0;
    font-size: 26px;
    font-weight: normal;
    border-bottom: 1px solid #eee;
    padding: 0 15px 15px 15px;
    margin-bottom: 10px;
    display: block;
}

.loadingModal {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -10000;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff99;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .5s;
    transition: all .5s;
}
.loadingModal span {
    display: inline-block;
}
.loadingModal.is{
    opacity: 1;
    z-index: 10000;
    visibility: visible;
    -webkit-transition: all .5s;
    transition: all .5s;
}
