
#snackbar{
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #e51818d6;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 16px;
  position: fixed;
  z-index: 11111;
  left: 50%;
  bottom: 80px;
}
#snackbar.success{
  background-color: #059b05;
}
#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 80px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 80px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 80px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 80px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}
/* Header */
.top-header ul li {
    display: inline-block;
    padding-left: 20px;
}
.top-header {
    background: #5eb458;
    min-height: 34px;
    padding-top: 8px;
}
.top-header a {
    color: #fff;
    font-size: 13px;
}
header.main-header .main-menu {
    border-top: 1px solid #cacaca;
    margin-top: 10px;
    border-bottom: inherit;
    background: #e7eaed;
    border-bottom: 1px solid #cacaca;
}


header.main-header .main-menu .list>.list-item>a, header.main-header .main-menu .list>.list-item>span {
    color: #4a4a4a;
    font-size: 13px;
    padding: 11px 8px;
    top: inherit;
    font-weight: bold;
}
a#cart-toggle i.flaticon-shopping-cart-1::before {
    font-size: 25px;
    margin-left: 0px;
}




header.main-header .top-headermenu {
    margin-top: 21px;
}

header.main-header .main-menu .list {
    padding-bottom: 4px;
    padding-top: 4px;
}
header.main-header .main-menu .list .list-item-has-children > a > i {
    font-size: 9px;
}

header.main-header .search-area form.search input {
    border-radius: 15px;
    background-color: transparent;
    border: 2px solid #d5dadd;
}

header.main-header .search-area form.search button > i {
    font-size: 21px;
    color: #fff;
}

header.main-header .search-area form.search button {
    width: 53px;
    border-radius: 15px;
    background-color: #409dee;
}

header.main-header .main-menu .list .list-item-has-children .sub-menu{
      top: 53px;
}
header.main-header .logo-area a img {
    max-width: 190px;
}
header.main-header .logo-area > a >img {
    margin: 0 auto;
    display: table;
}
header.main-header .top-headermenu .user-login > a > i {
    font-size: 20px;
    padding-right: 10px;
}
header.main-header .cart a.btn {
    color: #6f6f6f;
    font-size: 14px;
    background-color: inherit;
    border-radius: inherit;
    position: relative;
}
header.main-header .btn-cart-header-style {
    box-shadow: inherit;
    position: relative;
}
header.main-header .btn-cart-header-style > i {
    font-size: 19px;
    padding-right: 10px;
}
span#cartbadge {
  background-color: #409dee;
  color: #fff;
  border-radius: 50%;
  padding: 1px 8px;
  font-size: 12px;
  position: absolute;
  right: 7px;
  bottom: 11px;

}
header.main-header .main-menu .list .list-item-has-children .sub-menu a{
  font-size: 13px;
}

header.main-header .main-menu .list .list-item.mega-menu>.sub-menu>li>a{
color: #414141;
}


.searchresult {
    position: absolute;
    top: 53px;
    right: 0;
    left: 0;
    width: 92%;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: none;
    z-index: 1200;
    backdrop-filter: blur(2px);
}

.search-section {
    padding: 10px 15px;
    border-bottom: 1px solid #f3f3f3;
}
.search-section:last-child {
    border-bottom: none;
}
.search-section h6 {
    font-size: 13px;
    font-weight: 600;
    color: #139790;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.search-section h6 i {
    font-size: 15px;
    color: #139790;
}

.search-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.search-list li {
    border-radius: 6px;
    transition: background 0.2s ease-in-out;
}
.search-list li:hover {
    background: #f7fdfd;
}
.search-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    color: #333;
    font-size: 13px;
    text-decoration: none;
}

.searchresult img,
.searchresultmobile img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 6px;
    margin-left: 10px;
    flex-shrink: 0;
}

.search-result-title {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    text-align: right;
    line-height: 1.6;
    color: #4a4a4a;
}
.search-result-title span {
    display: inline-block;
    font-size: 12px;
    color: #139790;
    padding-right: 6px;
}
.search-result-title del {
    font-size: 11px;
    color: #999;
    margin-right: 4px;
}

span.no-result-found {
    display: block;
    text-align: center;
    padding: 15px 0;
    color: #999;
    font-size: 13px;
}

.more-results {
    text-align: center;
    padding: 10px 0 12px;
    border-top: 1px solid #f2f2f2;
    background: #fafafa;
}
.more-results a {
    color: #139790;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}
.more-results a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .searchresult {
        width: 96%;
        top: 48px;
        border-radius: 8px;
    }
    .searchresult img,
    .searchresultmobile img {
        width: 50px;
        height: 50px;
    }
    .search-result-title {
        font-size: 12px;
        width: auto;
    }
}
.searchresult .search-section a {
    display: flex;
}
.searchresult .search-section td {
    padding-top: 5px;
    padding-bottom: 5px;
}
.brand-thumb {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #eee;
    padding: 4px;
    margin-left: 12px;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

header.main-header .main-menu .list .list-item.mega-menu .sub-menu li a.main-list-item {
    color: #139790 !important;
    font-size: 14px;
    font-weight: bold;
}
header.main-header .main-menu .list .list-item.mega-menu .sub-menu li a.main-list-item:hover {
    border-bottom: inherit !important;
}
header.main-header .main-menu .list .list-item.mega-menu .sub-menu .sub-menu li a:hover {
    font-weight: normal !important;
}
#cart-toggle .flaticon-shopping-cart-3:before {
    font-size: 25px;
}
div#main-cart .flaticon-shopping-cart-3:before {
  font-size: 70px;
}
/* Header */


/* Cart */
.cart-overview img {
    float: left !important;
    width: 17%;
    padding-right: 2%;
}
.cart-overview .delete-cartitem {
    top: 2px;
    position: absolute;
    right: 2px;
    color: #a00505;
    cursor: pointer;
}
.cart-overview li {
    position: relative;
    margin-bottom: 24px;
}
.cart-overview .description {
    margin-left: inherit !important;
    margin-right: 25px;
    display: inline-block;
    width: auto;
    line-height: 24px;
    color: #000;
}
.cart-overview span {
    font-size: 12px;
    display: block;
}

/*******************************
* MODAL AS LEFT/RIGHT SIDEBAR
* Add "left" or "right" in modal parent div, after class="modal".
* Get free snippets on bootpen.com
*******************************/
    .modal.left .modal-dialog,
    .modal.right .modal-dialog {
        position: fixed;
        margin: auto;
        width: 340px;
        height: 100%;
        -webkit-transform: translate3d(0%, 0, 0);
            -ms-transform: translate3d(0%, 0, 0);
             -o-transform: translate3d(0%, 0, 0);
                transform: translate3d(0%, 0, 0);
    }

    .modal.left .modal-content,
    .modal.right .modal-content {
        height: 100%;
        overflow-y: auto;
    }

    .modal.left .modal-body,
    .modal.right .modal-body {
        padding: 15px 10px 80px;
    }

    .modal.right.fade .modal-dialog{
        right: 0;
        -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
           -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
             -o-transition: opacity 0.3s linear, right 0.3s ease-out;
                transition: opacity 0.3s linear, right 0.3s ease-out;
    }


    .modal.left.fade .modal-dialog{
        left: 0;
        -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
           -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
             -o-transition: opacity 0.3s linear, left 0.3s ease-out;
                transition: opacity 0.3s linear, left 0.3s ease-out;
    }
    .modal-header.modal-header-dralipor {
        border-bottom: 1px solid #cecece;
    }
    .modal-header.modal-header-dralipor button {
        left: 0;
        right: inherit;
        color: #000 !important;
        opacity: 1;
        top: 25px;
    }
    .modal-header.modal-header-dralipor .modal-title {
        font-size: 19px;
        color: #000;
        margin: 0;
        margin-bottom: 16px;
    }
    .emptycart-text i {
        margin: 0 auto;
        display: table;
        font-size: 51px;
        color: #eee;
    }
    .emptycart-text h5 {
        text-align: center;
        margin-top: 14px;
        font-size: 16px;
    }
    .emptycart-text {
        margin-top: 25px;
    }
    .emptycart-text .btn-back-to-shopping {
        margin: 0 auto;
        display: table;
        background-color: #139790;
        color: #fff !important;
    }
    .cart-overview .cart-product-title{
      font-weight: bold;
    }
    .cartmodal-footer {
        width: 100%;
        margin-top: 29px;
        display: inline-block;
    }
    a.btn.modal-checkout-btn {
        float: left;
        width: 45%;
    }
    a.btn.modal-cart-btn.btn-dralipor {
        float: right;
        width: 45%;
    }
    a.btn.modal-cart-btn:hover {
        background-color: #139790;
    }
    div#cart-overview .cart-controls {
        font-size: 14px;
        color: #000;
        font-weight: bold;
    }
/* Cart */

/* Modal-login */
.form-control {
    border-radius: inherit !important;
}
a.forgot-link {
    color: #409dee;
    border-bottom: 1px dashed #409dee;
}
/* Modal-login */

/* Footer */
ul.social-footer-ul li {
    display: inline;
    padding: 12px;
    font-size: 18px;
}
.social-footer .social-footer-ul {
    margin: 0 auto;
    display: table;
}
footer.main-footer .copyright a {
    color: #5cbd76;
    border-bottom: 1px dashed #5cbd76;
}
.trust-logo-footer .logo-bar-footer {
    margin: 21px auto;
    display: table;
}
.trust-logo-footer .logo-bar-footer img {
    width: 90px;
}
.trust-logo-footer {
    background: whitesmoke;
    padding-top: 7px;
    padding-bottom: 7px;
    margin: 29px 0;
}
.footer-top-bar {
    background-color: #5cbd76;
    color: #fff;
}

.footer-top-bar .footer-feature-info li {
    padding: 12px;
    font-size: 13px;
    text-align: center;
    width: 12%;    
}

.flaticon-headphones:before {
    font-size: 40px;
}
.footer-top-bar .footer-feature-info li a {
    color:#fff;
    text-align: center;
}
.footer-top-bar .footer-feature-info {
    justify-content: center;
    display: flex;
}
.footer-top-bar .footer-feature-info li > a> i {
    font-size: 40px;
}
footer.main-footer .footer-widgets .footer-title h4 {
    font-size: 18px;
    color: #5cbd76;
    font-weight: bold;
}

footer.main-footer {
    background: #fbfbfb;
}


.flaticon-shopping-cart-2:before{
    font-size:40px;
}

.footer-contactus i {
    float: right;
    margin-left: 10px;
    font-size: 20px;
}
.footer-contactus i {
    float: right;
    margin-left: 10px;
    font-size: 20px;
    color: #139790;
}
.footer-content > a{
  color: #139790;
}
.footer-content .symbol {
    margin-top: 12px;
}

footer.main-footer .footer-widgets .footer-content ul > li {
    padding-bottom: 6px;
}
footer.main-footer .footer-widgets .footer-content ul > li > a:before {
    font-family: 'Nucleo Outline';
    content: "\ea3a";
    font-size: 8px;
    margin-left: 6px;
}


.about-us-footer > p {
    padding-top: 33px;
}

footer.main-footer .description .symbol a {
    background: inherit !important;
    border: inherit !important;
}

footer.main-footer .back-to-top .icon {
    background-color: #139790;
    line-height: 38px;
    font-size: 14px;
}
footer.main-footer .info {
    border-top: inherit;
    border-bottom: 1px solid #d7dee0;
}
footer.main-footer .back-to-top {
    border-top: inherit;
}
.callDiv > a > i {
    font-size: 25px;
}
.callDiv > a {
    color: #139790;
    font-size: 21px;
    border: 2px solid;
    padding: 6px 40px !important;
}
footer.main-footer .footer-widgets .widget-menu .card-title {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}
footer.main-footer .footer-widgets .widget-menu .footer-menu li::before {
    content: "\f104";
    font-family: 'FontAwesome';
}

footer.main-footer .footer-widgets .widget-menu .footer-menu li {
    font-size: 13px;
}
.footer-widgets {
    margin-top: 40px;
    margin-bottom: 40px;
}
footer.main-footer .info {
    padding-bottom: 40px;
    padding-top: 26px;
}
footer.main-footer .description {
    background: #e8ebeb;
}
ul.footer-feature-info i.flaticon-delivery::before {
    font-size: 40px;
}
ul.footer-feature-info i.flaticon-guarantee::before {
    font-size: 40px;
}
/* Footer */


/* Single Product */
.product-body table td {
    border: 1px solid #dadada;
    text-align: center;
}
.product-body table {
    margin: 0 auto;
}
.product-body table thead {
    background-color: #5cbd76;
    color: #fff;
}
ol.comment-list > li > ul {
    background: #eee;
    padding: 1px 1px;
    min-height: 100px;
}
.add-to-cart .product-add {
    border-top: 1px solid #eee;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.product-addtocart-Box form#add-to-cart {
    display: inline-block;
    width: 100%;
}
.price-product.defualt .price-value {
    width: 100%;
}
.btn-addrocart i.now-ui-icons.shopping_cart-simple {
    padding-left: 12px;
}
.price-value .primary-price {
    float: right;
    margin-right: 10px;
}
.offed-price {
    float: right;
    margin-right: 10px;
}
.product-short-description > div {
    overflow: hidden;
}
.available-product .in-stock-span {
    color: #5cbd76;
    font-weight: bold;
}
button.btn.btn-addrocart.btn-dralipor .flaticon-shopping-cart-3::before {
    padding-left: 10px;
}
.btn-addrocart i {
    font-size: 17px;
    float: right;
}
button.btn-addrocart {
    font-size: 16px;
}

.function-numberproduct {cursor:pointer; }
.numberproduct .minus, .numberproduct .plus {
    width: 33px;
    height: 33px;
    background: #409dee;
    border: 1px solid #409dee;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    color: #fff;
    border-radius: 8px;
}
span.function-numberproduct > i {
    padding-top: 9px;
}
.numberproduct input{
		height:34px;
    width: 70px;
    text-align: center;
    font-size: 17px;
		border:1px solid #ddd;
		border-radius:4px;
    display: inline-block;
    vertical-align: middle;
    background: #fff;
}
/* Chrome, Safari, Edge, Opera */
.numberproduct input::-webkit-outer-spin-button,
.numberproduct input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.numberproduct input[type=number] {
  -moz-appearance: textfield;
}

span.category-seperator:last-child {
    display: none;
}
ul.btn-group-share li {
    display: inline;
}
a.btn-share {
    margin-right: 8px;
}

ul.btn-group-share a.btn-share-twitter {
    background-color: #00acee;
}
ul.btn-group-share a.btn-share-facebook {
    background-color: #3b5998;
}
ul.btn-group-share a.share-btn-instagram
{
  background: #f09433;
background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
color: #fff;
  }
  textarea.form-control {
    border: 1px solid #eee;
}
ul.btn-group-share a.share-btn-whatsapp {
    background-color: #128C7E;
}
ul.btn-group-share a.share-btn-telegram {
    background-color: #0088CC;
}

ul.btn-group-share li a{
  padding: 3px 19px;
  font-size: 12px;
  background-color: transparent;
  color: #fff;
  border-radius: 15px;
}
.price-value del {
    font-size: 14px;
    color: #707070;
}
.salestag span {
    position: absolute;
    background-color: #5cbd76;
    color: #fff;
    font-size: 12px;
    padding: 10px;
    border-radius: 0 19px 19px 19px;
    top: 10px;
    left: 20px;
}

.product-single-img {
    position: relative;
}
.product-single-img {
    position: relative;
    border: 1px solid #eee;
    margin-bottom: 25px;
    margin: 30px;
}
main.single-product .product .gallery-items {
  padding-right: 30px;
}
.product-title h1 {
    margin-bottom: 0;
    width: 100%;
    font-size: 19px !important;
    font-weight: bold;
}
.product-title.default {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}
.product-sku.default p {
    font-weight: bold;
}
button.btn.btn-remider > i {
    font-size: 16px;
}
button.btn.btn-remider {
    font-size: 14px;
}
.description-product {
    background: #fff;
    padding: 45px;
}
.description-product h2 {
    font-size: 25px;
    font-weight: bold;
}
.description-product h1 {
    font-size: 27px;
    font-weight: bold;
}
.description-product h3 {
    font-size: 20px;
    font-weight: bold;
}
.description-product h4 {
    font-size: 20px;
    font-weight: bold;
}
.description-product h5 {
    font-size: 20px;
    font-weight: bold;
}
.description-product p {
    font-size: 13px;
}
.description-product a {
  color: #4059d3;
  border-bottom: 1px dashed #4059d3;
}
.description-product img {
    margin: 0 auto;
    display: table;
}
.product-tags a{
  color: #4059d3;
  border-bottom: 1px dashed #4059d3;
}

span.seperate-sign:last-child {
    display: none;
}

.comments-area ol.comment-list li .comment-body {
    margin-top: 30px;
    padding: 0px 40px 0px 20px;
}
.comments-area ol.comment-list > li {
    padding-right: 44px;
    margin-top: 80px;
}
.comments-area ol.comment-list li img.avatar {
    top: -5px;
    right: -40px;
    width: 60px;
    height: 60px;
    padding: 0;
    display: inherit;
}
.comments-area ol.comment-list > li:first-child {
    margin: 0;
}
.comments-area ol.comment-list > li > ul > li {
    margin-right: 60px;
}
.description-product .form-control {
    background-color: #fafafa;
}
.not-sing-in-form {
    padding: 30px;
    border: 1px solid #eee;
    background: #efefef;
}
.not-sing-in-form a {
  color: #4059d3;
      border-bottom: 1px dashed #4059d3;
}
.product-gallery .product-single-img .zoom-box {
    padding: 40px;
}
/* Single Product */

/* Product */
ul#shop-brands {
    height: 300px;
    overflow: auto;
}
.filter-option.brand-filter-option {
    margin: 0;
    margin-top: 12px;
}

ul#shop-brands > li {
    padding: 5px;
    font-size: 13px;
}
.shop_title_dralipor h1 {
    font-size: 32px;
    margin: 0;
}

.shop_title_dralipor div {
    margin: 0 auto;
    display: table;
    text-align: center;
}

.shop_title_dralipor {
    min-height: 170px;
    padding: 45px 0;
}
.breadcrumb-list {
    padding-left: inherit;
    padding-right: inherit;
}
aside.sidebar-page .ui-input > span {
    position: absolute;
    left: 0;
    top: 0;
    padding: 15px;
    background-color: #4059d3;
    color: #fff;
}
.ui-input-field {
    letter-spacing: inherit;
    border-radius: inherit;
}
.breadcrumb-list li:before {
    content: ">";
}
.out-of-stock-label {
    background-color: #646464;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    -ms-transform: translateX(-22%) translateY(0%) rotate(316deg);
    -webkit-transform: translateX(-22%) translateY(0%) rotate(316deg);
    transform: translateX(-22%) translateY(0%) rotate(316deg);
    -ms-transform-origin: top left;
    -webkit-transform-origin: top right;
    transform-origin: top right;  
}
.product-box-img.out-of-stock img {
    filter: grayscale(1);
}
.out-of-stock-label {
    margin: 0;
    padding: 0;
    color: white;
    padding: 5px 5px;
    font-size: 13px;
    text-align: center;
    line-height: normal;
}
.OfferSlider.owl-carousel.owl-theme.owl-loaded.owl-drag {
    direction: ltr;
}
.product-box {
    direction: rtl !important;
}
.out-of-stock-label::before, .out-of-stock-label::after {
    content: '';
    position: absolute;
    top: 0;
    margin: 0 -1px;
    width: 100%;
    height: 100%;
    background: inherit;
    min-width: 55px
}

.out-of-stock-label::before {
    right: 100%
}

.out-of-stock-label::after {
    left: 100%
}

a.product-box-img.out-of-stock img {
    filter: grayscale(1);
}
.product-box-title {
    margin-top: 0;
    padding: 10px;
}
.product-box .product-box-img {
    padding: 12px;
}
.price-box .price ins {
    font-size: 15px;
    font-style: normal;
    text-decoration: none;
    color: #5cbd76;
}
.price-box .price del {
    font-size: 13px;
    color: #7a7a7a;
}

.price-box .price {
    position: relative;
}
.price-box .price > span {
    color: #5cbd76;
}
main.single-product .product .gallery-items li {
    margin-bottom: 18px;
    display: inline;
    padding-right: 10px;
}
main.single-product .product .gallery-items li img {
    padding: 11px;
    height: 125px;
    width: 125px;
    border: 1px solid #eee;
    cursor: pointer;
}
/* The switch - the box around the slider */
.switch-checkbox {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
}

/* Hide default HTML checkbox */
.switch-checkbox input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 19px;
  width: 19px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #4059d3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #4059d3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


.caret-li::before {
    content: "\f078";
    color: #bcbcbc;
    display: inline-block;
    margin-right: 6px;
    font-family: fontawesome;
    float: left;
    font-size: 11px;
}
/* Rotate the caret/arrow icon when clicked on (using JavaScript) */
.caret-down-li::before {
  transform: rotate(90deg);
}

/* Hide the nested list */
.nested-ul{
  display: none;
}
/* Show the nested list when the user clicks on the caret/arrow (with JavaScript) */
.active-cat{
  display: block;
}
.link-list li a {
    color: #414141 !important;
    font-size: 14px;
}
.link-list li {
    padding-bottom: 13px;
}
.link-list li > ul > li {
    padding-top: 10px;
    padding-right: 10px;
}

.CategoryUl {
    margin-bottom: 10px;
    margin-top: 20px;
    padding-left: 11px;
    padding-right: 11px;
}
.link-list li > ul > li a {
    font-size: 13px;
}
.link-list > li > ul > li > ul {
    margin-top: 10px;
}

.pagination .page-item .page-link {
    border-radius: inherit !important;
    border: 2px solid #eee;
}
.pagination .page-item.active>.page-link, .pagination .page-item.active>.page-link:focus, .pagination .page-item.active>.page-link:hover {
    background-color: #4059d3;
    border-color: #4059d3;
    color: #FFFFFF;
}
.pagination .page-item .page-link:hover, .pagination .page-item .page-link:focus {
    color: inherit;
    background-color: rgba(222, 222, 222, 0.3);
    border: 2px solid #eee;
}
.sorting-div > ul > li {
    color: #fff;
    margin: 2px;
    cursor: pointer;
}
.sorting-div > ul > li > a {
    border-radius: 15px;
    background-color: #409dee;
    color: #fff;
    padding: 3px 9px;
    font-size: 12px;
}
.sorting-div > ul > li:hover > a {
    background-color: #5cbd76;
    color: #fff;
}
.sorting-div > ul > li > a.active {
    background-color: #5cbd76;
    color: #fff;
}
.not-found-product > h3 {
    font-size: 15px;
}
.sidebar-page .box{
  border-radius: 15px;
}
/* Product */


/* Index Page */

.cat-item.item img {
    width: 64px;
    margin: 0 auto;
}
.cat-item.item .cat-title {
    text-align: center;
    font-size: 14px;
    padding-top: 6px;
    color: #fff;
}

.owl-carousel .owl-prev {
    position: absolute;
    right: 40px;
    top: 40%;
    opacity: 0;
    background: inherit !important;
    border: 0 !important;
    border-radius: 0 !important;
    transition: all 0.5s;
    z-index: 100;
}
.owl-carousel .owl-prev:active,.owl-carousel .owl-prev:focus,.owl-carousel .owl-next:active,.owl-carousel .owl-next:focus{
outline:inherit !important;
}
.owl-carousel .owl-next {
    position: absolute;
    left: 40px;
    top: 40%;
    opacity: 0;
    background: inherit !important;
    border: 0 !important;
    border-radius: 0 !important;
    transition: all 0.5s;
    z-index: 100;
}

.owl-carousel .owl-next i {
    font-size: 45px;
    color: #000;
}
.owl-carousel .owl-prev i {
    font-size: 45px;
    color: #000;
}
.productSlider .owl-prev i,.productSlider .owl-next i,.productSlider2 .owl-prev i,.productSlider2 .owl-next i{
  color: #000;
}
.revproductSlider .owl-prev i,.revproductSlider .owl-next i{
  color: #000;
}
.owl-carousel:hover .owl-prev{
  right: 0px;
  opacity: 0.6;
}
.owl-carousel:hover .owl-next{
  left: 0px;
  opacity: 0.6;
}
.BrandSlider figure.product-brand {
    width: 135px;
}
.BrandSlider {
    margin-top: 54px;
}
.cat-item.item > div {
    background-color: #ffffff30;
    width: 140px;
    margin: 0 auto;
    height: 130px;
    overflow: hidden;
    padding: 12px;
}
.categoryslider .owl-nav {
    display: inherit !important;
}
.productSlider .owl-nav ,.productSlider2 .owl-nav {
    display: inherit !important;
}
.revproductSlider .owl-nav {
    display: inherit !important;
}

.BrandSlider .owl-nav {
    display: inherit !important;
}

.OfferSlider .owl-nav {
    display: inherit !important;
}
.BlogSlider .owl-nav {
    display: inherit !important;
}

/* @media (max-width: 520px){

} */
.offer-box-homepage {
    margin-top: 30px;
}
.offer-box-homepage .section-title-dralipor{
  margin-bottom: 24px;
  color: #000;
}
h4.section-title-dralipor {
    text-align: center;
    margin: 60px auto;
    color: #fff;
    z-index: 1;
    font-weight: bold;
}
.section-title-draliporp {
    text-align: center;
    margin: 60px auto;
    color: #000;
    z-index: 1;
    font-weight: bold;
}
.section-title-draliporpp {
    text-align: center;
    margin: 30px auto 0 auto;
    color: #139790;
    z-index: 1;
    font-weight: bold;
    border-bottom: 2px solid #139790;
    padding-bottom: 20px;
}
.category-section {
    background: url(/uploads/backheaders/banner_Local_IntegratedMarketing.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    min-height: 400px;
    position: relative;
}
.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #111111;
    opacity: 0.5;
}
.productSlider .product-box {
    min-height: 354px;
}
.revproductSlider .product-box {
    min-height: 354px;
}

a.more-product {
    margin: 27px auto;
}

.product-box-title {
    min-height: 80px;
}
.product-box{
    height: inherit !important;
    margin: 5px;
     min-height: 354px;
     overflow:hidden;
}
.main-slider .owl-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
}
.main-slider img{
  border-radius: 15px;
}
button:focus,button:active{
  outline: inherit;
}
/* End Index Page */
.btn-dralipor{
  background-color: #5cbd76;
  color: #fff !important;
}
.btn-dralipor:hover,.btn-dralipor:active,.btn-dralipor:focus{
  background-color: #5cbd76;
}
.btn-draliporp{
  background-color: #409dee;
  color: #fff !important;
}
.btn-draliporp:hover,.btn-draliporp:active,.btn-draliporp:focus{
  background-color: #409dee;
}

.btn-draliporoff{
  background-color: #c60d0d;
  color: #fff !important;
}
.btn-draliporoff:hover,.btn-draliporoff:active,.btn-draliporoff:focus{
  background-color: #c60d0d;
}

a.edit-element {
    background-color: #4059d3;
    color: #fff;
    position: fixed;
    left: 19px;
    bottom: 79px;
    padding: 14px 19px;
    border-radius: 50%;
}
.mb10{margin-bottom: 10px;}
.mb20{margin-bottom: 20px;}
.mb30{margin-bottom: 30px;}
.mb40{margin-bottom: 40px;}
.mb50{margin-bottom: 50px;}
.mb60{margin-bottom: 60px;}
.mt10{margin-top: 10px;}
.mt20{margin-top: 20px;}
.mt30{margin-top: 30px;}
.mt40{margin-top: 40px;}
.mt50{margin-top: 50px;}
.mt60{margin-top: 60px;}


.widget-product .card-header .card-title, .brand-slider .card-header .card-title{
  border-bottom:inherit;
  text-align: center;
}
.widget .card-header, .brand-slider .card-header{
  border-bottom: inherit;
}
.widget-product .card-header .card-title span, .brand-slider .card-header .card-title span {
    border-bottom: 3px solid #139790;
    color: #139790;
    font-size: 20px;
}

aside.sidebar a.banner-box > img {
    margin-bottom: 25px;
    border-radius: 15px;
}
aside.sidebar a.banner-box:last-child > img {
    margin-bottom: inherit;
}
.btn-neutral.active, .btn-neutral:active, .btn-neutral:active:focus, .btn-neutral:active:hover, .btn-neutral.active:focus, .btn-neutral.active:hover, .show>.btn-neutral.dropdown-toggle, .show>.btn-neutral.dropdown-toggle:focus, .show>.btn-neutral.dropdown-toggle:hover {
    color: #139790;
}
.btn-primary {
    background-color: #4059d3;
    color: #FFFFFF;
}
.btn-primary:hover,.btn-primary:focus,.btn-primary:active {
    background-color: #4059d3;
}
/* Page Styles */
.dralipor-pagebody {
    background: #fff;
    padding: 30px;
}

.contact-icon h6 {
    padding-right: 26px;
}
.contact-icon i {
    font-size: 20px;
    position: absolute;
}
.contact-right > ul > li {
    margin-bottom: 40px;
}
.contact-icon {
    font-weight: bold;
    font-size: 15px;
}
@media (min-width: 768px){
    .hidden-mird{
        display:none;
    }
  .offset-md-2 {
      margin-right: 16.666667%;
      margin-left: inherit;
  }
.offset-md-4 {
    margin-left: inherit;
    margin-right: 33.333333%;
  }
  .offset-md-3 {
      margin-left: inherit;
      margin-right: 25%;
  }

 
}
 .default.sorting-div.shopping-sort-div label {
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    top: 7px;
}

.default.sorting-div.shopping-sort-div select {
    width: 15%;
    background: #fff;
    border-radius: 16px !important;
    margin-right: 10px;
}

.default.sorting-div.shopping-sort-div {
    display: flex;
    padding: 10px;
}
@media only screen and (max-width: 768px) {
    .footer-top-bar .footer-feature-info li {
        width: 20% !important;
    } 
    .hidden-mirx{
        display:none;
    }
.default.sorting-div.shopping-sort-div select{
    width:40%;
    font-size: 11px !important;
}      
.offer-box-header .more-product{
    left: 0px !important;
    top: -16px !important;
}

.product-box-header .more-product{
    left: 0px !important;
    top: -16px !important;
}


}
.faq-section .card-header {
    padding: 6px 15px;
    background-color: #409dee;
    border-bottom: 1px solid rgba(0,0,0,.125);
}
.faq-section button {
    color: #fff !important;
    font-size: 14px;
}
.faq-section .card{
  margin-bottom: 10px;
}
.error-section {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 80px;
    background-color: #fff;
}
.error-section h1 {
    color: #4059d3;
    font-size: 140px;
}
/* End Page Style */

/* Profile  */
.profile-box {
    padding: 15px;
}
.profile-box-avator > a> img {
    margin: 0 auto;
    display: table;
    width: 100px;
}

.profile-box-content {
    margin: 0 auto;
    display: table;
    text-align: center;
}
ul.profile-menu-items > li {
    text-align: center;
    margin-bottom: 11px;
}
ul.profile-menu-items > li > a > span {
    margin-left: 6px;
}
ul.profile-menu-items > li {
    text-align: revert;
    margin-bottom: 11px;
    position: relative;
    padding: 4px 40px;
}
ul.profile-menu-items > li > span.unread-msg {
    background-color: #139790;
    color: #fff;
    padding: 0px 9px;
    border-radius: 50%;
    font-size: 12px;
    position: absolute;
    margin-right: 7px;
}
.profile-sidebar {
    padding: 0 14px;
}

ul.profile-menu-items > li.active-profile {
    background-color: #5cbd76;
    border-radius: 36px;
}
ul.profile-menu-items > li.active-profile > a {
    color: #fff;
}
ul.profile-menu-items > li:hover {
    background-color: #5cbd76;
    border-radius: 36px;
}
ul.profile-menu-items > li:hover > a{
    color:#fff;
}
.profile-box-content h4 {
    margin: 6px;
    font-size: 19px;
    color: #4059d3;
    font-weight: bold;
}
.profile-content table th {
    background-color: #dfdfdf !important;
}
.profile-content table td, .profile-content table td th {
    border: 1px solid #eee !important;
}
a.link-spoiler-edit {
    color: #4059d3;
    border-bottom: 1px dashed #4059d3;
}
/* End Profile */

/* Mobile Menu */
.cart-mobile-widget {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background-color: #409dee;
    color: #fff;
    padding: 3px 13px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 100;
    width: 56px;
    height: 56px;
}
.cart-mobile-widget div {
    position: relative;
}
.cart-mobile-widget.cart-toggle i::before {
    font-size: 30px;
}
.cart-mobile-widget.cart-toggle span.cartbadge {
    background-color: #f35f5b;
    color: #ffffff;
    border-radius: 50%;
    font-size: 11px;
    padding: 2px 7px;
    position: absolute;
    top: -2px;
    right: -18px;
}

nav.navbar.header-responsive {
    background-color: #139790;
}
.menu-mobile-trigger {
    color: #fff;
    font-size: 26px;
    padding-right: 20px;
    padding-top: 12px;
    float: right;
    cursor: pointer;
}
.login-mobile-trigger-digi {
    float: right;

    color: #fff;
    padding: 20px;
    margin-right: 20px;
    cursor: pointer;
}
.login-mobile-trigger-digi i {
    font-size: 20px;
}
.login-mobile-trigger-digi:hover {
    color: #fff;
}
nav.fixed-top.navbar-mobile-bar {
    background-color: #5cbd76;
    display: none;
}
nav.fixed-top.navbar-mobile-bar .navbar-brand > img {
    height: inherit !important;
    width: 131px;
}
nav.navbar-mobile-bar .navbar-mobile-search .search-bar-mobile {
    margin: auto;
    width: 75%;
    padding-bottom: 10px;
}
nav.navbar-mobile-bar .navbar-mobile-search .search-bar-mobile form.search{
  position: relative;
}
nav.navbar-mobile-bar .navbar-mobile-search .search-bar-mobile form.search input {
    border-radius: inherit;
    background-color: transparent;
    border: 2px solid #d5dadd;
}
nav.navbar-mobile-bar .navbar-mobile-search .search-bar-mobile form.search input {
    width: 100%;
    height: 100%;
    padding: 10px 10px 9px;
    line-height: 1.833;
    font-family: iranyekan;
    font-weight: 300;
    font-size: 12px;
    font-size: .857rem;
    background-color: #eceff1;
    border: 1px solid #d5dadd;
    color: #474747;
    outline: none;
}

nav.navbar-mobile-bar .navbar-mobile-search .search-bar-mobile form.search button {
    width: 53px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border: none;
    border-radius: inherit;
    background-color: #409dee;
    cursor: pointer;
    outline: none;
}
nav.navbar-mobile-bar .navbar-mobile-search .search-bar-mobile form.search button i {
    color: #fff;
}
h4.emptycart {
    text-align: center;
    font-size: 18px;
    color: #898989;
    width: 100%;
}
.alert .close {
    float: left;
}
a.btn.btn-success.return-to-shop {
    margin: 0 auto;
    display: table;
}
div#main-cart {
    padding-top: 50px;
    padding-bottom: 40px;
}
h4.emptycart i::before {
    font-size: 76px;
    color: #898989;
}
@media only screen and (max-width: 1076px) {
  .cart-mobile-widget{
    display: inherit;
  }
  nav.fixed-top.navbar-mobile-bar {
    display: inherit;
  }
  
}
.row.navbar-mobile .navbar-brand img {
    height: 51px;
    position: absolute;
    left: 20px;
}
.row.navbar-mobile {
    position: relative;
    min-height: 70px;
}

.searchresultmobile {
    background: #fffffffc;
    border: 1px solid #eee;
    box-shadow: 1px 1px 1px #e5e5e5;
    z-index: +1200;
    width: 75%;
    margin: 0 auto;
    display: none;
    overflow: hidden;
    position: absolute;
    top: 155px;
}

.searchresultmobile img {
    float: right;
    width: 55px;
    margin-left: 10px;
}

.searchresultmobile a {
    font-weight: normal;
    display: inline;
    color: #4a4a4a;
    margin-left: 10px;
}

.searchresultmobile img {
    display: inherit !important;
    float: right;
    width: 55px;
    margin-left: 10px;
}
#headermobile .caret-li::before {
    content: "\e07b";
    color: #6c6c6c;
    font-family: 'Simple-Line-Icons';
    font-size: 19px;
    padding-left: 14px;
}
/* Mobile Menu */


/* Cart & Chechout */
.cart-table td {
    text-align: center;
    vertical-align: middle;
    border: 1px solid #eee;
}
.cart-table th {
    text-align: center;
    vertical-align: middle;
    border: 1px solid #eee;
}
.cart-footer-table {
    background-color: #f1f1f1;
}
.cart-footer-table {
    background-color: #f1f1f1;
    color: #4059d3;
    font-weight: bold;
}
td.total-show h2 {
    font-size: 23px;
}
div#sendagainLink {
    cursor: pointer;
    margin-bottom: 20px;
}
.sentauthBox {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
    color: #4059d3;
}
.auth-mobile-number h4,.auth-mobile-number p{
  text-align: center;
}
/* Chrome, Safari, Edge, Opera */
.checkMobileNUmber::-webkit-outer-spin-button,
.checkMobileNUmber::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.checkMobileNUmber[type=number] {
  -moz-appearance: textfield;
}

.registerBox .flaticon-user-profile::before {
    font-size: 63px;
}
/*.registerBox i {*/
/*    margin: 54px auto;*/
/*    display: table;*/
/*    border: 1px solid #d9d9d9;*/
/*    padding: 32px 59px;*/
/*    border-radius: 15px;*/
/*}*/


.form-group.passwordBox i {
    position: absolute;
    left: 15px;
    top: 12px;
}
.registerBox {
    text-align: center;
    min-height: 611px;
}
.authenticate-mobile-box .col-md-6 {
    background: #fff;
    padding: 25px;
}
.checkmobile-box .flaticon-chat-comment-oval-speech-bubble-with-text-lines::before {
    font-size: 90px;
}
.checkmobile-box i {
    margin: 39px auto;
    display: table;
}
input.form-control.checkMobileNUmber {
    font-size: 37px;
    border: none;
    color: dimgrey;
    letter-spacing: 20px;
    padding: 0;
    margin: 0 auto;
    border: 1px solid #5d5d5d;
    text-align: center;
}
div#sendagainLink span {
    border-bottom: 1px dashed #409dee;
    color: #409dee;
}
.checkout-details {
    background-color: #5cbd76;
    padding: 46px;
    color: #fff;
}
.checkout-details h4 {
    font-size: 19px;
}
.alert-dismissible .close {
    top: 10px;
    left: 0;
    right: inherit;
}
div#add-address-box > div.alert {
    background: #f8cc7b;
}
div#add-address-box label {
    color: #4b4b4b;
    padding: 12px;
    font-size: 14px;
    margin-bottom: 10px;
}
.address-Box h6 {
    font-size: 21px;
    color: #28a745;
    font-weight: bold;
}
.add-address-box {
    margin-top: 68px;
}
div#add-address-box > div {
    width: 100%;
    background-color: #eee;
    margin-bottom: 11px;
    position: relative;
}
label.radio-address-label:before {
    content: "\f11a";
    font-family: 'Flaticon';
    padding-left: 17px;
    font-size: 22px;
    padding-right: 17px;
}
span.delete-address-icon {
    position: absolute;
    top: 17px;
    bottom: 0;
    left: 32px;
    font-size: 23px;
    cursor: pointer;
}
select {
    font-size: 13px !important;
    padding: 7px !important;
}
.copuntrigger{
  color: #4059d3;
  border-bottom: 1px dashed #4059d3;
  cursor: pointer;
}

.coupon-box {
    background-color: #f1f1f1;
    padding: 22px 20px;
}
.coupon-box .form-control {
    background-color: #fff;
}
button#submit-trigger {
    font-size: 16px;
}
/* End Cart & Checkout */
.login-logo i {
    margin: 18px auto;
    display: table;
    font-size: 56px;
    border: 1px solid #2c2c2c;
    padding: 60px;
    border-radius: 50%;
}
@media (min-width: 576px) {
    .container {
        max-width: 85%;
    }
}


.registerBox {
    margin-top: 60px;
    margin-bottom: 60px;
    background: #fff;
    padding: 53px;
}
section.breadcrumb-section {
    background: #e2e7e3;
    margin-bottom: 40px;
    color: #282828;
}
section.breadcrumb-section h1 {
    text-align: right;
    padding-top: 24px;
    font-size: 33px;
    margin-bottom: 5px;
}
section.breadcrumb-section .breadcrumb{
  background-color:inherit !important;
  margin-bottom: 5px;
}
.breadcrumb-item+.breadcrumb-item{
  padding-right: .5rem !important;
  padding-left: inherit !important;
}
.breadcrumb-item+.breadcrumb-item::before{
  padding-right: .5rem !important;
  padding-left: inherit !important;
}
.blog-sidebar {
    background-color: #fff;
    padding: 20px;
    overflow: hidden;
}
.blog-sidebar h4 {
    font-weight: bold;
    font-size: 15px;
    border-bottom: 2px solid;
    padding-bottom: 10px;
}
.blog-sidebar input {
    border-radius: 15px !important;
}
ul.recent-blog img {
    width: 99px;
    padding-left: 10px;
}
ul.recent-blog li{
  margin-bottom: 10px;
}
p.popular-postdate {
    font-size: 12px;
    background-color: #409dee;
    float: right;
    color: #fff;
    padding: 1px 5px;
    border-radius: 15px;
}
.blog-box {
    background: #fff;
    min-height: 365px;
    position: relative;
}
.blog-box .blog-image{
  position: relative;
}
.blog-box .blog-date {
    position: absolute;
    left: 0;
    color: #fff;
    background: #409dee;
    padding: 11px 8px;
    bottom: 0;
    border-radius: 0 0 15px 0;
    font-size: 12px;
}
.blog-box > .blog-descr {
    padding: 0 16px;
    padding-bottom: 20px;
}
.blog-box h4 {
    font-size: 18px;
    color: #000;
    margin: 15px 0;
}
.blog-box .post-social li {
    display: inline;
    padding-right: 10px;
    font-size: 12px;
}
.blog-box .post-social li:first-child {
    padding-right: inherit;
}
.blog-box > .blog-descr > p {
    font-size: 13px;
}
.blog-detail-page .blog-detail {
    background: #fff;
    padding: 25px;
}
.blog-detail-page .blog-detail h3 {
    margin-top: 22px;
}
ul.post-social > li {
    display: inline;
    padding-right: 23px;
    font-size: 12px;
}
ul.post-social > li:first-child {
    padding-right: inherit;
}
.blog-detail ul.post-social {
    background-color: #eee;
    padding: 10px;
}
ul.post-social .flaticon-user::before{
  font-size:14px;
}
ul.post-social .flaticon-chat-oval-speech-bubbles-symbol::before{
  font-size:14px;
}
.entry__tags a {
    color: #5cbd76;
    border-bottom: 1px dashed #5cbd76;
    font-size: 12px;
}
.entry__tags a::after {
    content: "،";
    padding-right: 2px;
}
.entry__tags a:last-child::after {
    display: none;
}

h3.comment-blog-title {
    font-size: 16px;
}
.row.blog-submit-comment {
    background: #fff;
    padding: 10px;
}
.form-control:focus {
    border: 1px solid #4d4d4d;
}
ul.comment-section > li > div > img {
    width: 50px;
    border-radius: 50%;
    float: right;
}
ul.comment-section > li > div.media > div {
    background: #ffffffd4;
    margin-right: 10px;
    border-radius: 15px;
    padding: 10px;
}
ul.comment-section > li > div.media > div > h6 > span {
    font-size: 12px;
    font-weight: normal;
}
ul.comment-section > li > div.media > div > div.reply-comment {
    padding: 10px;
    background: #f1f1f1;
    border-radius: 15px;
}
ul.comment-section > li > div.media > div > div.reply-comment > h6 > span{
  font-size: 12px;
  font-weight: normal;
}

.row.blog-not-found {
    font-size: 11px;
}
ul.blog-categories > li {
    padding-right: 10px;
    padding-bottom: 10px;
}


form.contact-form input, form.contact-form textarea{
    border-radius: 15px !important;
    margin-bottom: 10px;
}
.mmt40{
  margin-top: -40px;
}

.productSlider.owl-carousel .owl-item img,.productSlider2.owl-carousel .owl-item img{
  width: inherit !important;
}
.revproductSlider.owl-carousel .owl-item img{
  width: inherit !important;
}

.revproductSlider.owl-carousel.owl-loaded{
    direction:ltr;
}
.OfferSlider.owl-carousel .owl-item img{
  width: inherit !important;
}

.OfferSlider .salestag span {
    background-color: #c60d0d;
    font-size: 18px;
}
.offer-box-homepage .GoldOfferCol {
    padding: 0 40px;
    margin: 0px;
    border-radius: 15px;
    background: #fff;
    padding-bottom: 30px;
}
.offer-box-homepage .product-box {
    border: 1px solid #e1e1e1;
    border-radius: 15px;
    overflow: hidden;
}
.offer-box-homepage .offer-box-header {
    width: 100%;
    margin-top: 25px;
    position: relative;
    margin-bottom: 44px;
}
.offer-box-homepage .section-title-dralipor {
    color: #000;
    margin: 0;
    text-align: right;
}
.offer-box-header .more-product {
    position: absolute;
    left: 0;
    margin: 0;
    top: 11px;
    color: #5cbd76;
    border-bottom: 1px dashed #5cbd76;
}

.product-container {
    margin-top: 30px;
}
.product-container .row {
    padding: 0 40px;
    margin: 0px;
    border-radius: 15px;
    background: #fff;
    padding-bottom: 30px;
}

.product-container .product-box {
    border: 1px solid #e1e1e1;
    border-radius: 15px;
    overflow: hidden;
}
.product-container .offer-box-header {
    width: 100%;
    margin-top: 25px;
    position: relative;
    margin-bottom: 44px;
}
.product-container .section-title-dralipor {
    color: #3c9cee;
    margin: 0;
    text-align: right;
    border-right: 4px solid #5cbd76;
    padding-right: 10px;
}
.product-container .product-box-header {
    width: 100%;
    margin-top: 25px;
    position: relative;
    margin-bottom: 44px;
}
.product-container .more-product {
    position: absolute;
    left: 0;
    margin: 0;
    top: 11px;
    color: #5cbd76;
    border-bottom: 1px dashed #5cbd76;
}
a.banner-box img {
    border-radius: 15px;
}
.alert-dismissible {
    padding-right: 20px !important;
}
.blog-edition .blog-short-descr{
    font-size:12px;
    margin-top:20px;
}
.blog-edition a.product-box-img {
    height: 300px;
}
.blog-edition .product-box-title a {
    font-weight: bold;
    color: #535353;
    font-size: 17px;
}
.blog-date-span {
    font-size: 15px;
    position: absolute;
    top: 34px;
    left: 12px;
    background: #409dee;
    color: #fff;
    padding: 4px 8px;
}
.productBox-Contnet p {
    font-size: 13px;
    line-height: 28px;
}
.product-directory li span {
    font-weight: bold;
}
.productBox-Contnet {
    background-color: #fff;
    margin-bottom: 30px;
}
.productBox-Contnet .inner{
     padding: 20px;
}
.productBox-Contnet .header {
    padding: 11px 8px;
    color: #fff;
    background-color: #5cbd76;
}   
.productBox-Contnet .flex-column.nav-pills {
    background: #f5f5f5;
    font-size: 15px;
}
.productBox-Contnet .flex-column.nav-pills > a {
    text-align: center;
}
.productBox-Contnet .header h4 {
    padding: 0;
    margin: 0;
    font-size: 18px;
}

.productBox-Contnet .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: #409dee;
}

main.single-product .product {
    border-radius: 15px;
}
.productBox-Contnet {
    border-radius: 15px;
}
.productBox-Contnet .header {
    border-radius: 15px;
}
.productBox-Contnet .header {
    border-radius: 15px 15px 0 0;
}
button.btn.btn-addrocart.btn-dralipor:hover {
    border: 1px solid #5cbd76;
    background: transparent;
    color: #5cbd76 !important;
}

.btn:hover, .navbar .navbar-nav>a.btn:hover {
    box-shadow: inherit !important;
}


h4.product-rate-title {
    font-size: 13px;
}
.rating > label:before {
    margin: 5px;
    font-size: 1.25em;
    font-family: 'FontAwesome';
    display: inline-block;
    content: "\f005";
}
.rating > label {
    color: #ddd;
    float: right;
    direction: ltr;
}
.rating > input {
    display: none;
}
.rating > label {
    color: #ddd;
    float: right;
    direction: ltr;
}
.rating > input:checked ~ label, .rating:not(:checked) > label:hover, .rating:not(:checked) > label:hover ~ label {
    color: #FFD700;
}
.productBox-Contnet ul li {
    line-height: 30px;
}
.mostsale-col-mega > h3 {
    border-radius: 15px;
    font-size: 11px;
    padding: 5px 10px;
    background-color: #5eb458;
    color: #fff;
    margin-bottom: 10px;
}
.mega-most-item img {
    width: 70px;
    float: right;
    padding-left: 10px;
}

.mostsales-items-megamenu {
    border: 1px solid #eee;
    margin-bottom: 10px;
    min-height: 67px;
}

li.list-item.mostsale-col-mega {
    width: 20% !important;
}
.mega-most-item p {
    font-size: 12px;
    font-weight:bold;
}
.OfferSection {
    width: 100%;
}
.OfferSection .nav-pills {
    margin-bottom: 45px !important;
}
.OfferSection .nav-pills .nav-item .nav-link{
    padding: 13px;
    padding-top: 18px;
}

.OfferSection .nav-pills .nav-item .nav-link {
    background-color: #e3c63e;
    color: #fff;
}

.OfferSection .nav-pills .nav-item .nav-link.active{
    background-color: #409dee;
}

.OffersectionContent .tab-pane .offerdescr-col{
    float:right;
    width:48%;    
}

.OffersectionContent .tab-pane .offerimage{
    float:right;
    width:48%;
}
.OfferSection .OffersectionContent .tab-pane {
    border: 2px solid #ada589;
    min-height: 350px;
    padding: 30px;
    border-radius: 15px;
    overflow:hidden;
}

.offer-price-Sec {
    margin-bottom: 20px;
    margin-top: 24px;
}

.offer-price-Sec .salesprice-offer {
    background-color: #e3c63e;
    color: #fff;
    padding: 0px 17px;
    width: 130px;
    margin: 0 auto;
    margin-bottom: 8px;    
}

.offer-price-Sec .price-offer {
    background-color: #eee;
    text-decoration: line-through;
    padding: 0px 17px;
    width: 130px;
    margin: 0 auto;

}
.offerdescr-col h3 {
    font-size: 21px;
    color: #e3c63e;
    font-weight: bold;
}

.clock-box .clock {
    margin: 25px auto;
    display: table;
    font-family: 'iranyekan';
}

@media only screen and (max-width: 768px) {
.OffersectionContent .tab-pane .offerdescr-col{
    float:inherit !important;
    width:100%;    
}

.OffersectionContent .tab-pane .offershortDescr{
    display:none;
}

a.banner-box img {
    margin-top: 12px;
}

.OffersectionContent button.btn-addrocart {
    font-size: 11px !important;
    padding: 11px 18px;
}
.login-mobile-trigger-digi {
    padding: 12px;
    margin-right: 24px;
    font-size: 13px;
}

.OffersectionContent .tab-pane .offershortDescr{
    float:inherit !important;
    width:100% !important;
}
.OffersectionContent .tab-pane .offerimage{
    float:inherit !important;
    width:100%;
}

.product-title h1 {
    margin-bottom: 80px;
}
.product-rate {
    margin-top: 39px;
}

}

.offer-box-header .section-title-dralipor {
    font-size: 21px;
    color:#e3c63e;
}
.OffersectionContent {
    overflow: hidden;
}

.OffersectionContent .tab-pane .offerimage img {
    width: 300px;
}
.OffersectionContent .tab-pane .offershortDescr{
    float: right;
    width: 24%;
    background-color: #f8f8f8;
    padding: 10px;
    margin-top: 60px;
    max-height: 217px;
    overflow: hidden;
}
.OffersectionContent .tab-pane .offershortDescr ul li {
    list-style: disc !important;
    margin-right: 22px;
    padding: 0;
    text-align: right;
}

header.main-header .main-menu .list .list-item.mega-menu>.sub-menu{
    width:100% !important;
}

.nv-tabs-headerm>.nav-item>.nav-link.active {
    border: 1px solid #c7c7c7 !important;
    border-radius: inherit !important;
    border-bottom: 1px solid #fff !important;
    background-color: #5eb458;
    color: #fff !important;
    font-weight: bold !important;
}

header.main-header .main-menu .list .list-item.mega-menu-alipor ul.nv-tabs-headerm > li.nav-item {
    width: auto !important;
}

.nav-tab-contentm {
    padding-right: 16px;
}

.tab-content.nav-tab-contentm {
    border-top: 1px solid #c7c7c7;
}
ul.nav.nav-tabs.nv-tabs-headerm {
    padding: 0 !important;
    margin: 0;
}

.nav-tab-contentm>.nav-item>.nav-link{
   border-radius:inherit; 
}
.mega-menu-alipor .mega-tabs-cc {
    width: 80%;
    float: right;
}

.mega-menu-alipor .mostsales-colmega {
    width: 20%;
    float: right;
    padding: 14px;
}
header.main-header .main-menu .list .list-item.mega-menu-alipor .sub-menu li a.main-list-item {
    color: #5eb458 !important;
}

ul.mega-menu-linksm > li {
    width: 100% !important;
}
header.main-header .main-menu .list .list-item.mega-menu .sub-menu li a.main-list-item {
    color: #71ae6d !important;
}
header.main-header .main-menu .list .list-item.mega-menu .sub-menu li a.menu-label-tag {
    color: #71ae6d !important;
    font-size: 14px;
    font-weight: bold;
}

  a.whatsapp-chatm {
      width: 56px;
      height: 56px;
      background: #2db742;
      border-radius: 50%;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      box-shadow: 0px 6px 8px 2px rgb(0 0 0 / 14%);
      -webkit-box-shadow: 0px 6px 8px 2px rgb(0 0 0 / 14%);
      -moz-box-shadow: 0px 6px 8px 2px rgba(0,0,0,0.14);
      position: fixed;
      right: 30px;
      bottom: 20px;
      cursor: pointer;
      z-index: 999;
      color: #fff;
      padding: 3px 13px;
      font-size: 35px;
  }
  a.whatsapp-chatm i {
      color: #fff !important;
      font-weight: normal;
  }
  
  .logo-bar-footer img {
    filter: grayscale(1);
    transition: 0.3s;
}


.logo-bar-footer img:hover {
    filter: grayscale(0);
    transition: 0.3s;
}
.footer-aghayedaroo img {
   
    margin: auto;
    display: table;
     margin-bottom: 15px;
}
footer.main-footer.default .footer-title h4 {
    margin-top: 0;
}
.footer-aghayedaroo {
    text-align: center;
    font-size: 13px;
}
header.main-header .main-menu .list .list-item.mega-menu .sub-menu a:hover {
    color: #409dee;
}


.megacol-most h3 {
    border-radius: 15px;
    font-size: 11px;
    padding: 5px 10px;
    background-color: #5eb458;
    color: #fff;
    margin-bottom: 10px;
}

.megacol-most {
    width: 20%;
    float: right;
}
.tab-content.nav-tab-contentm .tab-pane .row {
    width: 80%;
    float: right;
}
li.list-item.mostsale-col-mega {
    position: absolute;
    left: 10px;
}
header.main-header .main-menu .list .list-item.mega-menu>.sub-menu {
    min-height: 300px;
}
header.main-header .main-menu .list .list-item.mega-menu.mega-menu-col-5 li {
    width: 17.65%;
}
header.main-header .main-menu .list .list-item.mega-menu>.sub-menu.simpleMega {
    padding-left: 220px;
}
.CalltoActionBackground {
    background-image: url(/uploads/general/weird-medicine1.jpg);
    background-color: #f5f5f5;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-top:20px;
    margin-bottom:20px;
}

.CalltoAction {
    margin: 25px auto;
    padding: 20px 25px;
    width: 45%;
    background: #ffffffb3;
    text-align: center;
    border-radius:15px;
}

.registerBox a {
    color: #5cbd76;
    border-bottom: 1px dashed #5cbd76;
}
.progress-steps {
     display: block;
    margin: 30px auto;
}
.progresses {
    position: relative;
    max-width: 90%;
    margin: auto
}

.progresses ul {
    list-style: none;
    padding: 0
}

.progresses ul li {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f0f0f0;
    z-index: 200;
    position: relative
}

.progresses ul li.blue {
    color: #5eb458;
    background-color: #5eb458;
}

.progresses ul li::after {
    position: absolute;
    top: 35px;
    left: -55px;
    font-size: 0.8rem;
    width: 90px
}

#step-1::after {
    content: "سبد خرید";
}

#step-2::after {
    content: "ورود/عضویت";
    left: -35px;
}

#step-3::after {
    content: "پرداخت";
    left: -50px;
    
}
#step-4::after {
    content: "تکمیل";
}
.progress-bar{
     background-color: #409dee;
}
.input-number.cart-number {
    text-align: center;
    font-size: 15px;
}
.progresses .progress {
    height: 0.8rem;
    width: 100%;
    top: 33px;
    position: absolute;
    background-color: #f0f0f0;
    border-radius: 10px
}

.cart-footer-div a {
    color: #5cbd76;
    border-bottom: 1px dashed #5cbd76;
}
.eco-friendly p {
    padding-top: 10px;
    margin-right: 14px;
}
.comp-div {
    margin: 50px auto;
    display: table;
    text-align:center;
}
.comp-div img{
    margin:0 auto;
    display: table;
}
.shopsidemobile .ui-input > span {
    position: absolute;
    left: 0;
    top: 0;
    padding: 15px;
    background-color: #4059d3;
    color: #fff;
}
ul#shop-brandsi {
    height: 200px;
    overflow: auto;
}

.shopsidemobile .box-content {
    background: #eee;
}
ul#shop-brandsi > li {
    padding: 5px;
    font-size: 13px;
}



@media screen and (max-width: 768px){
   .listing-sorting-ul{
    display: flex;
    } 
    
    .footer-top-bar .footer-feature-info li a {
        font-size: 10px;
    }    
}
.filter-mobile {
    position: absolute;
    left: 10px;
    top: 17px;
}

.modal-content .modal-header button {
    left: 27px;
    right: inherit;
}

.vertical-product-hover {
    position: absolute;
    top: 20px;
    right: 20px;
}

.vertical-product-hover .addtowishlist:hover {
    color: white;
    background: #dd3434;
    border-color: #dd3434;
}

.vertical-product-hover .addtowishlist {
    border: 1px solid #787878;
    border-radius: 50%;
    padding: 6px 7px 1px 7px;
    margin-bottom: 6px;
    transition: 0.3s all;
    cursor: pointer;
}


.vertical-product-hover .addtowishlist.active {
    color: white;
    background: #dd3434;
    border-color: #dd3434;    
}

.vertical-product-hover .addtoSalesAlert {
    border: 1px solid #787878;
    border-radius: 50%;
    padding: 6px 7px 1px 7px;
    margin-bottom: 6px;
    transition: 0.3s all;
    cursor: pointer;
}
.vertical-product-hover .addtoSalesAlert:hover {
    color: white;
    background: #5eb458;
    border-color: #5eb458;
}
.vertical-product-hover .addtoSalesAlert.active {
    color: white;
    background: #5eb458;
    border-color: #5eb458;
}
.product-rate-hover span{
    color: #eee;
}
.product-rate-hover > .rating-div > span.checked {
    color: #ffd700;
}

.product-box .product-box-img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: .8s all;
}

.product-box:hover .overlay {
  opacity: 1;
  background: linear-gradient(358deg,#2c80ca78,transparent) !important;
}
.product-box:hover .product-rate-hover{
    opacity: 1;
}
.product-rate-hover {
    position: absolute;
    left: 0;
    bottom: 22px;
    right: 0;
    font-size: 15px;
    color: white;
    z-index: 1;
    transition: .8s all;
    opacity: 0;
}
@media only screen and (max-width: 768px) {
    .top-banner .desktop-ver {
        display:none;
    }
    .CalltoAction {
        width: 79%;
    }
    .product-box-img {
        height: inherit !important;
    }
}

@media only screen and (min-width: 768px) {
    .top-banner .mobile-ver {
        display:none;
    }
}

.owl-theme .owl-dots .owl-dot span {
    margin: 5px 5px;
    background: #fff;
    transition:0.3s all;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #5eb458;
    width: 20px;
}

.blog-detail-page a {
    color: #4059d3;
}




@media (max-width: 1077px){
  main.main, main.cart, main.page-404, main.cart-page, main.search-page, main.single-product, main.profile-user-page {
    margin-top: 0 !important;
   }  
}



@media only screen and (max-width: 768px) {
    nav.fixed-top.navbar-mobile-bar{
        position: inherit;
        display: block;    
    }
    .product-box {
        min-height: 300px;
        border: 1px solid #f7f7f7;
    }
    .productSlider .product-box, .productSlider2 .product-box {
        min-height: 280px;
    }
    .revproductSlider .product-box {
        min-height: 280px;
    }
    
    .vertical-product-hover{
        top: 7px;
        right: 7px;
    }
    .OfferSlider .salestag span {
        font-size: 12px;
    }
    .product-box{
        margin:0;
    }
    .product .product-rate {
        margin: 0 auto;
        display: table;
    }
    .product h6 {
        text-align: center;
    }
    
    .product-container.variable-tabs .nav-item > .nav-link {
        border-radius: inherit !important;
        width: 100% !important;
        margin: 0 !important;
    }    
    .product-container.variable-tabs .nav-item {
        width: 92%;
        margin: 4px auto;
    }

    .variable-tabs.container.product-container .nav-pills {
        margin-bottom: 0;
    }
    .container.product-container.variable-tabs .row{
        padding: 0 12px !important;
    }
}

.row.paginate-row .pagination {
    margin: 22px auto;
}

.similar-product-container .header {
    background-color: #409dee;
}

.banner-box figure {
    width: auto;
    height: auto;
    overflow: hidden;
    margin: 0;
}
.banner-box figure img{
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out; 
	border-radius: 15px;
}


.banner-box:hover figure img {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
	border-radius: 15px;
}

/*.productBox-Contnet .inner ul > li > ul > li {*/
/*    background-color: #f5f5f5;*/
/*    margin-bottom: 5px;*/
/*    padding: 7px;*/
/*}*/


/*.productBox-Contnet .tab-content {*/
/*    background-color: #f5f5f5;*/
/*    padding: 10px;*/
/*    min-height: 300px;*/
/*    border-radius: 0.25rem;*/
/*}*/

/*.productBox-Contnet .flex-column.nav-pills a {*/
/*    border-bottom: 1px solid #e4e4e4;*/
/*}*/

.productBox-Contnet ul li::before {
  content: '\f00c';
  font-family: 'FontAwesome';
  margin-left: 10px;
  color: #1ec62e;
}

/*.sps-content ul li::before {*/
/*    content:'';*/
    
/*}*/
.combination-table table {
    width: 100%;
}
.combination-table table > thead {
  background: #409dee;
  color: #fff;
  text-align: center;
}
.combination-table table{
    text-align:center;
    vertical-align:middle;
}
.combination-table table tbody td {
    padding: 10px !important;
    border: 1px solid #c6c6c6;
}
.productBox-Contnet ul > li > ul > li::before {
  content: '\f00c';
  font-family: 'FontAwesome';
  margin-left: 10px;
  color: #1ec62e;
}

.registerBox.auth-toggle img {
    margin-bottom: 50px;
}


.container.product-container .nav-pills {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 20px;
}
.container.product-container .tab-content {
    width: 100%;
}
.product-container .nav-pills .nav-item .nav-link {
    width: 100px;
    color: #3c9cee;
    background-color: inherit !important;
    box-shadow: inherit;
    border-radius: inherit;
    height: 35px;
    width: 160px;
}

.product-container .nav-pills .nav-item .nav-link.active, .product-container .nav-pills .nav-item .nav-link.active:focus, .product-container .nav-pills .nav-item .nav-link.active:hover {
    background-color: inherit !important;
    box-shadow: inherit;
    color: #5cbd76;
    border-bottom: 3px solid #5cbd76;
    border-radius: 0;
    font-weight: bold;
}
.container.product-container .tab-content .tab-pane {
    width: 100%;
    margin: inherit !important;
    padding: inherit !important;
}

.brand-cards {
    float: right;
    display: flex;
    margin: 14px;
    width: 22%;
  max-height: 160px;
    overflow: hidden;
}
.brand-cards a {
    color: #26c;
    border: 1px solid #26c;
    border-radius: 4px;
    transition: 0.25s ease-in;
    padding: 9px 22px;
    width: 100%;
    text-align: center;
    font-size: 15px;
}
.brand-cards a:hover {
  background-color: #26c;
  color: #fff;
}
.brand-Div {
    margin-top: 60px;
}

@media only screen and (max-width: 500px) {
    .brand-cards {
        width: 40%;
    }
}
input#BrnadInput {
    padding: 14px;
    border-radius: 5px;
    border: 2px solid;
    border-color: #44c98a;
    font-family: inherit;
    background-color: #fff;
    color: #999;
    min-width: 400px;
    margin: 0 auto;
    display: table;
}
.form-group.brand-search-box {
    background: #eee;
    padding: 28px;
}

.product-container.variable-tabs .nav-item > .nav-link.active.show {
    background-color: #71d1eea3 !important;
    border-radius: 20px 20px 0 0;
    color: #000;
    border-bottom: none;
    padding-top: 6px;
}
.product-container.variable-tabs .nav-item > .nav-link {
    background-color: #f5f5f5 !important;
    border-radius: 20px 20px 0 0;
    color: #000;
    border-bottom: none;
    padding-top: 6px;
}

.product-container.variable-tab .nav-pills .nav-item .nav-link {
    height: 40px !important;
}
.product-container.variable-tabs .tab-content > .tab-pane.fade {
    background-color: #a4e2f4;
    border-radius: 15px;
}

.variable-tabs.container.product-container .nav-pills {
    margin-bottom: 0;
}

ul.profile-menu-items > li a {
    font-size: 13px;
}

.auth-users-box img {
    margin: 0 auto;
    display: table;
}
a.backtoPrevPage {
    position: absolute;
    left: 17px;
    font-size: 26px;
    color: #409dee !important;
    border: none !important;
}

.auth-users-box a {
    border-bottom: 1px dashed #4c59d6;
    color: #4c59d6;
}


/* Chrome, Safari, Edge, Opera */
.notarrowNumber::-webkit-outer-spin-button,
.notarrowNumber::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.notarrowNumber[type=number] {
  -moz-appearance: textfield;
}


@media only screen and (max-width: 768px) {
  .product-container .row{
      padding: 0 15px;
  }
    .product-gallery .product-single-img .zoom-box {
        padding: 10px;
    }  
    .hideinMobileBanner{
        display:none;
    }
    .pagination {
        display: contents;
    } 
}


header.main-header .main-menu .list .list-item.mega-menu-alipor ul.nv-tabs-headerm > li.nav-item > .nav-link {
  font-size: 13.5px;
  font-weight: bold;
}

header.main-header .main-menu .list .list-item-has-children .sub-menu a {
  color: #363636;
}



.top-banner img {
  display: block;
  margin: auto;
  height: auto;
  max-height: 100%;
  width: auto;
  max-width: 100%;
}

.category-description-box > .row > div {
    background: #fff;
    margin-top: 25px;
    padding: 29px;
    border-radius: 15px;
}
.container.category-description-box {
    padding: 0 28px;
}

.category-description-box .cat-content.hideContent{
    overflow: hidden;
    height: 18em;
    position: relative;    
    margin-bottom: 29px;
}
.category-description-box .cat-content.showContent{
    height: auto;  
}

.show-more-trigger {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 12px auto;
    display: table;
    color: #2271eb;
    border-bottom: 1px dashed #2271eb;
    cursor: pointer;
}

html {
  scroll-behavior: smooth;
}

.cat-content h2 {
  color: #409dee;
  font-weight: bold;
  font-size: 24px;
}

.cat-content h3 {
  color: #409dee;
  font-weight: bold;
  font-size: 20px;
}

.cat-content a {
    color: #2ca654;
    border-bottom: 1px dashed #2ca654;
}

li.list-item.aghayedaroo-mag-item {
    float: left;
}

li.list-item.aghayedaroo-mag-item a {
    color: #409dee !important;
}

.animated {
  animation-duration: 2.5s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-8px);}
  60% {transform: translateY(-8px);}
}
.bounce {
  animation-name: bounce;
}


.newsletter {
  position: relative;
 }
.newsletter input{
    font-weight: 400;
    height: 47px;
    padding: 6px 16px 6px 6px;
    background: transparent;
    border: 1px solid #e2e0e5;
    color: #545454;
    outline: none;
    border-radius: 14px;
    font-size: 13px;
    width: 100%;
}

.newsletter button {
    position: absolute;
    padding: 8px 23px;
    height: 40px;
    border-radius: 10px;
    border: none;
    background-color: #f2c855;
    font-size: 13px;
    font-weight: 500;
    color: #3a0ca3;
    left: 4px;
    top: 3px;
    transition: all .5s;
}
.newsletter button:hover {
      cursor: pointer;
      border-radius: 70px 10px 70px 10px;
      box-shadow: -10px 0px #e2e0e5;
    
}



@media (max-width: 960px) {

  .subscribe {
        display: block;
        grid-column-start: 1;
        grid-column-end: 3;
    }
  
    .subscribe .newsletter {
      width: 100%;
      max-width: 370px;
    }
    .subscribe .newsletter input {
      width: calc(100% - 22px);
    }

}


.address-change {
    position: absolute;
    left: 31px;
    top: 42%;
    color: #2271eb;
    border-bottom: 2px dashed #2271eb;
    cursor: pointer;
}


.address-box-div .address strong {
    font-size: 15px;
}
.address-box-div h5 {
    font-size: 13px;
    margin-top: 18px;
    margin-bottom: 10px;
}
.address-box-div {
    padding: 15px 58px;
    background-color: #fff;
    border-radius: 15px;
    position: relative;
        margin-bottom: 10px;
        width: 100%;
}
.address-box-div .address p {
    margin-top: 12px;
    font-size: 16px;
    color: #878787;
}

.address-box-div .address strong i {
    padding-left: 12px;
    font-size: 15px;
    font-weight: bold;
}


.addaddress-btn {
    color: #33956d;
    cursor: pointer;
}

label.address-box-div input[type=radio] {
    float: right;
    position: absolute;
    right: 28px;
    top: 0;
    bottom: 0;
}
.checkout-shipping-body .add-address-box {
    margin-top: 20px;
}




.progressbar {
    margin-bottom: 32px;
}
.progressbar li {
  list-style: none;
  display: inline-block;
  width: 19%;
  position: relative;
  text-align: center;
  cursor: pointer;
}

.progressbar li:after {
    content: "";
    position: absolute;
    width: 70%;
    height: 1px;
    background-color: #e4e4e4;
    top: 15px;
    z-index: 0;
    left: -36%;
}
.progressbar li:last-child:after {
  content: none;
}
.progressbar li.active a i {
    color: #5eb458;
}
.progressbar li.active a .progresstitle {
    color: #5eb458;
    font-weight: bold;
}


.progressbar li.pass-active a i ,.progressbar li.pass-active a .progresstitle{
    color: #5eb458;
}
.progressbar li.pass-active::after {
    background-color: #5eb458;
}

.progressbar li > a > i {
    font-size: 25px;
}
  
.progressbar li .progresstitle {
    font-size: 12px;
}

.cartbox-subtotal {
    margin-top: 70px;
}
.no-padding {
    padding: 0 !important;
}

form#checkoutFrom {
    margin-top: 30px;
}
@media (max-width: 992px) {
  .progressbar {
      display: flex;
      flex-wrap: nowrap;
      height: 300px;
      overflow-x: auto;
      width: auto;
  }
}

#goftino_w {
    position: fixed;
    z-index: 2000000002;
    bottom: -300px;
    left: 20px;
    width: 80px;
    height: 80px;
    border: 0;
    color-scheme: none;
}
.goftino-wakeup {
    position: relative;
    animation: goftinoWakeup 0.4s ease 0s 1 normal both;
}

@media only screen and (max-width: 768px) {
    
    .progressbar {
        height: 120px !important;
    }
    
.OfferSection .OffersectionContent .tab-pane {
    padding: 7px;
}    
    
}

.digi-pagebody h3 {
    font-size: 18px;
    font-weight: bold;
    color: #409dee;
}

.digi-pagebody h2 {
    font-size: 20px;
    font-weight: bold;
    color: #409dee;
}

.digi-pagebody a {
    border-bottom:2px dashed #409dee;
    color: #409dee;
}

.digi-pagebody p {
    line-height: 27px;
    text-align: justify;
}
.about-us-images {
    display: flex;
}

.expire-label-singleproduct {
    margin-bottom: 15px;
}
.expire-label-singleproduct span {
    background-color: #409dee;
    color: #fff;
    padding: 6px 9px;
    margin-bottom: 10px;
    border-radius: 0 10px;
    font-size: 12px;
}

span.expire-red {
    background-color: #d02c2c;
}
span.expire-yellow {
    background-color: #dbdb2b;
}

a.banner-box figure {
    margin-bottom: 10px;
    margin-top: 10px;
}
.modal-header.modal-header-dralipor img {
  margin: 30px auto;
  display: table;
}
.modal-header.modal-header-dralipor .close {
  position: absolute;
  top: 16px;
  left: 0;
}
.modal-header.modal-header-dralipor .close i {
  color: #6c6c6c;
}
.mobilemenumodal .modal-body {
  padding: 0 !important;
  background: #eee;
}
.mobilemenumodal .link-list li > ul > li{
    padding-right: inherit;
}
.mobilemenumodal .link-list li a{
    padding-right: 10px;

}

.mobilemenumodal .link-list li > ul {
    background: #dedede;
    margin-top: 15px;
}

.mobilemenumodal .link-list li > ul > li > ul{
    background: #cfcfcf;
}

.mobilemenumodal .link-list li > ul > li > ul > li > ul {
    background: #b9b9b9;
}

.mobilemenumodal ul.link-list.navbar-nav-ul {
    padding-top: 10px;
}
.mobilemenumodal .link-list li > ul > li> div > a {
    padding-right: 20px;
}
.mobilemenumodal .link-list li > ul > li > ul > li > div > a {
    padding-right: 35px;
}

.mobilemenumodal .link-list li > ul > li > ul > li > ul > li > div > a{
    padding-right: 45px;
}

.OfferSection .OffersectionContent{
    background: url(/uploads/general/agh-back-min.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
}

#aghayedaroo-brands .brand-cards img {
    width: 180px;
    margin: 0 auto;
    display: table;
}

h4.cat-front-title {
    font-size: 21px;
    color: #1f1f1f;
}
a.cat-front-item h5 {
    font-size: 13px;
    font-weight: 700;
    line-height: 2.17;
}

.productBox-Contnet h3 {
    font-size: 20px;
    margin-top: 15px;
    color: #409dee;
    font-weight: bold;
}

.productBox-Contnet h2 {
    font-size: 24px;
    margin-top: 15px;
    color: #409dee;
    font-weight: bold;
}
.topalert {
    background-color: #ef4b26;
    min-height: 37px;
    text-align: center;
    color: #fff;
    font-size: 15px;
    padding: 14px 70px;
}
.topalert p {
    padding: 0;
    margin: 0;
}

@media only screen and (max-width: 768px) {
    .topalert{
        padding: 14px 30px;
        
    }
    .topalert p {
    font-size: 12px;
        
    }
}

.comment-product-form .param-title span {
    font-size: 15px;
}
.categorybreadcumb {
    padding: 0 20px;
}
.categorybreadcumb img {
    width: 100px !important;
    height: auto;
    margin: 0 auto;
}
.categorybreadcumb h5 {
    font-size: 12px;
    text-align:center;
}
.catbread-wrapper {
    background-color: #fff;
    padding: 7px;
    border-radius: 15px;
}
.club-credit {
    background-color: #409dee;
    color: #fff;
    text-align: center;
    padding: 18px;
    border-radius: 15px;
}
.product-label-club span {
    background-color: #7c307c;
    color: #fff;
    padding: 6px 9px;
    margin-bottom: 10px;
    border-radius: 0 10px;
    font-size: 12px;
}
.alert {
    margin-top: 10px;
        border-radius: 30px;
            padding-left: 55px !important;
}
button.close {
    float: left;
    margin-top: 10px;
}
span.badge.badge-dark {
    background-color: #000;
}

.snappapy-badge {
    margin-top: 13px;
    color: #008efa;
}

.alert.alert-warning {
    color: #000;
}
tr.offtotalpage {
    color: #4059d3;
}

button.search-tracking-btn {
    position: absolute;
    left: 4px;
    top: 0;
    border-radius: 25px;
}

.searchtrackingbox input {
    height: calc(2.25rem + 12px);
    border-radius: 25px !important;
}



.timeline {
	 display: flex;
	 flex-direction: column;
	 width: 50vw;
	 margin: 5% auto;
}
 .timeline__event {
	 background: #fff;
	 margin-bottom: 20px;
	 position: relative;
	 display: flex;
	 margin: 20px 0;
	 border-radius: 8px;
	 box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
}
 .timeline__event__title {
	 font-size: 1.2rem;
	 line-height: 1.4;
	 font-weight: 600;
	 color: #9251ac;
}
 .timeline__event__content {
	 padding: 20px;
}
 .timeline__event__date {
	 color: #f6a4ec;
	 font-size: 1.1rem;
	 font-weight: 600;
	 white-space: nowrap;
}
 .timeline__event__icon {
	 border-radius: 8px 0 0 8px;
	 background: #9251ac;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 flex-basis: 25%;
	 font-size: 2rem;
	 color: #9251ac;
	 padding: 20px;
}
 .timeline__event__icon i {
	 position: absolute;
	 top: 50%;
    right: -73px;
    font-size: 2.0rem;
	 transform: translateY(-50%);
	 z-index: 1;
}
 .timeline__event__description {
	 flex-basis: 60%;
}
 .timeline__event:after {
	 content: "";
	 width: 2px;
	 height: 100%;
	 background: #9251ac;
	 position: absolute;
	 top: 52%;
	 right: -3.5rem;
}
 .timeline__event:before {
	 content: "";
	 width: 5rem;
	 height: 5rem;
	 position: absolute;
	 background: #f6a4ec;
	 border-radius: 100%;
	 right: -6rem;
	 top: 50%;
	 transform: translateY(-50%);
	 border: 2px solid #9251ac;
	     z-index: 1;
}
 .timeline__event--type2:before {
	 background: #87bbfe;
	 border-color: #555ac0;
}
 .timeline__event--type2:after {
	 background: #555ac0;
}
 .timeline__event--type2 .timeline__event__date {
	 color: #87bbfe;
}
 .timeline__event--type2 .timeline__event__icon {
	 background: #555ac0;
	 color: #555ac0;
}
 .timeline__event--type2 .timeline__event__title {
	 color: #555ac0;
}
 .timeline__event--type3:before {
	 background: #aff1b6;
	 border-color: #24b47e;
}
 .timeline__event--type3:after {
	 background: #24b47e;
}
 .timeline__event--type3 .timeline__event__date {
	 color: #aff1b6;
}
 .timeline__event--type3 .timeline__event__icon {
	 background: #24b47e;
	 color: #24b47e;
}
 .timeline__event--type3 .timeline__event__title {
	 color: #24b47e;
}
 .timeline__event:last-child:after {
	 content: none;
}
 @media (max-width: 786px) {
	 .timeline__event {
		 flex-direction: column;
	}
	 .timeline__event__icon {
		 border-radius: 4px 4px 0 0;
	}
.timeline-container {
    margin-right: 35px;
}
}

.tracking-icon i {
    margin: 0 auto;
    display: table;
    font-size: 43px;
    margin-bottom: 20px;
}

.timeline__event.disable-timeline__event .timeline__event__icon {
    background: #9d9d9d;
    color: #c7c7c7;
}
.timeline__event.disable-timeline__event {
    background: #eee;
}
.timeline__event.disable-timeline__event .timeline__event__title{
    color: #6f6f6f;
}
.timeline__event.disable-timeline__event .timeline__event__date{
    color: #c7c7c7;
}
.timeline__event.disable-timeline__event:before{
    background: #eee;
    border: 2px solid #6f6f6f;
}
.check-timeline__event:before{
    content: "\e080";
    font-family: 'Simple-Line-Icons';

}

.timeline-container .alert {
    width: 50%;
    margin: 0 auto;
    display: table;
}
.freeshipping span {
    background-color: #cd326a;
    color: #fff;
    padding: 6px 34px;
    margin-bottom: 10px;
    border-radius: 0 10px;
    font-size: 12px;
}

.freeshipping-productloop span {
    padding: 6px;
    line-height: 31px;
}

.freeshipping-productloop {
    left: 6px;
    position: absolute;
    top: 54px;
    font-size: 11px;
    background: #cd326a;
    color: #fff;
    border-radius: 0 10px;
}
.freeshipping-productloop.homepagefreeship {
    left: 20px;
    border-radius: 0 19px 19px 19px;
    padding: 2px 5px;
}

div#sendagainvotp span {
    color: #409dee;
    cursor: pointer;
    border-bottom: 1px dashed #409dee;
}
div#sendagainLink {
    float: right;
}
div#sendagainvotp {
    float: left;
}
li.order-tracking-style a {
    background-color: #409dee;
    border-radius: 13px;
    padding: 0px 9px;
}
