.product{

}
.product-a{
    display: flex;
    flex-wrap: wrap;
    margin:0 0 50px 0;
}
.product-gallery{
    width:calc(50% - 25px);
    position: relative;
    overflow: hidden;
    margin:0 25px 50px 0;
}
.product-second-gallery{
    position: absolute;
    top:0;
    left:0;
    width:27%;
    padding:0 10px 0 0;
    margin:0 10px 0 0;
    max-height: 100%;
    overflow: hidden;
    overflow-y: auto;
}
.product-second-gallery-image{
    overflow: hidden;
    border-radius: 5px;
    margin:0 0 10px 0;
}
.product-second-gallery-image:last-child{
    margin:0;
}
.product-second-gallery-image img{
    cursor: pointer;
    transform: scale(1.01,1.01);
    transition: .5s;
}
.product-second-gallery-image:hover img{
    transform: scale(1.1,1.1);
}
.product-main-gallery{
    margin:0 0 0 29%;
}
.product-main-gallery-image{
    display: none;
}
.product-main-gallery-image:first-child{
    display: block;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}
.product-main-gallery-image img{
    transform: scale(1.01,1.01);
    transition: .5s;
}
.product-main-gallery-image:hover img{
    transform: scale(1.1,1.1);
}

/**/
.product-video{
    position: relative;
    margin:0 0 0 29%;
}
.product-video-play{
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index: 2;
    cursor: pointer;
    display: none;
}
.product-video-play:after{
    content: '';
    position: absolute;
    top:20px;
    right:20px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-left: 20px solid #333;
    border-bottom: 10px solid transparent;
    cursor: pointer;
}
.product-video.stop .product-video-play{
    display: block;
}
.product-video-stop {
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index: 2;
    cursor: pointer;
}
.product-video-stop:after{
    content: '';
    position: absolute;
    top:20px;
    right:20px;
    width: 20px;
    height: 20px;
    background: #333;
    display: block;
}
.product-video.stop .product-video-stop{
    display: none;
}
.product-label{
    position: absolute;
    top:20px;
    right:0;
    z-index: 2;
}
.product-label-image{
    width:50px;
}
.product-label-name{
    display: flex;
    align-items: center;
    height: 30px;
    padding: 0 10px;
    font-weight: 500;
    font-size: 14px;
    border-radius: 5px 0 0 5px;
    z-index: 2;
}
.product-data{
    width:calc(50% - 25px);
    margin:0 0 50px 25px;
}
.product-mobile-title{
    display: none;
}
.product-desktop-title{
    display: block;
    padding:0;
    font-size: 28px;
    font-weight: 400;
    line-height: 130%;
    margin:0 0 40px 0;
}



.product-price-container{
    display: flex;
    align-items: baseline;
    margin:0 0 30px 0;
}
.product-old-price{
    width:160px;
}
.product-old-price strike{
    font-size: 18px;
    color:var(--gray-800);
    padding:0 10px 0 0;
    border-right: 1px solid var(--gray-400);
}
.product-old-price span{
    font-size: 18px;
    color:var(--gray-800);
    padding:0 0 0 10px;
    margin:0 20px 0 0;
}
.product-price{
    font-size: 30px;
    color:var(--red-800);
}



.product-controls{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin:0 0 30px 0;
}
.product-qty{
    display: flex;
    align-items: center;
    width:150px;
    margin:0 10px 0 0;
}
.product-qty-count{
    display: flex;
    align-items: center;
    width:50px;
    height:50px;
    font-size: 16px;
    text-align: center;
    border: none;
}
.product-qty-change{
    display: flex;
    align-items: center;
    justify-content: center;
    width:50px;
    height:50px;
    font-size: 14px;
    background: var(--gray-100);
    border-radius: 4px;
    cursor: pointer;
}
.product-button-buy{
    color: var(--white);
    background: var(--black);
    margin:0 10px 0 0;
}
.product-button-quickorder{
    color: var(--white);
    background: var(--black);
    margin:0 10px 0 0;
}
@media (max-width: 1024px) {
    .product-a{
        display: block;
    }
    .product-gallery, .product-data{
        width:100%;
        margin:0 0 30px 0;
    }
    .product-mobile-title{
        display: block;
        text-align: center;
        padding: 0;
        font-size: 22px;
        font-weight: 400;
        line-height: 130%;
        margin: 0 0 30px 0;
    }
    .product-desktop-title{
        display: none;
    }
    .product-price-container{
        justify-content: center;
    }
    .product-qty{
        display: none;
    }
    .product-button-buy{
        display: block;
        width:100%;
        margin:0 0 10px 0;
    }
    .product-button-quickorder{
        display: block;
        width:100%;
        margin:0 0 10px 0;
    }
    .product-property-item,
    .product-property-item-value{
        text-align: center;
    }

}



.product-b{

}









/**/
.product-property{
    margin:0 0 20px 0;
    padding:0 0 20px 0;
    border-bottom: 1px solid var(--gray-300);
}
.product-property-group{

}
.product-property-group-name{
    display: none;
}
.product-property-list{

}
.product-property-item{
    display: flex;
    flex-wrap: wrap;
    margin:0 0 20px 0;
}
.product-property-item:last-child{
    margin:0;
}
.product-property-item-name{
    width:160px;
    font-size: 16px;
}
.product-property-item-values{
    width: calc(100% - 150px);
}
.product-property-item-value{
    font-size: 16px;
}

@media (max-width: 1024px) {
    .product-property-item-name{
        width:100%;
        font-size: 16px;
        margin:0 0 5px 0;
    }
    .product-property-item-values{
        width:100%;
        text-align: justify;
    }
    .product-description{
        text-align: justify;
    }

}




.product-options{

}
.product-option{
    display: flex;
    margin:0 0 20px 0;
}
.product-option-name{
    display: flex;
    align-items: center;
    width:160px;
    font-size: 16px;
}
.product-option-name span{
    font-size: 14px;
    padding:0 0 0 5px;
}
.product-option-value{
    width: calc(100% - 160px);
}
/**/
.product-option-input{
    display: block;
    width: 100%;
    height: 36px;
    line-height: 36px;
    background: var(--white);
    border: 1px solid var(--bluegray-100);
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    padding: 0 10px;
}
/**/
.product-option-checkbox{

}
.product-option-checkbox-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.product-option-checkbox-label {
    position: relative;
    cursor: pointer;
}
.product-option-checkbox-label:before {
    content: '';
    font-family: si-solid;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    width: 34px;
    cursor: pointer;
    color: var(--bluegray-800);
    background: #fff;
    border: 1px solid var(--bluegray-100);
    border-radius: 4px;
}
.product-option-checkbox-input:checked + .product-option-checkbox-label:before {
    content: '\e906';

}





/**/
.product-attribute{
    margin:0 0 30px 0;
}
.product-attribute-group{

}
.product-attribute-group-name{
    display: none;
}
.product-attribute-list{

}
.product-attribute-item{
    display: flex;
    flex-wrap: wrap;
    margin:0 0 20px 0;
}
.product-attribute-item:last-child{
    margin:0;
}
.product-attribute-item-name{
    width:160px;
    font-size: 16px;
}
.product-attribute-values{
    width: calc(100% - 160px);
}
.product-attribute-footer{
    padding: 10px 0 0 160px;
}
.product-attribute-footer span{
    font-size: 14px;
    cursor: pointer;
    border-bottom: 1px dashed var(--gray-800);
}
.product-attribute-footer span:hover{
    color: var(--gray-500);
    border-bottom: 1px dashed var(--gray-500);
}
/**/
.attribute-buttons{
    display: flex;
    align-items: center;
}
.attribute-button{
    margin:0 10px 0 0;
}
.attribute-button-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    margin: 10px 0 0 7px;
}
.attribute-button-label {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    min-width: 34px;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    background: #fff;
    border: 1px solid var(--bluegray-100);
    border-radius: 4px;
}
.attribute-button-input:checked + .attribute-button-label {
    color:#fff;
    background: var(--black);
    border:1px solid var(--black);
}
.attribute-button-input:focus + .attribute-button-label:before {

}
@media (max-width: 1024px) {
    .product-attribute-item-name{
        width:100%;
        text-align: center;
        margin:0 0 5px 0;
    }
    .product-attribute-values{
        width: 100%;
        display: flex;
        justify-content: center;
    }
}
