
@font-face {
    font-family: IRANSans_Fa;
    font-style: normal;
    /*font-weight: 500;*/
    src: url('../fonts/IRANSansWeb.eot') format('eot');
    src: url('../fonts/IRANSansWeb.ttf') format('truetype'),
    url('../fonts/IRANSansWeb.woff2') format('woff');
}

 figure {
    margin: 0 0 0 0;
}



.video-player-gallery{
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-player-gallery video {
    border-radius: 30px;
    width: 100%;
}

.img-gallery-shop,
.img-gallery-shop-1{
    /*width: 200px;*/
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.img-gallery-shop img,
.img-gallery-shop-1 img{
    max-height: 100%;
    transition: all .2s ease-in-out;
    object-fit: cover;
}
.img-gallery-shop img:hover,
.img-gallery-shop-1 img:hover{
    transform: scale(1.1);
}

/**************************&&&&&&&&&&&&&&&&&&&&&&&&&&*/
/*tab*/
/**************************&&&&&&&&&&&&&&&&&&&&&&&&&&*/

.wrapper1{
    margin:0 auto;
    outline: none;
}

.tabs1 {
    padding:10px 10px 0 10px;
    background-color: #f0f0f0;
    border-radius:10px 10px 0 0;
    display:flex;
    position:relative;
}
.tabs1:hover{
    background: #f0f0f0;
}
.tabs1:before{
    /*!*content:"";*!*/
    width:10px;
    height:100%;
    position:absolute;
    background-color:#f0f0f0;
    left:0;
    top:0;
    z-index:10;
    border-radius:10px 0 10px 0;

}
.tabs1:after{
    /*!*content:"";*!*/
    width:10px;
    height:100%;
    position:absolute;
    background-color:#f0f0f0;
    right:0;
    top:0;
    z-index:10;
    border-radius:0 10px 0 10px ;

}

.tabs1 button {
    position:relative;
    background-color: #f0f0f0;
    color:#474546;
    border-radius:0 0 10px 10px;
    z-index:10;
    font-weight:500;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 15px 20px;
    font-size: 16px;
    flex-grow:1;
}

.tabs1 button i{
    padding-right:20px;
}
.tab1:first-child.active {
    background: #fff !important;
    border-radius: 10px 0 0 0;
}

.tab1:last-child.active{
    background: #fff !important;
    border-radius: 0 10px 0 0;
}

.tabs1 button.active {
    background-color: #fff;
    border-radius: 10px 10px 0 0;
    z-index:1;
    box-shadow:0 -5px 4px 0 rgba(0,0,0,0.02);
}
.tabs1 button.active:before {
    content: "";
    width: 12px;
    height: 100%;
    position: absolute;
    background-color: #fff;
    left: -12px;
    top: 0;
    z-index: 1;
    border-radius: 10px 0 0 0;
}

.tabs1 button.active:after {
    content: "";
    width: 12px;
    height: 100%;
    position: absolute;
    background-color: #fff;
    right: -12px;
    top: 0;
    z-index: 1;
    border-radius: 0 20px 0 0;
}

.tab_content1 {
    display: none;
    padding: 40px;
    box-shadow: 0 2px 20px 0 rgba(0,0,0,0.1);
    background: #fff;
    margin-right: -2px;
    margin-left: -2px;
}

.content-tab-shop .tab_content1:nth-child(2){
    border-radius: 20px 20px 20px 20px;
}
.content-tab-shop .tab_content1:nth-child(3){
    border-radius: 20px 20px 20px 20px;
}
.content-tab-shop .tab_content1:last-child{
    border-radius: 0 20px 20px 20px;
}

/**************************&&&&&&&&&&&&&&&&&&&&&&&&&&*/
/*tab end*/
/**************************&&&&&&&&&&&&&&&&&&&&&&&&&&*/




/**************************&&&&&&&&&&&&&&&&&&&&&&&&&&*/
/*lightbox*/
/**************************&&&&&&&&&&&&&&&&&&&&&&&&&&*/

.preview-box,.preview-box1{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    height:80vh;
    background: white;
    box-shadow: 0 0 10px 10px rgba(32, 32, 32, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
    z-index: 100;
}
.preview-box.show,
.preview-box1.show1{
    opacity: 1;
    pointer-events: auto;
}

.preview-box .img-box,
.preview-box1 .img-box1{
    width: 100%;
    display: flex;
    position: relative;
    height: 500px;
    align-items: center;
    justify-content: center;
}
.preview-box .img-box img,
.preview-box1 .img-box1 img{
   max-height: 100%;
    object-fit: cover;
    object-position: center;
}
.preview-box .detail,
.preview-box1 .detail1{
    padding: 20px 30px;
    display: flex;
    justify-content: left;
}
.preview-box .detail .iconClose,
.preview-box1 .detail1 .iconClose1{
    font-size: 25px;
    transition: all .2s ease-in-out;
    cursor: pointer;
}
.preview-box .detail span .fa-times,
.preview-box1 .detail1 span .fa-times{
    color: rgb(0, 132, 255);
}

.preview-box .img-box .slide,
.preview-box1 .img-box1 .slide1{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 45px;
    color: rgb(0, 132, 255);
}
.preview-box .img-box .slide.prev,
.preview-box1 .img-box1 .slide1.prev1{
    right: 40px;
    cursor: pointer;
}
.preview-box .img-box .slide.next,
.preview-box1 .img-box1 .slide1.next1{
    left: 40px;
    cursor: pointer;
}
.shadow,
.shadow1{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(12,12,12,0.7);
    display: none;
    z-index: 15;
}
/**************************&&&&&&&&&&&&&&&&&&&&&&&&&&*/
/*lightbox end*/
/**************************&&&&&&&&&&&&&&&&&&&&&&&&&&*/




/*weblog************************************/
/*weblog************************************/
/*weblog************************************/


.icon-default{
    font-size: 28px;
}
.list-contents-shop{
    padding: 0 15px;
}
.list-contents-shop > li{
    display: block;
    float: none;
    margin-left: auto;
    position: relative;
    transition: 0.2s;
    padding: 8px 15px;
    margin-top: 10px;
}

.list-contents-shop li > a{
    color: #000;
    /*display: inline-block;*/
    display: flex;
    vertical-align: middle;
    width: 100%;
    align-items: center;

}

.list-contents-shop  li > a .icon-angle-shop{
    font-size: 14px;
    position: absolute;
    left: 14px;
    top: 17px;

}
.list-contents-shop li:hover{
    background-color: #f5f5f5;
    border-radius: 20px;
}

.post-item-weblogShop{
    background: #fff;
    padding: 20px;
    border-radius: 20px;
}
.img-post-weblogShop{
    /*width: 300px;*/
    height: 180px;
}
.img-post-weblogShop img{
    max-height: 100%;
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
}
.title h2{
    display: inline-block;
    padding: 0;
    margin: 0;
    font-size: 18px;
    color: #666;
    font-weight: bold;
    transition: .2s;
}
.excerpt{
    font-size: 14px;
    color: #777;
    line-height: normal;
    margin-bottom: 15px;
}
.excerpt h2{
    font-size: 14px;
}
.excerpt strong{
    font-weight: normal;
}
.info > ul > li{
    color: #777;
    font-size: 14px;
    margin-right: 2px;
}
.info > ul > li svg{
    margin-left: 4px;
    color: #999;
    width: 0;
    transition: .2s;
    opacity: 0;
    visibility: hidden;
}
.post-item-weblogShop:hover .info > ul > li svg{
    opacity: 1;
    visibility: visible;
    width: 14px;
}


.post-item-weblogShop:hover figure.img-post-weblogShop img {
    filter: brightness(70%)
}


/*weblog end************************************/
/*weblog end************************************/
/*weblog end************************************/



/*responsive**********************************/
/*responsive**********************************/

@media screen and (max-width: 1200px) {
    .preview-box{
        top: 35%;
        height:70vh;
    }
}

/*responsive end**********************************/


/*responsive weblog**********************************/
/*responsive weblog**********************************/

@media screen and (max-width: 768px) {
    .title {
        text-align: center;
        margin-top: 5px;
    }
    .excerpt {
        text-align: center;
    }
    .info{
       padding: 0 15px;
    }
}
@media screen and (max-width: 576px) {
    .info > ul{
       flex-direction: column;
    }
    .info > ul > li:nth-child(2),
    .info > ul > li:nth-child(3){
       margin-top: 10px;
    }
}
@media screen and (max-width: 400px) {
    .info > ul{
       display: flex;
    }

}
/*responsive weblog**********************************/

