@font-face {
    font-family: 'fontawesome';
    src: url('/Fonts/Fontawesome/fontawesome.eot?#') format('eot'), url('/Fonts/Fontawesome/fontawesome.woff') format('woff'), url('/Fonts/Fontawesome/fontawesome.ttf') format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'WooCommerce';
    src: url('/Fonts/WooCommerce/WooCommerce.eot?#') format('eot'), url('/Fonts/WooCommerce/WooCommerce.woff') format('woff'), url('/Fonts/WooCommerce/WooCommerce.ttf') format("truetype");
    font-weight: normal;
    font-style: normal;
}

/* #region common */


* {
    margin: 0;
    outline: none;
    padding: 0;
    text-decoration: none;
}

    *, *:before, *:after {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

html {
    margin: 0;
    -webkit-text-size-adjust: none;
    --c: #26530E;
    --c2: #bdb76b;
}

ol, ul {
    list-style: none;
}

a {
    text-decoration: none !important;
}

    a img {
        border: none;
    }

    a:active {
        outline: none;
    }

input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
    margin: 0;
    border: 0;
    padding: 0;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
    -webkit-appearance: none;
}

.btn {
    border-radius: 50rem;
}

input:-webkit-autofill {
    -webkit-box-shadow: inset 0 0 0 1000px #fff;
}

input[type=text]:focus {
    outline: none !important;
    box-shadow: none !important;
}

script {
    display: none !important;
}



.master-wrapper-content {
    min-height: 700px;
    padding: 10px 0;
}

.add-to-wishlist-button {
    display: flex;
    align-items: center;
    border: none;
    background: transparent;
}

.btn-default {
    color: white;
    background-color: var(--c);
    border-color: var(--c);
}

    .btn-default.active, .btn-default:active, .show > .btn-default.dropdown-toggle {
        color: #000;
        background-color: var(--c);
        border-color: var(--c);
    }

    .btn-default:hover {
        color: #000;
        background-color: var(--c2);
        border-color: var(--c2);
    }

    .btn-default:focus {
        color: #000;
        background-color: var(--c);
        border-color: var(--c);
        box-shadow: 0 0 0 0.25rem rgb(9,96,80 / 50%);
    }

    .btn-default:focus, .btn-default.active:focus, .btn-default:active:focus, .show > .btn-default.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.25rem rgb(9,96,80 / 50%);
    }

.color-white {
    color: white !important;
}

.fs-7 {
    font-size: 0.7rem;
}

.fs-8 {
    font-size: 0.8rem;
}

.wrapper .title a {
    color: white;
    background-color: var(--c);
    padding: 10px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    margin: 0;
    display: inline-block;
}

.input-group-quantity {
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid var(--bs-gray-400);
    padding: 0 7px;
    border-radius: 7px;
    max-width: 90px;
    min-width: 70px;
}

    .input-group-quantity .quantity {
        text-align: center;
    }

        .input-group-quantity .quantity:focus, .input-group-quantity .quantit:active {
            box-shadow: none;
        }

    .input-group-quantity input {
        pointer-events: none;
    }

.table tr td {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
/* #endregion common */

/* #region CARD */
.card {
    border: none !important;
}

    .card.custom {
        border: none !important;
    }

        .card.custom .card-body {
            border: 1px solid var(--c);
            border-radius: 10px;
            margin: 5px 0 0 0;
        }

        .card.custom .card-header {
            background-color: var(--c);
            border-top-right-radius: 30px;
            border-bottom-left-radius: 30px;
        }

        .card.custom .buttons {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .card.custom .inputs {
            display: flex;
            margin: 10px 0;
        }


.card-title {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.card .card-img-top {
    position: relative;
}

.card ul.property-values {
    display: none;
    position: absolute;
    top: 0;
    direction: rtl;
    width: 100%;
    height: 100%;
    right: 0;
    background-color: rgba(0,0,0,.5);
    color: #fff;
    line-height: 2em;
    padding: 5px 10px 0 5px;
}

.card:hover ul.property-values {
    display: block;
}
/* #endregion CARD */

/* #region HEADER */
.admin-header-links {
    background-color: #333;
    text-align: center;
    color: #eee;
}

    .admin-header-links * {
        display: inline-block;
        margin: 0 10px;
        line-height: 35px;
        font-size: 12px;
        font-weight: bold;
    }

    .admin-header-links .impersonate {
        display: inline-block;
    }

        .admin-header-links .impersonate a {
            background-color: #555;
            padding: 0 15px;
        }

            .admin-header-links .impersonate a:hover {
                background-color: #666;
            }

.logo img {
    max-width: 150px;
    max-height:150px;
}

.logo h1 {
    display: none;
}

.shipping-icon i {
    background-color: #eee;
    padding: 15px;
    border-radius: 50%;
    color: var(--c);
}

.header-top {
    position: relative;
}

#topcartlink {
    min-height: 60px;
    position: absolute;
    top: -8px;
    left: 0;
}

.account-box {
    margin-left: 150px;
}
/* #endregion */

.ico-cart {
    color: white;
}

    .ico-cart .ti-bell {
        font-size: 1.1rem;
    }
/* #endregion */
/* #region TOPMENU */
.top-menu {
    border-radius: 5px;
    background-color: var(--c);
}

    .top-menu .nav-item {
        display: flex;
        align-items: center;
    }

        .top-menu .nav-item a {
            padding-top: 0;
            color: white;
        }

            .top-menu .nav-item a:hover {
                color: #000;
            }

/* #endregion */

/* #region SEARBOX */
.search-box-container {
    border: 4px solid var(--c);
    padding: 7px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    background: white;
}

    .search-box-container input[type=text] {
        border: none;
        padding: 0 11px;
        height: 30px;
    }

#searchButton {
    border: none;
    background: transparent;
    padding: 0 11px;
    font-size: 1.5em;
    font-weight: bold;
    display: flex;
}

.fa-search {
    color: var(--c);
}
/* #endregion */

/* #region NOTIFICATIONS & POPUPS  */
.bar-notification {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    padding: 15px 10px 15px 25px;
    line-height: 16px;
    color: #fff;
    opacity: 0.95;
}

    .bar-notification.success {
        background-color: #4bb07a;
    }

    .bar-notification.error {
        background-color: #e4444c;
    }

    .bar-notification .content {
        margin: 0 0 0 10px;
    }

        .bar-notification .content a {
            color: #fff;
            text-decoration: underline;
        }

    .bar-notification .close {
        position: absolute;
        top: 0;
        left: 0;
        width: 32px;
        height: 32px;
        margin: 7px;
        background: #fff url('../images/close.png') center no-repeat;
        cursor: pointer;
    }
/* #endregion */

/* #region GROUPNAVIGATION */
.product-categories, .product-categories .cat-item {
    position: relative;
    padding: 3px 0;
    border-bottom: 1px solid #f1f1f1;
    list-style: none;
}

    .product-categories .cat-item:last-child {
        border-bottom: none;
    }

    .product-categories a, .product-categories ul li a {
        margin-right: 25px;
    }

        .product-categories ul li a.active {
            font-weight: bold;
            color:black;
        }

    .product-categories .close {
        font-family: "FontAwesome";
        position: absolute;
        right: 0;
        top: 2px;
        cursor: pointer;
    }

        .product-categories .close:before {
            content: "\f0fe";
        }

        .product-categories .close.expanded:before {
            content: "\f146";
        }
/* #endregion GROUPNAVIGATION */

/* #region OWLCAROUSEL */
.owl-carousel-wrapper {
}

    .owl-carousel-wrapper .title {
    }

        .owl-carousel-wrapper .title > * {
        }

        .owl-carousel-wrapper .title a {
            color: white;
            background-color: var(--c2);
            padding: 10px;
            border-top-right-radius: 30px;
            border-bottom-left-radius: 30px;
            margin: 0;
            min-width: 170px;
            text-align: center;
        }

.owl-nav i {
    color: var(--c) !important;
    font-size: 2em !important;
    border: none !important;
}

    .owl-nav i:active, .owl-nav i:hover {
        color: #ff5252 !important;
    }


.owl-carousel .owl-stage-outer {
    padding: 0 1px;
}

.owl-carousel {
    display: none;
    width: 100%;
    position: relative;
    direction: ltr !important;
}

    .owl-carousel .owl-item {
        direction: rtl;
    }

        .owl-carousel .owl-item .thumbnail {
            min-height: 450px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

            .owl-carousel .owl-item .thumbnail .old-price {
                color: red;
                text-decoration: line-through;
            }

            .owl-carousel .owl-item .thumbnail .price {
            }

        .owl-carousel .owl-item .caption a.book_link_title {
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden;
            display: block;
            color: #000;
        }

    .owl-carousel .owl-stage {
        position: relative;
        -ms-touch-action: pan-Y;
        -moz-backface-visibility: hidden
    }

        .owl-carousel .owl-stage:after {
            content: ".";
            display: block;
            line-height: 0;
            height: 0
        }

    .owl-carousel .owl-stage-outer {
        position: relative;
        overflow: hidden
    }

    .owl-carousel .owl-item, .owl-carousel .owl-wrapper {
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        -webkit-transform: translate3d(0,0,0);
        -moz-transform: translate3d(0,0,0);
        -ms-transform: translate3d(0,0,0)
    }

    .owl-carousel .owl-item {
        position: relative;
        min-height: 1px;
        float: left;
        -webkit-backface-visibility: hidden
    }

    .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
        display: none
    }

    .no-js .owl-carousel, .owl-carousel.owl-loaded {
        display: block
    }

    .owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
        cursor: pointer;
        cursor: hand;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none
    }

    .owl-carousel.owl-loading {
        opacity: 0;
        display: block
    }

    .owl-carousel.owl-hidden {
        opacity: 0
    }

    .owl-carousel.owl-drag .owl-item {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none
    }

    .owl-carousel.owl-grab {
        cursor: move;
        cursor: grab
    }

    .owl-carousel.owl-rtl {
        direction: rtl
    }

        .owl-carousel.owl-rtl .owl-item {
            float: right
        }

    .owl-carousel .animated {
        animation-duration: 1s;
        animation-fill-mode: both
    }

    .owl-carousel .owl-animated-in {
        z-index: 0
    }

    .owl-carousel .owl-animated-out {
        z-index: 1
    }

    .owl-carousel .fadeOut {
        animation-name: fadeOut
    }

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.owl-height {
    transition: height .5s ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity .4s ease
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d
}

.owl-carousel .owl-item img {
    max-height: 300px;
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform .1s ease
}

    .owl-carousel .owl-video-play-icon:hover {
        -ms-transform: scale(1.3,1.3);
        transform: scale(1.3,1.3)
    }

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
    display: none
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity .4s ease
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%
}

.owl-carousel .owl-next, .owl-carousel .owl-prev {
    position: absolute;
    display: inline-block;
    top: 43%
}

.tm-category-panel .tm-category-panel-menu > li, .tm-search-block .tm-list-toggle {
    position: relative
}

.owl-carousel .owl-next {
    left: 15px
}

.owl-carousel .owl-prev {
    right: 15px
}

    .owl-carousel .owl-next.disabled, .owl-carousel .owl-prev.disabled {
        display: none
    }

.owl-nav i {
    display: inline-block;
    width: 46px;
    height: 46px;
    line-height: 46px;
    font-size: 20px;
    color: #d6d6d6;
    border-radius: 50%;
    text-align: center;
    background: #fff;
    border: 1px solid #d6d6d6
}

    .owl-nav i:active, .owl-nav i:hover {
        color: #ff5252
    }
/* #endregion OWLCAROUSEL */

/* #region ajaxloader */
.ajaxloader {
    margin: 0 auto;
    height: 50px;
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 99999;
}

    .ajaxloader .x-rtl {
        direction: rtl;
    }

    .ajaxloader .inner {
        border: 5px solid rgba(150, 210, 29, 0.9);
        opacity: 0.9;
        border-left-color: transparent;
        border-right-color: transparent;
        border-radius: 50%;
        width: 27px;
        height: 27px;
        position: relative;
        top: -36px;
        margin: 0 auto;
        -webkit-animation: spin-right 1s linear infinite normal;
        -moz-animation: spin-right 1s linear infinite normal;
        -ms-animation: spin-right 1s linear infinite normal;
        animation: spin-right 1s linear infinite normal;
        -webkit-animation-delay: 0;
        -moz-animation-delay: 0;
        -o-animation-delay: 0;
        animation-delay: 0;
    }

    .ajaxloader .outer {
        border: 5px solid rgba(150, 210, 29, 0.9);
        opacity: 0.9;
        border-right-color: transparent;
        border-left-color: transparent;
        width: 44px;
        height: 44px;
        margin: 0 auto;
        border-radius: 50%;
        -webkit-animation: spin-pulse 1s linear infinite normal;
        -moz-animation: spin-pulse 1s linear infinite normal;
        -ms-animation: spin-pulse 1s linear infinite normal;
        animation: spin-pulse 1s linear infinite normal;
        -webkit-animation-delay: 0;
        -moz-animation-delay: 0;
        -o-animation-delay: 0;
        animation-delay: 0;
    }

@-moz-keyframes spin-right {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin-right {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin-right {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@-moz-keyframes spin-pulse {
    from {
        -moz-transform: rotate(360deg);
    }

    to {
        -moz-transform: rotate(0deg);
    }
}

@-webkit-keyframes spin-pulse {
    from {
        -webkit-transform: rotate(360deg);
    }

    to {
        -webkit-transform: rotate(0deg);
    }
}

@keyframes spin-pulse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

/* #endregion */

/* #region product review */
.woocommerce p.stars a {
    position: relative;
    height: 2em;
    width: 1.5em;
    text-indent: -999em;
    display: inline-block;
    text-decoration: none
}

    .woocommerce p.stars a::before {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 2em;
        height: 2em;
        line-height: 1;
        font-family: WooCommerce;
        font-size: 1.7em;
        content: '\e021';
        text-indent: 0
    }

    .woocommerce p.stars a:hover ~ a::before {
        content: '\e021'
    }

.woocommerce p.stars:hover a::before {
    content: '\e020'
}

.woocommerce p.stars.selected a.active::before {
    content: '\e020'
}

.woocommerce p.stars.selected a.active ~ a::before {
    content: '\e021'
}

.woocommerce p.stars.selected a:not(.active)::before {
    content: '\e020'
}

#review_form_wrapper .comment-form .stars a {
    border: none;
    color: #fed700;
    line-height: 14px
}

    #review_form_wrapper .comment-form .stars a:after {
        color: #afafaf;
        font-family: FontAwesome;
        font-weight: 400
    }

    #review_form_wrapper .comment-form .stars a.star-1:after {
        content: '\f006'
    }

    #review_form_wrapper .comment-form .stars a.star-2:after {
        content: '\f006\f006'
    }

    #review_form_wrapper .comment-form .stars a.star-3:after {
        content: '\f006\f006\f006'
    }

    #review_form_wrapper .comment-form .stars a.star-4:after {
        content: '\f006\f006\f006\f006'
    }

    #review_form_wrapper .comment-form .stars a.star-5:after {
        content: '\f006\f006\f006\f006\f006'
    }

    #review_form_wrapper .comment-form .stars a.active:after,
    #review_form_wrapper .comment-form .stars a:hover:after {
        color: #fed700
    }

.comment-form .comment-form-comment {
    display: flex;
}
/* #endregion */

/* #region PRODUCT DETAILS */
.book-detail .tabs {
    min-height: 300px;
}

.book-detail .list-group .group-item {
    display: flex;
    border-bottom: 1px solid #dee2e6;
}

    .book-detail .list-group .group-item:nth-child(2n+1) {
        background-color: #f5f5f5;
    }

    .book-detail .list-group .group-item .first {
        padding: 10px;
    }

    .book-detail .list-group .group-item .old-price {
        text-decoration: line-through;
        color: red;
    }

    .book-detail .list-group .group-item .last {
        padding: 10px;
    }

.book-detail .buttons .btnAddToCart {
    float: right;
}

.book-detail .image-wrapper img {
    width: 100%;
}


#review_form, #comments {
    margin: 30px 0;
    padding: 40px;
    background-color: #f5f5f5;
}

.parent-img-container {
    display: flex;
    margin: 20px 0;
}

.book-detail .nav-tabs .nav-link {
    border-top-left-radius: inherit !important;
    background-color: var(--c2) !important;
    color: white;
    border: none;
    cursor: pointer;
}

    .book-detail .nav-tabs .nav-link.active {
        background-color: var(--c) !important;
        cursor: inherit;
    }
/* #endregion */

/* #region homepage */

.news-list-homepage .news-body {
    text-align: justify;
}

/* #endregion homepage */

/* #region FOOTER */
.footer {
    background-color: #262626;
    color: white;
}

    .footer .title {
        border-bottom: 1px solid var(--c);
        padding: 10px 0;
        font-weight: bold;
        font-size: 1.5em;
    }

    .footer a {
        color: rgb(153, 153, 153);
        font-size: 1.2em;
    }

        .footer a:hover {
            color: var(--c);
        }

    .footer ul {
        padding: 0;
    }

        .footer ul li {
            padding: 5px 0;
        }

.footer-middle .other {
    border: 5px solid var(--c);
    border-radius: 10px;
}

.follow-us {
    text-align: center;
}

    .follow-us .title {
        margin: 0 0 10px;
        background: none;
        cursor: auto;
    }

    .follow-us .social ul {
        margin: 0 0 30px;
        /*border-bottom: 1px solid #ddd;*/
        padding: 0 0 30px;
        font-size: 0;
    }

    .follow-us .social li {
        display: inline-block;
        margin: 0 5px;
    }

    .follow-us .social a {
        display: block;
        width: 38px;
        height: 38px;
        background: url('../images/social-sprite.png') no-repeat;
        font-size: 0;
    }

    .follow-us .social .enamad a, .follow-us .social .samandehi a {
        width: auto;
        height: auto;
        background: transparent;
    }

    .follow-us .social .facebook a {
        background-position: 0 0;
    }

    .follow-us .social .twitter a {
        background-position: -38px 0;
    }

    .follow-us .social .rss a {
        background-position: -76px 0;
    }

    .follow-us .social .youtube a {
        background-position: -114px 0;
    }

    .follow-us .social .google-plus a {
        background-position: -152px 0;
    }

    .follow-us .social .instagram a {
        background-position: -228px 0;
    }

    .follow-us .social .telegram a {
        background-position: -190px 0;
    }

#back-top i {
    font-size: 18px;
}

#back-top:hover {
    background: var(--c);
}

#back-top {
    display: block;
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: rgba(35, 47, 62, 0.7);
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 3px;
    color: #fff;
    display: none;
    text-align: center;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0px 0px 1px 1px rgba(255,255,255,.1);
}

.other img {
    width: 100%;
}
/* #endregion FOOTER */

/* #region sale */

.sale-icon {
    position: absolute;
    background-image: url(../images/sale-100.png);
    background-repeat: no-repeat;
    background-size: cover;
}

    .sale-icon .sale {
        position: absolute;
        font-weight: bold;
        font-family: cursive;
        direction: ltr;
        color: rgb(253,91,19);
    }

.card .sale-icon {
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
}

    .card .sale-icon .sale {
        top: 18px;
        left: 18px;
        font-size: .8em;
        font-weight: bold;
    }


/* #endregion sale */
/* SEARCHPAGE */
.item-box img {
    width: 100%;
    max-height: 300px;
}

.old-product-price {
    color: red;
    text-decoration: line-through;
}
/* NIVOSLIDER */
.theme-custom .nivo-controlNav {
    bottom: -54px !important;
}

    .theme-custom .nivo-controlNav a {
        box-shadow: 0 0 1px 0 rgba(0,0,0,0.8) !important;
    }
/* SHIPMENTTIME */
.shipment-time {
    width: 100% !important;
}

/* checkout */
.checkout #newaddress-container {
    display: none;
}

.checkout .accordion-button::after {
    margin-left: 0;
}

.number {
    font-family: IRANSans_FaNum !important;
}



.saw-tooth-vertical {
    background-color: var(--c);
    background-image:
    /* Top jagged */
    linear-gradient(135deg, #fff 50%, transparent 50%), linear-gradient(225deg, #fff 50%, transparent 50%),
    /* Bottom jagged */
    linear-gradient(45deg, #fff 50%, transparent 50%), linear-gradient(-45deg, #fff 50%, transparent 50%);
    background-position:
    /* Top jagged */
    top left, top left,
    /* Bottom jagged */
    bottom left, bottom left;
    background-size: 10px 10px;
    background-repeat: repeat-x;
}

.saw-tooth-bottom {
    background-color: var(--c);
    background-image:
    /* Bottom jagged */
    linear-gradient(45deg, #fff 50%, transparent 50%), linear-gradient(-45deg, #fff 50%, transparent 50%);
    background-position:
    /* Bottom jagged */
    bottom left, bottom left;
    background-size: 10px 10px;
    background-repeat: repeat-x;
}

.saw-tooth-horizontal {
    background-color: var(--c);
    background-image:
    /* Left jagged */
    linear-gradient(135deg, #fff 50%, transparent 50%), linear-gradient(45deg, #fff 50%, transparent 50%),
    /* Right jagged */
    linear-gradient(-135deg, #fff 50%, transparent 50%), linear-gradient(-45deg, #fff 50%, transparent 50%);
    background-position:
    /* Left jagged */
    top left, top left,
    /* Right jagged */
    top right, top right;
    background-size: 10px 10px;
    background-repeat: repeat-y;
}

/* #region common */
.not-available {
    color: white;
    background-color: #645f2d;
}

/*.not-available:hover {
        background-color: #ec6d6d;
        border-color: #ec6d6d;
    }*/

.h-90 {
    height: 90%
}

.h-80 {
    height: 80%
}

.h-70 {
    height: 70%
}

.h-60 {
    height: 60%
}

.h-40 {
    height: 40%
}

.h-30 {
    height: 30%
}

.h-20 {
    height: 20%
}

.w-90 {
    width: 90%
}

.w-80 {
    width: 80%
}

.w-70 {
    width: 70%
}

.w-60 {
    width: 60%
}

.w-40 {
    width: 40%
}

.w-30 {
    width: 30%
}

.w-20 {
    width: 20%
}
/* #endregion common */
/* PRODUCT FILTERS */
#product-filters select {
    width: 100%;
}

#product-filters .list-group-item, #productfilters .list-group-item {
    margin: 10px 0;
    background-color: white;
    padding: 10px;
    border: 1px solid var(--c);
    border-radius: 10px;
}

.product-filters .filter-title {
    border-bottom: 1px solid #f5f5f5;
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
}

.product-filters .filter-value {
    max-height: 400px;
    overflow-y: scroll;
}

    .product-filters .filter-value ul {
        list-style: none;
        padding: 0;
        margin: 0;
        overflow-x: hidden;
    }

        .product-filters .filter-value ul li {
            margin: 5px 0;
        }

.product-filters .pretty .state label {
    white-space: nowrap;
}

.product-filters .filter-searchbox {
    margin: 10px 0;
}

.product-filters .toggle-label {
    float: left;
    cursor: pointer;
}

    .product-filters .toggle-label:after {
        content: '\f078';
        font-family: FontAwesome;
    }

    .product-filters .toggle-label.expanded:after {
        content: '\f077';
        font-family: FontAwesome;
    }

#product-filters #submit-filter {
    width: 100%;
}

.product-filters .filter-body {
    display: none;
}

    .product-filters .filter-body.expanded {
        display: block;
    }

.spinner {
    width: 1rem !important;
    height: 1rem !important;
    opacity: 0;
    visibility: hidden;
    /*transition:all .4s;
    -webkit-transition:all .4s;
    -moz-transition:all .4s;
    -o-transition:all .4s;*/
}

    .spinner.expanded {
        opacity: 1;
        visibility: visible;
    }



/* #region mobile */
@media only screen and (max-width: 768px) {
    #topcartlink {
        min-height: 110px;
    }
}
/* endregion */
