﻿@import url('digikala1.css');

a {
    text-decoration: none !important;
}

    a:hover, a:focus {
        color: #0056b3;
    }

::placeholder {
    color: #a2a2a2;
}

.box {
    background-color: #fff;
    box-shadow: 0 7px 8px 0 rgba(0,0,0,.04);
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 1rem;
}

.no-overflow {
    overflow: hidden;
}

.text-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.required {
    font-size: 20px;
    color: #cd5c5c;
}

.btn {
    border-radius: 8px;
}

.btn-xs, .btn-group-xs > .btn {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 7px;
}

.fontawesome-light {
    font-family: 'Font Awesome 5 pro';
    font-weight: 300;
}

.fontawesome-solid {
    font-family: 'Font Awesome 5 pro';
    font-weight: 900;
}

.fontawesome-regular {
    font-family: 'Font Awesome 5 pro';
    font-weight: 400;
}

.ajax-loading-block-window {
    position: fixed;
    top: 50%;
    left: 50%;
    color: #ef394e;
    width: 64px;
    height: 64px;
    z-index: 1050;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

    .ajax-loading-block-window > div {
        position: absolute;
        top: 50%;
        left: 50%;
        border-radius: 100%;
    }

        .ajax-loading-block-window > div:first-child {
            width: 64px;
            height: 64px;
            border: 4px solid currentColor;
            border-right-color: transparent;
            border-left-color: transparent;
            animation: ajax-loading-block-window-rotate 1s cubic-bezier(.09,.57,.49,.9) infinite;
        }

        .ajax-loading-block-window > div:last-child {
            width: 32px;
            height: 32px;
            background-color: currentColor;
            animation: ajax-loading-block-window-scale 1s cubic-bezier(.09,.57,.49,.9) infinite;
        }

@keyframes ajax-loading-block-window-rotate {
    0% {
        transform: translate(-50%,-50%) rotate(0deg);
    }

    50% {
        transform: translate(-50%,-50%) rotate(180deg);
    }

    100% {
        transform: translate(-50%,-50%) rotate(360deg);
    }
}

@keyframes ajax-loading-block-window-scale {
    0%,100% {
        opacity: 1;
        transform: translate(-50%,-50%) scale(1);
    }

    30% {
        opacity: .3;
        transform: translate(-50%,-50%) scale(.15);
    }
}

.rounded {
    border-radius: 8px !important;
}

hr {
    margin: 1rem 0;
    border-color: #dedede;
}

label {
    user-select: none;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

    .navbar-toggler .icon-bar {
        display: block;
        width: 22px;
        height: 2px;
        background: #000;
        border-radius: 1px;
        transition: .3s ease-in-out;
    }

        .navbar-toggler .icon-bar + .icon-bar {
            margin-top: 4px;
        }

    .navbar-toggler:not(.collapsed) > .icon-bar:nth-child(1) {
        -webkit-transform: rotate(45deg) translate(4px,4px);
        -moz-transform: rotate(45deg) translate(4px,4px);
        -ms-transform: rotate(45deg) translate(4px,4px);
        -o-transform: rotate(45deg) translate(4px,4px);
        transform: rotate(45deg) translate(4px,4px);
    }

    .navbar-toggler:not(.collapsed) > .icon-bar:nth-child(2) {
        opacity: 0;
        visibility: hidden;
    }

    .navbar-toggler:not(.collapsed) > .icon-bar:nth-child(3) {
        -webkit-transform: rotate(-45deg) translate(4px,-4px);
        -moz-transform: rotate(-45deg) translate(4px,-4px);
        -ms-transform: rotate(-45deg) translate(4px,-4px);
        -o-transform: rotate(-45deg) translate(4px,-4px);
        transform: rotate(-45deg) translate(4px,-4px);
    }

caption {
    padding-top: 0;
}

a {
    color: #00bfd6;
}

@media(min-width:1440px) {
    .container {
        max-width: 1676px;
    }
}

.media {
    position: relative;
}

    .media.write-review {
        padding-right: 1rem;
    }

    .media .media-object {
        margin-right: 1rem;
    }

    .media .media-left {
        position: absolute;
        left: 2rem;
        bottom: 2rem;
    }

@media(max-width:992px) {
    .media .media-left {
        left: 0;
        bottom: 1rem;
    }
}

.media .media-left .vote-stats-yes .btn, .media .media-left .vote-stats-no .btn {
    border-radius: 8px;
    border: 1px solid #dedede;
    background: #fff;
    padding: 2px 13px;
    color: #8c8c8c;
    font-size: .929rem;
    line-height: 1.692;
}

.media .media-left .vote-stats-no {
    margin-right: 1rem;
}

.bg-light {
    background-color: #ebebeb !important;
}

.progress-bar {
    background-color: #ef394e;
    color: #fff;
}

.custom-control:not([redonly]) {
    cursor: pointer;
}

.custom-control-input:not(:checked) ~ .custom-control-label::before {
    border: 1px solid #dedede;
}

.custom-control-input:hover ~ .custom-control-label::before {
    border-color: #00bfd6;
}

.custom-control-label::before {
    background-color: #ebebeb;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: rgba(0,0,0,0);
}

.btn-light {
    background-color: #ebebeb;
    border-color: #ebebeb;
}

    .btn-light:hover, .btn-light:focus {
        background-color: #e1e1e1;
        border-color: #e1e1e1;
    }

.btn-outline-light {
    border-color: #dedede;
    color: #00bfd6;
}

    .btn-outline-light:hover, .btn-outline-light:focus {
        background-color: transparent;
        border-color: #dedede;
    }

.btn-brand {
    background-color: #ef394e;
    border-color: #ef394e;
}

    .btn-brand:hover, .btn-brand:focus {
        background-color: #ed263d;
        border-color: #ed263d;
    }

.btn-primary {
    background-color: #ef394e;
    border-color: #ef394e;
    color: #fff;
}

    .btn-primary:hover, .btn-primary:focus {
        background-color: #ed263d;
        border-color: #ed263d;
    }

.btn-outline-primary {
    color: #00bfd6;
    border-color: #00bfd6;
}

.btn-secondary {
    background-color: #00bfd6;
    border-color: #00bfd6;
}

    .btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
        background-color: #00d1ea;
        border-color: #00d1ea;
    }

.btn-outline-secondary:focus {
    box-shadow: 0 0 0 .2rem rgba(0,191,214,.7) !important;
}

.form-control, .form-select {
    border-color: #dedede;
    background-color: #fff;
}

.form-select {
    border-radius: 8px;
}

.form-control {
    border-radius: 8px;
}

    .form-control.input-validation-error {
        border-color: #dc3545;
        animation: shake-hard .3s ease-in-out;
    }

.search-box .form-control {
    background-color: #f5f5f5;
    padding: 14px 38px 14px 10px;
    border-radius: .25rem;
}

    .search-box .form-control:focus {
        box-shadow: 0 0 5px 1px rgba(0,0,0,.1);
    }

.custom-radio .custom-control-input:checked ~ .custom-control-label::before, .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #00bfd6;
    color: #00bfd6;
}

.custom-control-label:active {
    color: #00bfd6;
}

.page-link {
    color: #000;
    border-color: #dedede;
}

.form-inline .custom-control:not(:last-child), .form-inline .form-select:not(:last-child) {
    margin-right: 1rem;
}

.info-date-picker select {
    min-width: 100px;
    min-height: 30px;
    padding: 14px 10px;
    border-radius: 5px;
    border-color: #dedede;
    margin-left: 10px;
    font-size: 14px;
    line-height: 43px;
    color: #6f6f6f;
}

    .info-date-picker select:hover, .info-date-picker select:focus {
        outline: none;
        border-color: #dedede;
    }

    .info-date-picker select:focus {
        box-shadow: 0 0 5px 5px rbga(0,0,0,.2);
    }

.attribute-input .form-check {
    display: inline-block;
    margin-bottom: .5em;
    padding-right: .5rem;
}

    .attribute-input .form-check:first-child {
        padding-right: 0;
    }

    .attribute-input .form-check input[type="radio"].form-check-input {
        appearance: none !important;
        display: none !important;
        height: 0 !important;
        width: 0 !important;
    }

        .attribute-input .form-check input[type="radio"].form-check-input + label {
            display: inline-block !important;
            padding: .75em 1.25em !important;
            border-radius: 8px !important;
            background-color: #fff !important;
            border: 1px solid #ccc;
            cursor: pointer;
        }

        .attribute-input .form-check input[type="radio"].form-check-input:checked + label {
            border: 2px solid #ef394e !important;
            color: #00bfd6 !important;
        }

.pagination {
    justify-content: center;
    background-color: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #dedede;
}

    .pagination .page-item .page-link {
        width: 35px;
        height: 35px;
        line-height: 20px;
        text-align: center;
        background-color: transparent;
        color: #6f6f6f;
        border: none;
        margin: 0 .25rem;
        font-size: 20px;
    }

        .pagination .page-item .page-link:hover {
            color: #000;
        }

    .pagination .page-item.active .page-link {
        color: #fff;
        background-color: #00bfd6;
        border-radius: 8px;
    }

    .pagination .previous-page, .pagination .next-page {
        padding: 0 1rem;
    }

@media(min-width:768px) {
    .pagination .previous-page, .pagination .next-page {
        padding: 0 2rem;
        margin: 0 2rem;
    }
}

.pagination .previous-page .page-link, .pagination .next-page .page-link {
    color: transparent;
}

    .pagination .previous-page .page-link::before, .pagination .next-page .page-link::before {
        content: "";
        position: absolute;
        font-family: 'Font Awesome 5 pro';
        color: #6f6f6f;
    }

    .pagination .previous-page .page-link:hover, .pagination .next-page .page-link:hover {
        color: transparent;
    }

.pagination .next-page {
    border-left: 1px solid #dedede;
}

    .pagination .next-page .page-link::before {
        content: "";
        right: 0;
    }

.pagination .previous-page {
    border-right: 1px solid #dedede;
}

    .pagination .previous-page .page-link::before {
        content: "";
        left: 0;
    }

.breadcrumb {
    background-color: transparent;
    padding-top: 0;
    padding: 0;
    padding-right: 0;
}

    .breadcrumb .breadcrumb-item::before {
        color: #6f6f6f;
    }

    .breadcrumb .breadcrumb-item a {
        text-decoration: none;
        color: #6f6f6f;
        font-size: small;
    }

    .breadcrumb .breadcrumb-item:hover a {
        font-weight: bold;
    }

    .breadcrumb .current-item {
        pointer-events: none;
        color: #1f1f1f;
        font-weight: bold;
    }

.card {
    background-color: #fff;
    border-color: #dedede;
    position: relative;
}

.address-grid .card {
    margin: 1rem 0;
}

.checkout-sending {
    width: 41px;
    height: 41px;
    background-color: #f3feff;
    box-shadow: 0 8px 9px 0 rgba(0,0,0,.05);
    border: 1px solid #8dd4dd;
    position: absolute;
    right: -20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
}

    .checkout-sending::before {
        font-family: 'digikala3';
        content: "︎";
        font-size: 11px;
        position: absolute;
        top: 14px;
        left: 13px;
        color: #00bfd6;
    }

@media(max-width:578px) {
    .shipping-addresses .card-body::before {
        bottom: -1rem;
    }
}

#opc-confirm_order .trigger-buttons {
    display: none;
}

.card-body {
    padding: 20px 43px 22px 20px;
    position: relative;
    color: #dedede;
    margin-bottom: 0;
}

    .card-body::before {
        width: 5px;
        top: 0;
        bottom: 0;
        right: -1px;
        position: absolute;
        background-color: #00bfd6;
        content: "";
    }

    .card-body .card-title {
        border-bottom: 1px solid #dedede;
        width: 100%;
        padding-bottom: .5rem;
    }

    .card-body .adress {
        margin-bottom: .8rem;
    }

@media(max-width:400px) {
    .card-body .postalcode label, .card-body .phone label {
        font-size: .6em;
    }

    .card-body .postalcode span, .card-body .phone span {
        font-size: .8em;
    }
}

.address-box.card-body {
    color: #000;
}

.card-footer {
    border: 1px solid rgba(0,0,0,.1);
    background-color: #fff;
}

@media(max-width:350px) {
    .card-footer {
        padding: .5rem .1rem;
    }
}

.card-header {
    background-color: #ebebeb;
    border-color: #dedede;
}

.jumbotron {
    background-color: #ebebeb;
}

.navbar-default {
    background-color: #ebebeb;
    border-color: #dedede;
}

.label {
    display: inline-block;
}

.label-default {
    background-color: #00bfd6;
}

    .label-default[href]:focus, .label-default[href]:hover {
        background-color: #00d1ea;
    }

.label-primary {
    background-color: #ef394e;
}

    .label-primary[href]:focus, .label-primary[href]:hover {
        color: #ed263d;
    }

.tooltip, input[text] {
    font-family: inherit;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #ebebeb;
}

.text-primary {
    color: #ef394e;
}

.text-success, .message-success {
    color: #28a745;
}

.text-danger, .message-failure {
    color: #dc3545;
}

.bg-primary:not(.navbar-inverse) {
    background-color: #ef394e;
}

.btn-default.active, .btn-default:active, .open > .dropdown-toggle.btn-default, .btn-default.active.focus, .btn-default.active:focus, .btn-default.active:hover, .btn-default:active.focus, .btn-default:active:focus, .btn-default:active:hover, .open > .dropdown-toggle.btn-default.focus, .open > .dropdown-toggle.btn-default:focus, .open > .dropdown-toggle.btn-default:hover {
    background-color: #00bfd6;
    box-shadow: none;
    color: #fff;
    border-color: #00bfd6;
}

.btn-primary.active, .btn-primary:active, .open > .dropdown-toggle.btn-primary, .btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover, .open > .dropdown-toggle.btn-primary.focus, .open > .dropdown-toggle.btn-primary:focus, .open > .dropdown-toggle.btn-primary:hover {
    background-color: #ef394e;
    box-shadow: none;
    border-color: #ef394e;
}

.list-group-item {
    background-color: transparent;
    border-color: #dedede;
    border: none;
}

    .list-group-item.list-group-item-action {
        background-color: transparent !important;
    }

a.list-group-item:focus, a.list-group-item:hover, button.list-group-item:focus, button.list-group-item:hover {
    color: #00bfd6;
}

    a.list-group-item:focus .arrow-icon, a.list-group-item:hover .arrow-icon, button.list-group-item:focus .arrow-icon, button.list-group-item:hover .arrow-icon {
        color: #ef394e;
    }

.list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover {
    background-color: transparent;
    color: #000;
    font-weight: bold;
    border-color: #00bfd6;
    position: relative;
}

    .list-group-item.active .arrow-icon, .list-group-item.active:focus .arrow-icon, .list-group-item.active:hover .arrow-icon {
        color: #fff;
    }

.list-group-item .arrow-icon {
    margin-top: 4px;
    color: #dedede;
}

.dropdown-menu {
    background-color: #fff;
    font-size: small;
}

@media(min-width:768px) {
    .dropdown-menu {
        margin-top: 0;
    }

        .dropdown-menu .dropdown-item {
            padding: 10px 20px;
        }

    .dropdown:hover > .dropdown-menu, .dropup:hover > .dropdown-menu {
        display: block;
    }

        .dropdown:hover > .dropdown-menu.dropdown-menu-end, .dropup:hover > .dropdown-menu.dropdown-menu-end {
            right: 1px;
            left: auto;
        }

        .dropdown:hover > .dropdown-menu.dropdown-menu-start, .dropup:hover > .dropdown-menu.dropdown-menu-start {
            right: auto;
            left: 1px;
        }
}

.dropdown-item:focus, .dropdown-item:hover {
    background-color: #f5f5f5;
}

.dropdown-item.active {
    background-color: #00bfd6;
}

.dropdown-toggle:focus {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.dropdown-divider {
    border-top-color: #dedede;
}

@media(min-width:768px) {
    .modal-dialog {
        margin-top: 50px !important;
    }
}

a[target=_blank] {
    cursor: alias;
}

input[type=password] {
    font-family: Verdana,Geneva,Tahoma,sans-serif;
}

.optional {
    font-size: smaller;
    color: #6f6f6f;
}

.title {
    margin-bottom: .5rem;
}

.separator::before {
    content: "|";
    margin: .33333333rem;
}

.block-popular-tags .tag {
    padding: .25rem 1rem;
    font-size: small;
    color: #6f6f6f;
    display: block;
    text-align: right;
}

.block-popular-tags .view-all {
    border: 1px solid #00bfd6;
    border-radius: 8px;
    display: inline-block;
    margin: 0 1rem 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.fieldset > .form-fields {
    margin-bottom: 2rem;
}

.form-fields {
    padding: 1rem;
    background-color: #fff;
}

    .form-fields .form-group {
        max-width: 460px;
        margin-right: auto;
        margin-left: auto;
    }

.html-shipping-address-page .form-fields {
    max-height: 100vh;
    overflow: auto;
    margin-right: auto;
    margin-left: auto;
}

.html-shipping-address-page .form-control {
    padding-right: 10px;
}

.html-shipping-address-page .buttons {
    margin-top: 1rem;
}

.html-shipping-address-page .pickup-points .pickup-points-submit {
    width: 250px;
    margin: 0 auto;
    display: block;
}

    .html-shipping-address-page .pickup-points .pickup-points-submit i {
        vertical-align: middle;
    }

.location {
    height: 56px;
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
    display: block;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
    padding: 7px 15px 8px;
    font-size: 1.286rem;
    line-height: 1.39;
    color: #858585;
}

.person .fieldset {
    position: relative;
}

    .person .fieldset .title {
        margin-bottom: 2rem;
    }

.person .form-group {
    padding-left: unset;
    padding-right: unset;
}

.person .form-fields {
    padding: 1rem;
}

    .person .form-fields .form-group {
        width: 80%;
        max-width: unset;
    }

.person .custom-control {
    display: inline-block;
    margin-top: 10px;
}

.person .form-control {
    padding: 14px 10px 14px 10px;
}

    .person .form-control:focus {
        border-color: #dedede;
    }

.section {
    margin-bottom: 3rem;
}

    .section .info, .section .details {
        list-style: none;
        margin: 0 0 .5rem;
        padding: 2rem;
        font-weight: bold;
        color: #4d4d4d;
        background-color: #fff;
    }

        .section .info > li, .section .details > li {
            line-height: 1.3em;
        }

            .section .info > li label, .section .details > li label {
                font-weight: normal;
            }

.result, .warning, .no-result, .no-data {
    font-weight: bold;
}

.bar-notification {
    display: none;
    position: fixed !important;
    top: 0;
    right: 0;
    width: 100%;
    line-height: 16px;
    padding: 15px 10px 15px 25px;
    text-align: center;
    opacity: .95;
    z-index: 1060;
}

.alert {
    position: relative;
    border: none;
    border-left: 3rem solid;
    font-weight: bold;
    min-height: 50px;
}

    .alert::before {
        position: absolute;
        font-family: 'Font Awesome 5 pro';
        font-weight: 900;
        left: -2rem;
        color: #fff;
    }

    .alert.alert-success {
        color: #28a745;
    }

        .alert.alert-success::before {
            content: "";
        }

    .alert.alert-info {
        color: #17a2b8;
    }

        .alert.alert-info::before {
            content: "";
        }

    .alert.alert-warning {
        color: #ffc107;
    }

        .alert.alert-warning::before {
            content: "";
        }

    .alert.alert-danger {
        color: #dc3545;
    }

        .alert.alert-danger::before {
            content: "";
        }

    .alert.alert-secondary.no-result, .alert.alert-secondary.no-data {
        color: #6f6f6f;
        background-color: #ebebeb;
    }

        .alert.alert-secondary.no-result::before, .alert.alert-secondary.no-data::before {
            content: "";
        }

    .alert.alert-reward-point {
        background-color: #fef0a7;
        border-color: #ffd700;
    }

        .alert.alert-reward-point::before {
            content: "";
            color: #000;
        }

.message {
    margin: 3px 0 .33333333rem;
    font-size: smaller;
    font-weight: bold;
}

.validation-summary-errors {
    color: #a94442;
    font-weight: normal;
}

.field-validation-valid {
    font-weight: bold;
    color: #28a745;
}

.field-validation-error {
    font-weight: bold;
    color: #dc3545;
}

    .field-validation-error::before {
        content: "";
        font-family: 'Font Awesome 5 pro';
        font-weight: 900;
        margin-right: .33333333rem;
    }

.message-error ul, .poll-vote-error ul, .password-error ul, .external-auth-errors ul {
    margin-bottom: 0;
}

ul.message-error {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.eu-cookie-bar-notification {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 0;
    text-align: center;
    background-color: rgba(0,191,214,.96);
    color: #fff;
    z-index: 1100;
}

    .eu-cookie-bar-notification .close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 2em;
        color: #fff;
        text-shadow: none;
    }

.topic-block {
    margin-bottom: 1rem;
}

.page {
    /*background-color: #f5f5f5;*/
    margin-bottom: 3rem;
}

.html-not-found-page .master-wrapper-page {
    background-image: url('../images/6fb2da6e.png');
    background-repeat: repeat;
    background-size: contain;
}

    .html-not-found-page .master-wrapper-page .page, .html-not-found-page .master-wrapper-page .page-body {
        background-color: transparent !important;
    }

.not-found-page .page-title {
    line-height: 22px;
    font-size: 2.571rem !important;
    line-height: 1.222;
    margin: .67em 0;
    padding-top: 68px;
    text-align: center;
}

.not-found-page .page-body .btn-outline-primary {
    border-radius: 8px;
}

.not-found-page ul {
    list-style-type: none;
}

.btn-not-found {
    text-align: center;
}

    .btn-not-found a:hover {
        color: #fff;
        background-color: rgba(106,185,70,.8);
    }

    .btn-not-found .btn-green {
        background-color: #6ab946;
        border: 1px solid #4aa42e;
        border-radius: 8px;
        padding: 10px 20px;
        color: #fff;
        min-width: 161px;
        margin: 10px 19.5px 46px;
    }

.page-body {
    min-height: 350px;
}

.page-title {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.286rem;
    line-height: 34px;
    color: #000;
}

.page-description {
    background-color: #fff;
    color: #6f6f6f;
    margin-top: 1rem;
    padding: 1rem;
}

.topic-page, .contact-page, .search-page {
    box-shadow: 0 7px 8px 0 rgba(0,0,0,.04);
    background-color: #fff;
    border: 1px solid #dedede;
    margin: 1rem auto;
    padding-bottom: 60px;
    padding: 1rem 6rem;
}

@media(max-width:992px) {
    .topic-page, .contact-page, .search-page {
        padding: .5rem 1rem;
        margin-bottom: 20px;
    }
}

.topic-page .page-title, .contact-page .page-title, .search-page .page-title {
    font-size: 2rem;
    line-height: 1.63;
    margin-bottom: 10px;
    margin-top: 20px;
    color: #000;
}

.topic-page .page-body, .contact-page .page-body, .search-page .page-body {
    background-color: #fff !important;
}

    .topic-page .page-body img, .contact-page .page-body img, .search-page .page-body img {
        max-width: 100%;
    }

.rating {
    color: #bcbcbc;
}

    .rating .colorStar {
        color: #ffd700;
    }

@media(max-width:768px) {
    .rating .colorStar {
        font-size: small;
    }
}

.poll {
    margin-bottom: 1rem;
}

    .poll .poll-display-text {
        font-weight: bold;
        margin-bottom: .5rem;
    }

    .poll .poll-total-votes {
        color: #6f6f6f;
    }

    .poll .poll-results .answer {
        margin-bottom: .33333333rem;
        position: relative;
    }

    .poll .poll-results .progress-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -moz-box;
        display: -webkit-flex;
        display: flex;
    }

        .poll .poll-results .progress-wrapper .progress {
            width: 100%;
        }

        .poll .poll-results .progress-wrapper .vote-percent {
            width: 120px;
            font-size: .75em;
            margin-left: .5rem;
        }

.table-wrapper .table {
    margin-bottom: 0;
}

.table-wrapper + .tax-shipping-info {
    margin-top: -1rem;
}

html {
    scroll-behavior: smooth;
}

    html:not([dir]) .dk-icon3-next {
        transform: rotate(180deg);
    }

body {
    background-color: #f5f5f5;
    color: #000;
}

    body ::-webkit-scrollbar {
        width: 10px;
    }

    body ::-webkit-scrollbar-track {
        background: none;
    }

    body ::-webkit-scrollbar-thumb {
        background: #ebebeb;
        border-radius: 1rem;
    }

        body ::-webkit-scrollbar-thumb:hover {
            background: #ef394e;
        }

.store-logo img {
    width: 100%;
    max-height: 34px;
    object-fit: contain;
    object-position: center right;
}

@media(max-width:767px) {
    .store-logo img {
        object-position: left;
    }
}

@media(min-width:768px) {
    .store-logo img {
        max-height: 60px;
    }
}

.store-logo .store-name {
    position: absolute;
    clip: rect(1px,1px,1px,1px);
    display: none;
}

.search-box {
    position: relative;
    transition: .3s ease-in-out;
}

    .search-box .search-box-button {
        position: absolute;
        top: 0;
        right: 0;
        left: auto;
        background: none;
        color: #6f6f6f;
        height: 100%;
    }

        .search-box .search-box-button:focus {
            box-shadow: #ef394e;
        }

    .search-box .search-box-text {
        height: 38px;
        border: none;
    }

        .search-box .search-box-text:focus {
            font-weight: 100;
            background-color: #fff;
            border-bottom: 1px solid #dedede;
        }

    .search-box .ui-widget-content {
        border-color: #dedede;
        padding: 0;
        top: calc(100% - 1px);
        z-index: 1050;
        width: 100% !important;
        font-size: inherit;
        background-color: #fff;
    }

        .search-box .ui-widget-content .ui-state-active {
            border: 0 !important;
        }

        .search-box .ui-widget-content .ui-menu-item {
            list-style-image: none;
            margin-top: 6px;
        }

            .search-box .ui-widget-content .ui-menu-item a {
                color: #6f6f6f;
                padding-top: .33333333rem;
                padding-bottom: .33333333rem;
                overflow: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;
                transition: .3s ease-in-out;
            }

                .search-box .ui-widget-content .ui-menu-item a img {
                    margin: 0 1rem 0 .5rem;
                }

                .search-box .ui-widget-content .ui-menu-item a:hover {
                    background: #ebebeb;
                    color: #000;
                    border: none;
                    cursor: pointer;
                    margin: 0 !important;
                }

            .search-box .ui-widget-content .ui-menu-item .ui-state-focus {
                background: #fff;
                border: none;
                border-radius: 0;
                margin: 0;
                color: #000;
                cursor: pointer;
            }

    .search-box .ui-autocomplete-loading {
        background-image: url('../images/ajax-loader-small.gif');
        background-position: right center;
        background-repeat: no-repeat;
    }

@media(max-width:767px) {
    .search-box.active {
        position: absolute;
        right: 1rem;
        left: 1rem;
    }
}

.search-box.active form {
    position: relative;
    z-index: 1051;
    margin: 1px;
}

.search-box.active .search-box-text:focus, .search-box.active .search-box-text.valid {
    border: none;
    outline: none;
    box-shadow: none !important;
}

.search-box.active .ui-widget-content {
    padding-top: 40px;
    top: -1px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,.4);
    left: 0 !important;
}

.ui-helper-hidden-accessible {
    display: none !important;
}

.store-header {
    background-color: #fff;
    padding: .5rem 0;
    position: sticky;
    top: 0;
    z-index: 1021;
}

    .store-header .navbar-toggler {
        padding: 0;
        flex-basis: auto;
    }

        .store-header .navbar-toggler .icon-bar {
            display: block;
            width: 20px;
            height: 3px;
            transition: .3s ease-in-out;
            background-color: #000;
        }

            .store-header .navbar-toggler .icon-bar + .icon-bar {
                margin-top: 4px;
            }

    .store-header .header-lower .nav-link {
        color: #6f6f6f;
    }

@media(max-width:767px) {
    .store-header .header-selectors-wrapper {
        margin: 1rem auto;
        text-align: center;
    }

        .store-header .header-selectors-wrapper .nav {
            display: block;
        }

            .store-header .header-selectors-wrapper .nav > li > a {
                padding: 6px 10px;
                border: 1px solid #dedede;
                display: inline-block;
                min-width: 200px;
            }

            .store-header .header-selectors-wrapper .nav > li + li {
                margin-top: 4px;
            }

    .store-header .header-links-wrapper {
        text-align: center;
        margin-bottom: 1rem;
    }

        .store-header .header-links-wrapper .nav {
            display: block;
        }

            .store-header .header-links-wrapper .nav .nav-item {
                display: inline-block;
            }
}

.store-header.is-sticky {
    position: fixed;
    width: 100%;
}

.header-links-wrapper .top-login-link .nav-link {
    border: 1px solid #dedede;
    padding: 10px 12px;
    border-radius: 5px;
}

    .header-links-wrapper .top-login-link .nav-link i {
        color: #000;
    }

.header-links-wrapper .top-cart-link {
    position: relative;
}

    .header-links-wrapper .top-cart-link::before {
        content: "";
        position: absolute;
        top: 3px;
        left: 0;
        width: 1px;
        height: 24px;
        background-color: #dedede;
    }

    .header-links-wrapper .top-cart-link .notify {
        width: 22px;
        height: 22px;
        background-color: #ef394e;
        color: #fff;
        border-radius: 6px;
        font-size: .714rem;
        line-height: 20px;
        text-align: center;
        font-weight: 900;
        position: absolute;
        bottom: 4px;
        left: 5px;
        border: 2px solid #fff;
    }

        .header-links-wrapper .top-cart-link .notify:empty {
            display: none;
        }

.top-menu {
    padding: 0;
    position: sticky;
    top: 60px;
    background: #fff;
    box-shadow: 0 7px 8px 0 rgba(0,0,0,.04);
    transition: .3s ease-in-out;
    transform: translateY(0);
    z-index: 1020;
    margin-bottom: 1rem;
}

    .top-menu.hidden {
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    .top-menu .navbar-nav {
        position: relative;
    }

        .top-menu .navbar-nav .dropdown-menu {
            border: none;
            padding: 0;
        }

        .top-menu .navbar-nav .nav-item .nav-link {
            color: #000;
        }

        .top-menu .navbar-nav > .nav-item > .nav-link {
            font-weight: bold;
            white-space: nowrap;
            position: relative;
            padding-top: 1rem;
            padding-bottom: 1rem;
        }

            .top-menu .navbar-nav > .nav-item > .nav-link i {
                color: #6f6f6f;
            }

            .top-menu .navbar-nav > .nav-item > .nav-link::after {
                content: "";
                position: absolute;
                bottom: 0;
                right: 0;
                width: 100%;
                height: 2px;
                visibility: hidden;
                background-color: #ef394e;
                transition: .3s ease-in-out;
                transform: scale(0);
                transform-origin: center center;
            }

        .top-menu .navbar-nav > .nav-item:hover > .nav-link::after {
            visibility: visible;
            transform: scale(1);
        }

.top-menu-categories {
    position: static;
}

    .top-menu-categories .nav-item .nav-link {
        padding-top: .33333333rem;
        padding-bottom: .33333333rem;
    }

        .top-menu-categories .nav-item .nav-link:hover {
            color: #ef394e;
        }

    .top-menu-categories .dropdown-menu .dropdown .dropdown-toggle {
        font-weight: bold;
    }

        .top-menu-categories .dropdown-menu .dropdown .dropdown-toggle::after {
            display: none;
        }

    .top-menu-categories > .dropdown-menu {
        width: 100%;
        box-shadow: 0 7px 8px 0 rgba(0,0,0,.04);
    }

        .top-menu-categories > .dropdown-menu > .nav-item {
            background-color: #f5f5f5;
            position: static;
            width: 23%;
        }

            .top-menu-categories > .dropdown-menu > .nav-item > .nav-link {
                padding: 1rem;
            }

            .top-menu-categories > .dropdown-menu > .nav-item:hover > .nav-link {
                background-color: #fff;
            }

        .top-menu-categories > .dropdown-menu > .dropdown > .nav-link::after {
            display: none;
        }

        .top-menu-categories > .dropdown-menu > .dropdown > .dropdown-menu {
            top: 0;
            width: 77%;
            left: 23%;
            height: 100%;
            -webkit-columns: 4 130px;
            -moz-columns: 4 130px;
            columns: 4 130px;
            overflow: auto;
            padding: .5rem;
            column-fill: auto;
        }

            .top-menu-categories > .dropdown-menu > .dropdown > .dropdown-menu .dropdown-menu {
                display: block;
                right: auto;
            }

            .top-menu-categories > .dropdown-menu > .dropdown > .dropdown-menu .dropdown-toggle {
                border-left: 2px solid #ef394e;
            }

        .top-menu-categories > .dropdown-menu .dropdown .dropdown-menu .dropdown-menu {
            position: relative;
        }

            .top-menu-categories > .dropdown-menu .dropdown .dropdown-menu .dropdown-menu .nav-link {
                color: #6f6f6f;
            }

                .top-menu-categories > .dropdown-menu .dropdown .dropdown-menu .dropdown-menu .nav-link:hover {
                    color: #ef394e;
                }

.store-header-mobile {
    background-color: #fff;
    padding: .5rem 1rem 0;
    margin-bottom: 1rem;
}

    .store-header-mobile .navbar-toggler:not(.collapsed) {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        text-align: right;
        border: none;
        background: rgba(0,0,0,.4);
        cursor: default;
        z-index: 1040;
        border-radius: 0;
        transition: .3s ease-in-out;
        outline: none;
    }

        .store-header-mobile .navbar-toggler:not(.collapsed) .icon-bar {
            display: none;
        }

        .store-header-mobile .navbar-toggler:not(.collapsed)::after {
            content: "";
            position: absolute;
            font-family: 'Font Awesome 5 pro';
            font-size: x-large;
            top: 0;
            right: 0;
            margin: 1rem;
            color: #000;
        }

    .store-header-mobile .header-upper {
        border-bottom: 1px solid #dedede;
        padding-bottom: .5rem;
        margin-bottom: .5rem;
    }

    .store-header-mobile .header-links .nav-link {
        color: #6f6f6f;
    }

        .store-header-mobile .header-links .nav-link:hover, .store-header-mobile .header-links .nav-link:focus {
            color: #000;
        }

.aside-header {
    position: fixed;
    visibility: hidden;
    height: 100%;
    width: 85%;
    max-width: 380px;
    top: 0;
    bottom: 0;
    left: -380px;
    overflow-y: auto;
    background: #fff;
    z-index: 1041;
    transition: .3s ease-in-out;
}

    .aside-header.show {
        visibility: visible;
        left: 0;
        box-shadow: 0 0 15px rgba(0,0,0,.2);
    }

        .aside-header.show::after {
            display: block;
        }

    .aside-header .header-selectors-wrapper {
        padding: 1rem;
    }

        .aside-header .header-selectors-wrapper .header-selectors {
            max-width: 220px;
            margin: auto;
        }

            .aside-header .header-selectors-wrapper .header-selectors select:not(:last-child) {
                margin-bottom: .5rem;
            }

    .aside-header .header-customer-wrapper {
        position: relative;
        border-top: 1px solid #dedede;
        border-bottom: 1px solid #dedede;
        margin-bottom: 1rem;
    }

        .aside-header .header-customer-wrapper .nav-link {
            padding-bottom: 1rem;
            padding-top: 1rem;
            color: #000;
        }

        .aside-header .header-customer-wrapper .top-register-link {
            position: absolute;
            top: .5rem;
            right: 1rem;
        }

        .aside-header .header-customer-wrapper .customer-reward {
            color: #6f6f6f;
            margin-top: .5rem;
        }

        .aside-header .header-customer-wrapper .dropdown-toggle::after {
            top: 1rem;
        }

    .aside-header .dropdown .dropdown-menu {
        position: relative !important;
        width: 100%;
        border: none;
        border-radius: 0;
        background: #ebebeb;
        box-shadow: none;
        transform: none !important;
    }

    .aside-header .dropdown.show > .dropdown-toggle::after {
        transform: rotate(90deg);
    }

    .aside-header .dropdown .dropdown-menu .dropdown-menu {
        padding-left: 1rem;
    }

    .aside-header .aside-menu .navbar-nav .nav-item .nav-link {
        padding-right: 1rem;
        padding-left: 1rem;
        color: #6f6f6f;
    }

    .aside-header .aside-menu .navbar-nav .nav-item:hover .nav-link {
        color: #000;
    }

    .aside-header .dropdown-toggle::after {
        content: '';
        position: absolute;
        font-family: 'Font Awesome 5 pro';
        right: 1rem;
        top: .5rem;
        border: none;
        transition: .3s ease-in-out;
    }

#magic-line {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 125px;
    height: 4px;
    background: #ef394e;
    transition: all .3s;
}

.admin-links {
    position: fixed;
    right: 0;
    top: 100px;
    border-radius: .25rem 0 0 .25rem;
    background-color: #000;
    border: 1px solid #000;
    border-right-width: 0;
    z-index: 1030;
}

    .admin-links > .dropdown-item {
        border-bottom: 1px solid #262626;
        padding: 10px 1rem;
        display: block;
        color: #f5f5f5;
        font-size: 1.5em;
        line-height: 0;
    }

        .admin-links > .dropdown-item:hover, .admin-links > .dropdown-item:focus {
            background: #262626;
            color: #fff;
        }

        .admin-links > .dropdown-item span {
            display: none;
        }

@media(max-width:768px) {
    .admin-links {
        opacity: .7;
    }

        .admin-links:hover {
            opacity: 1;
        }
}

.impersonate {
    position: fixed;
    right: 50px;
    top: 50px;
    height: 80px;
    width: 80px;
    line-height: 90px;
    text-align: center;
    color: #fff;
    background: #000;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0,0,0,.3);
    z-index: 1030;
}

    .impersonate .fa-user-secret {
        font-size: 2.5em;
    }

    .impersonate .fa-times {
        position: absolute;
        top: 5px;
        right: 5px;
        width: 20px;
        height: 20px;
        line-height: 20px;
        text-align: center;
        background: #000;
        border-radius: 50%;
    }

@media(max-width:768px) {
    .impersonate {
        opacity: .7;
        left: 20px;
    }

        .impersonate:hover {
            opacity: 1;
        }
}

.img-flex {
    display: flex;
    justify-content: space-around;
}

    .img-flex div {
        flex-grow: 5;
    }

.img-footer {
    margin-bottom: 1rem;
}

.go-top-link {
    margin-top: 80px;
    padding: 20px 0;
    font-size: 20px;
    border-top: 1px solid rgba(222,222,222,.25);
    cursor: pointer;
}

    .go-top-link .goto-top {
        text-decoration: none;
        color: #000;
    }

        .go-top-link .goto-top .dk-icon-jumpup-wrapper {
            position: relative;
            display: inline-block;
            color: #fff;
            background-color: #dcdcdc;
            padding: 8px;
            margin-right: 1rem;
            margin: 0 10px;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            vertical-align: middle;
        }

            .go-top-link .goto-top .dk-icon-jumpup-wrapper .dk-icon {
                position: absolute;
                display: inline-block;
                transform: rotate(-90deg);
                left: 11px;
            }

.fa-search {
    vertical-align: middle;
}

@media(max-width:796px) {
    .border-shopfeatur-1 {
        border-top: 1px solid rgba(222,222,222,.4);
    }
}

.border-call {
    border-bottom: 1px solid rgba(0,0,0,.2);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    width: 100%;
}

    .border-call (max-width:769px) {
        border-top: unset;
    }

.footer-contact-us {
    font-size: 1em;
    padding-top: 2rem;
}

    .footer-contact-us .call {
        margin-right: -30px;
    }

    .footer-contact-us .email {
        margin-right: -135px;
    }

    .footer-contact-us img {
        border-radius: 10px;
        margin-top: -12px;
    }

.wrap-footer {
    padding-top: 40px;
}

@media(max-width:796px) {
    .wrap-footer {
        padding-top: unset;
        border-top: 1px solid #dedede;
    }

        .wrap-footer .form-control {
            padding-right: 59px;
            -webkit-border-radius: 9px;
            border-radius: 9px;
            background-color: #f0f0f0;
            border-color: #e5e5ea;
            font-size: 1.071rem;
            line-height: 1.467;
            padding: 17px 0;
        }
}

.store-footer {
    font-size: small;
    background: #fff;
    border-top: 1px solid #dedede;
}

    .store-footer .container {
        max-width: 1336px;
    }

    .store-footer .footer-block .title {
        font-size: large;
    }

    .store-footer .footer-block .nav-link {
        padding-top: .33333333rem;
        padding-bottom: .33333333rem;
        color: #6f6f6f;
    }

        .store-footer .footer-block .nav-link:hover, .store-footer .footer-block .nav-link:focus {
            color: #000;
            text-decoration: underline;
        }

    .store-footer .topic-block .topic-block-title {
        font-size: medium;
    }

    .store-footer .topic-block .topic-block-body {
        font-size: smaller;
        color: #6f6f6f;
    }

@media(max-width:767px) {
    .store-footer .nav {
        margin-bottom: 1rem;
    }

    .store-footer .footer-block:not(.follow-us) {
        margin-bottom: 1rem;
    }

        .store-footer .footer-block:not(.follow-us) .title {
            position: relative;
            border-bottom: 1px solid #dedede;
            padding: .5rem 0;
            cursor: pointer;
        }

            .store-footer .footer-block:not(.follow-us) .title::after {
                content: "";
                float: right;
                font-family: 'Font Awesome 5 pro';
                font-weight: 400;
                font-size: smaller;
                color: #6f6f6f;
                transition: .3s ease-in-out;
            }

        .store-footer .footer-block:not(.follow-us) .nav {
            display: none;
        }

        .store-footer .footer-block:not(.follow-us).open .title {
            border-bottom: none;
        }

            .store-footer .footer-block:not(.follow-us).open .title::after {
                -webkit-transform: rotateX(-180deg);
                -moz-transform: rotateX(-180deg);
                -ms-transform: rotateX(-180deg);
                -o-transform: rotateX(-180deg);
                transform: rotateX(-180deg);
                color: #ef394e;
            }

        .store-footer .footer-block:not(.follow-us).open .nav {
            display: block;
        }

    .store-footer .social, .store-footer .newsletter {
        text-align: center;
        margin-top: 2rem;
    }
}

.footer-upper {
    border-top: 1px solid #dedede;
    padding: 1rem 0;
}

@media(max-width:1000px) {
    .html-shopping-cart-page .footer-lower {
        padding-bottom: 130px;
    }
}

.footer-lower {
    padding: 1rem 0;
}

@media(max-width:769px) {
    .footer-lower .copy1 {
        display: none;
    }
}

.footer-lower h5 {
    padding-top: 2rem;
    text-align: start !important;
}

.footer-lower p a {
    color: #2f4f4f;
}

@media(max-width:769px) {
    .footer-lower {
        background-color: #fff;
    }
}

.footer-powered-by {
    margin: .5rem 0 1rem;
    font-size: smaller;
}

.social {
    margin-bottom: 1rem;
}

@media(max-width:1200px) {
    .social .title {
        margin-top: 3rem;
    }
}

.addthis_default_style {
    padding-top: 2rem;
}

.networks {
    padding: 0;
    list-style: none;
}

    .networks li {
        display: inline-block;
        margin-right: 1rem;
    }

        .networks li a {
            display: block;
            font-size: 2em;
            color: #6f6f6f;
        }

            .networks li a:hover, .networks li a:focus {
                color: #000;
            }

    .networks .aparat svg {
        height: 1em;
        vertical-align: -.125em;
    }

    .networks .aparat .st0 {
        stroke: #ebebeb;
        stroke-width: 25;
        stroke-miterlimit: 10;
    }

    .networks .aparat .st1 {
        fill: #ebebeb;
    }

    .networks .aparat .st2, .networks .aparat .st0 {
        fill: #6f6f6f;
    }

    .networks .aparat a:hover .st2, .networks .aparat a:hover .st0 {
        fill: #ef394e;
    }

.app {
    margin-bottom: 2rem;
}

    .app img {
        border: 1px solid #dedede;
    }

    .app .description {
        color: #6f6f6f;
        margin-bottom: 2rem;
    }

.newsletter {
    margin-bottom: 1rem;
}

@media(min-width:768px) {
    .newsletter {
        margin-bottom: 3rem;
    }
}

.newsletter .description {
    color: #6f6f6f;
    margin-bottom: .33333333rem;
}

@media(max-width:1200px) {
    .newsletter .input-group {
        margin-bottom: 2rem;
    }

        .newsletter .input-group .form-control {
            border-radius: 5px;
            padding: 5px 10px;
            font-size: .6em;
        }
}

@media(min-width:1200px) {
    .newsletter .input-group .btn-block {
        display: unset;
        width: unset;
    }

    .newsletter .input-group .btn-blue {
        border-color: transparent;
        padding: unset;
        border-radius: 5px 0 0 5px;
        font-size: 1rem;
        padding: 11px 24px;
    }

        .newsletter .input-group .btn-blue::before {
            background-color: transparent;
        }
}

.newsletter .modal {
    text-align: center;
}

    .newsletter .modal::before {
        content: '';
        height: 100%;
        width: 1px;
        display: inline-block;
        vertical-align: middle;
    }

    .newsletter .modal .modal-dialog {
        text-align: left;
        margin: 10px auto;
        display: inline-block;
        vertical-align: middle;
    }

        .newsletter .modal .modal-dialog .modal-body {
            padding: 3rem;
            font-size: medium;
        }

.newsletter .description {
    margin-bottom: 1rem;
}

.theme-selector {
    max-width: 250px;
}

.store-aside .nav-pills > li:not(.active) > a {
    color: #000;
}

.store-aside .block {
    margin-bottom: 1rem;
    background-color: #fff;
    border: 1px solid #dedede;
    border-radius: 8px;
}

    .store-aside .block .ajax-filter-title a {
        position: relative;
        color: #000;
        width: 100%;
        display: block;
        padding: 1rem;
        font-size: small;
        font-weight: 700;
    }

        .store-aside .block .ajax-filter-title a i {
            position: absolute;
            right: 1rem;
            top: 50%;
            font-size: x-large;
            color: #6f6f6f;
            transform: translateY(-50%);
        }

        .store-aside .block .ajax-filter-title a:hover {
            text-decoration: none;
        }

        .store-aside .block .ajax-filter-title a:not(.collapsed) {
            border-bottom: 1px solid #dedede;
        }

            .store-aside .block .ajax-filter-title a:not(.collapsed) i {
                transform: translateY(-50%) rotate(180deg);
            }

    .store-aside .block .custom-control {
        margin-bottom: 5px;
    }

        .store-aside .block .custom-control .custom-control-label::before {
            top: 0;
        }

@media(min-width:768px) {
    .store-aside .block.block-manufacturer-navigation .listbox {
        height: 150px;
        overflow-y: scroll;
    }
}

.store-aside .view-all {
    margin-top: .33333333rem;
}

.store-aside-mobile {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1050;
    background-color: #f5f5f5;
    padding: 1rem;
    overflow: scroll;
}

    .store-aside-mobile.show {
        display: block;
    }

    .store-aside-mobile .block .title {
        cursor: pointer;
    }

        .store-aside-mobile .block .title::after {
            content: "";
            font-family: 'Font Awesome 5 pro';
            font-weight: 400;
            position: absolute;
            top: 0;
            left: 1rem;
            transition: .3s ease-in-out;
            color: #6f6f6f;
        }

    .store-aside-mobile .block.open .title::after {
        -webkit-transform: rotateX(-180deg);
        -moz-transform: rotateX(-180deg);
        -ms-transform: rotateX(-180deg);
        -o-transform: rotateX(-180deg);
        transform: rotateX(-180deg);
        color: #ef394e;
    }

    .store-aside-mobile .block.open .listbox {
        display: block;
    }

.block-category-navigation ul {
    padding: 0;
    list-style: none;
}

    .block-category-navigation ul li a {
        display: block;
        padding: .5rem;
        color: #6f6f6f;
        text-decoration: none;
    }

    .block-category-navigation ul li:hover > a {
        color: #00bfd6;
    }

    .block-category-navigation ul li.active > a {
        color: #000;
        font-weight: bold;
    }

    .block-category-navigation ul li.has-sublist > a::before {
        content: "";
        font-family: 'Font Awesome 5 pro';
        font-weight: 300;
        margin-right: 3px;
    }

    .block-category-navigation ul li.has-sublist.active > a::before {
        content: "";
    }

    .block-category-navigation ul ul {
        margin-left: 1rem;
    }

    .block-category-navigation ul .category-number {
        float: right;
    }

.html-address-list-page .store-aside {
    position: relative;
}

.html-address-list-page .add-address-button {
    display: flex;
    background: none;
    border: 4px dashed #dedede;
    height: 285px;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #8f8f8f;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -.5px;
    cursor: pointer;
}

    .html-address-list-page .add-address-button:hover {
        border: 4px dashed #00bfd6;
    }

.html-address-list-page .add-address {
    font-family: iranyekan,'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
}

.html-address-list-page .address-border {
    border-top: 1px solid #dedede;
    padding-top: 1rem;
}

@media(max-width:992px) {
    .html-address-list-page .address-border {
        border: none;
    }
}

.html-address-list-page .city-state-zip {
    font-size: 1rem;
    letter-spacing: .1px;
}

.html-address-list-page .btn {
    border-radius: 5px;
    font-size: 1rem;
    line-height: 1.571;
    color: #6d6d6d;
    padding: 5px 20px;
}

.customer-address {
    flex-direction: column;
    min-height: 200px;
}

@media(max-width:992px) {
    .customer-address .title {
        padding-bottom: 1rem;
        border-bottom: 1px solid #dedede;
    }
}

.block-blog-archive .year:not(:last-child) {
    margin-bottom: 1rem;
}

.block-manufacturer-navigation {
    padding-bottom: 1rem;
}

    .block-manufacturer-navigation .manufacturer-picture {
        width: auto !important;
        max-width: 90px;
        height: 90px;
        object-fit: contain;
        margin: 0 auto;
    }

@media(min-width:768px) {
    .block-manufacturer-navigation .manufacturer-picture {
        max-width: 120px;
        height: 120px;
    }
}

.block-manufacturer-navigation .view-all {
    padding-right: 18px;
}

.block-manufacturer-navigation .manufacturer-name {
    display: none;
}

.block-manufacturer-navigation id-.owl-carousel .owl-item {
    display: inline-block !important;
    text-align: center;
}

.html-address-list-page .add-button {
    margin-left: 0;
}

@media(max-width:992px) {
    .html-address-list-page .add-button {
        box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
        margin-bottom: 3rem;
        padding: 1rem 2rem;
    }
}

.html-address-list-page .add-button .btn {
    background-color: #fff;
    border: 1px solid #dedede;
    position: relative;
    padding-right: 2rem;
}

    .html-address-list-page .add-button .btn::before {
        position: absolute;
        content: "︎";
        font-family: digikalaD7;
        right: 5px;
        top: 5px;
    }

.html-address-list-page .add-button > button:hover {
    background-color: #f6ffff;
    color: #00bfd6;
}

@media(max-width:992px) {
    .html-address-list-page .add-button {
        background-color: #fff;
    }
}

.block-recently-viewed-products .title {
    font-size: 20px;
}

.block-recently-viewed-products .list-group-item-action {
    background-color: #f0f8ff;
}

.block-recently-viewed-products .list-item a {
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-filter {
    border-radius: 4px;
    background-color: #e0e0e0;
    color: #000 !important;
    font-size: 12px;
    line-height: 1.833;
    margin-left: 5px;
    margin-bottom: 1rem;
}

.icon-btn-search::after, .icon-btn-sort::after {
    font-family: digikalaAC;
    font-size: 17px;
    vertical-align: middle;
}

.icon-btn-search::after {
    content: "︎";
}

.icon-btn-sort::after {
    content: "︎";
}

.btn-filter-close {
    background-color: #e0e0e0;
    color: #000 !important;
    font-size: 12px;
    font-size: .857rem;
    line-height: 1.833;
    margin-bottom: 2rem;
    position: relative;
}

    .btn-filter-close::after {
        content: "";
        font-family: digikala;
        position: absolute;
        font-size: 17px;
        left: 5px;
        bottom: 0;
    }

.icon-btn-close {
    float: right;
    position: relative;
}

.html-category-page .page-title {
    position: absolute;
    visibility: hidden;
    opacity: 0;
}

.html-category-page .list-group-item {
    border: unset;
}

.html-category-page-super-market {
    position: relative;
}

    .html-category-page-super-market::before {
        content: "";
        position: absolute;
        top: 75px;
        left: 0;
        right: 0;
        height: 275px;
        background-color: #39ae00;
        background-image: url("../images/701f8a6b.svg"),linear-gradient(rgba(1,1,1,0) 180px,#f5f5f5);
    }

.html-category-page-offer {
    position: relative;
}

    .html-category-page-offer::before {
        content: "";
        position: absolute;
        top: 75px;
        left: 0;
        right: 0;
        height: 275px;
        background-color: rgba(255,80,98,.89);
        background-image: url("../images/701f8a6b.svg"),linear-gradient(rgba(1,1,1,0) 180px,#f5f5f5);
    }

.home-page-category {
    margin-bottom: 3rem;
    margin-top: 3rem;
}

    .home-page-category .category-item {
        position: relative;
        margin-bottom: 1rem;
        border-radius: 5px;
        box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
        cursor: pointer;
    }

        .home-page-category .category-item .title {
            position: absolute;
            text-align: left;
            width: 100%;
            bottom: 30%;
            left: 0;
            right: -8px;
            margin: 0;
            font-size: large;
            font-weight: bold;
            z-index: 1;
            padding: 0;
            transition: .3s ease-in-out;
        }

            .home-page-category .category-item .title a {
                display: block;
                padding: .5rem 1rem;
                color: #000;
            }

                .home-page-category .category-item .title a:hover, .home-page-category .category-item .title a:focus {
                    text-decoration: none;
                }

        .home-page-category .category-item .picture img {
            width: 100%;
            height: auto;
        }

    .home-page-category .col-6:nth-child(5), .home-page-category .col-6:nth-child(6) {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

@media(min-width:992px) {
    .home-page-category .col-6:nth-child(5), .home-page-category .col-6:nth-child(6) {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.sub-category-grid {
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

    .sub-category-grid .category-item {
        position: relative;
        text-align: center;
        margin-top: 1rem;
        border-radius: 8px;
    }

        .sub-category-grid .category-item a {
            color: #000;
        }

        .sub-category-grid .category-item .title {
            background: #ebebeb;
            border-radius: 8px;
            padding: .5rem 1rem;
            margin-top: 1rem;
            margin-bottom: 0;
            font-size: small;
        }

        .sub-category-grid .category-item .picture {
            margin: 0;
        }

            .sub-category-grid .category-item .picture img {
                width: 100%;
                height: auto;
                box-shadow: 0 7px 8px 0 rgba(0,0,0,.19);
                border-radius: 16px;
            }

.vendor-page .vendor-logo, .manufacturer-page .vendor-logo, .vendor-page .manufacturer-logo, .manufacturer-page .manufacturer-logo {
    background-color: #fff;
    border: 1px solid #d4d4d4;
    padding: 1rem;
    text-align: center;
    position: relative;
    margin-bottom: 1rem;
}

    .vendor-page .vendor-logo img, .manufacturer-page .vendor-logo img, .vendor-page .manufacturer-logo img, .manufacturer-page .manufacturer-logo img {
        width: 145px;
        height: 145px;
        object-fit: contain;
    }

    .vendor-page .vendor-logo .share-button, .manufacturer-page .vendor-logo .share-button, .vendor-page .manufacturer-logo .share-button, .manufacturer-page .manufacturer-logo .share-button {
        color: #a2a2a2;
        position: absolute;
        right: 0;
        bottom: 22px;
    }

    .vendor-page .vendor-logo .page-title, .manufacturer-page .vendor-logo .page-title, .vendor-page .manufacturer-logo .page-title, .manufacturer-page .manufacturer-logo .page-title {
        color: #6f6f6f;
        font-size: medium;
        margin-top: 1rem;
    }

    .vendor-page .vendor-logo .vendor-link, .manufacturer-page .vendor-logo .vendor-link, .vendor-page .manufacturer-logo .vendor-link, .manufacturer-page .manufacturer-logo .vendor-link, .vendor-page .vendor-logo .manufacturer-link, .manufacturer-page .vendor-logo .manufacturer-link, .vendor-page .manufacturer-logo .manufacturer-link, .manufacturer-page .manufacturer-logo .manufacturer-link {
        color: #6f6f6f;
    }

.product-selectors {
    background-color: #fff;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid rgba(222,222,222,.5);
    padding: 1rem 1rem;
}

@media(max-width:769px) {
    .product-selectors {
        background-color: transparent;
        padding: 1rem 0;
    }

        .product-selectors .dropdown-toggle::after {
            display: none !important;
        }

        .product-selectors .dropdown-menu {
            width: 100%;
            cursor: pointer;
        }

            .product-selectors .dropdown-menu li:not(:last-child) {
                border-bottom: 1px solid #dedede;
            }

            .product-selectors .dropdown-menu li {
                padding: 10px;
            }

            .product-selectors .dropdown-menu a {
                color: #000 !important;
                padding: 10px;
                cursor: pointer;
            }
}

.product-selectors .product-viewmode {
    margin: 0 5px;
}

    .product-selectors .product-viewmode .btn {
        border: 1px solid #00bfd6 !important;
    }

        .product-selectors .product-viewmode .btn .fa {
            color: #00bfd6 !important;
        }

        .product-selectors .product-viewmode .btn.active .fa {
            color: #fff !important;
        }

        .product-selectors .product-viewmode .btn:active {
            background-color: transparent !important;
        }

.product-sorting span {
    position: relative;
}

    .product-sorting span::before {
        content: "︎";
        font-family: digikala20;
        margin-right: 3px;
    }

.product-sorting ul {
    display: inline-block;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

    .product-sorting ul li {
        display: inline-block;
    }

        .product-sorting ul li a {
            padding: 2px 8px;
            text-decoration: none;
            color: #000;
            border-radius: 5px;
        }

            .product-sorting ul li a:hover {
                background-color: rgba(0,0,0,.1);
            }

        .product-sorting ul li.active a {
            background-color: #00bfd6 !important;
            color: #fff;
        }

.product-filter .filter-title {
    background-color: #ebebeb;
    padding: .33333333rem 1rem;
    margin-bottom: .33333333rem;
}

@media(max-width:1000px) {
    .master-wrapper-page .container {
        padding-left: 15px;
        padding-right: 15px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: none;
    }
}

.description-product {
    list-style-type: none;
}

.product-reviews-page .write-review .title {
    padding-right: 2rem;
}

@media(max-width:992px) {
    .product-reviews-page .write-review .title {
        padding-right: 0;
    }
}

.product-essential {
    margin-bottom: 2rem;
    padding: 1rem;
    position: relative;
    border-radius: 2px;
    border: 1px solid #dedede;
    background-color: #fff;
    box-shadow: 0 7px 8px 0 rgba(0,0,0,.04);
}

@media(max-width:768px) {
    .product-essential .add-to-cart {
        position: fixed;
        left: 0;
        bottom: 0;
        right: 0;
        padding: 1rem;
        background-color: #f5f5f5;
        border-top: 1px solid #e8e8e8;
        z-index: 1030;
    }
}

.product-essential .product-reviews-overview {
    padding-bottom: 1rem;
}

.product-essential figure.zoom {
    background-position: 50% 50%;
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}

    .product-essential figure.zoom img:hover {
        opacity: 0;
    }

    .product-essential figure.zoom img {
        transition: opacity .5s;
        display: block;
        width: 100%;
        background: #fff;
    }

@media(min-width:768px) {
    .product-essential figure.zoom {
        width: 500px;
    }
}

.product-essential .attributes .text-prompt {
    color: #000;
}

.product-essential .attributes .form-check:first-child {
    padding-right: 0;
}

.feature-product {
    border-top: 1px solid rgba(222,222,222,.3);
    font-size: 10px;
    align-content: flex-end;
}

    .feature-product .wighet {
        display: flex;
    }

        .feature-product .wighet .dk-icon {
            padding-left: 10px;
        }

    .feature-product a {
        padding-right: 15px;
        padding-top: 15px;
        color: #000;
        text-decoration: none;
    }

.overview-buttons {
    position: absolute;
    top: 20px;
    /*left: 1rem;*/
    z-index: 1;
}

    .overview-buttons .btn {
        display: block;
    }

    .overview-buttons .btn-outline-secondary {
        border: none !important;
        font-size: x-large;
    }

        .overview-buttons .btn-outline-secondary:hover {
            background-color: transparent !important;
            color: #6c757d !important;
        }

.flyout-compare {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 1040;
}

    .flyout-compare .flyout-compare-button {
        min-width: 250px;
        position: relative;
        z-index: 1;
        text-align: initial;
    }

    .flyout-compare .flyout-compare-list {
        display: none;
        position: absolute;
        right: -1rem;
        bottom: -1rem;
        padding: 1rem;
        padding-bottom: 70px;
        min-width: 280px;
        max-width: 90%;
        border-radius: 8px;
        border: 1px solid #dedede;
        background: #fff;
        box-shadow: 0 7px 8px 0 rgba(0,0,0,.04);
    }

        .flyout-compare .flyout-compare-list .flyout-compare-item {
            margin-bottom: .5rem;
        }

            .flyout-compare .flyout-compare-list .flyout-compare-item a {
                color: #000;
                font-size: small;
                line-height: 1;
            }

    .flyout-compare:hover .flyout-compare-list {
        display: block;
    }

.Product-details-pictures .picture img {
    width: 100%;
    height: auto;
}

.product-reviews-overview {
    margin-top: 1rem;
}

    .product-reviews-overview .product-review-box {
        color: #6f6f6f;
        display: inline-block;
    }

        .product-reviews-overview .product-review-box .separator::before {
            content: "/";
            margin: 0;
        }

    .product-reviews-overview .rating {
        display: inline-block;
    }

    .product-reviews-overview .product-review-links {
        display: inline-block;
    }

.overview .attr, .variant-overview .attr {
    color: #6f6f6f;
}

.overview .value, .variant-overview .value {
    margin: 0 5px;
}

.overview .form, .variant-overview .form {
    background-color: #fff;
}

.overview .manufacturers .separator::before, .variant-overview .manufacturers .separator::before {
    content: "|";
}

.overview .secondary-name, .variant-overview .secondary-name {
    margin-top: .5rem;
    margin-bottom: 1rem;
    display: block;
    font-size: small;
    font-weight: bold;
}

.overview .short-description, .variant-overview .short-description {
    margin-bottom: 1rem;
    color: #776f6f;
}

.overview .attributes, .variant-overview .attributes {
    margin-top: 1rem;
}

    .overview .attributes .option-list, .variant-overview .attributes .option-list {
        padding: 0;
    }

        .overview .attributes .option-list > li, .variant-overview .attributes .option-list > li {
            display: inline-block;
        }

    .overview .attributes .custom-control, .variant-overview .attributes .custom-control {
        display: inline-block;
    }

        .overview .attributes .custom-control:not(:last-child), .variant-overview .attributes .custom-control:not(:last-child) {
            margin-right: 1rem;
        }

.overview .discontinued-product, .variant-overview .discontinued-product {
    color: #dc3545;
    font-weight: bold;
}

.overview .back-in-stock-subscription, .variant-overview .back-in-stock-subscription {
    margin-top: .5rem;
    margin-bottom: 1rem;
}

.overview .prices, .variant-overview .prices {
    margin-top: 1rem;
}

    .overview .prices .old-product-price .value, .variant-overview .prices .old-product-price .value, .overview .prices .non-discounted-price .value, .variant-overview .prices .non-discounted-price .value {
        color: #6f6f6f;
        text-decoration: line-through;
        font-size: 1.3rem;
    }

    .overview .prices .call-for-price, .variant-overview .prices .call-for-price {
        color: #dc3545;
    }

    .overview .prices .product-price, .variant-overview .prices .product-price {
        color: #ef394e !important;
    }

.overview .tier-prices .prices-table .field-header, .variant-overview .tier-prices .prices-table .field-header {
    font-weight: bold;
    color: #6f6f6f;
}

.overview .tier-prices .prices-table .item-price, .variant-overview .tier-prices .prices-table .item-price {
    color: #ef394e;
}

.download-sample {
    margin-top: 1rem;
}

.attributes {
    margin-top: 1rem;
    color: #6f6f6f;
    font-size: smaller;
}

    .attributes .attribute-item {
        margin-bottom: 1px;
    }

        .attributes .attribute-item .attribute-square {
            display: inline-block;
            height: 16px;
            width: 16px;
            vertical-align: middle;
            margin-left: 3px;
        }

            .attributes .attribute-item .attribute-square.color-square {
                border-radius: 50%;
            }

.attribute-squares label {
    margin-bottom: 0;
}

    .attribute-squares label input[type="radio"] {
        visibility: hidden;
        position: absolute;
    }

.attribute-squares .attribut-name {
    padding-right: 8px;
}

.attribute-squares .attribute-square-container {
    cursor: pointer;
    border: 1px solid #dedede;
    border-radius: 8px;
    color: #6f6f6f;
    padding: 5px 10px 5px 16px;
    font-size: .929rem;
    display: block;
    margin-bottom: .5rem;
}

    .attribute-squares .attribute-square-container .attribute-square {
        width: 17px;
        height: 17px;
        line-height: 17px;
        display: inline-block;
        border-radius: 50%;
        border: 1px solid #dedede;
    }

.attribute-squares .selected-value .attribute-square-container {
    border-color: #00bfd6;
}

.attribute-squares.image-squares .attribute-square-container {
    padding: 0;
}

    .attribute-squares.image-squares .attribute-square-container .attribute-square {
        width: 40px;
        height: 40px;
        border: none;
    }

.attribute-squares.image-squares .popover {
    top: auto;
    bottom: 55px;
    margin-left: 20px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    border-color: #dedede;
    display: none;
    box-shadow: 0 7px 8px 0 rgba(0,0,0,.04);
}

    .attribute-squares.image-squares .popover::after {
        content: "";
        position: absolute;
        bottom: -6px;
        width: 10px;
        height: 10px;
        background-color: #fff;
        border-right: 1px solid #dedede;
        border-bottom: 1px solid #dedede;
        left: 50%;
        margin-left: -5px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .attribute-squares.image-squares .popover img {
        max-width: 250px;
    }

.attribute-squares.image-squares .image-square-item:hover .popover {
    display: block;
}

ul.attribute-squares {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

    ul.attribute-squares > li {
        display: inline-block;
        position: relative;
    }

.product-share-button {
    position: relative;
}

    .product-share-button .popover {
        display: none;
        top: auto;
        padding: 5px 5px 0;
        bottom: 110%;
        min-width: 150px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        border-color: #dedede;
    }

        .product-share-button .popover::after {
            content: "";
            position: absolute;
            bottom: -6px;
            width: 10px;
            height: 10px;
            background-color: #fff;
            border-right: 1px solid #dedede;
            border-bottom: 1px solid #dedede;
            left: 50%;
            margin-left: -5px;
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
        }

        .product-share-button .popover:hover {
            display: block;
        }

    .product-share-button:hover .popover {
        display: block;
    }

.feature-product {
    border-top: 1px solid #dedede;
    font-size: 10px;
}

    .feature-product a {
        padding-right: 15px;
        padding-top: 15px;
        color: #9b9b9b;
        text-decoration: none;
    }

    .feature-product .feature-product-2::before {
        content: "︎";
        font-family: digikala;
    }

.add-to-cart .min-qty-notification {
    font-style: italic;
    margin-bottom: 5px;
}

.add-to-cart .add-to-cart-panel .form-control {
    display: inline-block;
    max-width: 90px;
    text-align: center;
    vertical-align: middle;
    border-color: #dedede;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 20px;
}

.add-to-cart .add-to-cart-panel:hover, .add-to-cart .add-to-cart-panel:focus {
    border-color: #dedede !important;
}

.static-sale {
    display: inline-block;
}

.product-variant-list .product-variant-line {
    background-color: #fff;
    box-shadow: 0 7px 8px 0 rgba(0,0,0,.04);
    border-radius: 8px;
    border-bottom: 1px solid #dedede;
    padding: 1rem;
    margin-bottom: 2rem;
}

@media(max-width:769px) {
    .product-box .details .description, .product-box-list .details .description {
        display: none;
    }
}

.product-box .offer-mobile, .product-box-list .offer-mobile {
    color: #ef394e;
    padding-bottom: .33333333rem;
    margin-bottom: .5rem;
    border-bottom: 1px solid #ef394e;
    font-size: .8em;
}

.product-box .product-title, .product-box-list .product-title {
    font-size: small;
    line-height: 1.75;
    margin-bottom: 1rem;
}

    .product-box .product-title a, .product-box-list .product-title a {
        color: #000;
    }

        .product-box .product-title a:hover, .product-box-list .product-title a:hover, .product-box .product-title a:focus, .product-box-list .product-title a:focus {
            text-decoration: none;
        }

.product-box .rating, .product-box-list .rating {
    margin-bottom: 10px;
    font-size: smaller;
    text-align: left;
}

@media(max-width:768px) {
    .product-box .rating, .product-box-list .rating {
        text-align: right;
    }
}

.product-box .prices, .product-box-list .prices {
    margin-bottom: 10px;
    text-align: left;
}

    .product-box .prices .old-price, .product-box-list .prices .old-price {
        text-decoration: line-through;
        color: #6f6f6f;
    }

    .product-box .prices .actual-price, .product-box-list .prices .actual-price {
        font-weight: bold;
        display: block;
        margin-top: .5rem;
    }

.product-box .out-stock, .product-box-list .out-stock {
    color: #6f6f6f;
}

.product-box .picture, .product-box-list .picture {
    position: relative;
}

    .product-box .picture figure, .product-box-list .picture figure {
        margin-bottom: 1rem;
    }

    .product-box .picture a, .product-box-list .picture a {
        text-decoration: none;
    }

    .product-box .picture .ribbons, .product-box-list .picture .ribbons {
        position: relative;
    }

        .product-box .picture .ribbons .ribbon-offer, .product-box-list .picture .ribbons .ribbon-offer {
            color: #ef394e;
            text-align: center;
            border-bottom: 1px solid #ef394e;
            position: absolute;
            width: 100%;
            left: 0;
            right: 0;
            top: -2em;
        }

@media(max-width:769px) {
    .product-box .picture .ribbons .ribbon-offer, .product-box-list .picture .ribbons .ribbon-offer {
        font-size: 1em;
    }
}

.product-box .picture .ribbons .ribbon-new, .product-box-list .picture .ribbons .ribbon-new {
    position: absolute;
    background-color: #ef394e;
    padding: 5px 10px;
    color: #fff;
    border-radius: 0 8px 8px 8px;
    top: 10px;
    right: 10px;
}

@media(max-width:769px) {
    .product-box .picture .ribbons .ribbon-new, .product-box-list .picture .ribbons .ribbon-new {
        font-size: .8em;
        padding: 3px 8px;
    }
}

@media(max-width:500px) {
    .product-box .picture .ribbons .ribbon-new, .product-box-list .picture .ribbons .ribbon-new {
        padding: 2px;
        top: 5px;
        right: 5px;
    }
}

.discount-percent {
    display: inline-block;
    background-color: #ef394e;
    padding: 2px 12px;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    margin-right: .25rem;
    font-weight: bold;
}

.product-box {
    padding: .33333333rem 1rem;
}

    .product-box .picture img {
        width: 100%;
        height: auto;
    }

    .product-box .product-title {
        height: 48px;
        line-height: 16px;
        overflow: hidden;
    }

    .product-box .actions {
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .product-box .add-to-compare-list-button.active, .product-box .add-to-wishlist-button.active {
        color: #ef394e;
    }

    .product-box .add-info {
        height: 50px;
    }

    .product-box .out-stock {
        position: relative;
    }

        .product-box .out-stock::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: #838383;
        }

        .product-box .out-stock span {
            background-color: #fff;
            color: #838383;
            font-size: large;
            position: relative;
            padding: 0 .5rem;
            z-index: 1;
        }

.product-list .product-box-list {
    margin-bottom: 1rem;
}

.product-grid .product-box-superMarket .picture {
    padding: 30px 12px 46px;
}

.product-grid ul.item-grid {
    background-color: #fff;
    padding: 0 0;
    list-style: none;
    margin: 0;
}

    .product-grid ul.item-grid .item-box {
        border-bottom: 1px solid rgba(222,222,222,.5);
        border-left: 1px solid rgba(222,222,222,.5);
    }

        .product-grid ul.item-grid .item-box .product-box {
            padding: 2rem 1rem 1rem;
        }

.item-grid .item-box-list {
    border-bottom: 1px solid #dedede;
}

    .item-grid .item-box-list .product-box-list {
        padding: 1rem 0;
        position: relative;
    }

.item-grid .item-box {
    padding-left: 0;
    padding-right: 0;
}

    .item-grid .item-box:hover {
        box-shadow: 0 0 10px 0 rgba(0,0,0,.1) !important;
    }

.product-grid-carousel {
    margin-bottom: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
    background: #fff;
}

    .product-grid-carousel .picture > .d-flex {
        display: block !important;
    }

    .product-grid-carousel .title {
        position: relative;
        margin: 0 1rem 1rem;
    }

        .product-grid-carousel .title span {
            display: inline-block;
            position: relative;
            padding: 5px 0;
            color: #000;
            font-size: large;
            padding-right: 1rem;
        }

            .product-grid-carousel .title span::before, .product-grid-carousel .title span::after {
                content: "";
                position: absolute;
                bottom: 0;
                height: 1px;
                z-index: 1;
            }

            .product-grid-carousel .title span::before {
                left: 0;
                right: 0;
                background-color: #ef394e;
            }

            .product-grid-carousel .title span::after {
                right: -17px;
                width: 15px;
                background-color: #fff;
            }

        .product-grid-carousel .title::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 1px;
            background-color: #dedede;
        }

    .product-grid-carousel .product-box {
        transition: .3s ease-in-out;
    }

        .product-grid-carousel .product-box .ribbon {
            position: unset !important;
            display: none;
        }

        .product-grid-carousel .product-box .details .rating {
            display: none;
        }

        .product-grid-carousel .product-box:hover {
            box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
            transform: translateY(-3px);
        }

        .product-grid-carousel .product-box .d-flex .add-to-cart-button {
            display: none !important;
        }

    .product-grid-carousel.also-purchased-product-grid .title {
        font-size: 1.286rem;
        line-height: 31px;
    }

    .product-grid-carousel .owl-carousel {
        position: relative;
    }

        .product-grid-carousel .owl-carousel .owl-nav button {
            position: absolute;
            top: 50%;
            background-color: #fff;
            width: 35px;
            height: 70px;
            font-size: 26px;
            opacity: .95;
            transform: translateY(-50%);
        }

            .product-grid-carousel .owl-carousel .owl-nav button.owl-prev {
                left: 0;
                border-radius: 0 8px 8px 0;
                box-shadow: 1.5px 0 4px 0 rgba(0,0,0,.15);
            }

                .product-grid-carousel .owl-carousel .owl-nav button.owl-prev.disabled {
                    opacity: .15;
                }

            .product-grid-carousel .owl-carousel .owl-nav button.owl-next {
                right: 0;
                border-radius: 8px 0 0 8px;
                box-shadow: -1.5px 0 4px 0 rgba(0,0,0,.15);
            }

    .product-grid-carousel .product-box .out-stock span, .category-products-item .product-box .out-stock span {
        font-size: small;
    }

.product-thumbnails img {
    opacity: .8;
}

    .product-thumbnails img:hover {
        opacity: 1;
        cursor: pointer;
    }

.product-thumbnails.owl-carousel .owl-nav {
    position: absolute;
    left: 50%;
    margin-left: -32px;
    top: 80%;
}

.product-review-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #dedede;
}

    .product-review-item .review-item-head .review-title {
        font-size: large;
    }

    .product-review-item .review-item-head .product-review-box a {
        font-size: small;
    }

@media(max-width:992px) {
    .product-review-item .review-content .review-text {
        margin-bottom: 1rem;
    }
}

.product-review-item .review-content .review-info {
    color: #6f6f6f;
}

    .product-review-item .review-content .review-info .date, .product-review-item .review-content .review-info .review-for, .product-review-item .review-content .review-info .user {
        display: inline-block;
        color: #6f6f6f;
        font-size: smaller;
    }

.new-product-grid > .container .owl-stage {
    display: flex;
}

.new-product-grid > .container .title {
    margin-top: 1rem;
}

.new-product-grid > .container .section-title a {
    position: relative;
    top: -30px;
    right: 10px;
    padding: 6px 1rem;
}

.new-product-grid .product-box .ribbon-new, .new-product-grid .product-box-list .ribbon-new {
    display: none;
}

.product-reviews-page .reply {
    margin-left: 2rem;
    border: 1px solid #dedede;
    padding: .33333333rem 1rem .5rem;
}

    .product-reviews-page .reply .reply-header {
        color: #6f6f6f;
        font-size: smaller;
        font-weight: bold;
    }

.my-product-reviews-list-page .product-review-item .review-content {
    background-color: #ebebeb;
}

.product-review-helpfulness {
    text-align: center;
    position: relative;
}

    .product-review-helpfulness .result {
        display: none;
        position: absolute;
        top: 5px;
        left: 0;
        background: #00bfd6;
        color: #fff;
        padding: 2px 5px;
    }

.html-product-details-page .breadcrumb .breadcrumb-item.active {
    position: absolute;
    clip: rect(1px,1px,1px,1px);
}

@media(min-width:1024px) {
    .product-details-page .add-to-cart-box {
        background-color: #f0f0f0;
        border: 1px solid #e8e8e8;
        padding: 1rem;
    }
}

.product-details-page .add-to-cart-box .sku, .product-details-page .add-to-cart-box .manufacturers, .product-details-page .add-to-cart-box .product-vendor {
    margin-bottom: .5rem;
}

.product-details-page .add-to-cart-box .availability {
    text-align: center;
}

    .product-details-page .add-to-cart-box .availability .stock {
        position: relative;
        margin-bottom: 2rem;
    }

        .product-details-page .add-to-cart-box .availability .stock span {
            background-color: #f5f5f5;
            color: #6f6f6f;
            font-size: large;
            position: relative;
            padding: 0 1rem;
            z-index: 1;
        }

            .product-details-page .add-to-cart-box .availability .stock span.attr {
                display: none;
            }

        .product-details-page .add-to-cart-box .availability .stock::after {
            content: "";
            position: absolute;
            background-color: #6f6f6f;
            width: 100%;
            height: 1px;
            bottom: 10px;
            left: 0;
        }

.product-details-page .add-to-cart-box .manufacturers, .product-details-page .add-to-cart-box .product-vendor {
    position: relative;
}

    .product-details-page .add-to-cart-box .manufacturers .attr, .product-details-page .add-to-cart-box .product-vendor .attr {
        margin: 0 .25rem;
    }

    .product-details-page .add-to-cart-box .manufacturers::before, .product-details-page .add-to-cart-box .product-vendor::before {
        font-family: 'Font Awesome 5 pro';
        font-size: 1rem;
        color: #ef394e;
        vertical-align: middle;
    }

    .product-details-page .add-to-cart-box .manufacturers::before {
        content: "";
    }

.product-details-page .add-to-cart-box .additional-details .product-vendor {
    display: block;
}

    .product-details-page .add-to-cart-box .additional-details .product-vendor::before {
        content: "";
    }

.product-details-page .add-to-cart-box .delivery {
    border-bottom: 1px solid #dedede;
    padding-bottom: 1rem;
}

    .product-details-page .add-to-cart-box .delivery .dk-icon-sending {
        color: #ef394e;
        font-size: 2em;
        vertical-align: middle;
    }

.product-details-page .add-to-cart-box .prices {
    margin: 1rem 0;
    text-align: left;
}

    .product-details-page .add-to-cart-box .prices .rental-price {
        border-bottom: 1px solid #dedede;
        padding-bottom: 1rem;
    }

    .product-details-page .add-to-cart-box .prices .old-product-price, .product-details-page .add-to-cart-box .prices .non-discounted-price {
        display: inline-block;
    }

        .product-details-page .add-to-cart-box .prices .old-product-price .value, .product-details-page .add-to-cart-box .prices .non-discounted-price .value {
            color: #6f6f6f;
            text-decoration: line-through;
            font-size: medium;
        }

    .product-details-page .add-to-cart-box .prices .call-for-price {
        color: #dc3545;
    }

    .product-details-page .add-to-cart-box .prices .product-price {
        display: block;
        font-size: x-large;
        margin-top: .5rem;
    }

.product-details-page .add-to-cart-box .add-to-cart .add-to-cart-panel .form-control {
    display: none;
}

.product-details-page .product-tabs {
    margin-bottom: 3rem;
}

    .product-details-page .product-tabs .nav-tabs {
        background-color: #f5f5f5;
        border: 1px solid #dedede;
        border-bottom: none;
        margin-bottom: 0;
    }

        .product-details-page .product-tabs .nav-tabs .nav-item .nav-link {
            border-radius: unset;
            padding: .5rem;
            font-size: small;
            color: rgba(0,0,0,.7);
            color: #000;
            border-right: 1px solid #dedede;
        }

@media(min-width:768px) {
    .product-details-page .product-tabs .nav-tabs .nav-item .nav-link {
        padding: 1rem;
        font-size: medium;
    }
}

.product-details-page .product-tabs .nav-tabs .nav-item .nav-link .dk-icon {
    margin-right: .5rem;
    vertical-align: sub;
    color: #a2a2a2;
    font-size: 1.5em;
}

@media(max-width:767px) {
    .product-details-page .product-tabs .nav-tabs .nav-item .nav-link .dk-icon {
        display: none;
    }
}

.product-details-page .product-tabs .nav-tabs .nav-item .nav-link.active {
    position: relative;
}

    .product-details-page .product-tabs .nav-tabs .nav-item .nav-link.active::before {
        content: "";
        position: absolute;
        background-color: #00bfd6;
        height: 5px;
        left: 0;
        right: 0;
        top: -5px;
    }

.product-details-page .tab-content {
    background-color: #fff;
    padding: 1rem;
}

@media(min-width:768px) {
    .product-details-page .tab-content {
        padding: 2rem 1rem 1rem;
    }
}

.product-details-page .tab-content .tab-pane.full-description img {
    max-width: 100%;
}

.product-details-page .tab-content .tab-pane .wrapper-product-specs .title {
    margin-left: 6rem;
}

.product-details-page .tab-content .tab-pane .product-specs-box {
    width: 100%;
}

    .product-details-page .tab-content .tab-pane .product-specs-box .product-specs-key {
        position: relative;
        color: #6f6f6f;
    }

@media(max-width:767px) {
    .product-details-page .tab-content .tab-pane .product-specs-box .product-specs-key {
        margin-right: .75rem;
        margin-left: .5rem;
    }

        .product-details-page .tab-content .tab-pane .product-specs-box .product-specs-key::before {
            content: "";
            position: absolute;
            top: 5px;
            right: -.75rem;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background-color: #e1e1e1;
        }

        .product-details-page .tab-content .tab-pane .product-specs-box .product-specs-key::after {
            content: ":";
        }
}

.product-details-page .tab-content .tab-pane .product-specs-box .product-specs-value {
    color: #000;
    font-weight: 500;
}

@media(min-width:768px) {
    .product-details-page .tab-content .tab-pane .product-specs-box {
        font-size: 1rem;
    }

        .product-details-page .tab-content .tab-pane .product-specs-box .product-specs-key {
            flex: 0 0 22.2%;
            max-width: 22.2%;
        }

        .product-details-page .tab-content .tab-pane .product-specs-box .product-specs-value {
            flex: 0 0 77.8%;
            max-width: 77.8%;
        }
}

.product-details-page .tab-content .tab-pane .product-questions-page {
    background-color: #fff !important;
    padding: 50px;
}

    .product-details-page .tab-content .tab-pane .product-questions-page .title {
        font-size: 20px;
        padding-right: 11px;
    }

    .product-details-page .tab-content .tab-pane .product-questions-page .form-fields {
        background-color: #fff;
    }

        .product-details-page .tab-content .tab-pane .product-questions-page .form-fields .inputs .question-text {
            border: 1px solid #dedede;
            height: 180px;
            border-radius: 5px;
            outline: none;
            padding: 10px;
            color: #424242;
            width: 100%;
            resize: vertical;
            vertical-align: top;
            min-height: 56px;
            font-size: 12px;
            font-size: .857rem;
            line-height: 2.58;
        }

    .product-details-page .tab-content .tab-pane .product-questions-page .buttons {
        padding: 1rem;
    }

        .product-details-page .tab-content .tab-pane .product-questions-page .buttons .write-product-question-button {
            font-size: 1.143rem;
            line-height: 1.375;
            border-radius: 8px;
            background-color: #00bfd6;
            border: 1px solid #41a7b4;
            padding: 14px 31px;
            color: #fff;
            width: 20%;
        }

.product-details-page .tab-content .tab-pane .product-review-list .media-body {
    background-color: rgba(245,245,245,.5);
    border-radius: 5px;
    border: 1px solid rgba(222,222,222,.4);
    padding: 1rem;
}

@media(min-width:768px) {
    .product-details-page .tab-content .tab-pane .product-review-list .media-body {
        padding: 2rem;
    }
}

.product-details-page .tab-content .tab-pane .product-review-list .review-content .review-info {
    margin-bottom: 1rem;
    font-size: 15px;
}

.product-details-page .tab-content .tab-pane .product-review-list .review-content .review-text {
    font-size: larger;
}

.product-details-page .product-name {
    font-size: large;
    background-color: #fff;
    font-weight: bold;
}

    .product-details-page .product-name .secondary-name {
        display: block;
        margin-top: .5rem;
        position: relative;
        font-size: small;
        color: #6f6f6f;
        z-index: 0;
    }

        .product-details-page .product-name .secondary-name span {
            position: relative;
            display: inline-block;
            padding-right: 1rem;
            background-color: #fff;
            font-weight: normal;
        }

        .product-details-page .product-name .secondary-name::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            height: 0;
            top: 50%;
            width: 100%;
            border-bottom: 1px solid #dedede;
            z-index: -1;
        }

@media(min-width:768px) {
    .product-spec-box .product-spec-cat {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -moz-box;
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
    }
}

@media(min-width:768px) {
    .product-spec-box .product-spec-cat {
        display: block;
        color: #000;
    }

        .product-spec-box .product-spec-cat .table th, .product-spec-box .product-spec-cat .table td {
            border: 1px solid #dee2e6;
            color: #000;
        }

        .product-spec-box .product-spec-cat .table thead {
            border-bottom: 1px solid #000;
            color: #000;
        }

    .product-spec-box .product-spec-cat-title {
        background-color: #e9e9e9;
        padding: 1rem;
        margin: 1rem 0;
        display: block;
    }

        .product-spec-box .product-spec-cat-title .table {
            color: #000;
        }

            .product-spec-box .product-spec-cat-title .table th, .product-spec-box .product-spec-cat-title .table td {
                color: #000;
            }

    .product-spec-box .product-spec-cat-title {
        width: 100% !important;
    }
}

.Product-details-pictures .picture {
    position: relative;
}

    .Product-details-pictures .picture .product-image-loading {
        display: none;
        position: absolute;
        top: 50%;
        left: 50%;
        height: 48px;
        width: 48px;
        background: url(../images/loading-large.gif) no-repeat;
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -ms-transform: translate(-50%);
        -o-transform: translate(-50%);
        transform: translate(-50%);
    }

.picture-thumbs .thumb-item {
    padding: 4px;
    border: 1px solid #dedede;
    border-radius: 8px;
    height: auto;
}

    .picture-thumbs .thumb-item:not(.active) {
        opacity: .75;
        cursor: pointer;
    }

    .picture-thumbs .thumb-item.active {
        border-color: #00bfd6;
    }

    .picture-thumbs .thumb-item:hover {
        opacity: 1;
    }

.enlarge-image-modal .picture-thumbs .thumb-item {
    max-width: 60px;
    margin-bottom: .33333333rem;
}

ul.owl-stage {
    padding: 0;
    list-style: none;
    margin-bottom: 0;
}

.cart th, .data-table th, .forum-table th {
    white-space: nowrap;
    font-weight: normal;
    font-size: small;
    color: #6f6f6f;
}

.cart td, .data-table td, .forum-table td {
    min-width: 50px;
}

    .cart td.unit-price, .data-table td.unit-price, .forum-table td.unit-price {
        white-space: nowrap;
    }

.cart .product, .data-table .product, .forum-table .product {
    min-width: 225px;
}

    .cart .product a, .data-table .product a, .forum-table .product a, .cart .info a, .data-table .info a, .forum-table .info a {
        font-weight: bold;
    }

.cart .attributes, .data-table .attributes, .forum-table .attributes {
    color: #6f6f6f;
    font-size: smaller;
}

.cart tbody > tr > td {
    vertical-align: middle;
}

.cart td.quantity {
    min-width: 90px;
}

    .cart td.quantity input, .cart td.quantity select {
        text-align: center;
        max-width: 110px;
    }

.cart td.subtotal {
    white-space: nowrap;
    color: #000;
}

    .cart td.subtotal .discount, .cart td.subtotal .discount-additional-info {
        font-style: italic;
        color: #ef394e;
    }

.cart .product .edit-item {
    margin: 10px 0 0;
}

    .cart .product .edit-item a {
        font-weight: normal;
        padding: 6px 0;
    }

        .cart .product .edit-item a::before {
            content: "";
            font-family: 'Font Awesome 5 pro';
            font-weight: 400;
            margin-right: 3px;
        }

.cart .remove-from-cart .custom-control, .cart .add-to-cart .custom-control {
    display: inline-block;
}

@media(min-width:769px) {
    .cart .td-title {
        display: none;
    }
}

.data-table td.total {
    white-space: nowrap;
    color: #000;
}

.data-table .message, .data-table .info, .data-table .name {
    min-width: 225px;
}

.data-table .select-boxes, .data-table .order {
    text-align: center;
}

.data-table em a {
    font-weight: bold;
}

.data-table div.download {
    margin: 10px 0 0;
}

@media(max-width:768px) {
    .cart {
        display: block;
    }

        .cart > tbody > tr > td {
            border-top: none;
        }

        .cart colgroup, .cart thead {
            display: none;
        }

        .cart tbody {
            display: -webkit-box;
            display: -ms-flexbox;
            display: -moz-box;
            display: -webkit-flex;
            display: flex;
            overflow: hidden;
            -webkit-flex-flow: wrap;
            flex-flow: wrap;
            -webkit-justify-content: space-between;
            justify-content: space-between;
        }

        .cart tr {
            display: block;
            width: 49%;
            margin-bottom: 1rem;
            border: 1px solid #dedede;
        }

        .cart td {
            display: block;
            border: none;
            padding: 10px;
        }

            .cart td.remove-from-cart {
                background-color: #ebebeb;
                padding: 10px 1rem;
            }

            .cart td.product-picture {
                border-top: 1px solid #dedede;
                text-align: center;
            }

            .cart td.product {
                min-width: 0;
                border-bottom: 1px solid #dedede;
                padding: 5px 10px 15px;
                text-align: center;
            }

            .cart td.quantity {
                display: inline-block;
                padding: 10px;
                vertical-align: middle;
            }

                .cart td.quantity > .bootstrap-touchspin {
                    display: inline-table;
                    max-width: 75px;
                    vertical-align: middle;
                }

            .cart td.unit-price {
                display: inline-block;
                padding: 10px;
                vertical-align: middle;
            }

            .cart td.subtotal {
                text-align: center;
            }
}

@media(max-width:479px) {
    .cart tr {
        width: 100%;
    }

        .cart tr:last-child {
            margin-bottom: 0;
        }

        .cart tr:nth-child(2n+1) {
            clear: both;
        }
}

.section-order-progress {
    background-color: #fff;
    padding-top: 2rem;
    text-align: center;
    margin-bottom: 1rem;
}

    .section-order-progress .store-logo img {
        object-position: center;
    }

@media(min-width:768px) {
    .section-order-progress {
        margin-bottom: 3rem;
    }
}

.address-list-page .section, .order-list-page .section {
    position: relative;
}

.address-list-page .info button, .order-list-page .info button {
    margin-right: 1rem;
}

.order-list-page td:last-child:hover {
    background-color: #dedede;
    cursor: pointer;
}

.order-list-page .order-details-icon {
    display: block;
}

.order-list-page .data-table .start-date, .order-list-page .data-table .next-payment {
    min-width: 120px;
}

.order-list-page .info .pending .badge {
    background-color: #ffc107;
    color: #000;
}

.order-list-page .info .processing .badge {
    background-color: #17a2b8;
    color: #fff;
}

.order-list-page .info .complete .badge {
    background-color: #28a745;
    color: #fff;
}

.order-list-page .title-items {
    background-color: #00bfd6;
    padding: 1rem 0;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.order-list-page .row-items {
    border-bottom: 1px solid #dedede;
    border-right: 1px solid #dedede;
    text-align: center;
    font-size: 1.1em;
    position: relative;
}

    .order-list-page .row-items .title, .order-list-page .row-items .CreatedOn, .order-list-page .row-items .row-number, .order-list-page .row-items .OrderStatus, .order-list-page .row-items .OrderTotal, .order-list-page .row-items .PaymentStatus, .order-list-page .row-items .order-details {
        border-left: 1px solid #dedede;
        padding: 2rem 0;
        margin: 0;
    }

        .order-list-page .row-items .order-details :hover {
            background-color: rgba(222,222,222,.7);
            cursor: pointer;
        }

.order-list-page .order-items {
    background-color: #fff;
}

    .order-list-page .order-items:nth-child(odd) {
        background-color: rgba(111,111,111,.01);
    }

.order-list-page .mobile-order-list-page {
    border-radius: 9px;
    background-color: #fff;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.09);
    margin-bottom: 2rem;
}

    .order-list-page .mobile-order-list-page .col-6, .order-list-page .mobile-order-list-page .col-8, .order-list-page .mobile-order-list-page .col-4, .order-list-page .mobile-order-list-page .col-9, .order-list-page .mobile-order-list-page .col-3, .order-list-page .mobile-order-list-page .col-2, .order-list-page .mobile-order-list-page .col-10, .order-list-page .mobile-order-list-page .col-1, .order-list-page .mobile-order-list-page .col-11 {
        padding: 0;
    }

.order-list-page .mobile-order-number {
    font-size: 1rem;
    line-height: 25px;
    vertical-align: middle;
    padding: 1rem 0;
    margin: 0 2rem;
    border-bottom: 2px solid #dedede;
}

.order-list-page .mobile-order-date {
    padding: 1rem 0;
    margin: 0 2rem;
    border-bottom: 1px solid #dedede;
}

.order-list-page .mobile-order-total {
    padding: 1rem 0;
    margin: 0 2rem;
}

.order-details-page .row-total {
    justify-content: center;
}

.order-details-page .section {
    padding-top: 3rem;
}

@media(max-width:992px) {
    .list-order > .row {
        border-bottom: 1px solid #dedede;
    }
}

.list-order .title-items {
    background-color: #00bfd6;
    padding: 1rem 0;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.list-order .row-items {
    border-bottom: 1px solid #dedede;
    border-right: 1px solid #dedede;
    text-align: center;
    font-size: 1.1em;
    position: relative;
    background-color: #fff;
}

    .list-order .row-items .align-self-center {
        width: 100%;
    }

@media(max-width:992px) {
    .list-order .row-items {
        border-bottom: none;
        border-left: 1px solid #dedede;
    }
}

.list-order .sku, .list-order .product, .list-order .attributes, .list-order .rental-info, .list-order .download, .list-order .quantity, .list-order .unit-price, .list-order .total, .list-order .order-detail, .list-order .row-numbers {
    border-left: 1px solid #dedede;
    padding: 2rem 0;
    margin: 0;
}

@media(max-width:992px) {
    .list-order .sku, .list-order .product, .list-order .attributes, .list-order .rental-info, .list-order .download, .list-order .quantity, .list-order .unit-price, .list-order .total, .list-order .order-detail, .list-order .row-numbers {
        padding: .5rem 0;
    }
}

.list-order .sku div .btn, .list-order .product div .btn, .list-order .attributes div .btn, .list-order .rental-info div .btn, .list-order .download div .btn, .list-order .quantity div .btn, .list-order .unit-price div .btn, .list-order .total div .btn, .list-order .order-detail div .btn, .list-order .row-numbers div .btn {
    border-radius: 8px;
    border: 1px solid #dedede;
    padding: 10px;
    background-color: transparent;
    color: #6f6f6f;
    transition: all .3s ease-in-out;
    text-align: center;
}

.list-order .sku div:last-child .btn, .list-order .product div:last-child .btn, .list-order .attributes div:last-child .btn, .list-order .rental-info div:last-child .btn, .list-order .download div:last-child .btn, .list-order .quantity div:last-child .btn, .list-order .unit-price div:last-child .btn, .list-order .total div:last-child .btn, .list-order .order-detail div:last-child .btn, .list-order .row-numbers div:last-child .btn {
    padding: 10px 18px;
    margin-top: 5px;
}

@media(max-width:992px) {
    .list-order .quantity {
        border-left: none;
        background-color: #00bfd6;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        position: absolute;
        top: 5px;
        left: 5px;
        z-index: 100;
        color: #fff;
        font-weight: bold;
    }

        .list-order .quantity .td-title {
            display: none;
        }
}

@media(max-width:992px) {
    .list-order .product {
        border-left: none;
        border-top: 1px solid #dedede;
    }
}

.list-order .product .product-names a {
    color: #000 !important;
}

@media(max-width:992px) {
    .list-order .product .product-names {
        font-weight: bold;
    }
}

@media(max-width:992px) {
    .list-order .total {
        border-left: none;
    }
}

.tax-shipping-info {
    margin-bottom: 1rem;
    color: #6f6f6f;
}

.common-buttons {
    margin-bottom: 2rem;
}

@media(min-width:768px) {
    .common-buttons {
        margin-bottom: 3rem;
    }
}

.flyout-cart {
    min-width: 300px;
}

.flyout-account {
    padding-top: 0;
    padding-bottom: 0;
    width: 200px;
}

    .flyout-account .dropdown-header {
        padding: .75rem;
    }

        .flyout-account .dropdown-header .avatar {
            border-radius: 50%;
            border: 1px solid #6f6f6f;
        }

        .flyout-account .dropdown-header .customer-name {
            color: #000;
            font-weight: bold;
        }

        .flyout-account .dropdown-header .customer-reward {
            position: relative;
        }

            .flyout-account .dropdown-header .customer-reward::before {
                content: "";
                position: absolute;
                left: -24px;
                bottom: 13px;
                width: 1px;
                height: 115%;
                background-color: #cacaca;
            }

            .flyout-account .dropdown-header .customer-reward small {
                position: relative;
            }

                .flyout-account .dropdown-header .customer-reward small::before {
                    content: "";
                    position: absolute;
                    top: 4px;
                    left: -27px;
                    width: 7px;
                    height: 7px;
                    border-radius: 50%;
                    background-color: #cacaca;
                }

    .flyout-account .dropdown-item {
        padding: .5rem 1rem;
        position: relative;
    }

        .flyout-account .dropdown-item span {
            color: #6f6f6f;
        }

        .flyout-account .dropdown-item i::before {
            font-size: 1em;
        }

        .flyout-account .dropdown-item:not(:last-child):after {
            content: "";
            width: calc(100% - 32px);
            height: 1px;
            background: rgba(222,222,222,.8);
            position: absolute;
            right: 16px;
            bottom: 0;
        }

    .flyout-account i {
        vertical-align: middle;
    }

.card-body {
    color: #212529;
}

.order-summary-content .shopping-cart {
    background-color: #fff;
    box-shadow: 0 7px 8px 0 rgba(0,0,0,.04);
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 10px;
}

    .order-summary-content .shopping-cart .shopping-cart-item {
        border-bottom: 1px solid #dedede;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

        .order-summary-content .shopping-cart .shopping-cart-item:last-child {
            border: none;
            margin-bottom: 0;
        }

        .order-summary-content .shopping-cart .shopping-cart-item .product-name {
            font-size: large;
            font-weight: 400;
            color: #000;
        }

        .order-summary-content .shopping-cart .shopping-cart-item .quantity .form-control {
            max-width: 60px;
            color: #00bfd6;
            text-align: center;
        }

        .order-summary-content .shopping-cart .shopping-cart-item .quantity .btn {
            border-radius: 0 !important;
        }

        .order-summary-content .shopping-cart .shopping-cart-item .quantity .btn-outline-secondary {
            border-color: #dedede;
        }

            .order-summary-content .shopping-cart .shopping-cart-item .quantity .btn-outline-secondary:hover {
                background-color: transparent;
                color: #000;
            }

        .order-summary-content .shopping-cart .shopping-cart-item .quantity, .order-summary-content .shopping-cart .shopping-cart-item .remove-from-cart {
            margin-left: 1rem;
        }

@media(min-width:768px) {
    .order-summary-content .shopping-cart .shopping-cart-item .quantity, .order-summary-content .shopping-cart .shopping-cart-item .remove-from-cart {
        margin-left: 2rem;
    }
}

.order-summary-content .shopping-cart .shopping-cart-item .subtotal {
    font-size: medium;
}

    .order-summary-content .shopping-cart .shopping-cart-item .subtotal .discount {
        font-size: small;
        color: #ef394e;
    }

.order-summary-content .cart-collaterals {
    background-color: #fff;
    box-shadow: 0 7px 8px 0 rgba(0,0,0,.04);
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 1rem;
}

.order-summary-content .cross-sells {
    margin-top: 1rem;
}

.deals {
    margin-bottom: 2rem;
}

    .deals .coupon-box, .deals .giftcard-box {
        background-color: #fff;
        box-shadow: 0 7px 8px 0 rgba(0,0,0,.04);
        border: 1px solid #e8e8e8;
        border-radius: 8px;
        padding: 1rem;
        margin-bottom: 1rem;
    }

.cart-footer .selected-checkout-attributes {
    background-color: #fff;
    box-shadow: 0 7px 8px 0 rgba(0,0,0,.04);
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1px;
}

.cart-footer .totals {
    background-color: #fff;
    box-shadow: 0 7px 8px 0 rgba(0,0,0,.04);
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 1rem;
}

    .cart-footer .totals .total-info .cart-total .order-total {
        font-size: 1em;
    }

        .cart-footer .totals .total-info .cart-total .order-total .value-summary {
            color: #ef394e;
        }

    .cart-footer .totals .total-info .earn-reward-points .value-summary {
        font-style: italic;
    }

@media(max-width:767px) {
    .cart-footer .totals .total-footer {
        position: fixed;
        left: 0;
        bottom: 0;
        right: 0;
        padding: .5rem 1rem;
        background-color: #fff;
        border-top: 1px solid #e8e8e8;
        z-index: 1030;
    }
}

@media(min-width:768px) {
    .cart-footer .totals .total-footer .terms-of-service {
        border-top: 1px solid #f2f2f2;
        padding-top: .5rem;
    }
}

.order-completed-page .title {
    margin-bottom: 20px;
    text-align: center;
}

.order-completed-page .page-title {
    margin-top: 100px;
    text-align: center;
}

.order-completed-page .details {
    box-shadow: 0 12px 12px 0 hsla(0,0%,71%,.1);
    border: 1px solid #e7e7e7;
    background: #fff;
    padding: 20px 40px;
    margin-bottom: 0;
    list-style: none;
    font-size: 1rem;
    line-height: 1.571;
    color: #3b3b3b;
}

.order-completed-page .buttons {
    text-align: center;
}

.btn-blue-vertical {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: #00bfd6;
    padding: 2rem;
}

@media(max-width:578px) {
    .btn-blue-vertical {
        position: relative;
        width: 100%;
        padding: 1rem;
    }
}

.btn-blue-vertical .dk-icon3-next {
    position: absolute;
    font-size: 21px;
    right: 15px;
    color: #fcf8e3;
}

@media(max-width:578px) {
    .btn-blue-vertical .dk-icon3-next {
        position: relative;
    }
}

.btn-blue {
    background-color: #00bfd6;
    border: 1px solid #41a7b4;
    font-size: 1.2em;
    padding: 14px 148px 14px 88px;
    border-radius: 10px;
    color: #fff;
    position: relative;
    overflow: hidden;
    max-width: none !important;
}

@media(max-width:600px) {
    .btn-blue {
        padding: 10px 50px;
    }
}

@media(max-width:400px) {
    .btn-blue {
        padding: 10px 50px;
    }
}

.btn-blue::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50px;
    background-color: #fff;
    opacity: .25;
    top: -17px;
    right: -11px;
    transition: .3s ease-in-out;
}

@media(max-width:600px) {
    .btn-blue::before {
        display: none;
    }
}

.btn-blue .dk-icon3-next {
    position: absolute;
    font-size: 21px;
    top: 16px;
    right: 35px;
}

@media(max-width:600px) {
    .btn-blue .dk-icon3-next {
        display: none;
    }
}

.btn-blue .dk-icon3-success {
    position: absolute;
    font-size: 18px;
    top: 16px;
    right: 35px;
}

@media(max-width:600px) {
    .btn-blue .dk-icon3-success {
        display: none;
    }
}

.btn-blue:hover::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 90px;
    background-color: #fff;
    opacity: .25;
    top: -17px;
    right: 0;
    border-radius: 0;
}

.btn-blue .btn:focus {
    box-shadow: none;
}

.btn-blue.btn-login {
    padding-right: 120px;
}

    .btn-blue.btn-login::after {
        content: "︎";
        font-family: digikala;
        font-size: 14px;
        position: absolute;
        top: 18px;
        right: 30px;
    }

.btn-blue.btn-register {
    padding-right: 120px;
}

    .btn-blue.btn-register::after {
        content: "︎";
        font-family: digikala;
        font-size: 14px;
        position: absolute;
        top: 18px;
        right: 30px;
    }

.flyout-cart {
    padding-top: 1rem;
}

    .flyout-cart a {
        text-decoration: none;
    }

    .flyout-cart .items {
        margin-bottom: .5rem;
        max-height: 360px;
        overflow-y: scroll;
        overflow-x: hidden;
        border-top: 1px solid #f0f0f1;
        border-bottom: 1px solid #f0f0f1;
        list-style-type: none;
        padding: 0 20px;
        margin-top: 1rem;
        position: relative;
    }

        .flyout-cart .items .item {
            margin-bottom: .5rem;
            padding-bottom: .5rem;
            border-bottom: 1px solid #dedede;
            font-size: small;
            padding: 15px 0;
            display: flex;
            align-items: flex-start;
            border-bottom: 1px solid #f0f0f1;
        }

            .flyout-cart .items .item .fa-trash-o::after {
                font-family: 'Font Awesome 5 pro';
                content: "";
                color: #dedede;
                position: absolute;
                z-index: 100;
                left: 31px;
            }

            .flyout-cart .items .item .picture {
                margin-right: .5rem;
            }

            .flyout-cart .items .item .name {
                margin-bottom: .5rem;
            }

                .flyout-cart .items .item .name a {
                    color: #000 !important;
                }

            .flyout-cart .items .item:last-child {
                border-bottom: none;
            }

    .flyout-cart .attributes {
        color: #6f6f6f;
        margin-bottom: .5rem;
    }

    .flyout-cart .attribute-square {
        display: inline-block;
        width: 16px;
        height: 16px;
        margin-left: .33333333rem;
        border-radius: 50%;
    }

    .flyout-cart .totals {
        margin-bottom: .33333333rem;
        background-color: #fff;
    }

    .flyout-cart .buttons {
        display: inline-block;
    }

        .flyout-cart .buttons a {
            text-decoration: none;
            color: #00bfd6;
        }

.cart-collaterals {
    margin-bottom: 1rem;
}

    .cart-collaterals .estimate-shipping .hint {
        color: #6f6f6f;
    }

.coupon-box .current-code {
    margin-top: 5px;
    margin-bottom: 10px;
}

.block-account-navigation .title {
    padding: 1rem 0 1rem 2rem;
    border-bottom: 1px solid #dedede;
    font-weight: 700;
    letter-spacing: .2px;
    font-size: 1rem;
    line-height: 1.692;
}

.block-account-navigation .list > a::before {
    margin-right: .5rem;
    font-family: 'Font Awesome 5 pro';
    font-weight: 900;
    width: 1.25em;
    font-family: digikala8C;
    font-size: 1.1em;
    color: #6f6f6f;
}

.block-account-navigation .list > a.active::before {
    color: #000;
}

.block-account-navigation .list > a:not(.active):hover::before {
    color: #00bfd6;
}

.block-account-navigation .list > a.customer-info::before {
    content: "︎";
}

.block-account-navigation .list > a.customer-addresses::before {
    content: "︎";
}

.block-account-navigation .list > a.customer-orders::before {
    content: "︎";
}

.block-account-navigation .list > a.return-requests::before {
    content: "";
}

.block-account-navigation .list > a.downloadable-products::before {
    content: "︎";
}

.block-account-navigation .list > a.back-in-stock-subscriptions::before {
    content: "︎";
}

.block-account-navigation .list > a.reward-points::before {
    content: "︎";
}

.block-account-navigation .list > a.change-password::before {
    content: "︎";
}

.block-account-navigation .list > a.customer-avatar::before {
    content: "";
}

.block-account-navigation .list > a.forum-subscriptions::before {
    content: "";
}

.block-account-navigation .list > a.customer-reviews::before {
    content: "︎";
}

.account-page .page-title {
    margin-bottom: 3rem;
    padding-bottom: .33333333rem;
    font-size: small;
    color: #6f6f6f;
}

    .account-page .page-title small {
        display: block;
        font-size: xx-large;
        color: #000;
    }

/*.html-login-page body, .html-password-recovery-page body, .html-mobile-verify body {
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}*/

/*.html-login-page .page-body, .html-password-recovery-page .page-body, .html-mobile-verify .page-body {
    max-width: 420px;
}*/

/*.html-login-page body, .html-registration-page body, .html-password-recovery-page body, .html-mobile-verify body {
   
    background-image:url(/Themes/Patine/Content/images/52.jpg)
}*/

/*.html-login-page .page-body, .html-registration-page .page-body, .html-password-recovery-page .page-body, .html-mobile-verify .page-body {
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.22);
    background-color: #1f1f1f9f;
}

    .html-login-page .page-body .store-logo img, .html-registration-page .page-body .store-logo img, .html-password-recovery-page .page-body .store-logo img, .html-mobile-verify .page-body .store-logo img {
        object-position: center;
    }

    .html-login-page .page-body .form-fields, .html-registration-page .page-body .form-fields, .html-password-recovery-page .page-body .form-fields, .html-mobile-verify .page-body .form-fields {
        background-color: transparent;
        padding: 0;
    }

        .html-login-page .page-body .form-fields .form-group, .html-registration-page .page-body .form-fields .form-group, .html-password-recovery-page .page-body .form-fields .form-group, .html-mobile-verify .page-body .form-fields .form-group {
            max-width: 100%;
        }

.login-page .store-logo {
    margin-bottom: 3rem;
}

.login-page .topic-block {
    text-align: center;
    margin-top: 2rem;
}*/

/*@media(min-width:768px) {
    .login-page .topic-block {
        max-width: 420px;
    }
}

.login-page .returning-wrapper .fieldset .btn-primary i {
    vertical-align: middle;
}

.login-page .returning-wrapper .fieldset .new-wrapper {
    border-top: 1px solid #ebebeb;
    padding-top: 1rem;
}

    .login-page .returning-wrapper .fieldset .new-wrapper p {
        color: #6f6f6f;
        margin-bottom: 0;
    }

@media(min-width:768px) {
    .login-page .checkout-as-guest {
        margin-bottom: 3rem;
    }
}

.registration-page .page-body {
    max-width: 600px;
    margin: 3rem auto;
}*/

.html-customer-info-page .buttons, .html-registration-page .buttons, .html-address-edit-page .buttons {
    margin-top: 1rem;
    text-align: center;
}

.external-authentication {
    text-align: center;
}

.check-username-availability-button {
    margin-top: .5rem;
}

.countdown-timer-verify {
    position: relative;
    width: 140px;
    margin: 0 auto;
    cursor: default;
}

    .countdown-timer-verify .controlls {
        position: absolute;
        width: 100%;
        left: 0;
        top: 50%;
        text-align: center;
        transform: translateY(-50%);
    }

    .countdown-timer-verify .display-remain-time {
        font-weight: lighter;
        font-size: 2em;
        color: #ef394e;
    }

    .countdown-timer-verify .e-c-base {
        fill: none;
        stroke: #6f6f6f;
    }

    .countdown-timer-verify .e-c-progress {
        fill: none;
        stroke: #ef394e;
        stroke-width: 5px;
        transition: stroke-dashoffset .7s;
    }

    .countdown-timer-verify .e-c-pointer {
        fill: #fff;
        stroke: #ef394e;
        stroke-width: 2px;
    }

    .countdown-timer-verify .e-pointer {
        transition: transform .7s;
    }

@media(max-width:1000px) {
    .order-details-page .data-table {
        display: block;
    }

        .order-details-page .data-table colgroup, .order-details-page .data-table thead {
            display: none;
        }

        .order-details-page .data-table tbody {
            display: block;
            overflow: hidden;
        }

        .order-details-page .data-table tr {
            display: block;
            float: left;
            width: 100%;
            margin: 40px 0 0;
            border: 1px solid #ddd;
        }

        .order-details-page .data-table td {
            display: block;
            border: none;
            padding: 10px;
        }

            .order-details-page .data-table td.product, .order-details-page .data-table td.tracking-number {
                min-width: 0;
                border-bottom: 1px solid #ddd;
                padding: 5px 10px 15px;
                text-align: center;
            }
}

@media(min-width:481px) {
    .order-details-page .data-table tr {
        width: 46%;
        margin: 40px 2% 0;
    }

        .order-details-page .data-table tr:nth-child(2n+1) {
            clear: both;
        }
}

@media all and (min-width:769px) {
    .order-details-page .data-table tr {
        width: 31.33333%;
        margin: 40px 1% 0;
    }

        .order-details-page .data-table tr:nth-child(2n+1) {
            clear: none;
        }

        .order-details-page .data-table tr:nth-child(3n+1) {
            clear: both;
        }
}

@media all and (min-width:1001px) {
    .order-details-page .data-table tr {
        width: auto;
        margin: 0;
    }

    .order-details-page .data-table label {
        display: none;
    }
}

.checkout-logo {
    background-color: #fff;
}

@media(max-width:767px) {
    .order-progress {
        overflow-x: scroll;
    }
}

.order-progress ol {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

    .order-progress ol li {
        display: inline-block;
        margin-bottom: 1rem;
        color: #6f6f6f;
        position: relative;
    }

        .order-progress ol li a {
            position: relative;
            display: block;
            min-width: 70px;
            color: currentColor;
            text-decoration: none;
            cursor: default;
        }

            .order-progress ol li a::before {
                content: "";
                position: absolute;
                top: 25px;
                right: 34%;
                width: 20px;
                height: 20px;
                background-color: #dedede;
                border-radius: 100%;
                z-index: 20;
            }

        .order-progress ol li:not(:last-child)::after {
            content: "";
            position: absolute;
            height: 3px;
            background-color: #dedede;
            width: 100%;
            z-index: 10;
            top: 33px;
            left: 62%;
        }

        .order-progress ol li.complete-step::after {
            background-color: #00bfd6;
        }

        .order-progress ol li.active-step a, .order-progress ol li.complete-step a {
            cursor: pointer;
        }

            .order-progress ol li.active-step a::before, .order-progress ol li.complete-step a::before {
                background-color: #00bfd6;
            }

.order-completed-page .order-progress .active-step a::before {
    content: "";
}

.checkout-page .select2-container {
    width: 100% !important;
}

@media(max-width:600px) {
    .checkout-page .page-title {
        margin-top: 3rem;
    }
}

.checkout-page:not(.order-confirm-page) .cart-box {
    display: none;
}

.section-shipping-address, .section-billing-address {
    margin-bottom: 2rem;
}

    .section-shipping-address .address-item, .section-billing-address .address-item, .section-shipping-address .add-button .btn, .section-billing-address .add-button .btn {
        min-height: 270px;
    }

    .section-shipping-address .address-item, .section-billing-address .address-item {
        border: 1px solid #00bfd6;
        border-radius: 8px;
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .section-shipping-address .add-button .btn, .section-billing-address .add-button .btn {
        width: 100%;
        border: 2px dashed #dedede;
        padding: 1rem 2rem;
        cursor: pointer;
        transition: .3s ease-in-out;
    }

        .section-shipping-address .add-button .btn:hover, .section-billing-address .add-button .btn:hover, .section-shipping-address .add-button .btn:focus, .section-billing-address .add-button .btn:focus {
            background-color: #00bfd6;
            color: #fff;
        }

    .section-shipping-address .new-billing-address .form-fields, .section-billing-address .new-billing-address .form-fields {
        padding: initial;
    }

        .section-shipping-address .new-billing-address .form-fields .form-group, .section-billing-address .new-billing-address .form-fields .form-group {
            max-width: initial;
        }

    .section-shipping-address .new-billing-address .buttons, .section-billing-address .new-billing-address .buttons {
        text-align: center;
    }

        .section-shipping-address .new-billing-address .buttons .btn, .section-billing-address .new-billing-address .buttons .btn {
            width: 95%;
            max-width: 320px;
        }

.billing-address-page .trigger-buttons .btn:not(.confirm-button), .shipping-address-page .trigger-buttons .btn:not(.confirm-button), .order-confirm-page .trigger-buttons .btn:not(.confirm-button), .shopping-cart-page .trigger-buttons .btn:not(.confirm-button) {
    display: none;
}

.section-shipping-address, .section-billing-address, .section-shipping-method, .section-payment-method, .section-payment-info, .order-review {
    background-color: #fff;
    box-shadow: 0 7px 8px 0 rgba(0,0,0,.04);
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 1rem;
}

.checkout-page .cart-box, .shopping-cart-page .cart-box, .checkout-page .total-box, .shopping-cart-page .total-box {
    width: 100%;
}

@media(min-width:992px) {
    .order-confirm-page .cart-box, .shopping-cart-page .cart-box {
        flex: 0 0 73%;
        max-width: 73%;
    }

    .order-confirm-page .total-box, .shopping-cart-page .total-box {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.order-confirm-page .order-review-data {
    border: 1px solid #dedede;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.edit-address {
    margin-bottom: 1rem;
}

.opc .section {
    margin-bottom: 1rem;
}

.opc .tab-section.active {
    border-color: #00bfd6;
}

    .opc .tab-section.active .step-title {
        background-color: #00bfd6;
        color: #fff;
    }

.opc .tab-section .step:not(#checkout-step-payment-info):not(#checkout-step-confirm-order), .opc .tab-section .terms-of-service {
    max-width: 600px;
    margin: auto;
    width: 95%;
}

.opc .tab-section .buttons {
    text-align: center;
}

.address-list.form-horizontal .form-group {
    margin-bottom: 0;
}

.checkout-data .payment-logo img {
    height: 30px;
    margin: 0 .5rem;
}

ul.address-box li span, ul.info-list li span {
    font-weight: bold;
}

.order-review-data {
    margin-bottom: 50px;
}

.method-list {
    padding: 1rem;
    margin-bottom: 1rem;
}

    .method-list li:not(:last-child) {
        border-bottom: 1px solid #f2f2f2;
        padding-bottom: 1rem;
    }

    .method-list .method-name label {
        margin-bottom: 0;
    }

    .method-list .method-description {
        color: #6f6f6f;
        font-size: smaller;
    }

.search-page .form-fields {
    margin-bottom: 1rem;
}

.compare-products-table td {
    min-width: 150px;
    padding: 1rem;
    vertical-align: top;
}

    .compare-products-table td:first-child {
        min-width: 0;
    }

    .compare-products-table td label {
        font-weight: normal;
        color: #777;
    }

.compare-products-table .picture {
    display: block;
    position: relative;
    max-width: 200px;
    height: 200px;
    overflow: hidden;
}

    .compare-products-table .picture img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        max-width: 100%;
        max-height: 100%;
        margin: auto;
    }

.compare-products-table .product-name td {
    font-weight: bold;
}

.compare-products-table .short-description td {
    line-height: 22px;
}

.compare-products-table .full-description td {
    display: none;
}

@media(min-width:769px) {
    .compare-products-table .full-description td {
        display: table-cell;
    }
}

.wishlist-page .whishlist-box {
    background-color: #fff;
    box-shadow: 0 12px 12px 0 hsla(0,0%,71%,.1);
    padding: 1rem;
    margin-bottom: 1rem;
}

@media(max-width:767px) {
    .wishlist-page .whishlist-box .quantity, .wishlist-page .whishlist-box .remove, .wishlist-page .whishlist-box .add-to-cart {
        margin-bottom: .5rem;
    }
}

.wishlist-page .whishlist-box .product-name {
    text-decoration: none;
    font-size: medium;
}

@media(min-width:768px) {
    .wishlist-page .whishlist-box .product-name {
        font-size: large;
    }
}

.wishlist-page .whishlist-box label {
    margin-bottom: 0;
}

.wishlist-page .whishlist-box .quantity .form-control {
    max-width: 65px;
    text-align: center;
    display: inline-block;
}

.wishlist-page .whishlist-box .remove i {
    color: #dc3545;
    font-size: 1.5em;
}

.wishlist-page .whishlist-box .custom-checkbox {
    display: inline-block;
    min-height: 1rem;
}

.wishlist-page .whishlist-box .product-unit-price {
    font-size: medium;
    font-weight: 500;
    color: #ef394e;
}

@media(min-width:768px) {
    .wishlist-page .whishlist-box .product-unit-price {
        font-size: large;
    }
}

.share-info {
    background-color: #ebebeb;
    margin-bottom: 3rem;
    padding: 1rem;
}

    .share-info .share-link {
        font-weight: bold;
    }

.blog-post-page .page-body, .news-item-page {
    background-color: #fff;
    padding: 1rem;
}

@media(min-width:768px) {
    .blog-post-page .page-body, .news-item-page {
        padding: 1rem 4rem;
    }
}

.blog-post-page .page-body .page-title, .news-item-page .page-title {
    margin-top: 0;
}

.blog-post-page .page-body .post-date, .news-item-page .post-date, .blog-post-page .page-body .news-date, .news-item-page .news-date {
    font-size: smaller;
    color: #6f6f6f;
    margin-bottom: 1rem;
}

.blog-post-page .page-body .post-body img, .news-item-page .post-body img, .blog-post-page .page-body .news-body img, .news-item-page .news-body img {
    max-width: 100%;
}

.blog-post-page .page-body .fieldset, .news-item-page .fieldset {
    margin: 2rem 0;
}

.post-item, .news-item {
    margin-bottom: 2rem;
}

    .post-item .post-title, .news-item .post-title, .post-item .news-title, .news-item .news-title {
        margin-bottom: 1rem;
    }

    .post-item .post-body, .news-item .post-body, .post-item .news-body, .news-item .news-body {
        margin-bottom: .5rem;
    }

.html-blog-list-page .store-aside .block.block-category-navigation ul.list, .html-blog-post-page .store-aside .block.block-category-navigation ul.list, .html-blog-search-results-page .store-aside .block.block-category-navigation ul.list {
    list-style-type: none;
    padding: 0;
}

    .html-blog-list-page .store-aside .block.block-category-navigation ul.list a, .html-blog-post-page .store-aside .block.block-category-navigation ul.list a, .html-blog-search-results-page .store-aside .block.block-category-navigation ul.list a {
        color: #6f6f6f;
    }

.html-blog-list-page .store-aside .block .title, .html-blog-post-page .store-aside .block .title, .html-blog-search-results-page .store-aside .block .title {
    font-size: .895rem;
    text-align: center;
    color: #6f6f6f;
    position: relative;
    margin-top: .5rem;
}

@media(min-width:768px) {
    .html-blog-list-page .store-aside .block .title, .html-blog-post-page .store-aside .block .title, .html-blog-search-results-page .store-aside .block .title {
        margin-top: 1rem;
    }
}

.html-blog-list-page .store-aside .block .title::before, .html-blog-post-page .store-aside .block .title::before, .html-blog-search-results-page .store-aside .block .title::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 40px;
    height: 1px;
    background-color: #00bfd6;
}

.html-blog-list-page .store-aside .block .listbox, .html-blog-post-page .store-aside .block .listbox, .html-blog-search-results-page .store-aside .block .listbox {
    padding: 1rem;
}

@media(max-width:767px) {
    .html-blog-list-page .store-aside .block .listbox, .html-blog-post-page .store-aside .block .listbox, .html-blog-search-results-page .store-aside .block .listbox {
        display: none;
    }
}

.html-blog-list-page .store-aside .block .listbox .list-group-item, .html-blog-post-page .store-aside .block .listbox .list-group-item, .html-blog-search-results-page .store-aside .block .listbox .list-group-item {
    padding: 0;
    margin-bottom: .5rem;
}

    .html-blog-list-page .store-aside .block .listbox .list-group-item img, .html-blog-post-page .store-aside .block .listbox .list-group-item img, .html-blog-search-results-page .store-aside .block .listbox .list-group-item img {
        object-fit: cover;
    }

    .html-blog-list-page .store-aside .block .listbox .list-group-item .product-name, .html-blog-post-page .store-aside .block .listbox .list-group-item .product-name, .html-blog-search-results-page .store-aside .block .listbox .list-group-item .product-name {
        font-size: smaller;
    }

.html-blog-list-page .store-aside .block .tags a, .html-blog-post-page .store-aside .block .tags a, .html-blog-search-results-page .store-aside .block .tags a {
    color: #6f6f6f;
}

.html-blog-list-page a:hover, .html-blog-post-page a:hover, .html-blog-search-results-page a:hover {
    text-decoration: none;
}

@media(max-width:767px) {
    .blog-list-page .page-body {
        background-color: #fff;
        padding: 1rem;
    }
}

.blog-list-page .page-title {
    margin: 0 0 1rem;
}

@media(min-width:768px) {
    .blog-list-page .blog-posts {
        column-count: 3;
        column-gap: 1rem;
    }

        .blog-list-page .blog-posts .post-item {
            display: grid;
            grid-template-rows: 1fr auto;
            break-inside: avoid;
        }
}

.blog-list-page .blog-posts .post-item {
    background-color: #fff;
    margin-bottom: 1rem;
}

    .blog-list-page .blog-posts .post-item figure {
        position: relative;
        margin-bottom: 0;
    }

        .blog-list-page .blog-posts .post-item figure img {
            width: 100%;
        }

        .blog-list-page .blog-posts .post-item figure a {
            color: #fff;
        }

        .blog-list-page .blog-posts .post-item figure .category-btn, .blog-list-page .blog-posts .post-item figure .post-info, .blog-list-page .blog-posts .post-item figure::before {
            position: absolute;
            visibility: hidden;
            opacity: 0;
            transition: .3s ease-in-out;
        }

        .blog-list-page .blog-posts .post-item figure .category-btn {
            top: -1rem;
            left: 1rem;
            background-color: #00bfd6;
            padding: .25rem .5rem;
            border-radius: 25px;
        }

        .blog-list-page .blog-posts .post-item figure .post-info {
            bottom: -1rem;
            left: 1rem;
            color: #fff;
        }

        .blog-list-page .blog-posts .post-item figure::before {
            content: "";
            width: 100%;
            height: 100%;
            background: linear-gradient(to top,#2f2727,transparent);
        }

    .blog-list-page .blog-posts .post-item .post-title {
        font-size: large;
        line-height: 1.5;
        text-align: center;
        position: relative;
        padding: 20px 40px;
        margin-bottom: 1.5rem;
    }

        .blog-list-page .blog-posts .post-item .post-title a {
            color: #6f6f6f;
        }

        .blog-list-page .blog-posts .post-item .post-title::after {
            content: "";
            position: absolute;
            right: 50%;
            transform: translateX(50%);
            bottom: 0;
            width: 45px;
            height: 1px;
            background-color: #00bfd6;
        }

    .blog-list-page .blog-posts .post-item p {
        text-align: justify;
    }

    .blog-list-page .blog-posts .post-item:hover {
        box-shadow: 0 0 30px 0 rgba(0,0,0,.2);
    }

        .blog-list-page .blog-posts .post-item:hover figure .category-btn, .blog-list-page .blog-posts .post-item:hover figure .post-info, .blog-list-page .blog-posts .post-item:hover figure::before {
            visibility: visible;
            opacity: 1;
        }

        .blog-list-page .blog-posts .post-item:hover figure .category-btn {
            top: 1rem;
        }

        .blog-list-page .blog-posts .post-item:hover figure .post-info {
            bottom: 1rem;
        }

    .blog-list-page .blog-posts .post-item .post-date {
        font-size: smaller;
        color: #6f6f6f;
    }

    .blog-list-page .blog-posts .post-item.post-item-mobile {
        position: relative;
        padding-bottom: 1rem;
    }

        .blog-list-page .blog-posts .post-item.post-item-mobile figure img {
            width: 120px;
        }

        .blog-list-page .blog-posts .post-item.post-item-mobile .post-title-mobile {
            font-size: small;
        }

            .blog-list-page .blog-posts .post-item.post-item-mobile .post-title-mobile a {
                color: #6f6f6f;
            }

        .blog-list-page .blog-posts .post-item.post-item-mobile:not(:last-child)::before {
            content: "";
            position: absolute;
            bottom: 0;
            width: 240px;
            height: 1px;
            background-color: #d6d6d6;
        }

.blog-list-page .pagination {
    margin-top: 1rem;
}

.blog-list-page .post-author, .blog-post-page .post-author {
    font-size: smaller;
    color: #6f6f6f;
}

    .blog-list-page .post-author img, .blog-post-page .post-author img {
        width: 30px;
        display: inline-block;
        border-radius: 50%;
    }

.blog-list-page .post-body p, .blog-post-page .post-body p {
    line-height: 1.7;
}

.blog-list-page .post-body img, .blog-post-page .post-body img {
    transition: .3s ease-in-out;
}

    .blog-list-page .post-body img:hover, .blog-post-page .post-body img:hover {
        transform: scale(1.14);
    }

.html-blog-post-page .related-posts-list .listbox:not(:last-child) {
    border-bottom: 1px solid #f2f2f2;
}

.html-blog-post-page .related-posts-list .listbox img {
    width: 64px;
    height: 64px;
    object-fit: cover;
}

.html-blog-post-page .post-minutes-read {
    margin-top: 6px;
}

@media(min-width:768px) {
    .html-blog-post-page .post-minutes-read {
        float: left;
    }
}

.html-blog-post-page .post-navigation .btn {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.html-blog-post-page .post-tags-list {
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    padding-top: 2rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

    .html-blog-post-page .post-tags-list .tags-list {
        display: inline-flex;
    }

@media(max-width:767px) {
    .html-blog-post-page .post-tags-list .tags-list {
        overflow: auto;
        width: 100%;
    }
}

.html-blog-post-page .post-tags-list .tag {
    background-color: #ebebeb;
    color: #6f6f6f;
    border-radius: 100px;
    white-space: nowrap;
}

.html-blog-post-page .share-post li a {
    font-size: 2em;
    color: #6f6f6f;
}

    .html-blog-post-page .share-post li a:hover {
        color: #00bfd6;
    }

.html-blog-post-page .new-comment form {
    border: 1px solid #dedede;
    padding: 1rem 2rem;
    border-radius: 8px;
}

    .html-blog-post-page .new-comment form .comment-form-avatar .fa-user {
        width: 45px;
        height: 45px;
        line-height: 1.2;
        border: 1px solid #6f6f6f;
        color: #6f6f6f;
        border-radius: 50%;
        font-size: xx-large;
        text-align: center;
    }

    .html-blog-post-page .new-comment form .comment-form-avatar .user-comment {
        font-size: medium;
    }

    .html-blog-post-page .new-comment form .form-fields {
        padding: 0;
    }

        .html-blog-post-page .new-comment form .form-fields .form-group {
            max-width: 100%;
            display: none;
            margin-top: 1rem;
        }

            .html-blog-post-page .new-comment form .form-fields .form-group .form-control {
                border-color: transparent transparent #dedede transparent;
            }

            .html-blog-post-page .new-comment form .form-fields .form-group .blog-post-add-comment-button {
                border: 1px solid #dedede;
                border-radius: 25px;
            }

    .html-blog-post-page .new-comment form.open .form-group {
        display: block;
    }

.comment {
    margin-bottom: 2rem;
}

    .comment .user-info {
        background-color: #ebebeb;
        font-weight: bold;
        padding: 3px 1rem;
    }

    .comment .comment-content {
        padding: .5rem 1rem 1rem;
    }

    .comment .comment-time {
        font-size: smaller;
        color: #6f6f6f;
        margin-top: 1rem;
    }

    .comment .reply {
        margin-left: 2rem;
        border: 1px solid #dedede;
        padding: .33333333rem 1rem .5rem;
    }

        .comment .reply .reply-header {
            color: #6f6f6f;
            font-size: smaller;
            font-weight: bold;
        }

.private-messages .buttons {
    text-align: center;
    margin-top: 2rem;
}

.view-message .message-head label {
    color: #6f6f6f;
}

.view-message .message-body {
    padding: 1rem;
    background-color: #ebebeb;
}

.profile-stats .stats label {
    color: #6f6f6f;
}

.sitemap-page .description {
    margin-bottom: 3rem;
    color: #6f6f6f;
}

.sitemap-page .entity-body {
    margin-bottom: 2rem;
    max-height: 400px;
    overflow-y: auto;
}

    .sitemap-page .entity-body ul {
        list-style: none;
        padding: 0;
    }

        .sitemap-page .entity-body ul > li > a {
            display: block;
            padding: .33333333rem 0;
        }

.html-home-page {
    scroll-behavior: smooth;
}

    .html-home-page #mainMenuHomePage {
        display: none;
    }

    .html-home-page .top-slider .ws_gestures {
        border-radius: 16px;
        box-shadow: 0 2px 4px 1px rgba(0,0,0,.1);
        overflow: hidden;
    }

    .html-home-page .top-slider img {
        width: 100%;
    }

.picture-wraper {
    border-radius: 5px;
}

.home-page .container, .blog-list-page .container, .blog-post-page .container, .shopping-cart-page .container, .checkout-page .container {
    max-width: 1336px;
}

.home-page-polls {
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding-top: 3rem;
    padding-bottom: 1rem;
    background-color: #fff;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
    border-radius: 8px;
}

@media(min-width:768px) {
    .home-page-polls {
        text-align: center;
    }
}

.home-page-polls .title {
    margin-bottom: 1rem;
}

.home-page-polls .poll {
    margin-bottom: 2rem;
}

    .home-page-polls .poll:not(:last-of-type) {
        border-bottom: 1px solid #dedede;
        padding-bottom: 1rem;
    }

    .home-page-polls .poll .poll-results {
        max-width: 600px;
        margin: auto;
    }

        .home-page-polls .poll .poll-results .vote-title {
            text-align: initial;
        }

    .home-page-polls .poll .poll-options {
        margin-bottom: .5rem;
    }

@media(min-width:768px) {
    .home-page-polls .poll .poll-options .answer {
        display: inline-block;
    }

        .home-page-polls .poll .poll-options .answer:not(:last-child) {
            margin-right: 1rem;
        }
}

@media(max-width:769px) {
    .story {
        border-top: 1px solid #dedede;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

.news-list-homepage {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

    .news-list-homepage .view-all {
        text-align: center;
    }

.blog-list-homepage .blog-item {
    background-color: #fff;
    border-radius: 3px;
    padding-bottom: 1rem;
    text-align: center;
}

    .blog-list-homepage .blog-item figure img {
        border-radius: 3px 3px 0 0;
    }

    .blog-list-homepage .blog-item .blog-title {
        font-size: medium;
        padding: 0 2rem;
        height: 55px;
    }

        .blog-list-homepage .blog-item .blog-title a {
            color: #6f6f6f;
        }

.select2.select2-container--default .select2-selection--single {
    border-color: #dedede !important;
    border-radius: 3px !important;
    height: 50px !important;
    padding: 10px 5px;
}

.select2 .select2-selection--single:hover, .select2 .select2-selection--single:focus {
    border-color: #ef394e !important;
}

.select2 + .form-control-feedback {
    height: 30px;
    width: 30px;
    line-height: 30px;
}

.select2-container--open {
    z-index: 1060;
}

.owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

    .owl-dots .owl-dot {
        display: inline-block;
        zoom: 1;
        *display: inline;
    }

        .owl-dots .owl-dot span {
            width: 10px;
            height: 10px;
            margin: 5px;
            background: #ebebeb;
            display: block;
            -webkit-backface-visibility: visible;
            transition: opacity 200ms ease;
            border-radius: 30px;
        }

        .owl-dots .owl-dot.active span, .owl-dots .owl-dot:hover span {
            background: #00bfd6;
        }

.br-theme-fontawesome-stars .br-widget {
    height: 28px;
    white-space: nowrap;
}

    .br-theme-fontawesome-stars .br-widget a {
        font-family: 'Font Awesome 5 pro';
        font-weight: 900;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        text-decoration: none;
        margin-right: 2px;
    }

        .br-theme-fontawesome-stars .br-widget a::after {
            content: '';
            color: #dedede;
        }

        .br-theme-fontawesome-stars .br-widget a.br-active::after {
            color: #ef394e;
        }

        .br-theme-fontawesome-stars .br-widget a.br-selected::after {
            color: #ffd700;
        }

    .br-theme-fontawesome-stars .br-widget .br-current-rating {
        display: none;
    }

.br-theme-fontawesome-stars .br-readonly a {
    cursor: default;
}

@media print {
    .br-theme-fontawesome-stars .br-widget a::after {
        content: '';
        color: #000;
    }

    .br-theme-fontawesome-stars .br-widget a.br-active::after, .br-theme-fontawesome-stars .br-widget a.br-selected::after {
        content: '';
        color: #000;
    }
}

.zoomLens, .zoomWindow {
    border: none !important;
}

.zoomWindow {
    box-shadow: 0 7px 8px 0 rgba(0,0,0,.04);
    transform: translate(-1rem);
}

@media(min-width:1440px) {
    .zoomWindow {
        width: 800px !important;
    }
}

.old-browser-warning {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    color: #000;
    background-color: #dc3545;
}

    .old-browser-warning .old-browser-logo {
        margin: 30px 0 60px;
        padding: 30px 15px;
        text-align: center;
        background-color: #f5f5f5;
    }

        .old-browser-warning .old-browser-logo img {
            max-height: 90px;
            max-width: 90%;
        }

    .old-browser-warning .old-browser-notice {
        padding: 50px 0;
        font-family: Tahoma,sans-serif;
        min-height: 300px;
        margin-bottom: 50px;
    }

        .old-browser-warning .old-browser-notice h6 {
            font-size: 42px;
        }

        .old-browser-warning .old-browser-notice p {
            margin-bottom: 30px;
        }

        .old-browser-warning .old-browser-notice a {
            text-decoration: none;
            background: none;
            border: 2px solid;
            color: #fff;
            padding: 6px 15px;
        }

            .old-browser-warning .old-browser-notice a:hover {
                background-color: #fff;
                color: #000;
            }

.wowslider-container {
    margin: 0 0 2rem;
}

    .wowslider-container .context {
        display: none;
    }

    .wowslider-container .owl-stage-outer {
        border-radius: 8px;
    }

    .wowslider-container .owl-stage {
        margin: 0;
    }

    .wowslider-container .owl-item img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .wowslider-container .owl-nav button {
        position: absolute;
        top: 50%;
        color: #000 !important;
        color: #fff !important;
    }

    .wowslider-container .owl-nav .owl-prev {
        color: #000 !important;
        left: 1rem;
    }

    .wowslider-container .owl-nav .owl-next {
        right: 1rem;
        color: #000 !important;
    }

    .wowslider-container .owl-dots {
        position: absolute;
        bottom: 0;
        width: 100%;
    }

.bootstrap-slider .carousel-item img {
    border-radius: 8px;
}

.new-product-grid-product-grid .owl-stage, .sale-of-the-day-offer .owl-stage {
    display: flex;
}

.new-product-grid-product-grid .view-all, .sale-of-the-day-offer .view-all {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .new-product-grid-product-grid .view-all .product-element, .sale-of-the-day-offer .view-all .product-element {
        flex-direction: column;
        justify-content: center;
        display: flex;
        border-radius: 12px 0 0 12px;
    }

        .new-product-grid-product-grid .view-all .product-element a i, .sale-of-the-day-offer .view-all .product-element a i {
            border: 1px solid #ef394e;
            padding: 15px;
            border-radius: 50%;
            color: #ef394e;
        }

        .new-product-grid-product-grid .view-all .product-element p, .sale-of-the-day-offer .view-all .product-element p {
            font-weight: 700;
            padding: 0 40px;
        }

.sale-of-the-day-offer .view-all {
    border-radius: 8px;
    background: #fff;
}

.sale-of-the-day-offer-hero {
    display: none;
}

.popup1 .modal-content {
    background: none;
    border: 0;
}

    .popup1 .modal-content .modal-header {
        display: none;
    }

.instagram-homepage .instagram-post img {
    object-fit: cover;
    height: 180px !important;
}

@media(min-width:375px) {
    .instagram-homepage .instagram-post img {
        height: 215px !important;
    }
}

@media(min-width:425px) {
    .instagram-homepage .instagram-post img {
        height: 245px !important;
    }
}

@media(min-width:768px) {
    .instagram-homepage .instagram-post img {
        height: 230px !important;
    }
}

@media(min-width:992px) {
    .instagram-homepage .instagram-post img {
        height: 300px !important;
    }
}

@media(min-width:1024px) {
    .instagram-homepage .instagram-post img {
        height: 315px !important;
    }
}

@media(min-width:1440px) {
    .instagram-homepage .instagram-post img {
        height: 273px !important;
    }
}

@media print {
    body {
        font: normal 9pt Arial,Helvetica,sans-serif;
        color: #000;
    }

    table {
        width: 100%;
        border: 0;
        border-collapse: collapse;
        border-spacing: 0;
        border: 1px solid #000;
    }

        table th, table td {
            border: 1px solid #000;
        }

    li {
        list-style: none;
    }

    a {
        color: inherit;
    }

    .order-details-page .order-overview {
        margin: 0 0 25px;
    }

        .order-details-page .order-overview .order-number {
            font-size: 11pt;
            text-transform: uppercase;
            padding: 10px 40px;
        }

        .order-details-page .order-overview .order-total {
            margin: 10px 0 0;
        }

            .order-details-page .order-overview .order-total strong {
                font-size: 10pt;
            }

    .order-details-page .order-details-area {
        margin: 0 0 25px;
        overflow: hidden;
    }

        .order-details-page .order-details-area ul {
            padding-left: 0;
        }

        .order-details-page .order-details-area > div {
            float: left;
            width: 48%;
            margin: 0 1% 40px;
        }

        .order-details-page .order-details-area li.title {
            margin: 10px 0 5px;
            font-weight: bold;
        }

        .order-details-page .order-details-area li:first-child {
            margin-top: 0;
        }

    .order-details-page .data-table {
        border: 1px solid;
    }

        .order-details-page .data-table th {
            border-right: 1px solid;
            border-bottom: 1px solid;
            padding: 5px 10px;
            font-weight: bold;
            white-space: nowrap;
        }

        .order-details-page .data-table td {
            border-right: 1px solid;
            border-bottom: 1px solid;
            padding: 5px 10px;
        }

        .order-details-page .data-table .sku, .order-details-page .data-table .unit-price, .order-details-page .data-table .quantity, .order-details-page .data-table .total {
            white-space: nowrap;
            text-align: center;
        }

        .order-details-page .data-table .unit-price, .order-details-page .data-table .quantity, .order-details-page .data-table .total {
            width: 15%;
        }

        .order-details-page .data-table label {
            display: none;
        }

    .order-details-page .section {
        margin: 30px 0;
    }

        .order-details-page .section .title {
            margin: 0 0 10px;
        }

    .order-details-page .tax-shipping-info, .order-details-page .selected-checkout-attributes {
        margin: 20px 0;
        text-align: right;
    }

    .order-details-page .cart-total-right {
        white-space: nowrap;
    }

    .order-details-page .cart-total td {
        padding: 5px 10px;
        text-align: right;
    }

    .order-details-page td.cart-total-left {
        width: 100%;
        font-weight: bold;
    }
}

@media(max-width:992px) {
    .order-details-page .fa-print, .order-details-page .fa-file-pdf {
        display: none;
    }
}

.order-details-page .row-total {
    justify-content: center;
}

.order-details-page .back-order {
    position: relative;
    border-right: 1px solid #dedede;
    margin-right: 15px;
    font-size: 1rem;
    color: #6f6f6f;
    padding: 36px 0 32px 16px;
    cursor: pointer;
}

    .order-details-page .back-order::before {
        content: "";
        position: absolute;
        left: 2px;
        top: 5px;
        font-size: 27px;
        font-family: 'Font Awesome 5 pro';
    }

.order-details-page .title {
    color: #6f6f6f;
}

.order-details-page .order-overview-content {
    color: rgba(111,111,111,.9);
    font-size: .857rem;
    line-height: 1.833;
    letter-spacing: -.3px;
    margin-top: 5px;
    margin-bottom: -5px;
}

.order-details-page .card .d-flex > div {
    width: 100%;
}

@media(min-width:768px) {
    .order-details-page .card .d-flex > div {
        width: 50%;
    }
}

@media(min-width:768px) {
    .order-details-page .card .d-flex > div:nth-child(even) {
        border-right: 1px solid #dedede;
    }
}

.order-details-page .card .d-flex > div:nth-child(1) {
    border-top: none;
}

@media(min-width:768px) {
    .order-details-page .card .d-flex > div:nth-child(2) {
        border-top: none;
    }
}

.order-details-page .card .order-list-item {
    padding: 2rem 1rem;
    border-top: 1px solid #dedede;
}

@media(max-width:768px) {
    .order-details-page .card .order-list-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

.order-details-page .card .order-list-item label {
    display: block;
}

.order-details-page .card .card-item {
    font-size: .929rem;
    line-height: 1.692;
    color: #bababa;
}

@media(max-width:768px) {
    .order-details-page .card .card-item {
        font-size: 1em;
        color: #000;
    }
}

.order-details-page .card .text-item {
    font-size: 1.143rem;
    line-height: 1.375;
    letter-spacing: -.3px;
}

@media(max-width:768px) {
    .order-details-page .card .text-item {
        font-size: 1em;
    }
}

.order-details-page .card .text-item .hint {
    font-size: 10px;
}

@media(max-width:992px) {
    .order-details-page .card .text-item .hint {
        display: none;
    }
}

@keyframes fadeUp {
    from {
        transform: translateY(15px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeDown {
    from {
        transform: translateY(-15px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes shake-hard {
    2% {
        transform: translate(2px,2px) rotate(1.5deg);
    }

    4% {
        transform: translate(-4px,9px) rotate(-1.5deg);
    }

    6% {
        transform: translate(-5px,6px) rotate(3.5deg);
    }

    8% {
        transform: translate(-3px,-3px) rotate(3.5deg);
    }

    10% {
        transform: translate(-5px,-6px) rotate(.5deg);
    }

    12% {
        transform: translate(-3px,-9px) rotate(.5deg);
    }

    14% {
        transform: translate(-7px,-8px) rotate(-1.5deg);
    }

    16% {
        transform: translate(-4px,6px) rotate(-2.5deg);
    }

    18% {
        transform: translate(-5px,10px) rotate(-2.5deg);
    }

    20% {
        transform: translate(4px,-8px) rotate(-1.5deg);
    }

    22% {
        transform: translate(1px,-2px) rotate(2.5deg);
    }

    24% {
        transform: translate(8px,-3px) rotate(.5deg);
    }

    26% {
        transform: translate(-8px,8px) rotate(-.5deg);
    }

    28% {
        transform: translate(3px,-2px) rotate(-1.5deg);
    }

    30% {
        transform: translate(1px,-9px) rotate(.5deg);
    }

    32% {
        transform: translate(7px,1px) rotate(.5deg);
    }

    34% {
        transform: translate(-1px,-5px) rotate(.5deg);
    }

    36% {
        transform: translate(3px,10px) rotate(2.5deg);
    }

    38% {
        transform: translate(-8px,-7px) rotate(2.5deg);
    }

    40% {
        transform: translate(5px,7px) rotate(-1.5deg);
    }

    42% {
        transform: translate(0,10px) rotate(-2.5deg);
    }

    44% {
        transform: translate(-2px,1px) rotate(-1.5deg);
    }

    46% {
        transform: translate(5px,2px) rotate(-1.5deg);
    }

    48% {
        transform: translate(-6px,-8px) rotate(.5deg);
    }

    50% {
        transform: translate(-9px,1px) rotate(.5deg);
    }

    52% {
        transform: translate(1px,5px) rotate(.5deg);
    }

    54% {
        transform: translate(-1px,0) rotate(-.5deg);
    }

    56% {
        transform: translate(-8px,7px) rotate(1.5deg);
    }

    58% {
        transform: translate(10px,6px) rotate(.5deg);
    }

    60% {
        transform: translate(-4px,3px) rotate(-2.5deg);
    }

    62% {
        transform: translate(-7px,9px) rotate(.5deg);
    }

    64% {
        transform: translate(-1px,-1px) rotate(-2.5deg);
    }

    66% {
        transform: translate(-6px,-8px) rotate(-1.5deg);
    }

    68% {
        transform: translate(-6px,5px) rotate(-.5deg);
    }

    70% {
        transform: translate(1px,-8px) rotate(-1.5deg);
    }

    72% {
        transform: translate(1px,9px) rotate(-.5deg);
    }

    74% {
        transform: translate(9px,-8px) rotate(-.5deg);
    }

    76% {
        transform: translate(5px,6px) rotate(-1.5deg);
    }

    78% {
        transform: translate(10px,5px) rotate(-.5deg);
    }

    80% {
        transform: translate(7px,9px) rotate(-2.5deg);
    }

    82% {
        transform: translate(7px,-9px) rotate(3.5deg);
    }

    84% {
        transform: translate(1px,8px) rotate(-.5deg);
    }

    86% {
        transform: translate(-1px,9px) rotate(1.5deg);
    }

    88% {
        transform: translate(-5px,-3px) rotate(3.5deg);
    }

    90% {
        transform: translate(-2px,5px) rotate(3.5deg);
    }

    92% {
        transform: translate(0,9px) rotate(-1.5deg);
    }

    94% {
        transform: translate(5px,4px) rotate(.5deg);
    }

    96% {
        transform: translate(-4px,0) rotate(3.5deg);
    }

    98% {
        transform: translate(-6px,1px) rotate(-2.5deg);
    }

    0%,100% {
        transform: translate(0,0) rotate(0);
    }
}

.beta {
    position: fixed;
    background: #ffd700;
    padding: 1px 15px;
    left: 0;
    bottom: 0;
    color: #000;
    font-weight: bold;
}
