.p-product{

}
.p-product-title-mobile{
    display: none;
}
.p-product-main-container{
    display: flex;
    flex-wrap: wrap;
    margin:0 0 0 0;
}
.p-product-main-container-a{
    position: relative;
    width:300px;
    border-right:1px solid var(--gray-200);
    margin:0 0 70px;

}
.p-product-main-container-b{
    width:calc(100% - 330px);
    margin:0 0 70px 30px;

}
/**/
.p-product-label{
    position: absolute;
    top:10px;
    left:10px;
    z-index: 2;
}
.p-product-label span{
    display: flex;
    align-items: center;
    justify-content: center;
    height:30px;
    padding:0 15px;
    font-size:14px;
    border-radius: 3px;
}
/**/
.p-product-gallery{
    position: sticky;
    top:100px;
}
.p-product-main-images{
    display: flex;
    justify-content: center;
    margin:0 0 20px 0;
}
.p-product-main-image{
    display:none;
}
.p-product-main-image:first-child{
    display: block;
    cursor: pointer;
}
/**/
.p-product-second-images{
    position: relative;
    padding:0 50px;
}
.p-product-second-image{
    border:1px solid var(--gray-200);
    border-radius: 3px;
    padding:10px;
    margin:0 10px;
}
.p-product-second-image img{
    cursor: pointer;
    transition: .3s;
}
.p-product-second-image img:hover{
    transform: scale(0.9,0.9);
}
.p-product-second-images .owl-dot{
    display: none;
}
.p-product-second-images .slick-arrow{
    position: absolute;
    top:50%;
    transform: translate(0, -50%);
    background: none;
    outline: none;
    font-size:0;
    cursor: pointer;
    border:0;
}
.p-product-second-images .slick-arrow.slick-prev{
    left:0;
}
.p-product-second-images .slick-arrow.slick-prev:after{
    content: '\68';
    font-family: si-solid;
    font-size: 18px;
    color:var(--gray-400);
}
.p-product-second-images .slick-arrow.slick-next{
    right:0;
}
.p-product-second-images .slick-arrow.slick-next:after{
    content: '\e909';
    font-family: si-solid;
    font-size: 18px;
    color:var(--gray-400);
}
.p-product-second-images .slick-arrow.slick-prev:hover:after, .p-product-second-images .slick-arrow.slick-next:hover:after{
    color:var(--gray-800);
}
/**/
.p-product-watch-video{
    display: flex;
    justify-content: center;
    margin:20px 0 0 0;
    padding:10px 0;
}
.p-product-watch-video-button{
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: .3s;
}
.p-product-watch-video-button img{
    width:40px;
    margin:0 10px 0 0;
}
.p-product-watch-video-button span{
    font-size:14px;
    color:var(--gray-600);
}
.p-product-watch-video-button:hover{
    opacity: .7;
}

.p-product-video-window{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    visibility: hidden;
    transition: .3s;
    opacity: 0;
    height: 600px;
    width:960px;
}
.p-product-video-window.show{
    opacity: 1;
    visibility: visible;
}
.p-product-video-window iframe{
    display: block;
    width:100% !important;
    height: 100% !important;
}
.p-product-video-window span{
    position: absolute;
    bottom:-40px;
    left:50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: flex-end;
    color:var(--gray-300);
    cursor: pointer;
}
.p-product-video-window span:hover{
    color:var(--white);
}
.p-product-video-overlay{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,1);
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: .2s;
}
.p-product-video-overlay.show{
    visibility: visible;
    opacity: 1;
}




/**/
.p-product-main-b{
    margin:0 0 20px 0;

}

.p-product-title-desktop{
    font-size: 24px;
    font-weight: 500;
    line-height: 150%;
    margin: 0 0 10px 0;
    padding: 0;
}
/**/
.p-product-main-head{
    display: flex;
    align-items: center;
}
/**/
.p-product-available{
    display: flex;
    align-items: center;
    height:30px;
    padding:0 10px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 12px;
    color:var(--green-800);
    background: var(--green-50);
}
.p-product-available:before{
    content: '\e906';
    color:var(--green-800);
    font-family: si-solid;
    margin:0 10px 0 0;
}
.p-product-no-available{
    font-weight: 500;
    color:var(--red-600);
    margin:0 50px 0 0;
}
/**/
.p-product-code{
    display: flex;
    align-items: center;
    height:30px;
    padding:0 10px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 12px;
    color:var(--gray-800);
    background: var(--gray-100);
    margin:0 0 0 10px;
}

/*additions*/
.p-product-additions{
    margin:0 0 65px 0;
}

/*attributs*/
/*select*/
.p-product-attribut{
    margin:20px 0 15px 0;
}
.p-product-attribut-label{
    font-size:14px;
    font-weight: 500;
    margin:0 0 5px 0;
}
.p-product-attribut-select{
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    border: 1px solid var(--bluegray-200);
    background: #fff;
    border-radius: 4px;
    font-weight: 400;
    font-size: 14px;
    padding: 0 10px;
}
/*radio*/
.p-product-attribut{
    margin:20px 0 15px 0;
}
.p-product-attribut-label{
    font-size:14px;
    font-weight: 500;
    margin:0 0 5px 0;
}
.p-product-attribut-select{
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    border: 1px solid var(--bluegray-200);
    background: #fff;
    border-radius: 4px;
    font-weight: 400;
    font-size: 14px;
    padding: 0 10px;
}
/*radio*/
.p-product-attributs{
}
.p-product-attribut-radio{

}
.p-product-attribut-radio-name{
    font-size:16px;
    font-weight: 500;
    color: var(--bluegray-500);
    margin:0 0 5px 0;
}
.p-product-attribut-radio-name span{
    padding:0 0 0 5px;
}
.p-product-attribut-radio-elements{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
/**/
.p-product-attribut-radio-element{
    margin:0 10px 0 0;
}
.p-product-attribut-radio-element input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    margin: 10px 0 0 7px;
}
.p-product-attribut-radio-element-label {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height:30px;
    min-width: 30px;
    padding:0 10px;
    border-radius: 3px;
    color:#333;
    cursor: pointer;
    background: #fff;
    border:1px solid var(--bluegray-100);
}
.p-product-attribut-radio-element input:checked + .p-product-attribut-radio-element-label {
    color:#fff;
    background: var(--red-400);
    border:1px solid var(--red-400);
}
/**/
.p-product-attribut-radio-image-element{
    margin:0 5px 5px 0;
}
.p-product-attribut-radio-image-element input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    margin: 10px 0 0 7px;
}
.p-product-attribut-radio-image-element-label {
    position: relative;
    padding:5px;
    border-radius: 3px;
    color:#333;
    cursor: pointer;
    background: #fff;
    border:2px solid var(--bluegray-50);
    transition: .3s;
}
.p-product-attribut-radio-image-element-label:hover{
    transform: scale(1.1,1.1);
}
.p-product-attribut-radio-image-element-label img{
    display: block;
    width:50px;
    height:50px;
    margin: 0 auto;
}
.p-product-attribut-radio-image-element input:checked + .p-product-attribut-radio-image-element-label {
    color:#333;
    border:2px solid var(--blue-400);
}


.p-product-second-container{
    display: flex;
    flex-wrap: wrap;
    margin:0 0 0 -30px;

}
.p-product-second-container-a{
    width: calc(45% - 20px);
    margin:0 0 0 20px;
}
.p-product-second-container-b{
    width: calc(55% - 20px);
    margin:0 0 0 20px;
}
/**/
.p-product-buy{

}
.p-product-buy-container{

}
.p-product-buy-container-a{
    margin:0 0 10px 0;
}
.p-product-price{
    display: flex;
    align-items: baseline;
    margin:0 0 5px 0;
}
.p-product-main-price{
    font-size:32px;
    font-weight: 600;
}
.p-product-old-price{
    font-size:18px;
    font-weight: 400;
    margin:0 0 0 10px;
    color:var(--red-500);
}
.p-product-partner-price{
    font-size: 14px;
    font-weight: 500;
    color: var(--bluegray-500);
}
.p-product-partner-price span{
    font-weight: 500;
}
.p-product-partner-price a{
    color:var(--blue-600);
}
.p-product-buy-container-b{

}


/*buy*/
.p-product-qty{
    display: none;
}
.p-product-button-buy{
    display: flex;
    height:60px;
    line-height: 60px;
    justify-content: center;
    color:var(--black);
    background: var(--amber-600);
    text-transform: uppercase;
    font-weight: 600;
    padding:0 30px;
}
.p-product-button-buy:hover{
    background: var(--amber-700);
}


.p-product-retale{
	margin:10px 0 0 0;
}
.p-product-retale a{
	display: flex;
    height:40px;
    line-height: 40px;
    justify-content: center;
    color:var(--black);
    background: var(--gray-100);
    text-transform: uppercase;
    font-weight: 600;
	font-size:14px;
    padding:0 30px;
	border-radius:3px;
}
.p-product-retale a:hover{
	 background: var(--gray-200);
}

/*set*/
.p-product-sets{

}
.p-product-sets-title{
    font-size:16px;
    font-weight: 500;
    color: var(--bluegray-500);
    margin:0 0 10px 0;
}
.p-product-sets-list{

}
.p-product-set{
    display: flex;
    flex-wrap: wrap;
    margin:0 0 10px 0;
    background: var(--gray-50);
    border-radius: 4px;
    padding:10px;
}
.p-product-set-block{
    position: relative;
    text-align: center;
}
.p-product-set-block:nth-child(1){
    width: 30%;
}

.p-product-set-block:nth-child(2){
    width: 30%;
}
.p-product-set-block:nth-child(3){
    width: 40%;
    text-align: center;
}
.p-product-set-icon{
    margin:0 auto;
    width: 60px;
}
.p-product-set-name{
    font-size: 14px;
    font-weight: 500;
}
.p-product-set-name a{
    font-weight: 500;
    color: var(--black);
}
.p-product-set-name a:hover{
    color: var(--blue-500);
}

.p-product-set-price{

}
.p-product-set-price span{
    font-size:16px;
    line-height: 16px;
    font-weight: 500;
    padding: 0;
    margin:0;
}
.p-product-set-price strike{
    color: var(--red-500);
}

.p-product-set-economy{
    color: var(--red-500);
    font-size: 14px;
}
.p-product-set-button{
   margin:15px 0 0 0;
}
.p-product-set-button .btn{
    height: 40px;
    line-height: 40px;
    padding:0 10px;
    font-size: 14px;
    color: var(--white);
    background: var(--blue-500);
}




.p-product-last-container{
    border-top: 1px solid var(--gray-300);
}
.p-product-last-content{
    display: flex;
    flex-wrap: wrap;
    margin:0 0 0 -50px;
    padding:50px 0 0 0;

}
.p-product-last-content-a{
    width:calc(50% - 50px);
    margin:0 0 0 50px;
}
.p-product-last-content-b{
    width:calc(50% - 50px);
    margin:0 0 0 50px;
}

/*properties*/
.p-product-property{
    margin:0 0 30px;
}
.p-product-property-elements{

}
.p-product-property-element{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed var(--gray-200);
    padding:0 0 7px 0;
    margin:0 0 7px 0;
}
.p-product-property-name{
    font-size: 14px;
}
.p-product-property-values{
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding:0 0 0 20px;
}
.p-product-property-value{
    font-size: 14px;
}

/*description*/
.p-product-description{
    margin:0 0 30px;
}
.p-product-description-title{
    font-size: 24px;
    font-weight: 500;
    margin:0 0 20px 0;
}
.p-product-description p{
    margin: 0;
}



/**/
.w-product-similar{

}
.w-product-similar-title{
    font-size: 24px;
    font-weight: 500;
    margin:0 0 20px 0;
}
.w-product-similar-list{
    display: flex;
	flex-wrap:wrap;
    margin:0 0 0 -20px;
}
.w-product-similar-list .product-preview{
    width: calc(50% - 20px);
    margin:0 0 20px 20px;
}





/*review*/
.p-product-review{
    margin: 0 0 50px 0;
    padding: 30px;
    background: #f7f9fc;
    border-radius: 3px;
}
.p-product-review-title{
    font-size: 22px;
    margin:0 0 30px 0;
}
.p-product-review-container{
    display: flex;
    flex-wrap: wrap;
    margin:0 0 50px 0;
}
.p-product-review-container-a{
    width:300px;
    margin:0 50px 0 0;
}
.p-product-review-rating{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin:0 0 20px 0;
}
/**/
.p-product-review-rating-a{

}
.p-product-review-sidebar{
    position: sticky;
    top:100px;
}
.p-product-review-rating-num{
    font-size: 50px;
    font-weight: 400;
    margin:0 10px 0 0;
}
/**/
.p-product-review-rating-b{

}
.p-product-review-rating-stars{
    display: flex;
    align-items: center;
}
.p-product-review-rating-star{
    width:30px;
    height:30px;
    background:url(/icons/review-star-check.svg);
    background-size:30px 30px;
}
/**/
.p-product-review-button{

}
.p-product-review-button .btn{
    display: block;
    color:var(--white);
    background: var(--light-blue-600);
}
.p-product-review-button .btn:hover{
    color:var(--white);
    background: var(--light-blue-700);
}

/**/
.p-product-review-container-b{
    width:calc(100% - 350px);
}
.p-product-review-list{

}
.p-product-review-item{
    display: flex;
    flex-wrap: wrap;
    padding:0 0 15px 0;
    margin:0 0 15px 0;
    border-bottom: 1px dashed var(--gray-300);
}
.p-product-review-item-a{
    width:250px;
}
.p-product-review-item-name{
    font-weight: 500;
    margin:0 0 10px 0;
}
.p-product-review-item-stars{
    display: flex;
    align-items: center;
    margin:0 0 10px 0;
}
.p-product-review-item-star{
    width:20px;
    height:20px;
    background:url(/icons/review-star-check.svg);
    background-size:20px 20px;
}
.p-product-review-item-date{
    color:var(--gray-500);
}
.p-product-review-item-b{
    width:calc(100% - 250px);
}
.p-product-review-item-text{
    font-size:14px;
    line-height: 150%;
    overflow: hidden;
}
.p-product-review-item-response{
    font-size:14px;
    line-height: 150%;
    padding:10px 15px;
    border-radius: 3px;
    background: var(--orange-50);
    margin: 20px 0 0 0;
}
.p-product-review-item-response span{
    font-weight: 500;
    margin:0 10px 0 0;
}
.product-reviews-empty{
    padding:10px 0 0 0;
}








/**********************************************************************************************************************/
@media (max-width: 960px) {
    .p-product-second-container-a,
    .p-product-second-container-b{
        width: 100%;
        margin:30px 0 20px 30px;
    }
}
/**********************************************************************************************************************/
@media (max-width: 780px) {
    .p-product-title-desktop{
        display: none;
    }
    .p-product-title-mobile{
        display: block;
        font-size: 20px;
        font-weight: 500;
        line-height: 150%;
        margin: 0 0 20px 0;
        text-align: center;
        padding: 0;
    }
    .p-product-main-container-a{
        width: 100%;
        border-right: none;
        margin: 0 0 20px 0;
        padding:0 10%;
    }
    .p-product-main-container-b{
        width: 100%;
        margin: 0 0 20px 0;
    }
    .p-product-main-head{
        justify-content: center;
    }
    .p-product-additions{
        margin:0 0 20px 0;
    }
    .p-product-attribut-radio-name{
        text-align: center;
    }
    .p-product-attribut-radio-elements{
        justify-content: center;
    }
    .p-product-price{
        justify-content: center;
    }
    .p-product-partner-price{
        text-align: center;
    }
    .p-product-sets-title{
        font-size: 22px;
        font-weight: 500;
        color: var(--bluegray-800);
        text-align: center;
    }
    .p-product-last-content {
        display: flex;
        flex-wrap: wrap;
        margin: 0;
        padding: 20px 0 0 0;
    }
    .p-product-last-content-a,
    .p-product-last-content-b{
        width:100%;
        margin:0 0 30px 0;
    }
    .p-product-description-title,
    .w-product-similar-title{
        font-size: 18px;
        text-align: center;
    }
    .p-product-review{
        display: none;
    }
}