/* =================== line-count ===================== */
.line-count-1{
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 1;
}
.line-count-2{
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
}
.line-count-3{
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3;
}
.line-count-4{
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 4;
}
.line-count-5{
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 5;
}
.line-count-6{
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 6;
}
.line-count-7{
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 7;
}
.line-count-8{
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 8;
}
.line-count-9{
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 9;
}
.line-count-10{
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 10;
}
/* =================== End line-count ===================== */



/* =================== Tags ===================== */
.promotion-tag-top-left{
    font-size: 14px;
    padding: 3px 9px;
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
    color: #fff;
    background-color: #343a40;
    display: inline-block;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 3px;
    position: absolute;
    top: 8px;
    left: 8px;
}

.promotion-tag-top-right{
    font-size: 14px;
    padding: 3px 9px;
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
    color: #fff;
    background-color: #ff3008;
    display: inline-block;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 3px;
    position: absolute;
    top: 8px;
    right: 8px;
}

.rating-tag-bottom-right{
    font-size: 14px;
    padding: 3px 9px;
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
    color: #fff;
    background-color: #3ecf8e;
    display: inline-block;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 3px;
    position: absolute;
    bottom: 8px;
    right: 8px;
}

.stock-tag-center-container{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    position: absolute;
    top: 0px;
    left: 0px;
}
.stock-tag-center{
    width: 100%;
    height: auto;
    max-width: 150px;
}
.stock-tag-bottom-right{
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 99;
}


.promotion-tag-top-left{
    display:none;
}
.promotion-tag-top-left.promotion-tag-top-left-active{
    display:block;
}

.promotion-tag-top-right{
    display:none;
}
.promotion-tag-top-right.promotion-tag-top-right-active{
    display:block;
}

.rating-tag-bottom-right{
    display:none;
}
.rating-tag-bottom-right.rating-tag-bottom-right-active{
    display:block;
}

.stock-tag-center-container{
    display:none;
}
.stock-tag-center-container.stock-tag-center-container-active{
    display:block;
}

.stock-tag-center{
    display:none;
}
.stock-tag-center.stock-tag-center-active{
    display:block;
}

.stock-tag-bottom-right{
    display:none;
}
.stock-tag-bottom-right.stock-tag-bottom-right-active{
    display:block;
}




/* ================== End Tags ================= */



/* ================== Popup ================== */

.popup-box-sec{
    width:100vw;
    height:100vh;
    position: fixed;
    top:0px;
    left:0px;
    margin:0px;
    padding:0px;
    backdrop-filter: blur(10px);
    z-index: 999;
}

.popup-box-sec .popup-box-con{
    width:100%;
    height:100%;
    margin:0px;
    padding:0px;
    display:flex;
    align-items: center;
    justify-content: center;
}

.popup-box-sec .popup-box-inner-con{
    width:60%;
    height:auto;
    position: relative;
}

.popup-box-sec .popup-box-content-con{
    width:100%;
    height:auto;
}
.popup-box-sec .popup-box-single-img{
    width:100%;
    height:auto;
}
.popup-box-sec .popup-box-sec-closer{
    position: absolute;
    right: -25px;
    top: -25px;
    font-size: 52px;
    color: red;
    line-height: 52px;
    height: 52px;
    width: 52px;
    cursor:pointer;
    z-index: 9;
}

@media(max-width:768px){
    .popup-box-sec .popup-box-inner-con{
        width:85%;
    }
}

@media(max-width:667px){
    .popup-box-sec .popup-box-inner-con{
        width: auto;
        max-width: 75%;
        height: 70%;
    }

    .popup-box-sec .popup-box-content-con{
        width: 100%;
        height: 100%;
        overflow-x: hidden;
    }
}

@media(max-width:480px){
    .popup-box-sec .popup-box-inner-con {
        width: auto;
        max-width: 80%;
        height: auto;
    }
}


/*Popup Multiple*/

.popup-box-multi-img-content-con{
    width:100%;
    height: auto;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-wrap:wrap;
}
.popup-box-multi-img-content-inner-con{
    height:auto;
    width:30.33%;
    margin:1%;
}
.popup-box-multi-img{
    width:100%;
    height:auto;
}

@media(max-width:768px){
    .popup-box-multi-img-content-inner-con {
        width: 48%;
        margin: 1%;
    }
    .popup-box-sec .popup-box-content-con.popup-box-content-con-multi-img {
        width: 100%;
        height: 80vh;
        overflow: auto;
    }
}

@media(max-width:480px){
    .popup-box-multi-img-content-inner-con {
        width: 99%;
        margin: 1%;
    }
}

/*End Popup Multiple*/




/*Html Element*/

.popup-box-content-con.popup-box-content-con-html-element{
    width:100%;
    height:auto;
    background:white;
    padding: 20px;
}
.popup-box-content-con.popup-box-content-con-html-element .popup-box-html-element-content-con{
    width:100%;
    height:auto;
}

@media(max-width:768px){
    .popup-box-sec .popup-box-content-con {
        max-height: 75vh;
        overflow-x: hidden;
    }
}
@media(min-width:769px){
    .popup-box-sec .popup-box-content-con.popup-box-content-con-html-element {
        max-height: 75vh;
        overflow-x: hidden;
    }
}

/*End Html Element*/



/*Common*/



/*End Common*/


/* ================== End Popup ================== */