﻿body {
    padding-top: 0;
}

.search-container {
    display: flex;
    flex-direction: row;
    background-color: #eee;
    padding: 10px;
    justify-content: space-between;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    z-index: 9;
    position: fixed;
    top: 0;
    width: 100%;
}

.logo-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
}

    .logo-box img {
        height: 30px;
    }

.search-box, .search-box:focus {
    display: flex;
    flex-direction: row;
    border-radius: 5px;
    background-color: #fff;
    flex: 4;
    justify-content: flex-start;
    align-items: center;
    color: #aaa;
    outline: none;
    text-decoration: none;
    padding: 5px 2px;
    font-size: 10px;
}

    .search-box i {
        font-size: 24px;
        margin-left: 5px;
        line-height: 1;
        color: #333;
    }

.slider-container {
    margin-bottom: 5px;
    /*height:150px;*/
}
.flickity-page-dots .dot {
    background-color: #333 !important;
   
}
    .slider-container .slide-item img {
        height: 100%;
        width: 100%;
        object-fit: fill;
        border-radius: 10px;
    }

    .slider-container .slide-item {
        width: 100%;
        min-height: 170px;
        margin-right: 10px;
        padding: 0 5px;
    }

.category-container {
    padding: 0 5px;
    margin-bottom: -1px;
    overflow: auto;
}

.cat-item, .cat-item:hover, .cat-item:focus {
    margin: 10px 5px;
    background-color: #00c853;
    border-radius: 20px;
    color: #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 40px;
    line-height: 1;
    width: 150px;
    text-align: center;
    text-decoration: none;
}

.flickity-page-dots {
    bottom: 20px;
    text-align: center;
}

    .flickity-page-dots .dot {
        background-color: #fff;
        opacity: 0.5;
    }

.product-slider-box {
    margin-bottom: 15px;
    margin-top: -10px;
    padding: 0 10px;
}


.product-slider-header {
    padding: 10px 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}


.product-slider-title {
    font-size: 16px;
    color: #7b7c98;
    font-family: ISM;
}

.product-slider-header a {
    color: #0099ff;
    font-size: 11px;
}

.product-item, .product-item:hover, .product-item:focus {
    background-color: #fff;
    width: 170px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    color: #000;
    font-size: 12px;
    display: block;
    outline: none;
    text-decoration: none;
    padding-bottom: 5px;
}

.product-img-box {
    padding: 10px;
    height: 170px;
    text-align: center;
    overflow: hidden;
}

    .product-img-box img {
        height: 100%;
        width: 100%;
        object-fit: contain;
        background-color: #fff;
    }

.product-title {
    height: 45px;
    padding-left: 10px;
    padding-right: 10px;
    display: block;
}

.price-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    margin-top: 10px;
}

.off-box:not(:empty) {
    flex: 1;
    padding: 0 10px;
    border-radius: 20px;
    height: 16px;
    background-color: #ff1744;
    color: #fff;
    text-align: center;
}

.price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    height: 30px;
    margin-bottom: 5px;
    flex:4;
}

.product-price {
    padding-right: 10px;
    font-family: ISM;
    font-size: 13px;
}

.product-old-price {
    padding-right: 10px;
    height: 20px;
    color: #999;
    display: block;
    text-decoration: line-through;
    font-size: 11px;
}

.not-available {
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    margin-top: 5px;
    color: red;
    font-size: 14px;
}

.buy-with-call {
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #ff1744;
    border-radius: 20px;
    width: 60%;
    margin: 10px 20% 5px 20%;
    font-size: 11px;
}

    .buy-with-call i {
        font-size: 16px;
        margin-left: 5px;
    }

.btn-basket-add {
    height: 30px;
    width: 30px;
    overflow: hidden;
    float: left;
    border: none;
    background-image: url(../Images/cart-add.png);
    background-size: 100%;
    background-position: center;
    background-color: transparent;
    margin-left: 10px;
    cursor: pointer;
}

#AddToBasketModal .modal-header {
    border: none;
}

#AddToBasketModal .modal-dialog {
    width: 95%;
    margin: 100px auto 0 auto;
}

.basket-product-title {
    text-align: center;
    display: block;
    font-size: 14px;
    margin-bottom: 20px;
    font-family: ISM;
}

.double-value-box {
    text-align: center;
    margin-bottom: 20px;
}

.double-value-item {
    display: inline-block;
    border: 1px solid #ddd;
    padding: 3px 10px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
}

    .double-value-item.selected {
        border: 1px solid #0099ff;
        color: #0099ff;
    }

.add-to-basket-box {
    background-color: #fff;
    height: 40px;
    width: 150px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: auto;
    margin-bottom: 10px;
    justify-content: space-between;
    flex-direction: row;
    display: flex;
    align-items: center;
    font-size: 18px;
}

.btn-change-count, btn-change-count:focus {
    color: #ff1744;
    width: 38px;
    height: 38px;
    border: none !important;
    outline: none !important;
    background: none;
}

.count-error-box {
    height: 20px;
    color: #ff1744;
    text-align: center;
    margin-bottom: 10px;
    font-size: 13px;
    font-family: ISM;
}

.basket-success-msg {
    color: #00aa00;
    display: block;
    text-align: center;
    font-size: 14px;
    margin-bottom: 30px;
}

.ads-container {
    padding: 0 0;
    overflow: hidden;
    margin-top: -5px;
}

    .ads-container .col-xs-12 {
        padding: 0px;
    }

.ads-item {
    /*min-height: 100px;*/
    margin-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
    overflow: hidden;
}

    .ads-item a {
        display: block;
        height: 100%;
    }


    .ads-item img {
        height: 100%;
        width: 100%;
        /*object-fit: cover;*/
        vertical-align: middle;
        border-radius: 10px;
    }






.SpecialOfferRoleBoxContainer {
    background: #e2364a;
    color: white;
    width: 100%;
    padding: 0 0;
    margin: 0 0 10px;
    text-align: center;
    margin-top: -51px;
}

    .SpecialOfferRoleBoxContainer .showAllSpecialOffer {
        border: solid 1px white;
        border-radius: 10px;
        padding: 10px 15px;
        text-align: center;
        margin: 10px 0 0;
        color: white;
        display: inline-block;
    }

        .SpecialOfferRoleBoxContainer .showAllSpecialOffer i {
            vertical-align: middle;
        }

    .SpecialOfferRoleBoxContainer #sliderSpecialOffer .col-lg-2 {
        padding: 5px;
    }

    .SpecialOfferRoleBoxContainer .flickity-prev-next-button.previous {
        margin-left: 15px;
    }

    .SpecialOfferRoleBoxContainer .flickity-prev-next-button.next {
        right: 15px;
    }

    .SpecialOfferRoleBoxContainer .special-offer-timer {
        height: 50px;
        margin-top: 20px;
    }

        .SpecialOfferRoleBoxContainer .special-offer-timer span, .SpecialOfferRoleBoxContainer .special-offer-timer div, .SpecialOfferRoleBoxContainer .special-offer-timer {
            font-size: 11px !important;
        }

    .SpecialOfferRoleBoxContainer .product-box {
        border-radius: 10px;
    }

    .SpecialOfferRoleBoxContainer .product-old-price, .SpecialOfferRoleBoxContainer .product-price {
        text-align: center;
    }



@media (max-width: 992px) {
    .SpecialOfferRoleBoxContainer .special-offer-timer div {
        padding: 3px;
    }

    .SpecialOfferRoleBoxContainer .flickity-prev-next-button.previous {
        left: 0px;
        margin-left: 2px;
    }

    .SpecialOfferRoleBoxContainer .flickity-prev-next-button.next {
        right: 1px;
    }
}


.product-box {
    border: 1px solid #ebebeb;
    width: 100%;
    margin-top: 5px;
    padding-bottom: 15px;
    /*height: 290px;*/
    background-color: #fff;
    border-radius: 0px;
    color: #555;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


    .product-box:hover {
        box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.3);
        transition: 0.3s;
        z-index: 2;
    }


    .product-box .chk-compare-box {
        padding: 0px 5px;
        width: 60px;
        position: absolute;
        display: none;
        color: #333;
        font-size: 12px;
        z-index: 2;
        left: 10px;
    }

        .product-box .chk-compare-box input {
            margin-left: 3px;
            vertical-align: sub;
        }

    .product-box:hover .chk-compare-box {
        display: block;
    }

    .product-box a {
        color: #555;
        outline: none;
        text-decoration: none;
    }

        .product-box a:hover {
            /*color: #ee1c21;*/
        }

.product-img-box {
    width: 100%;
    height: 200px;
    /*border:1px solid #e5e5e5;*/
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
    z-index: 1;
    padding: 5px;
    text-align: center;
    padding-top: 15px;
}

    .product-img-box img {
        height: 100%;
        max-height: 180px;
        object-fit: cover;
        -webkit-transition: all .35s ease-in-out;
        -moz-transition: all .35s ease-in-out;
        -o-transition: all .35s ease-in-out;
        transition: all .35s ease-in-out;
    }

    .product-img-box .img-special {
        position: absolute;
        right: 0;
        top: 0;
        left: auto;
        bottom: auto;
    }

    .product-img-box .img-discount {
        position: absolute;
        right: 0;
        top: 0;
        left: auto;
        bottom: auto;
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }


    .product-img-box .discount-text {
        position: absolute;
        right: 5px;
        top: 25px;
        left: auto;
        bottom: auto;
        color: #fff;
        -moz-transform: rotate(48deg);
        -webkit-transform: rotate(48deg);
        transform: rotate(48deg);
        font-size: 12px;
    }
	 .product-img-box i {
        position: absolute;
        left: 5px;
        top: 5px;
        bottom: auto;
        color: #ff006e;
        font-size: 22px;
    }

.other-covers-box {
    height: 30px;
    margin-bottom: 10px;
}

    .other-covers-box ul {
        text-align: center;
        display: none;
    }

.product-box:hover .other-covers-box ul {
    display: block;
}

.other-covers-box li {
    display: inline-block;
    height: 30px;
    width: 30px;
    margin: 5px;
    border: 1px solid #ddd;
    border-radius: 50%;
    overflow: hidden;
    text-align: center;
}

    .other-covers-box li:hover {
        border: 1px solid #555;
    }

.other-covers-box img {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    vertical-align: middle;
    height: 25px;
    width: 25px;
}

.product-title-box {
    height: 40px;
    overflow: hidden;
    position: relative;
    padding: 0px 5px;
    margin-bottom: 15px;
    text-align: center;
    /*font-size: 14px;*/
    line-height: 22px;
}

.product-price-box {
    text-align: center;
}

    .product-price-box .product-price {
        color: #000;
        height: 20px;
        line-height: 20px;
        padding: 0 5px;
        font-size: 18px;
        text-align: left;
    }

    .product-price-box .product-old-price {
        color: #999;
        height: 20px;
        line-height: 20px;
        text-decoration: line-through;
        padding: 0 5px;
        font-size: 12px;
        margin-bottom: 5px;
        font-weight: normal;
        text-align: left;
    }

        .product-price-box .product-old-price .toman {
            margin-right: 3px;
            font-size: 11px;
        }

        .product-price-box .product-old-price .off {
            margin-right: 3px;
            font-size: 12px;
            text-decoration: none !important;
            background-color: #ff1744;
            display: inline-block;
            color: #fff;
            padding: 0 8px;
            border-radius: 10px;
            letter-spacing: 2px;
            line-height: 20px;
        }

    .product-price-box .product-price .toman {
        margin-right: 3px;
        color: #000;
        font-size: 12px;
        font-weight: normal;
    }

    .product-price-box .newstatus {
        line-height: 45px;
        text-align: center;
        font-size: 16px;
        display: inline-block;
        position: relative;
    }

        .product-price-box .newstatus.unav, .product-price-box .newstatus.stop {
            color: #bbb;
        }

        .product-price-box .newstatus.soon {
            color: #0099ff;
        }

        .product-price-box .newstatus.tel {
            color: #ff1744;
        }

            .product-price-box .newstatus.tel i {
                font-size: 20px;
                vertical-align: middle;
            }

    .product-price-box a {
        color: #39A142;
        float: left;
        height: 20px;
        display: block;
        line-height: 20px;
        padding: 0 5px;
    }

.product-color-box {
    height: 20px;
    overflow: hidden;
    text-align: center;
    margin: auto;
}

    .product-color-box img {
        height: 12px;
        height: 12px;
        border: 1px solid #ddd;
        margin: 0px 2px;
    }

.mobileCatParent {
    padding-bottom: 10px;
}

.carousalCat {
    padding: 0px;
    text-align: center;
    /*border-left: 1px solid white;*/
    color: white;
    height: 40px;
}

.cat-boxs {
    margin: 0 5px;
    background-color: #33b0c6;
    border-radius: 20px;
    color: #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 32px;
    line-height: 1;
    width: 150px;
    text-align: center;
    text-decoration: none;
}

.carousalCat a {
    color: white;
}


.headerContainer {
    background: #33afc6;
    color: #dbf1f5;
    padding: 5px 10px 5px;
    margin-bottom: 10px;
}

    .headerContainer .basket {
        font-size: 25px;
        vertical-align: middle;
    }

#topLogin {
    font-size: 11px;
    padding-top: 5px;
    
}

    #topLogin img {
        vertical-align: middle;
        width:23px;
    }

.footer {
    background: #33afc6;
    border-top-left-radius: 130px;
    border-top-right-radius: 130px;
    height: 100px;
}

    .footer .nemad {
        width: 70px;
        height: 70px;
        /*background: white;*/
        margin-left: 40px;
        margin-top: 20px;
    }

#footercontact {
    font-size: 9px;
    padding: 25px 45px 0 0;
    line-height: 16px;
}

#specialOfferNewContainer {
    background: #ef394e;
    padding: 15px 15px;
    text-align: center;
     margin:0 5px 10px;
     border-radius:10px;
}

#SpecialImageContainer {
    background: #ffffff;
    padding: 15px;
    border-radius: 20px;
    text-align: center;
    margin-left:-5px;
}

    #SpecialImageContainer img {
        width: 100%;
        min-height: 170px;
       
    }

#specialNewText {
    padding-top: 55px;
    margin-right:-10px;
    width:101px;
    height:154px;
}
.BrandContainer {
    padding:15px 0;
}
.BrandContainer img {
    min-height:170px;
}

.link-box {
    padding: 15px;
    list-style: none;
    display:flex;
    align-items:center;
    justify-content:center;
}

    .link-box li {
        margin-bottom: 20px;
    }

        .link-box li a, .link-box li a:focus {
            color: #000;
            outline: none;
            text-decoration: none;
            display: flex;
            justify-content: center;
            flex-direction: row;
            align-items: center;
            width:120px;
            margin:0 5px;
            border-radius:20px;
            background-color:#fff;
            box-shadow:0 1px 5px rgba(0,0,0,.5);
            font-family:ISM;
        }

            .link-box li a i {
                vertical-align: middle;
                font-size: 22px;
                line-height: 1;
            }
    .link-box .fa-app-information-circle {
        color:#0099ff;
    }
    .link-box .fa-app-call {
        color: #0bb753;
    }
            .link-box li a span {
                height: 30px;
                line-height: 30px;
            }