.p-product{

}
.p-product-title-mobile{
    display: none;
}
.p-product-main-container{
    display: flex;
    flex-wrap: wrap;
    margin:0 0 20px 0;
}
.p-product-main-container-a{
    position: relative;
    width:40%;

}
.p-product-main-container-b{
    width:calc(60% - 30px);
    margin:0 0 0 30px;
    background: #f7f9fc;
    border-radius: 4px;
    padding:20px;
}
/**/
.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-other-model{
	display:none;
}

/**/
.p-product-main-b{
    margin:0 0 20px 0;

}

.p-product-title-desktop{
    font-size: 22px;
    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{
    font-weight: 500;
    color:var(--green-500);
}
.p-product-available:before{
    content: '\e906';
    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{
    margin:0 0 0 30px;
}
.p-product-code span{

}



/**/
.p-product-group{
    margin: 0 0 20px 0;
}
.p-product-group-title{
    margin:0 0 10px 0;
    color: var(--gray-600);
}
.p-product-group-list{
    display: flex;
    align-items: center;
}
.p-product-group-list-item{
    width:80px;
    margin:0 10px 0 0 ;
    border:1px solid var(--gray-200);
    border-radius: 3px;
    transition: .3s;
}
.p-product-group-list-item:hover{
    opacity: 0.7;
}

/*additions*/
.p-product-additions{
    margin:0 0 20px 0;
    padding:0 0 20px 0;
    border-bottom: 1px solid var(--gray-100);
}
/*options*/
.p-product-options{

}
.p-product-option{
    display: flex;
    justify-content: space-between;
    margin:0 0 10px 0;
}
.p-product-option a{
    color:var(--gray-500);
}
.p-product-option a:hover{
    color:var(--light-blue-600);
}
.p-product-option:last-child{
    margin: 0;
}
.p-product-option-checkbox{

}
.p-product-option-checkbox input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    margin: 0;
}
.p-product-option-checkbox-label {
    display: flex;
    align-items: center;
    height:30px;
    position: relative;
    padding:0 0 0 40px;
    font-size:14px;
    font-weight: 400;
    cursor: pointer;
}
.p-product-option-checkbox-label:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 26px;
    height: 26px;
    background: #fff;
    border:1px solid var(--bluegray-200);
    border-radius: 3px;
    transition: .2s;
}

.p-product-option-checkbox input:checked + .p-product-option-checkbox-label:before {
    background: var(--light-blue-600);
    border:1px solid var(--light-blue-600);
}
.p-product-option-checkbox input:checked + .p-product-option-checkbox-label:after {
    content:'\e906';
    font-family: si-solid, serif;
    color:#fff;
    display:flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width:30px;
    height:30px;
    top:0;
    left: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{
    margin:20px 0 0 0;

}
.p-product-attribut-radio{

}
.p-product-attribut-radio-name{
    font-size:14px;
    font-weight: 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 10px 10px 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-buy{
    margin: 0 0 20px 0;
}
.p-product-buy-container{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding:0 0 20px 0;
    border-bottom: 1px solid var(--gray-200);
}
.p-product-buy-container-a{
    width:50%;
}
.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{

}
.p-product-partner-price span{
    font-weight: 500;
}
.p-product-partner-price a{
    color:var(--blue-500);
}
.p-product-buy-container-b{
    width:50%;
}



/*buy*/

.p-product-qty{
   display: none;
}
.p-product-qty-count{
    display: block;
    width:20px;
    border:none;
    background: none;
    outline: none;
    text-align: center;
    font-weight: 600;
}
.p-product-qty-change{
    display: flex;
    justify-content: center;
    align-items: center;
    width:40px;
    height:44px;
    font-size:16px;
    font-weight: 600;
    cursor: pointer;
}
.p-product-qty-change:hover{
    opacity: 0.7;
}
.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;
    margin:0 0 0 10px;
}
.p-product-button-buy:before{

}
.p-product-button-buy:hover{
    background: var(--amber-700);
}
.p-product-button-quickorder{
    display: none;

}
.p-product-button-quickorder:hover{

}
.p-product-button-preorder{
    display: none;
}
.p-product-button-preorder:hover{

}
/*buttons*/
.p-product-buttons{
    display: flex;
    justify-content: space-between;
}

/**/
.p-product-second-controls{
    display: none;
}
/*wishlist*/
.p-product-wishlist{
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0 20px 0 0;
    color: var(--gray-700);
}
.p-product-wishlist:before{
    content: '\e918';
    font-family: si-solid, serif;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 30px;
    color: var(--gray-500);
    font-size: 20px;
    margin:0 5px 0 0;
}
.p-product-wishlist:hover{
    color: var(--gray-900);
}
.p-product-wishlist:hover:before{
    color: var(--gray-700);
}
.p-product-wishlist.in-wishlist{
    color: var(--light-blue-600);
}
.p-product-wishlist.in-wishlist:before{
    color: var(--light-blue-600);
}
/*compare*/
.p-product-compare{
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0 20px 0 0;
    color: var(--gray-700);
}
.p-product-compare:before{
    content: '\e90c';
    font-family: si-solid, serif;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 30px;
    color: var(--gray-500);
    font-size: 20px;
    margin:0 5px 0 0;
}
.p-product-compare:hover{
    color: var(--gray-900);
}
.p-product-compare:hover:before{
    color: var(--gray-700);
}
.p-product-compare.in-wishlist{
    color: var(--light-blue-600);
}
.p-product-compare.in-wishlist:before{
    color: var(--light-blue-600);
}
/*question*/
.p-product-question{
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--gray-700);
}
.p-product-question:before{
    content: '\e920';
    font-family: si-solid, serif;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: var(--gray-500);
    font-size: 20px;
    margin:0 5px 0 0;
}
.p-product-question:hover{
    color: var(--gray-900);
}
.p-product-question:hover:before{
    color: var(--gray-700);
}

/*short-property*/
.p-product-short-property{
    margin: 0 0 20px 0;
    border-bottom: 1px solid var(--gray-100);
}
.p-product-short-property-title{
    display: none;
}
.p-product-short-property-elements{
    display: flex;
    flex-wrap: wrap;
}

.p-product-short-property-element{
    width:33.333333%;
    margin:0 0 20px 0;
}
.p-product-short-property-name{
    color:var(--gray-500);
    margin:0 0 5px 0;
}
.p-product-short-property-values{

}
.p-product-short-property-value{
    font-weight: 600;
}
.p-product-short-property-value a{
    color:var(--light-blue-600);
}
.p-product-short-property-value a:hover{
    color:var(--light-blue-600);
    border-bottom: 1px dashed var(--light-blue-600);
}
.p-product-short-property-more{
    padding:0 0 20px 0;
}
.p-product-short-property-more a{
    color:var(--blue-400);
}
.p-product-short-property-more a:hover{
    color:var(--blue-400);
    border-bottom: 1px dashed var(--blue-400);
}


/*properties*/
.p-product-property{
    margin: 0 0 20px 0;
    padding:30px;
    background: var(--white);
    border-radius: 3px;
    border: 1px solid var(--gray-200);
}
.p-product-property-title{
    font-size:22px;
    margin:0 0 30px 0;
}
.p-product-property-elements{
    display: flex;
    flex-wrap: wrap;
}
.p-product-property-element{
    position: relative;
    width:calc(50% - 25px);
    display: flex;
    justify-content: space-between;
    padding:10px 0;
}
.p-product-property-element:after{
    content: '';
    position: absolute;
    left:0;
    right:0;
    top:50%;
    border-bottom: 1px dashed var(--gray-300);
}
.p-product-property-element:nth-child(odd){
    margin:0 25px 0 0;
}
.p-product-property-element:nth-child(even){
    margin:0 0 0 25px;
}
.p-product-property-name span{
    position: relative;
    z-index: 2;
    background:var(--white);
    padding:0 20px 0 0;
    color:var(--gray-500);
}
.p-product-property-values{
    position: relative;
    z-index: 2;
    background:var(--white);
    display: flex;
    align-items: center;
    padding:0 0 0 20px;
}
.p-product-property-value:after{
    content: ',';
    margin:0 5px 0 0;
}
.p-product-property-value:last-child:after{
    display: none;
}

/*description*/
.p-product-description{
    margin:0 0 50px 0;
}
.p-product-description-title{
    font-size: 28px;
    font-weight: 600;
    line-height: 150%;
}

/*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;
}


/*p-product-cross*/
.p-product-carousel{
    margin:0 0 50px 0;
}
.p-product-owl .owl-stage-outer{
    padding:10px 0;
}
.p-product-owl .owl-prev{
    left:-50px;
}
.p-product-owl .owl-next{
    right:-50px;
}
.p-product-owl .product-preview{
    width:100%;
    margin:0;
}

/*set*/
.p-product-set-container{
    border:2px solid var(--orange-600);
}
/*kits*/
.p-product-kits{
    margin: 0 0 50px 0;
    background: #f7f9fc;
    border-radius: 4px;
    padding: 20px;
}
.p-product-kits-title{
    font-size: 28px;
    font-weight: 600;
    line-height: 150%;
    margin:0 0 20px 0;
}
.p-product-kit-container{
    display: flex;
}
.p-product-kit-main{
    position: relative;
    width:30%;
}
.p-product-kit-main #p-product-second-gallery{
    display: none !important;
}

.p-product-kit-main:after{
    content: '+';
    position: absolute;
    top:50%;
    right:-55px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width:40px;
    height: 40px;
    font-size: 40px;
    border-radius: 20px;
    color:var(--gray-600);
}
.p-product-kit-seconds{
    display: flex;
    width:calc(70% - 50px);
    margin:0 0 0 50px;
}
.p-product-kit-second{
    width:calc(50% - 20px);
    margin:0 0 0 20px;
}
/**/
.p-product-kit-preview{
    box-shadow: 0 0 10px rgb(0 0 0 / 5%);
    background: var(--white);
    border-radius: 3px;
    padding:10px;
    text-align: center;
    transition: .3s;
}
.p-product-kit-preview:hover{
    box-shadow: 0 0 10px rgb(0 0 0 / 15%);
}
.p-product-kit-preview-image{
    margin:0 0 10px 0;
    display: flex;
    justify-content: center;
}
.p-product-kit-preview-title{
    position: relative;
    text-align: center;
    height: 45px;
    overflow: hidden;
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}
.p-product-kit-preview-prices{
    display: flex;
    justify-content: center;
    align-items: baseline;
}
.p-product-kit-preview-price{
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin:0 0 10px 0;
}
.p-product-kit-preview-old-price{
    position: relative;
    font-size: 16px;
    font-weight: 400;
    color: var(--red-600);
    margin:0 0 0 10px;
}
.p-product-kit-preview-old-price:after {
    content: '';
    position: absolute;
    top: 50%;
    display: block;
    width: 100%;
    height: 1px;
    background: var(--red-600);
    transform: rotate(-8deg);
}
.p-product-kit-preview-buy{
    color:var(--black);
    font-weight: 600;
    text-transform: uppercase;
    background: var(--amber-500);
}
.p-product-kit-preview-buy:hover{

}
/*similar*/
.p-product-carousel{
    margin:0 0 50px 0;
}
.p-product-carousel-title{
    font-size: 22px;
    margin: 0 0 10px 0;
}

/**********************************************************************************************************************/
@media (max-width: 960px) {
    .p-product-title-desktop {
        font-size: 18px;
        font-weight: 500;
        line-height: 150%;
        margin: 0 0 20px 0;
    }
    .p-product-main-container-a, .p-product-main-container-b{
        width: 100%;
        padding:10px;
        margin:0 0 30px 0;
    }
    .p-product-buy-container-a{
        width: 100%;
        margin:0 0 10px 0;
    }
    .p-product-buy-container-b{
        width: 100%;
        margin:0 0 10px 0;
    }
    .p-product-button-buy{
        width: 100% !important;
        margin:0;
    }
	.p-product-main-container {
		margin: 0;
	}
	.p-product-buy-container {
		padding: 0 0 0 0;
		border-bottom: none;
	}
	.p-product-buy{
		margin:0;
	}
    /**/
    .p-product-short-property{
        display:none;
    }

    /**/
    .p-product-review{
        padding: 10px;
    }
    .p-product-review-title {
        font-size: 18px;
        margin: 0 0 10px 0;
    }
    .p-product-review-container-a, .p-product-review-container-b{
        width:100%;
        margin:0 0 30px 0;
    }
    .p-product-video-window{
        width:calc(100% - 20px);
        height:400px;
    }

    .p-product-kits-title{
        font-size: 18px;
        text-align: center;
    }
    .p-product-kit-container{
        flex-wrap: wrap;
    }
    .p-product-kit-main{
        width:100%;
        margin:0 0 40px 0;
    }
    .p-product-kit-main:after {
        content: '+';
        position: absolute;
        top:auto;
        bottom: -40px;
        right: 50%;
        transform: translateX(+50%);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-size: 40px;
        border-radius: 20px;
        color: var(--gray-600);
    }
    .p-product-kit-seconds {
        display: block;
        width: 100%;
        margin: 0 0 20px 0;
    }
    .p-product-kit-second {
        width:100%;
        margin:0 0 20px 0;
    }

    .p-product-description-title{
        font-size: 18px;
        text-align: center;
    }
    .p-product-review-title{
        font-size: 18px;
        text-align: center;
        padding:20px 0;
    }
	.p-product-other-model{
		display:block;
	}

	.p-product-other-model a{
		display:block;
		height:40px;
		text-align:center;
		background:var(--blue-500);
		color:#fff;
		font-size:14px;
		font-weight:500;
		border-radius:5px;
		line-height:40px;
		margin:20px 0 0 0;
		
	}
}
/**********************************************************************************************************************/
@media (max-width: 660px) {
    .p-product-video-window{
        height:250px;
    }
}