﻿
@brandColor: #ef394e;
@primaryColor: #ef394e;
@secondaryColor: #00bfd6;
@promotionColor: rgba(255,80,98,.89);
@linkColor: @secondaryColor;
@textColor: #000;
@textGray: #535353;
@bgColor: #f5f5f5;
@bgWidgetColor: #fff;
@whiteColor: #ffffff;
@invTextColor: @bgWidgetColor;
@invBgColor: @secondaryColor;
@bgDarkenColor: darken(@bgColor,@basePercent);
@lightGray: lighten(@bgDarkenColor,@basePercent);
@muteColor: #6f6f6f;
@borderColor: #dedede;
@baseGap: 1rem;
@bigGap: @baseGap*3;
@basePercent: 4%;
@baseRadius: 8px;
@baseShadow: 0 7px 8px 0 rgba(0,0,0,.04);
@fontawesome: 'Font Awesome 5 pro';
@animationDuration: .3s;
@animationFunction: ease-in-out;
@transition: @animationDuration @animationFunction;
@successColor: #28a745;
@textSuccess: #3c763d;
@bgSuccess: #dff0d8;
@infoColor: #17a2b8;
@textInfo: #31708f;
@bgInfo: #d9edf7;
@warningColor: #ffc107;
@textWarning: #8a6d3b;
@bgWarning: #fcf8e3;
@dangerColor: #dc3545;
@textDanger: #a94442;
@bgDanger: #f2dede;
@import url('digikala1.css');

/*
    Common
*/
a {
    text-decoration: none !important;

    &:hover, &:focus {
        color: #0056b3;
    }
}

::placeholder {
    color: lighten(@muteColor,20%);
}

.box {
    background-color: @bgWidgetColor;
    box-shadow: @baseShadow;
    border: 1px solid lighten(@borderColor,@basePercent);
    border-radius: @baseRadius;
    padding: @baseGap;
}

.no-overflow {
    overflow: hidden;
}

.text-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.required {
    font-size: 20px;
    color: indianred;
}

.btn {
    border-radius: @baseRadius;
}

.btn-xs, .btn-group-xs > .btn {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: @baseRadius - 1;
}

.fontawesome-light {
    font-family: @fontawesome;
    font-weight: 300;
}

.fontawesome-solid {
    font-family: @fontawesome;
    font-weight: 900;
}

.fontawesome-regular {
    font-family: @fontawesome;
    font-weight: 400;
}
/*.svg-inline--fa {
	color: currentColor;
}*/

.ajax-loading-block-window {
    position: fixed;
    top: 50%;
    left: 50%;
    color: @brandColor;
    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%);

    > div {
        position: absolute;
        top: 50%;
        left: 50%;
        border-radius: 100%;

        &: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;
        }

        &: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);
    }
}

/*input.file {
	position: absolute;
	visibility: hidden;
}*/
/* The switch - the box around the slider */
/*.switch {
	position: relative;
	display: inline-block;
	margin-top: 5px;
	width: 50px;
	height: 15px;

	input {
		display: none;
	}

	.slider {
		position: absolute;
		cursor: pointer;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		border: 1px solid @borderColor;
		background-color: @bgWidgetColor;
		border-radius: 2px;
		transition: @transition;

		&::before {
			position: absolute;
			content: "";
			height: 23px;
			width: 15px;
			left: 4px;
			bottom: -5px;
			border: 1px solid @borderColor;
			background-color: @borderColor;
			border-radius: 2px;
			transition: @transition;
		}
	}

	&:hover {
		.slider {
			&::before {
				background-color: @secondaryColor;
			}
		}
	}
}

input {

	&:checked + .slider {
		border-color: @brandColor;
		background-color: @brandColor;

		&:before {
			background-color: @invTextColor;
		}
	}

	&:focus + .slider {
		&::before {
			background-color: @secondaryColor;
		}
	}

	&:checked + .slider:before {
		transform: translateX(26px);
	}
}

.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}*/

/*
    ** bootstrap
*/
.rounded {
    border-radius: @baseRadius !important;
}

hr {
    margin: @baseGap 0;
    border-color: @borderColor;
}

label {
    user-select: none;
}

.navbar-toggler {
    border: none;
    padding: 0;

    .icon-bar {
        display: block;
        width: 22px;
        height: 2px;
        background: @textColor;
        border-radius: 1px;
        transition: @transition;

        + .icon-bar {
            margin-top: 4px;
        }
    }

    &: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);
            }

            &:nth-child(2) {
                opacity: 0;
                visibility: hidden;
            }

            &: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: @linkColor;
}

@media (min-width: 1440px) {
    .container {
        max-width: 1676px;
    }
}

.media {
    position: relative;

    &.write-review {
        padding-right: @baseGap;
    }

    .media-object {
        margin-right: @baseGap;
    }

    .media-left {
        position: absolute;
        left: @baseGap*2;
        bottom: @baseGap*2;

        @media(max-width:992px) {
            left: 0;
            bottom: @baseGap;
        }

        .vote-stats-yes, .vote-stats-no {
            .btn {
                border-radius: 8px;
                border: 1px solid @borderColor;
                background: #fff;
                padding: 2px 13px;
                color: #8c8c8c;
                font-size: .929rem;
                line-height: 1.692;
            }
        }

        .vote-stats-no {
            margin-right: @baseGap;
        }
    }
}

.bg-light {
    background-color: @bgDarkenColor !important;
    /*display: inline-flex;
    float: left;
    padding: 0 !important;
    z-index: 100;*/
}

.progress-bar {
    background-color: @brandColor;
    color: @invTextColor;
}

.custom-control:not([redonly]) {
    cursor: pointer;
}

.custom-control-input {

    &:not(:checked) ~ .custom-control-label::before {
        border: 1px solid @borderColor;
    }

    &:hover ~ .custom-control-label::before {
        border-color: @secondaryColor;
    }
}

.custom-control-label::before {
    background-color: @bgDarkenColor;
}


.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: @bgDarkenColor;
    border-color: @bgDarkenColor;

    &:hover, &:focus {
        background-color: darken(@bgDarkenColor,@basePercent);
        border-color: darken(@bgDarkenColor,@basePercent);
    }
}

.btn-outline-light {
    border-color: @borderColor;
    color: @secondaryColor;

    &:hover, &:focus {
        background-color: transparent;
        border-color: @borderColor;
    }
}

.btn-brand {
    background-color: @brandColor;
    border-color: @brandColor;

    &:hover, &:focus {
        background-color: darken(@brandColor,@basePercent);
        border-color: darken(@brandColor,@basePercent);
    }
}

.btn-primary {
    background-color: @primaryColor;
    border-color: @primaryColor;
    color: @invTextColor;

    &:hover, &:focus {
        background-color: darken(@primaryColor,@basePercent);
        border-color: darken(@primaryColor,@basePercent);
    }
}

.btn-outline-primary {
    color: @secondaryColor;
    border-color: @secondaryColor;
}

.btn-secondary {
    background-color: @secondaryColor;
    border-color: @secondaryColor;

    &:hover, &:focus, &:active {
        background-color: lighten(@secondaryColor,@basePercent);
        border-color: lighten(@secondaryColor,@basePercent);
    }
}

.btn-outline-secondary {
    &:focus {
        box-shadow: 0 0 0 0.2rem fadeout(@secondaryColor,30%) !important;
    }
}

/*.btn-mute {
    background-color: @muteColor;
    border-color: @muteColor;
    color: @invTextColor;

    &:hover {
        background-color: lighten(@muteColor,@basePercent*5);
        border-color: lighten(@muteColor,@basePercent*5);
    }
}*/

.form-control, .form-select {
    border-color: @borderColor;
    background-color: @bgWidgetColor;
}

.form-select {
    /*font-size: 14px;*/
    border-radius: @baseRadius;
    /*background-image: url('../images/angle-down-solid.png') !important;*/
    /*padding: .375rem .75rem .375rem 2.2rem !important;*/
    /*width: 100%;*/
    /*&:focus {
        background-image: url('../images/angle-down-solid-up.png') !important;
    }*/
}

.form-control {
    /*font-weight: 300;*/
    /*font-size: 14px;*/
    /*line-height: 1.833;*/
    border-radius: @baseRadius;
    /*width: 100%;*/
    &.input-validation-error {
        border-color: @dangerColor;
        animation: shake-hard .3s ease-in-out;
    }
}

.search-box {
    .form-control {
        background-color: @bgColor;
        padding: 14px 38px 14px 10px;
        border-radius: @baseGap/4;

        &: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: @secondaryColor;
    color: @secondaryColor;
}

.custom-control-label:active {
    color: @secondaryColor;
}

.page-link {
    color: @textColor;
    border-color: @borderColor;
}


.form-inline {
    .custom-control, .form-select {
        &:not(:last-child) {
            margin-right: @baseGap;
        }
    }
}

.info-date-picker {

    select {
        /*width: 31.3% !important;*/
        min-width: 100px;
        min-height: 30px;
        padding: 14px 10px;
        border-radius: 5px;
        border-color: @borderColor;
        margin-left: 10px;
        font-size: 14px;
        line-height: 43px;
        color: #6f6f6f;




        &:hover, &:focus {
            outline: none;
            border-color: @borderColor;
        }

        &:focus {
            box-shadow: 0 0 5px 5px rbga(0,0,0,0.2);
        }
    }
}
/*.nav > li:hover > a, .nav > li > a:focus {
	background-color: darken(@bgWidgetColor,@basePercent);
}*/
/*.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
	background-color: @secondaryColor;
}*/

.attribute-input {
    .form-check {
        display: inline-block;
        margin-bottom: .5em;
        padding-right: @baseGap/2;

        &:first-child {
            padding-right: 0;
        }

        input[type="radio"].form-check-input {
            appearance: none !important;
            display: none !important;
            height: 0 !important;
            width: 0 !important;

            & + label {
                display: inline-block !important;
                padding: .75em 1.25em !important;
                border-radius: 8px !important;
                /*color: #555 !important;*/
                background-color: #ffffff !important;
                border: 1px solid #ccc;
                cursor: pointer;
            }

            &:checked + label {
                border: 2px solid @brandColor !important;
                color: @secondaryColor !important;
            }
        }
    }
}

.pagination {
    justify-content: center;
    background-color: @bgWidgetColor;
    padding: @baseGap 0;
    /*border-top: 1px solid @borderColor;*/
    border-bottom: 1px solid @borderColor;

    .page-item {

        .page-link {
            width: 35px;
            height: 35px;
            line-height: 20px;
            text-align: center;
            background-color: transparent;
            color: @muteColor;
            border: none;
            margin: 0 @baseGap/4;
            font-size: 20px;

            &:hover {
                color: @textColor;
            }
        }

        &.active {
            .page-link {
                color: @invTextColor;
                background-color: @secondaryColor;
                border-radius: @baseRadius;
            }
        }
    }

    .previous-page, .next-page {
        padding: 0 @baseGap;

        @media(min-width:768px) {
            padding: 0 @baseGap*2;
            margin: 0 @baseGap*2;
        }

        .page-link {
            color: transparent;

            &::before {
                content: "";
                position: absolute;
                font-family: @fontawesome;
                color: @muteColor;
            }

            &:hover {
                color: transparent;
            }
        }
    }

    .next-page {
        border-left: 1px solid @borderColor;

        .page-link::before {
            content: "\f101";
            right: 0;
        }
    }

    .previous-page {
        border-right: 1px solid @borderColor;

        .page-link::before {
            content: "\f100";
            left: 0;
        }
    }
}
/*.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
	background-color: @secondaryColor;
	border-color: @secondaryColor;
}*/
.breadcrumb {
    background-color: transparent;
    padding-top: 0;
    padding: 0;
    padding-right: 0;

    .breadcrumb-item {
        &::before {
            color: @muteColor;
        }

        a {
            text-decoration: none;
            color: @muteColor;
            font-size: small;
        }

        &:hover {
            a {
                font-weight: bold;
            }
        }
    }

    .current-item {
        pointer-events: none;
        color: lighten(@textColor, @basePercent*3);
        font-weight: bold;
        /*display: none;*/
    }
}

.card {
    background-color: @bgWidgetColor;
    border-color: @borderColor;
    position: relative;
}

.address-grid {
    .card {
        margin: @baseGap 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%;

    &::before {
        font-family: 'digikala3';
        content: "\E034\00FE0E";
        font-size: 11px;
        position: absolute;
        top: 14px;
        left: 13px;
        color: @secondaryColor;
    }
}

.shipping-addresses {
    .card-body {
        &::before {
            @media(max-width:578px) {
                bottom: -@baseGap;
            }
        }
    }
}

#opc-confirm_order .trigger-buttons {
    display: none;
}

.card-body {
    padding: 20px 43px 22px 20px;
    position: relative;
    color: @borderColor;
    margin-bottom: 0;

    &::before {
        width: 5px;
        top: 0;
        bottom: 0;
        right: -1px;
        position: absolute;
        background-color: @secondaryColor;
        content: "";
    }

    .card-title {
        border-bottom: 1px solid @borderColor;
        width: 100%;
        padding-bottom: @baseGap/2;
    }

    .adress {
        margin-bottom: 0.8rem;
    }

    @media(max-width:400px) {
        .postalcode, .phone {
            label {
                font-size: 0.6em;
            }

            span {
                font-size: 0.8em;
            }
        }
    }
}

.address-box.card-body {
    color: @textColor;
}


.card-footer {
    border: 1px solid rgba(0,0,0,.1);
    background-color: @bgWidgetColor;

    @media(max-width:350px) {
        padding: 0.5rem 0.1rem
    }
}

.card-header {
    background-color: @bgDarkenColor;
    border-color: @borderColor;
}



.jumbotron {
    background-color: @bgDarkenColor;
}

.navbar-default {
    background-color: @bgDarkenColor;
    border-color: @borderColor;
}


.label {
    display: inline-block;
}

.label-default {
    background-color: @secondaryColor;

    &[href]:focus, &[href]:hover {
        background-color: lighten(@secondaryColor,@basePercent);
    }
}

.label-primary {
    background-color: @brandColor;

    &[href]:focus, &[href]:hover {
        color: darken(@brandColor,@basePercent);
    }
}

.tooltip, input[text] {
    font-family: inherit;
}
/*.tab-content {
	padding: @baseGap;
}*/
/*a, .btn-link {
	color: @linkColor;

	&:hover, &:focus, &:visited {
		color: darken(@linkColor,@basePercent);
	}

	&:active {
		color: @brandColor;
	}
}*/
/*.table > thead > tr > th {
    background-color: @secondaryColor;
    color: @bgWidgetColor;
    padding: @baseGap*2;
    text-align: center;
}

.table > tbody > tr > td {
    font-size: .929rem;
    text-align: center;
}*/

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: @bgDarkenColor;
}

.text-primary {
    color: @brandColor;
}

.text-success, .message-success {
    color: @successColor;
}

.text-danger, .message-failure {
    color: @dangerColor;
}

.bg-primary:not(.navbar-inverse) {
    background-color: @brandColor;
}


.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: @secondaryColor;
    box-shadow: none;
    color: @invTextColor;
    border-color: @secondaryColor;
}

.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: @brandColor;
    box-shadow: none;
    border-color: @brandColor;
}
/*.thumbnail {
	background-color: @bgWidgetColor;
	border-color: @borderColor;
}*/
.list-group-item {
    background-color: transparent;
    border-color: @borderColor;
    border: none;
    /*padding-right: 25px !important;*/
    &.list-group-item-action {
        background-color: transparent !important;
    }

    a&:focus, a&:hover, button&:focus, button&:hover {
        color: @secondaryColor;

        .arrow-icon {
            color: @brandColor;
        }
    }

    &.active, &.active:focus, &.active:hover {
        background-color: transparent;
        color: @textColor;
        font-weight: bold;
        border-color: @secondaryColor;
        position: relative;



        .arrow-icon {
            color: @invTextColor;
        }
    }

    .arrow-icon {
        margin-top: 4px;
        color: @borderColor;
    }
}

/*.block-category-navigation {
    .list-group-item.active {
        background-color:transparent;
        .list-group-item {
            &.active, &.active:focus, &.active:hover {
                background-color: #f6ffff;
                color: @secondaryColor;
                border-color: @secondaryColor;
            }
        }
    }
    }*/
.dropdown-menu {
    background-color: @bgWidgetColor;
    font-size: small;
    /*@media (min-width:768px) {
        .dropdown-menu {
            left: 100%;
            top: 0;
        }
    }*/
    /*.dropdown {
        .dropdown-toggle {
            &::after {
                position: absolute;
                right: .255em;
                top: 1.2em;
                -webkit-transform: rotate(-90deg);
                -moz-transform: rotate(-90deg);
                -ms-transform: rotate(-90deg);
                -o-transform: rotate(-90deg);
                transform: rotate(-90deg);
            }
        }
    }*/
}

@media (min-width:768px) {
    .dropdown-menu {
        margin-top: 0;

        .dropdown-item {
            padding: 10px 20px;
        }
    }

    .dropdown, .dropup {
        &:hover {
            > .dropdown-menu {
                display: block;

                &.dropdown-menu-end {
                    right: 1px;
                    left: auto;
                }

                &.dropdown-menu-start {
                    right: auto;
                    left: 1px;
                }
            }
        }
    }
}
/*@media (max-width:768px) {
	.dropdown-menu .dropdown-menu {
		padding-left: @baseGap;
	}
}*/
.dropdown-item {
    &:focus, &:hover {
        background-color: darken(@bgWidgetColor,@basePercent);
    }

    &.active {
        background-color: @secondaryColor;
    }
}

/*.dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: @fontawesome;
}*/

.dropdown-toggle:focus {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.dropdown-divider {
    border-top-color: @borderColor;
}

@media(min-width: 768px) {
    .modal-dialog {
        margin-top: 50px !important;
    }
}
/*
    ** common
*/
a[target=_blank] {
    cursor: alias;
}

input[type=password] {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.optional {
    font-size: smaller;
    color: @muteColor;
}

/*.ajax-filter-title {
    font-size: @baseGap;
    line-height: 1;
}

.ajaxfilter-title {
    margin: @baseGap 1.5rem;
    border-bottom: 1px solid @borderColor;
    padding-bottom: @baseGap;
    font-size: 1.25rem;
    line-height: 1;
    color: rgba(0,0,0,.5);
}*/

.title {
    margin-bottom: @baseGap/2;
}

.separator {
    &::before {
        content: "|";
        margin: @baseGap/3;
    }
}

.block-popular-tags {

    .tag {
        padding: @baseGap/4 @baseGap;
        font-size: small;
        color: @muteColor;
        display: block;
        text-align: right;
    }

    .view-all {
        border: 1px solid @secondaryColor;
        border-radius: @baseRadius;
        display: inline-block;
        margin: 0 @baseGap @baseGap;
    }
}

/*.tags {
    .title {
        color: @muteColor;
        margin-bottom: 0;
    }

    .tags-list {
        > li + li:not(:last-child)::after {
            content: "-";
        }

        .list-inline-item {
            margin: 0;
        }
        
    }

    .separator {
        &::before {
            content: "-";
        }
    }

    &.product-tags-list, &.post-tags-list {
        border-top: 1px solid @borderColor;
        padding-top: @baseGap/2;
        margin-top: @baseGap;
    }
}*/
.form-group {
    margin-bottom: @baseGap;
}

.fieldset {
    /*> .title {
		font-size: x-large;
		margin: @baseGap 0 .375rem;
	}*/
    > .form-fields {
        margin-bottom: @baseGap*2;
    }
}

.form-fields {
    padding: @baseGap;
    background-color: @bgWidgetColor;

    .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;
    }

    .form-control {
        padding-right: 10px;
    }

    .buttons {
        margin-top: @baseGap;
    }

    .pickup-points {
        .pickup-points-submit {
            width: 250px;
            margin: 0 auto;
            display: block;

            i {
                vertical-align: middle;
            }
        }
    }
}

.location {
    height: 56px;
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
    display: block;
    align-items: center;
    width: 100%;
    margin-bottom: @baseGap*2;
    padding: 7px 15px 8px;
    font-size: 1.286rem;
    line-height: 1.39;
    color: #858585;
}

.person {
    .fieldset {
        position: relative;

        .title {
            margin-bottom: @baseGap*2;
        }
    }

    .form-group {
        padding-left: unset;
        padding-right: unset;
    }

    .form-fields {
        padding: 1rem;


        .form-group {
            width: 80%;
            max-width: unset;
        }
    }

    .custom-control {
        display: inline-block;
        margin-top: 10px;
    }

    .form-control {
        padding: 14px 10px 14px 10px;

        &:focus {
            border-color: @borderColor;
        }
    }
}

.section {
    margin-bottom: @bigGap;

    .title {
    }

    .info, .details {
        list-style: none;
        margin: 0 0 @baseGap/2;
        padding: @baseGap*2;
        font-weight: bold;
        color: lighten(@textColor,30%);
        background-color: @bgWidgetColor;

        > li {
            line-height: 1.3em;

            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: 0.95;
    z-index: 1060;
}

.alert {
    position: relative;
    border: none;
    border-left: @baseGap*3 solid;
    font-weight: bold;
    min-height: 50px;

    &::before {
        position: absolute;
        .fontawesome-solid;
        left: -@baseGap*2;
        color: @invTextColor;
    }


    &.alert-success {
        color: @successColor;

        &::before {
            content: "\f058";
        }
    }

    &.alert-info {
        color: @infoColor;

        &::before {
            content: "\f05a";
        }
    }

    &.alert-warning {
        color: @warningColor;

        &::before {
            content: "\f071";
        }
    }

    &.alert-danger {
        color: @dangerColor;

        &::before {
            content: "\f057";
        }
    }

    &.alert-secondary {
        &.no-result, &.no-data {
            color: @muteColor;
            background-color: @bgDarkenColor;

            &::before {
                content: "\f05a";
            }
        }
    }

    &.alert-reward-point {
        background-color: #fef0a7;
        border-color: gold;

        &::before {
            content: "\f559";
            color: black;
        }
    }
}

.message {
    margin: 3px 0 @baseGap/3;
    font-size: smaller;
    font-weight: bold;
}

.validation-summary-errors {
    color: @textDanger;
    font-weight: normal;
}

.field-validation-valid {
    font-weight: bold;
    color: @successColor;
}

.field-validation-error {
    font-weight: bold;
    color: @dangerColor;

    &::before {
        content: "\f071";
        .fontawesome-solid;
        margin-right: @baseGap/3;
    }
}

.message-error, .poll-vote-error, .password-error, .external-auth-errors {

    ul {
        margin-bottom: 0;
    }
}

ul.message-error {
    padding-top: @baseGap;
    padding-bottom: @baseGap;
}

.eu-cookie-bar-notification {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    padding: @baseGap*2 0;
    text-align: center;
    background-color: fadeOut(@invBgColor,@basePercent);
    color: @invTextColor;
    z-index: 1100;

    .close {
        position: absolute;
        top: @baseGap;
        right: @baseGap;
        font-size: 2em;
        color: @invTextColor;
        text-shadow: none;
    }
}

.topic-block {
    margin-bottom: @baseGap;
    /*.topic-block-title {
		font-size: x-large;
	}*/
    /*.topic-block-body {
		ul {
			list-style: none;
		}
	}*/
}

.page {
    background-color: @bgColor;
    margin-bottom: @bigGap;
}

.html-not-found-page {


    .master-wrapper-page {
        background-image: url('../images/6fb2da6e.png');
        background-repeat: repeat;
        background-size: contain;

        .page, .page-body {
            background-color: transparent !important;
        }
    }
}

.not-found-page {


    .page-title {
        text-align: center;
        line-height: 22px;
        font-size: 2.571rem !important;
        line-height: 1.222;
        margin: .67em 0;
        padding-top: 68px;
        text-align: center;
    }

    .page-body {

        .btn-outline-primary {
            border-radius: 8px;
        }
    }

    ul {
        list-style-type: none;
    }
}



.btn-not-found {
    text-align: center;

    a:hover {
        color: @bgWidgetColor;
        background-color: fadeout(#6ab946,20%);
    }

    .btn-green {
        background-color: #6ab946;
        border: 1px solid #4aa42e;
        border-radius: 8px;
        padding: 10px 20px;
        color: @bgWidgetColor;
        min-width: 161px;
        margin: 10px 19.5px 46px;
    }
}

.page-body {
    min-height: 350px;
    /*margin: 0 15px;*/
}

.page-title {
    /*font-size: xx-large;*/
    margin-top: @baseGap*2;
    margin-bottom: @baseGap;
    font-size: 1.286rem;
    line-height: 34px;
    color: @textColor;
}

.page-description {
    background-color: @bgWidgetColor;
    /*border: 1px solid darken(@borderColor,@basePercent);*/
    color: @muteColor;
    margin-top: @baseGap;
    padding: @baseGap;
}

/*.html-home-page, .html-contact-page, .html-shopping-cart-page, .html-topic-page, .html-search-page, .html-compare-products-page {
    .master-wrapper-content {
        margin-top: 6.5rem;

        @media(max-width:769px) {
            margin-top: @baseGap;
        }
    }
}*/

/*.html-contact-page, .html-search-page {
    .form-fields {
        box-shadow: 0 12px 12px 0 hsla(0,0%,71%,.11);
        background-color: @bgWidgetColor;
        border: 1px solid @borderColor;
        line-height: 22px;

        .title {
            margin-bottom: @baseGap;
        }

        .btn-primary {
            width: 100%;
            display: block;
        }
    }
}*/

/*.master-column-wrapper {
    margin-top: 6.5rem;

    @media(max-width:769px) {
        margin-top: @baseGap;
    }

    .page-title {
        margin-top: 0;
    }
}*/

.topic-page, .contact-page, .search-page {
    box-shadow: @baseShadow;
    background-color: @bgWidgetColor;
    border: 1px solid @borderColor;
    margin: @baseGap auto;
    padding-bottom: 60px;
    /*line-height: 22px;*/
    padding: @baseGap @bigGap*2;

    @media(max-width:992px) {
        padding: @baseGap/2 @baseGap;
        margin-bottom: 20px;
    }

    .page-title {
        font-size: @baseGap*2;
        line-height: 1.63;
        margin-bottom: 10px;
        margin-top: 20px;
        color: @textColor;
    }

    .page-body {
        background-color: #fff !important;

        img {
            max-width: 100%;
        }
    }
}


.rating {
    color: lighten(@muteColor,30%);

    .colorStar {
        color: @star-selected;

        @media (max-width: 768px) {
            font-size: small;
        }
    }
}

.poll {
    margin-bottom: @baseGap;

    .poll-display-text {
        font-weight: bold;
        margin-bottom: @baseGap/2;
    }

    .poll-total-votes {
        color: @muteColor;
    }

    .poll-results {
        .answer {
            margin-bottom: @baseGap/3;
            position: relative;
        }

        .progress-wrapper {
            display: -webkit-box;
            display: -ms-flexbox;
            display: -moz-box;
            display: -webkit-flex;
            display: flex;

            .progress {
                width: 100%;
            }

            .vote-percent {
                width: 120px;
                font-size: .75em;
                margin-left: @baseGap/2;
            }
        }
    }
}

.table-wrapper {

    .table {
        margin-bottom: 0;
    }

    + .tax-shipping-info {
        margin-top: -@baseGap;
    }
}

html {
    scroll-behavior: smooth;

    &:not([dir]) {
        .dk-icon3-next {
            transform: rotate(180deg);
        }
    }
}

body {
    background-color: @bgColor;
    color: @textColor;

    ::-webkit-scrollbar {
        width: 10px;
    }
    /* Track */
    ::-webkit-scrollbar-track {
        background: none;
    }
    /* Handle */
    ::-webkit-scrollbar-thumb {
        background: @bgDarkenColor;
        border-radius: 1rem;
    }
    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: @primaryColor;
    }
}

.store-logo {

    img {
        width: 100%;
        max-height: 34px;
        object-fit: contain;
        object-position: center right;

        @media (max-width:767px) {
            object-position: left;
        }

        @media (min-width:768px) {
            max-height: 60px;
        }
    }

    .store-name {
        position: absolute;
        clip: rect(1px,1px,1px,1px);
        display: none;
    }
}

.search-box {
    position: relative;
    transition: @transition;

    .search-box-button {
        position: absolute;
        top: 0;
        right: 0;
        left: auto;
        background: none;
        color: @muteColor;
        height: 100%;

        &:focus {
            box-shadow: @brandColor;
        }
    }

    .search-box-text {
        height: 38px;
        border: none;

        &:focus {
            font-weight: 100;
            background-color: @bgWidgetColor;
            border-bottom: 1px solid @borderColor;
        }
    }


    .ui-widget-content {
        border-color: @borderColor;
        padding: 0;
        top: calc(~'100% - 1px');
        z-index: 1050;
        width: 100% !important;
        font-size: inherit;
        background-color: @bgWidgetColor;

        .ui-state-active {
            border: 0 !important;
        }

        .ui-menu-item {
            list-style-image: none;
            margin-top: 6px;

            a {
                color: @muteColor;
                padding-top: @baseGap/3;
                padding-bottom: @baseGap/3;
                .text-ellipsis;
                transition: @transition;

                img {
                    margin: 0 @baseGap 0 @baseGap/2;
                }

                &:hover {
                    background: @bgDarkenColor;
                    color: @textColor;
                    border: none;
                    cursor: pointer;
                    margin: 0 !important;
                }
            }

            .ui-state-focus {
                background: @bgWidgetColor;
                border: none;
                border-radius: 0;
                margin: 0;
                color: @textColor;
                cursor: pointer;
            }
        }
    }

    .ui-menu .ui-menu-item {
    }

    .ui-autocomplete-loading {
        background-image: url('../images/ajax-loader-small.gif');
        background-position: right center;
        background-repeat: no-repeat;
    }
    /*.ui-helper-hidden-accessible {
		background-color: @bgWidgetColor;
		border: 1px solid @borderColor;
		padding: 40px @baseGap 5px;
		height: auto;
		width: calc(~'100% + 2px');
		clip: auto;
		overflow: initial;
		border-radius: @baseRadius;
		z-index: -1;
		box-shadow: 0 5px 15px rgba(0,0,0,.4);
	}*/
    &.active {
        @media (max-width:767px) {
            position: absolute;
            right: @baseGap;
            left: @baseGap;
        }

        form {
            position: relative;
            z-index: 1051;
            margin: 1px;
        }

        .search-box-text:focus, .search-box-text.valid {
            border: none;
            outline: none;
            box-shadow: none !important;
        }

        .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: @bgWidgetColor;
    padding: @baseGap/2 0;
    position: sticky;
    top: 0;
    z-index: 1021;

    .navbar-toggler {
        padding: 0;
        flex-basis: auto;

        .icon-bar {
            display: block;
            width: 20px;
            height: 3px;
            transition: @transition;
            background-color: @textColor;

            + .icon-bar {
                margin-top: 4px;
            }
        }
    }

    .header-lower {
        .nav-link {
            color: @muteColor;
        }
    }

    @media (max-width:767px) {

        .header-selectors-wrapper {
            margin: @baseGap auto;
            text-align: center;

            .nav {
                display: block;

                > li {
                    > a {
                        padding: 6px 10px;
                        border: 1px solid @borderColor;
                        display: inline-block;
                        min-width: 200px;
                    }

                    + li {
                        margin-top: 4px;
                    }
                }
            }
        }

        .header-links-wrapper {
            text-align: center;
            margin-bottom: @baseGap;

            .nav {
                display: block;

                .nav-item {
                    display: inline-block;
                }
            }
        }
    }

    &.is-sticky {
        position: fixed;
        width: 100%;
    }
}

.header-links-wrapper {

    .top-login-link {
        .nav-link {
            border: 1px solid @borderColor;
            padding: 10px 12px;
            border-radius: 5px;

            i {
                color: @textColor;
            }
        }
    }

    .top-cart-link {
        position: relative;

        &::before {
            content: "";
            position: absolute;
            top: 3px;
            left: 0;
            width: 1px;
            height: 24px;
            background-color: @borderColor;
        }

        .notify {
            width: 22px;
            height: 22px;
            background-color: @brandColor;
            color: @bgWidgetColor;
            border-radius: 6px;
            font-size: .714rem;
            line-height: 20px;
            text-align: center;
            font-weight: 900;
            position: absolute;
            bottom: 4px;
            left: 5px;
            border: 2px solid @bgWidgetColor;

            &:empty {
                display: none;
            }
        }
    }
}

/*@media (max-width:769px) {
    .container {
        width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: initial;
    }
}*/

/*.top-menu-moible {

    .navbar-collapse {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100%;
        width: 80%;
        max-width: 290px;
        overflow-y: auto;
        box-shadow: 0 0 10px rgba(0,0,0,.3);
        background-color: @bgWidgetColor;
        transition: .3s ease-in-out;
        z-index: 1032;

        &.show {
            left: 0;
        }
    }

    .navbar-nav {

        .nav-item {
            .nav-link {
                padding-left: @baseGap*2;
            }
        }

        .dropdown-menu-mobile {
            display: block;
            border: 0;

            > .dropdown {
                > .dropdown-menu {
                    box-shadow: 0 1px 0 rgba(0,0,0,.1) inset;
                }
            }

            .dropdown {
                .dropdown-toggle {
                    &::after {
                        content: "\f107";
                        font-family: @fontawesome;
                        border: none;
                        position: absolute;
                        top: @baseGap/2;
                        right: @baseGap/2;
                    }
                }

                &.show {
                    > .dropdown-toggle::after {
                        content: "\f106";
                    }
                }

                > .dropdown-menu {
                    background-color: @lightGray;
                    border-radius: 0;

                    .dropdown-menu {
                        li .nav-link {
                            color: @muteColor;
                            padding-left: @baseGap*2;
                        }
                    }
                }
            }
        }
    }
}*/

.top-menu {
    padding: 0;
    position: sticky;
    top: 60px;
    background: @bgWidgetColor;
    box-shadow: 0 7px 8px 0 rgba(0,0,0,.04);
    transition: @transition;
    transform: translateY(0);
    z-index: 1020;
    margin-bottom: @baseGap;

    &.hidden {
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    .navbar-nav {
        position: relative;

        .dropdown-menu {
            border: none;
            padding: 0;
        }

        .nav-item {
            .nav-link {
                color: @textColor;
            }
        }


        > .nav-item {
            > .nav-link {
                font-weight: bold;
                white-space: nowrap;
                position: relative;
                padding-top: @baseGap;
                padding-bottom: @baseGap;

                i {
                    color: @muteColor;
                }

                &::after {
                    content: "";
                    position: absolute;
                    bottom: 0;
                    right: 0;
                    width: 100%;
                    height: 2px;
                    visibility: hidden;
                    background-color: @primaryColor;
                    transition: @transition;
                    transform: scale(0);
                    transform-origin: center center;
                }
            }

            &:hover {
                > .nav-link {
                    &::after {
                        visibility: visible;
                        transform: scale(1);
                    }
                }
            }
        }
    }
}

.top-menu-categories {
    position: static;

    .nav-item {
        .nav-link {
            padding-top: @baseGap/3;
            padding-bottom: @baseGap/3;

            &:hover {
                color: @brandColor;
            }
        }
    }

    .dropdown-menu {
        .dropdown {
            .dropdown-toggle {
                font-weight: bold;

                &::after {
                    display: none;
                }
                /*&::after {
                    border: none;
                    content: "\f053";
                    font-family: @fontawesome;
                    font-size: smaller;
                    vertical-align: middle;
                }*/
            }
        }
    }

    > .dropdown-menu {
        width: 100%;
        box-shadow: @baseShadow;

        > .nav-item {
            background-color: @lightGray;
            position: static;
            width: 23%;

            > .nav-link {
                padding: @baseGap;
            }

            &:hover {
                > .nav-link {
                    background-color: @bgWidgetColor;
                }
            }
        }

        > .dropdown {
            > .nav-link::after {
                display: none;
            }

            > .dropdown-menu {
                top: 0;
                width: 77%;
                left: 23%;
                height: 100%;
                -webkit-columns: 4 130px;
                -moz-columns: 4 130px;
                columns: 4 130px;
                overflow: auto;
                padding: @baseGap/2;
                column-fill: auto;

                .dropdown-menu {
                    display: block;
                    right: auto;
                }

                .dropdown-toggle {
                    border-left: 2px solid @primaryColor;
                }
            }
        }

        .dropdown {
            .dropdown-menu {
                /*> .nav-item {

                 >   .nav-link {
                        font-weight: bold;
                    }
                }*/
                .dropdown-menu {
                    position: relative;

                    .nav-link {
                        color: @muteColor;

                        &:hover {
                            color: @brandColor;
                        }
                    }
                }
            }
        }
    }
}


.store-header-mobile {
    background-color: @bgWidgetColor;
    padding: @baseGap/2 @baseGap 0;
    margin-bottom: @baseGap;

    .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: @transition;
            outline: none;

            .icon-bar {
                display: none;
            }

            &::after {
                content: "\f00d";
                position: absolute;
                font-family: @fontawesome;
                font-size: x-large;
                top: 0;
                right: 0;
                margin: @baseGap;
                color: @textColor;
            }
        }
    }

    .header-upper {
        border-bottom: 1px solid @borderColor;
        padding-bottom: @baseGap/2;
        margin-bottom: @baseGap/2;
    }

    .header-links {
        .nav-link {
            color: @muteColor;

            &:hover, &:focus {
                color: @textColor;
            }
        }
    }
}

.aside-header {
    /*display: none;*/
    position: fixed;
    visibility: hidden;
    height: 100%;
    width: 85%;
    max-width: 380px;
    top: 0;
    bottom: 0;
    left: -380px;
    overflow-y: auto;
    background: @bgWidgetColor;
    z-index: 1041;
    transition: @transition;
    /*&::after {
        .fontawesome-solid;
        position:absolute;
        display:none;
        right:-30px;
        top:@baseGap;
        color:@invTextColor;
        font-size:2em;
    }*/
    &.show {
        visibility: visible;
        left: 0;
        box-shadow: 0 0 15px rgba(0,0,0,.2);

        &::after {
            display: block;
        }
    }
    /*.navbar-toggler{
        position:absolute;
        right:-50px;

    }*/
    .header-selectors-wrapper {
        padding: @baseGap;

        .header-selectors {
            max-width: 220px;
            margin: auto;

            select:not(:last-child) {
                margin-bottom: @baseGap/2;
            }
        }
    }

    .header-customer-wrapper {
        position: relative;
        border-top: 1px solid @borderColor;
        border-bottom: 1px solid @borderColor;
        margin-bottom: @baseGap;

        .nav-link {
            padding-bottom: @baseGap;
            padding-top: @baseGap;
            color: @textColor;
        }

        .top-register-link {
            position: absolute;
            top: @baseGap/2;
            right: @baseGap;
        }

        .customer-reward {
            color: @muteColor;
            margin-top: @baseGap/2;
        }

        .dropdown-toggle::after {
            top: 1rem;
        }
    }

    .dropdown {
        .dropdown-menu {
            position: relative !important;
            width: 100%;
            border: none;
            border-radius: 0;
            background: @bgDarkenColor;
            box-shadow: none;
            transform: none !important;
        }

        &.show {
            > .dropdown-toggle::after {
                transform: rotate(90deg);
            }
        }

        .dropdown-menu .dropdown-menu {
            padding-left: @baseGap;
        }
    }

    .aside-menu {
        .navbar-nav {
            .nav-item {
                .nav-link {
                    padding-right: @baseGap;
                    padding-left: @baseGap;
                    color: @muteColor;
                }

                &:hover {
                    .nav-link {
                        color: @textColor;
                    }
                }
            }
        }
    }

    .dropdown-toggle {
        &::after {
            content: '\f054';
            position: absolute;
            font-family: @fontawesome;
            right: @baseGap;
            top: .5rem;
            border: none;
            /*line-height: 1;*/
            /*transform: translateY(-50%);*/
            transition: @transition;
        }
    }
}

#magic-line {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 125px;
    height: 4px;
    background: @brandColor;
    transition: all 0.3s;
}
/*ul.navbar-nav li a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #666;
    padding: 12px 20px;
    min-width: 85px;
    font-weight: normal;
    transition: color 0.3s;
}

ul.navbar-nav li.nav-item a {
    color: @brandColor;
}

.navbar-nav:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0;
}

*:first-child + html .navbar-nav {
    zoom: 1;
}*/
/*.main-nav {
	nav.navbar {
		border-color: @borderColor;
	}

	.navbar-nav {

		a {
			color: @textColor;
		}
	}
}*/
.admin-links {
    position: fixed;
    right: 0;
    top: 100px;
    border-radius: .25rem 0 0 .25rem;
    background-color: black;
    border: 1px solid black;
    border-right-width: 0;
    z-index: 1030;

    > .dropdown-item {
        border-bottom: 1px solid lighten(black,15%);
        padding: 10px @baseGap;
        display: block;
        color: whitesmoke;
        font-size: 1.5em;
        line-height: 0;

        &:hover, &:focus {
            background: lighten(black,15%);
            color: white;
        }

        span {
            display: none;
        }
    }

    @media (max-width:768px) {
        opacity: .7;

        &:hover {
            opacity: 1;
        }
    }
}

.impersonate {
    position: fixed;
    right: 50px;
    top: 50px;
    height: 80px;
    width: 80px;
    line-height: 90px;
    text-align: center;
    color: white;
    background: black;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0,0,0,.3);
    z-index: 1030;


    .fa-user-secret {
        font-size: 2.5em;
    }

    .fa-times {
        position: absolute;
        top: 5px;
        right: 5px;
        width: 20px;
        height: 20px;
        line-height: 20px;
        text-align: center;
        background: black;
        border-radius: 50%;
    }

    @media (max-width:768px) {
        opacity: .7;
        left: 20px;

        &:hover {
            opacity: 1;
        }
    }
}

.img-flex {
    display: flex;
    justify-content: space-around;

    div {
        flex-grow: 5;
    }
}

.img-footer {
    margin-bottom: @baseGap;
}

.go-top-link {
    margin-top: 80px;
    padding: 20px 0;
    font-size: 20px;
    border-top: 1px solid fadeOut(@borderColor,75%);
    cursor: pointer;


    .goto-top {
        text-decoration: none;
        color: @textColor;

        .dk-icon-jumpup-wrapper {
            position: relative;
            display: inline-block;
            color: @invTextColor;
            background-color: gainsboro;
            padding: 8px;
            margin-right: @baseGap;
            margin: 0 10px;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            vertical-align: middle;

            .dk-icon {
                position: absolute;
                display: inline-block;
                transform: rotate(-90deg);
                left: 11px;
            }
        }
    }
}


.fa-search {
    vertical-align: middle;
}



.border-shopfeatur-1 {
    @media(max-width:796px) {
        border-top: 1px solid fadeOut(@borderColor,60%);
    }
}

.border-call {
    border-bottom: 1px solid fadeout(@textColor,80%);
    margin-bottom: @baseGap*2;
    padding-bottom: @baseGap;
    width: 100%;

    (max-width:769px) {
        border-top: unset;
    }
}

.footer-contact-us {
    font-size: 1em;
    padding-top: @baseGap*2;

    .call {
        margin-right: -30px
    }

    .email {
        margin-right: -135px;
    }

    img {
        border-radius: 10px;
        margin-top: -12px;
    }
}

.wrap-footer {
    padding-top: 40px;

    @media(max-width:796px) {
        padding-top: unset;
        border-top: 1px solid @borderColor;

        .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: @bgWidgetColor;
    border-top: 1px solid @borderColor;

    .container {
        max-width: 1336px;
    }
    /*.title {
		margin-bottom: @baseGap/2;
	}*/
    .footer-block {
        .title {
            font-size: large;
        }

        .nav-link {
            padding-top: @baseGap/3;
            padding-bottom: @baseGap/3;
            color: @muteColor;

            &:hover, &:focus {
                color: @textColor;
                text-decoration: underline;
            }
        }
    }

    .topic-block {
        .topic-block-title {
            font-size: medium;
        }

        .topic-block-body {
            font-size: smaller;
            color: @muteColor;
        }
    }
}

@media (max-width:767px) {
    .store-footer {
        .nav {
            margin-bottom: @baseGap;
        }

        .footer-block:not(.follow-us) {
            margin-bottom: @baseGap;

            .title {
                position: relative;
                border-bottom: 1px solid @borderColor;
                padding: @baseGap/2 0;
                cursor: pointer;

                &::after {
                    content: "\f078";
                    float: right;
                    .fontawesome-regular;
                    font-size: smaller;
                    color: @muteColor;
                    transition: @transition;
                }
            }

            .nav {
                display: none;
            }

            &.open {

                .title {
                    border-bottom: none;

                    &::after {
                        -webkit-transform: rotateX(-180deg);
                        -moz-transform: rotateX(-180deg);
                        -ms-transform: rotateX(-180deg);
                        -o-transform: rotateX(-180deg);
                        transform: rotateX(-180deg);
                        color: @brandColor;
                    }
                }

                .nav {
                    display: block;
                }
            }
        }

        .social, .newsletter {
            text-align: center;
            margin-top: @baseGap*2;
        }
    }
}

.footer-upper {
    border-top: 1px solid @borderColor;
    padding: @baseGap 0;
}

.html-shopping-cart-page .footer-lower {

    @media(max-width:1000px) {
        padding-bottom: 130px;
    }
}

.footer-lower {
    /*border-top: 1px solid @borderColor;*/
    padding: @baseGap 0;

    .copy1 {

        @media(max-width:769px) {
            display: none;
        }
    }

    h5 {
        padding-top: @baseGap*2;
        text-align: start !important;
    }

    p {
        /*text-align: start !important;*/
        /*line-height: @baseGap*2;*/
        /*padding-bottom: 0 !important;*/
        a {
            /*text-decoration: none;
            padding-left: 30px;*/
            color: darkslategray;
        }
    }

    @media(max-width:769px) {
        background-color: @bgWidgetColor;
    }
}

/*.footer-copyright {
    text-align: center;
}*/

.footer-powered-by {
    margin: @baseGap/2 0 @baseGap;
    font-size: smaller;
    /*text-align: center;*/
}

.social {
    margin-bottom: @baseGap;

    .title {

        @media(max-width:1200px) {
            margin-top: @bigGap;
        }
    }
}

.addthis_default_style {
    padding-top: @baseGap*2;
}

.networks {
    padding: 0;
    list-style: none;

    li {
        display: inline-block;
        margin-right: @baseGap;

        a {
            display: block;
            font-size: 2em;
            color: @muteColor;

            &:hover, &:focus {
                color: @textColor;
            }
        }
    }

    .aparat {
        svg {
            height: 1em;
            vertical-align: -.125em;
        }

        .st0 {
            stroke: @bgDarkenColor;
            stroke-width: 25;
            stroke-miterlimit: 10;
        }

        .st1 {
            fill: @bgDarkenColor;
        }

        .st2, .st0 {
            fill: @muteColor;
        }

        a:hover {
            .st2, .st0 {
                fill: @brandColor;
            }
        }
    }
}

.app {

    img {
        border: 1px solid @borderColor;
    }

    margin-bottom: @baseGap*2;

    .description {
        color: @muteColor;
        margin-bottom: @baseGap*2;
    }
}

.newsletter {
    margin-bottom: @baseGap;

    @media (min-width:768px) {
        margin-bottom: @bigGap;
    }

    .description {
        color: @muteColor;
        margin-bottom: @baseGap/3;
    }

    .input-group {
        /*height: 45px;
        font-size: 20px;
        position: relative;*/
        @media(max-width:1200px) {
            margin-bottom: @baseGap*2;

            .form-control {
                border-radius: 5px;
                padding: 5px 10px;
                font-size: 0.6em;
            }
            /*.btn-blue {
                padding: 5px 10px;
                border-radius: 5px;
                font-size: 0.6em;

                &::before {
                    background-color: transparent;
                }
            }*/
        }

        @media(min-width:1200px) {

            .btn-block {
                display: unset;
                width: unset;
            }

            .btn-blue {
                border-color: transparent;
                padding: unset;
                border-radius: 5px 0 0 5px;
                font-size: 1rem;
                padding: 11px 24px;

                &::before {
                    background-color: transparent;
                }
            }
        }
    }

    .modal {
        text-align: center;

        &::before {
            content: '';
            height: 100%;
            width: 1px;
            display: inline-block;
            vertical-align: middle;
        }

        .modal-dialog {
            text-align: left;
            margin: 10px auto;
            display: inline-block;
            vertical-align: middle;

            .modal-body {
                padding: @bigGap;
                font-size: medium;
            }
        }
    }

    .description {
        margin-bottom: @baseGap;
    }
    /*.title {
        margin-bottom: @baseGap*2;
    }*/
}

.theme-selector {
    max-width: 250px;
}

.store-aside {

    .nav-pills > li:not(.active) > a {
        color: @textColor;
    }

    .block {
        margin-bottom: @baseGap;
        background-color: @bgWidgetColor;
        border: 1px solid @borderColor;
        border-radius: @baseRadius;

        .ajax-filter-title {

            a {
                position: relative;
                color: @textColor;
                width: 100%;
                display: block;
                padding: @baseGap;
                font-size: small;
                font-weight: 700;

                i {
                    position: absolute;
                    right: @baseGap;
                    top: 50%;
                    font-size: x-large;
                    color: @muteColor;
                    transform: translateY(-50%);
                }

                &:hover {
                    text-decoration: none;
                }
            }

            a:not(.collapsed) {
                border-bottom: 1px solid @borderColor;

                i {
                    transform: translateY(-50%) rotate(180deg);
                }
            }
        }

        .custom-control {
            margin-bottom: 5px;

            .custom-control-label {
                &::before {
                    top: 0
                }
            }
        }

        &.block-manufacturer-navigation .listbox {

            @media (min-width:768px) {
                height: 150px;
                overflow-y: scroll;
            }
        }
    }

    .view-all {
        margin-top: @baseGap/3;
    }
}

.store-aside-mobile {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1050;
    background-color: @bgColor;
    padding: @baseGap;
    overflow: scroll;

    &.show {
        display: block;
    }

    .block {

        .title {
            cursor: pointer;

            &::after {
                content: "\f078";
                .fontawesome-regular;
                position: absolute;
                top: 0;
                left: @baseGap;
                transition: @transition;
                color: @muteColor;
            }
        }

        &.open {

            .title {
                &::after {
                    -webkit-transform: rotateX(-180deg);
                    -moz-transform: rotateX(-180deg);
                    -ms-transform: rotateX(-180deg);
                    -o-transform: rotateX(-180deg);
                    transform: rotateX(-180deg);
                    color: @brandColor;
                }
            }

            .listbox {
                display: block;
            }
        }
    }
}

.block-category-navigation {
    ul {
        padding: 0;
        list-style: none;

        li {
            a {
                display: block;
                padding: .5rem;
                color: @muteColor;
                text-decoration: none;
            }

            &:hover {
                > a {
                    color: @secondaryColor;
                }
            }

            &.active {
                > a {
                    color: @textColor;
                    font-weight: bold;
                }
            }

            &.has-sublist {
                > a {
                    &::before {
                        content: "\f105";
                        .fontawesome-light;
                        margin-right: 3px;
                    }
                }

                &.active {
                    > a::before {
                        content: "\f107";
                    }
                }
            }
        }

        ul {
            margin-left: @baseGap;
        }

        .category-number {
            float: right;
        }
    }
}

.html-address-list-page {
    .store-aside {
        position: relative;
    }

    .add-address-button {
        display: flex;
        background: none;
        border: 4px dashed @borderColor;
        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;

        &:hover {
            border: 4px dashed @secondaryColor;
        }
    }

    .add-address {
        font-family: iranyekan,'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
    }

    .address-border {
        border-top: 1px solid @borderColor;
        padding-top: @baseGap;

        @media(max-width:992px) {
            border: none;
        }
    }

    .city-state-zip {
        font-size: @baseGap;
        letter-spacing: 0.1px;
    }

    .btn {
        border-radius: 5px;
        font-size: @baseGap;
        line-height: 1.571;
        color: #6d6d6d;
        padding: 5px 20px
    }
    /*.fa-edit, .fa-trash {
        @media(max-width:992px) {
            display: none;
        }
    }*/
}

.customer-address {
    flex-direction: column;
    min-height: 200px;

    .title {
        @media(max-width:992px) {
            padding-bottom: @baseGap;
            border-bottom: 1px solid @borderColor;
        }
    }
}

.block-blog-archive {
    .year:not(:last-child) {
        margin-bottom: @baseGap;
    }
}

.block-manufacturer-navigation {
    padding-bottom: @baseGap;

    .manufacturer-picture {
        width: auto !important;
        max-width: 90px;
        height: 90px;
        object-fit: contain;
        margin: 0 auto;

        @media(min-width:768px) {
            max-width: 120px;
            height: 120px;
        }
    }


    .view-all {
        padding-right: 18px;
    }

    .manufacturer-name {
        /*display: block;
        text-align: center;
        color: @textColor;*/
        display: none;
    }

    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) {
            box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
            margin-bottom: @bigGap;
            padding: @baseGap @baseGap*2;
        }

        .btn {
            background-color: @bgWidgetColor;
            border: 1px solid @borderColor;
            position: relative;
            padding-right: @baseGap*2;

            &::before {
                position: absolute;
                content: "\F07B\00FE0E";
                font-family: digikalaD7;
                right: 5px;
                top: 5px;
            }
        }

        > button:hover {
            background-color: #f6ffff;
            color: @secondaryColor;
        }

        @media(max-width:992px) {
            background-color: @bgWidgetColor;
        }
    }
}
/*aside .nav-pills {
	a[aria-expanded="true"] .fa-plus::before {
		content: "\f068";
	}

	.nav-pills {
		> li {
			&.active {
				> a {
					background-color: transparent;
					font-weight: bold;
					color: @brandColor;
					cursor: default;
				}
			}

			> a {
				padding-left: 30px;
			}
		}
	}
}*/
/*.block-category-navigation {
	.nav {
		.nav {
			margin-left: @baseGap;
		}

		.nav-item {
			.title-sublist::before {
				content: "";
				display: inline-block;
				width: 0;
				height: 0;
				border-style: solid;
				border-width: .3em;
				border-color: transparent;
				border-left-color: @muteColor;
			}

			.category-number {
				float: right;
				color: @muteColor;
			}

			&.active:not(.last) {
				> a {
					font-weight: bold;

					.category-number {
						font-weight: normal;
					}
				}
			}

			&.last {
				> a {
					background-color: @secondaryColor;
					color: @invTextColor;

					.category-number {
						color: @invTextColor;
					}
				}
			}
		}
	}
}*/
.block-recently-viewed-products {
    .title {
        font-size: 20px;
    }

    .list-group-item-action {
        background-color: aliceblue;
    }

    .listbox {
    }


    .list-item {
        a {
            font-size: 15px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
    }
}
/*.block-recently-viewed-products {
	.list {
		.list-item {
			margin-bottom: @baseGap/2;
		}
	}
}*/
/*.block-manufacturer-navigation {
	.list {

		.list-item {
			.card {
				padding: 4px;
			}
    .manufacturer-picture{
    width:65%;
    }

			a {
				text-decoration: none;
			}

			&.active {
				.card {
					background-color: @secondaryColor;

					.card-text {
						color: @invTextColor;
					}
				}
			}

			.caption.card-body {
				padding: 4px;
			}

			&:hover:not(.active) .card {
				background-color: @bgDarkenColor;
				text-decoration: none;
			}
		}
	}
}*/
/*
	** category page
*/
.btn-filter {
    border-radius: 4px;
    background-color: #e0e0e0;
    color: @textColor !important;
    font-size: 12px;
    /*font-size: .857rem;*/
    line-height: 1.833;
    /*padding: 5px 11px 5px 30px;*/
    margin-left: 5px;
    margin-bottom: @baseGap;
}

/*.btn:focus {
    box-shadow: none !important;
}*/

.icon-btn-search, .icon-btn-sort {

    &::after {
        font-family: digikalaAC;
        font-size: 17px;
        vertical-align: middle;
    }
}

.icon-btn-search {
    &::after {
        content: "\F005\00FE0E";
    }
}

.icon-btn-sort {

    &::after {
        content: "\F030\00FE0E";
    }
}

.btn-filter-close {
    background-color: #e0e0e0;
    color: @textColor !important;
    font-size: 12px;
    font-size: .857rem;
    line-height: 1.833;
    margin-bottom: @baseGap *2;
    position: relative;

    &::after {
        content: "\f05b";
        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;
    }

    .list-group-item {
        border: unset;
    }
}

.html-category-page-super-market {
    position: relative;

    &::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;

    &::before {
        content: "";
        position: absolute;
        top: 75px;
        left: 0;
        right: 0;
        height: 275px;
        background-color: @promotionColor;
        background-image: url("../images/701f8a6b.svg"),linear-gradient(rgba(1,1,1,0) 180px,#f5f5f5);
    }
}

.home-page-category {
    margin-bottom: @bigGap;
    margin-top: @bigGap;

    .category-item {
        position: relative;
        margin-bottom: @baseGap;
        border-radius: 5px;
        box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
        cursor: pointer;

        .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: @transition;

            a {
                display: block;
                padding: @baseGap/2 @baseGap;
                color: @textColor;

                &:hover, &:focus {
                    text-decoration: none;
                }
            }
        }

        .picture {

            img {
                width: 100%;
                height: auto;
            }
        }
    }

    .col-6 {
        &:nth-child(5), &:nth-child(6) {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
            flex: 0 0 100%;
            max-width: 100%;
        }
    }

    @media (min-width: 992px) {
        .col-6 {
            &:nth-child(5), &:nth-child(6) {
                -webkit-box-flex: 0;
                -ms-flex: 0 0 50%;
                flex: 0 0 50%;
                max-width: 50%;
            }
        }
    }
}

.sub-category-grid {
    background: @bgWidgetColor;
    border-radius: @baseRadius;
    padding: @baseGap;
    margin-bottom: @baseGap;

    .category-item {
        position: relative;
        text-align: center;
        margin-top: @baseGap;
        border-radius: @baseRadius;

        a {
            color: @textColor;
        }

        .title {
            background: @bgDarkenColor;
            border-radius: @baseRadius;
            padding: @baseGap/2 @baseGap;
            margin-top: @baseGap;
            margin-bottom: 0;
            font-size: small;
        }

        .picture {
            margin: 0;

            img {
                width: 100%;
                height: auto;
                box-shadow: 0 7px 8px 0 rgba(0,0,0,.19);
                border-radius: @baseRadius*2;
            }
        }
    }
}


.vendor-page, .manufacturer-page {

    .vendor-logo, .manufacturer-logo {
        background-color: @bgWidgetColor;
        border: 1px solid darken(@borderColor,@basePercent);
        padding: @baseGap;
        text-align: center;
        position: relative;
        margin-bottom: @baseGap;

        img {
            width: 145px;
            height: 145px;
            object-fit: contain;
        }

        .share-button {
            color: lighten(@muteColor,@basePercent*5);
            position: absolute;
            right: 0;
            bottom: 22px;
        }

        .page-title {
            color: @muteColor;
            font-size: medium;
            margin-top: @baseGap;
        }

        .vendor-link, .manufacturer-link {
            color: @muteColor;
        }
    }
}

.product-selectors {
    background-color: @bgWidgetColor;
    border-top: 1px solid @borderColor;
    border-bottom: 1px solid fadeout(@borderColor, 50%);
    padding: @baseGap @baseGap;

    @media(max-width:769px) {
        background-color: transparent;
        padding: @baseGap 0;

        .dropdown-toggle {
            &::after {
                display: none !important;
            }
        }

        .dropdown-menu {
            width: 100%;
            cursor: pointer;

            li:not(:last-child) {
                border-bottom: 1px solid @borderColor;
            }

            li {
                padding: 10px;
            }

            a {
                color: @textColor !important;
                padding: 10px;
                cursor: pointer;
            }
        }
    }

    .product-viewmode {
        margin: 0 5px;

        .btn {
            border: 1px solid @secondaryColor !important;

            .fa {
                color: @secondaryColor !important;
            }

            &.active {
                .fa {
                    color: @invTextColor !important;
                }
            }

            &:active {
                background-color: transparent !important;
            }
            /*&:focus {
                box-shadow: none;
            }*/
        }
    }
}

.product-sorting {

    span {
        position: relative;

        &::before {
            content: "\E108\00FE0E";
            font-family: digikala20;
            margin-right: 3px;
        }
    }

    ul {
        display: inline-block;
        list-style-type: none;
        padding: 0;
        margin: 0;

        li {
            display: inline-block;

            a {
                padding: 2px 8px;
                text-decoration: none;
                color: @textColor;
                border-radius: 5px;

                &:hover {
                    background-color: rgba(0,0,0,0.1);
                }
            }

            &.active {

                a {
                    background-color: @secondaryColor !important;
                    color: @bgWidgetColor;
                }
            }
        }
    }
}


.product-filter {
    .filter-title {
        background-color: @bgDarkenColor;
        padding: @baseGap/3 @baseGap;
        margin-bottom: @baseGap/3;
    }
}
/*@media (max-width:992px) {
	.category-grid {
		margin-bottom: 0;

		.category-item {
			margin-bottom: @baseGap;
		}
	}
}*/
/*
    ** Products pages
*/
/*.category-page {
	.product-grid {
		>.row {
			margin-right: -7.5px;
    margin-left: -7.5px;

			> div {
				padding-right: 7.5px;
				padding-left: 7.5px;
			}
		}
	}


}*/
.master-wrapper-page {
    /*background-color: @bgColor;*/
    /*.page-body {
        padding-right: @baseGap;
    }*/
    @media(max-width:1000px) {
        .container {
            padding-left: 15px;
            padding-right: 15px;
            margin-left: auto;
            margin-right: auto;
            width: 100%;
            max-width: none;
        }
    }
}

/*.html-product-reviews-page {

    @media (max-width:992px) {
        .tab-content {
        }

        .nav-item {
            width: 100%;

            &:active {
                .tab-content {
                    display: block;
                }
            }
        }
    }
}*/

.description-product {
    list-style-type: none;
}
/*@media(max-width:992px) {
    .product-essential2 {
        margin-bottom: @baseGap*2;
        padding-top: @baseGap;
        position: relative;
        background-color: @bgWidgetColor;
        border-radius: 2px;
        box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
        border-radius: 9px;

        i {
            display: none;
        }

        .Product-details-pictures {
            text-align: center;
        }

        .nav-link {
            border-bottom: 1px solid @borderColor;
        }

        .tab-pane {
            padding: 1.5rem 1rem;
        }

        .specification-detial, .specification-detials {
            display: none;
        }

        .nav-link {
            padding: 0.5rem 0;
            margin: 0 1rem;
        }

        .specification-style {
            background-color: rgba(245,245,245,.6);
            padding: 15px 20px;
            margin-bottom: 20px;
        }

        ul {
            padding-inline-start: 0 !important;
        }

        .question-text {
            border: 1px solid #d6d6d6;
            height: @bigGap*2;
            border-radius: 5px;
            outline: none;
            padding: 10px;
            color: #424242;
            width: 100%;
            resize: vertical;
            vertical-align: top;
            min-height: 30px;
            font-size: .857rem;
            line-height: 2.58;
        }

        .form-fields {
            padding: @baseGap 0;
        }

        .form-group {
            width: 100%;
        }
    }
}*/
.product-reviews-page {
    .write-review {
        .title {
            padding-right: @baseGap*2;

            @media(max-width:992px) {
                padding-right: 0;
            }
        }
    }
}


.product-essential {
    margin-bottom: @baseGap*2;
    padding: @baseGap;
    position: relative;
    border-radius: 2px;
    border: 1px solid @borderColor;
    background-color: @bgWidgetColor;
    box-shadow: @baseShadow;

    @media(max-width:768px) {
        .add-to-cart {
            position: fixed;
            left: 0;
            bottom: 0;
            right: 0;
            padding: @baseGap;
            background-color: @bgColor;
            border-top: 1px solid lighten(@borderColor,@basePercent);
            z-index: 1030;
        }
    }

    .product-reviews-overview {
        padding-bottom: @baseGap;
    }

    figure.zoom {
        background-position: 50% 50%;
        position: relative;
        overflow: hidden;
        cursor: zoom-in;

        & img:hover {
            opacity: 0;
        }

        img {
            transition: opacity .5s;
            display: block;
            width: 100%;
            background: @bgWidgetColor;
        }

        @media(min-width:768px) {
            width: 500px;
        }
    }

    .attributes {
        .text-prompt {
            color: @textColor;
        }

        .form-check:first-child {
            padding-right: 0;
        }
    }
}

.feature-product {
    border-top: 1px solid fadeout(@borderColor,70%);
    font-size: 10px;
    align-content: flex-end;

    .wighet {
        display: flex;

        .dk-icon {
            padding-left: 10px;
        }
    }



    a {
        padding-right: 15px;
        padding-top: 15px;
        color: @textColor;
        text-decoration: none;
    }
}
/*.overview {
    border-right: 1px solid @borderColor;
    flex-direction: column;
    display: flex;
    margin-bottom: 20px;
    position: relative;

    .detail {
        align-content: flex-start;
    }

 
}*/
.overview-buttons {
    position: absolute;
    top: 0;
    left: @baseGap;
    z-index: 1;

    .btn {
        display: block;
    }

    .btn-outline-secondary {
        border: none !important;
        font-size: x-large;

        &:hover {
            background-color: transparent !important;
            color: #6c757d !important;
        }
    }
}

.flyout-compare {
    position: fixed;
    right: @baseGap*2;
    bottom: @baseGap*2;
    z-index: 1040;

    .flyout-compare-button {
        min-width: 250px;
        position: relative;
        z-index: 1;
        text-align: initial;
    }

    .flyout-compare-list {
        display: none;
        position: absolute;
        right: -@baseGap;
        bottom: -@baseGap;
        padding: @baseGap;
        padding-bottom: 70px;
        min-width: 280px;
        max-width: 90%;
        border-radius: @baseRadius;
        border: 1px solid @borderColor;
        background: @bgWidgetColor;
        box-shadow: @baseShadow;

        .flyout-compare-item {
            margin-bottom: @baseGap/2;

            a {
                color: @textColor;
                font-size: small;
                line-height: 1;
            }
        }
    }

    &:hover {
        .flyout-compare-list {
            display: block;
        }
    }
}

.Product-details-pictures {

    .picture {
        /*margin-right: 45px;*/
        img {
            width: 100%;
            height: auto;
        }
    }
}

.product-reviews-overview {
    margin-top: @baseGap;

    .product-review-box {
        color: @muteColor;
        display: inline-block;

        .separator::before {
            content: "/";
            margin: 0;
        }
    }

    .rating {
        display: inline-block;
    }

    .product-review-links {
        display: inline-block;
    }
}

.overview, .variant-overview {

    .attr {
        color: @muteColor;
    }


    .value {
        margin: 0 5px;
    }

    .form {
        background-color: @bgWidgetColor;
    }
    /*.add-to-cart, .availability, .back-in-stock-subscription, .delivery, .discontinued-product, .download-sample, .manufacturers, .prices, .product-reviews-overview, .tier-prices, .additional-details .sku, .additional-details .product-vendor, .overview-buttons {
		margin-bottom: @baseGap/2;
	}*/
    .manufacturers {

        .separator {
            &::before {
                content: "|";
            }
        }
    }

    .secondary-name {
        margin-top: @baseGap/2;
        margin-bottom: @baseGap;
        display: block;
        font-size: small;
        font-weight: bold;
    }

    .short-description {
        margin-bottom: @baseGap;
        color: #776f6f;
    }



    .attributes {
        margin-top: @baseGap;

        .option-list {
            padding: 0;

            > li {
                display: inline-block;
            }
        }



        .custom-control {
            display: inline-block;

            &:not(:last-child) {
                margin-right: @baseGap;
            }
        }
    }

    .discontinued-product {
        color: @dangerColor;
        font-weight: bold;
    }

    .back-in-stock-subscription {
        margin-top: @baseGap/2;
        margin-bottom: @baseGap;
    }

    .prices {
        margin-top: @baseGap;

        .old-product-price, .non-discounted-price {
            .value {
                color: @muteColor;
                text-decoration: line-through;
                font-size: 1.3rem;
            }
        }

        .call-for-price {
            color: @dangerColor;
        }

        .product-price {
            /*font-size: 3.214rem;*/
            color: @brandColor !important;
        }
    }

    .tier-prices {
        .prices-table {
            .field-header {
                font-weight: bold;
                color: @muteColor;
            }

            .item-price {
                color: @brandColor;
            }
        }
    }
}

.download-sample {
    margin-top: @baseGap;
}

.attributes {
    margin-top: @baseGap;
    color: @muteColor;
    font-size: smaller;

    .attribute-item {
        margin-bottom: 1px;

        .attribute-square {
            display: inline-block;
            height: 16px;
            width: 16px;
            vertical-align: middle;
            margin-left: 3px;

            &.color-square {
                border-radius: 50%;
            }
        }
    }
}

.attribute-squares {
    label {
        margin-bottom: 0;

        input[type="radio"] {
            visibility: hidden;
            position: absolute;
        }
    }

    .attribut-name {
        padding-right: 8px;
    }

    .attribute-square-container {
        cursor: pointer;
        border: 1px solid @borderColor;
        border-radius: @baseRadius;
        color: @muteColor;
        padding: 5px 10px 5px 16px;
        font-size: .929rem;
        display: block;
        margin-bottom: @baseGap/2;

        .attribute-square {
            width: 17px;
            height: 17px;
            line-height: 17px;
            display: inline-block;
            border-radius: 50%;
            border: 1px solid @borderColor;
        }
    }

    .selected-value {
        .attribute-square-container {
            border-color: @secondaryColor;
        }
    }
    /*.selected-value, input[type="radio"]:checked {


        .attribute-square-container {

            &::after {
                content: "\f00c";
                .fontawesome-solid;
                position: absolute;
                top: 7px;
                left: 7px;
                color: @invTextColor;
                font-size: 15px;
                line-height: 15px;
            }
        }
    }*/
    &.image-squares {
        .attribute-square-container {
            padding: 0;

            .attribute-square {
                width: 40px;
                height: 40px;
                border: none;
            }
        }

        .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: @borderColor;
            display: none;
            box-shadow: @baseShadow;

            &::after {
                content: "";
                position: absolute;
                bottom: -6px;
                width: 10px;
                height: 10px;
                background-color: @bgWidgetColor;
                border-right: 1px solid @borderColor;
                border-bottom: 1px solid @borderColor;
                left: 50%;
                margin-left: -5px;
                -webkit-transform: rotate(45deg);
                -moz-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                -o-transform: rotate(45deg);
                transform: rotate(45deg);
            }

            img {
                max-width: 250px;
            }
        }

        .image-square-item:hover .popover {
            display: block;
        }
    }

    ul& {
        list-style: none;
        padding: 0;
        margin-bottom: 0;

        > li {
            display: inline-block;
            position: relative;
        }
    }
}

.product-share-button {
    position: relative;

    .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: @borderColor;

        &::after {
            content: "";
            position: absolute;
            bottom: -6px;
            width: 10px;
            height: 10px;
            background-color: @bgWidgetColor;
            border-right: 1px solid @borderColor;
            border-bottom: 1px solid @borderColor;
            left: 50%;
            margin-left: -5px;
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
        }

        &:hover {
            display: block;
        }
    }

    &:hover {
        .popover {
            display: block;
        }
    }
}

.feature-product {
    border-top: 1px solid @borderColor;
    font-size: 10px;





    a {
        padding-right: 15px;
        padding-top: 15px;
        color: #9b9b9b;
        text-decoration: none;
    }



    .feature-product-2 {
        &::before {
            content: "\E0FE\00FE0E";
            font-family: digikala;
        }
    }
}

.add-to-cart {


    .min-qty-notification {
        font-style: italic;
        margin-bottom: 5px;
    }

    .add-to-cart-panel {
        .form-control {
            display: inline-block;
            max-width: 90px;
            text-align: center;
            vertical-align: middle;
            border-color: @borderColor;
            padding: 12px 20px;
            border-radius: 10px;
            font-size: 20px;
        }

        &:hover, &:focus {
            border-color: @borderColor !important;
        }
    }
}

.static-sale {
    display: inline-block;
}

.product-variant-list {
    .product-variant-line {
        background-color: @bgWidgetColor;
        box-shadow: @baseShadow;
        border-radius: @baseRadius;
        border-bottom: 1px solid @borderColor;
        padding: @baseGap;
        margin-bottom: @baseGap*2;
    }
}

img.lazy {
    /*background-image: url('../images/Success.gif');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;

    &.handled {
        background-image: none;
    }*/
}

.product-box, .product-box-list {
    .details {
        .description {
            @media(max-width:769px) {
                display: none;
            }
        }
    }

    /*.actions {
        display: none;
    }*/

    .offer-mobile {
        color: @brandColor;
        padding-bottom: @baseGap/3;
        margin-bottom: @baseGap/2;
        border-bottom: 1px solid @brandColor;
        font-size: 0.8em;
    }

    .product-title {
        font-size: small;
        line-height: 1.75;
        margin-bottom: @baseGap;

        a {
            color: @textColor;

            &:hover, &:focus {
                text-decoration: none;
            }
        }
    }

    .rating {
        margin-bottom: 10px;
        font-size: smaller;
        text-align: left;

        @media (max-width: 768px) {
            text-align: right;
        }
    }

    .prices {
        margin-bottom: 10px;
        text-align: left;

        .old-price {
            text-decoration: line-through;
            color: @muteColor;
        }

        .actual-price {
            font-weight: bold;
            display: block;
            margin-top: @baseGap/2;
        }
    }

    .out-stock {
        color: @muteColor;
    }

    .picture {
        position: relative;

        figure {
            margin-bottom: @baseGap;
        }

        a {
            text-decoration: none;
        }

        .ribbons {
            position: relative;

            .ribbon-offer {
                color: @brandColor;
                text-align: center;
                border-bottom: 1px solid @brandColor;
                position: absolute;
                width: 100%;
                left: 0;
                right: 0;
                top: -2em;

                @media(max-width:769px) {
                    font-size: 1em;
                }
            }

            .ribbon-new {
                position: absolute;
                background-color: @brandColor;
                padding: 5px 10px;
                color: @invTextColor;
                border-radius: 0 8px 8px 8px;
                top: 10px;
                right: 10px;

                @media(max-width:769px) {
                    font-size: 0.8em;
                    padding: 3px 8px;
                }

                @media(max-width:500px) {
                    padding: 2px;
                    top: 5px;
                    right: 5px;
                }
            }
        }
    }
}

.discount-percent {
    display: inline-block;
    background-color: @brandColor;
    padding: 2px 12px;
    border-radius: 20px;
    color: @invTextColor;
    text-align: center;
    margin-right: @baseGap/4;
    font-weight: bold;
}

.product-box {
    padding: @baseGap/3 @baseGap;

    .picture {
        img {
            width: 100%;
            height: auto;
        }
    }

    .product-title {
        height: 48px;
        line-height: 16px;
        overflow: hidden;
    }

    .actions {
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .add-to-compare-list-button, .add-to-wishlist-button {
        &.active {
            color: @primaryColor;
        }
    }


    .add-info {
        height: 50px;
    }

    .out-stock {
        position: relative;

        &::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: lighten(@muteColor,@basePercent*2);
        }

        span {
            background-color: @bgWidgetColor;
            color: lighten(@muteColor,@basePercent*2);
            font-size: large;
            position: relative;
            padding: 0 @baseGap/2;
            z-index: 1;
        }
    }
}

.product-list {
    .product-box-list {
        margin-bottom: @baseGap;
    }
}


.product-grid {
    /*margin-bottom: @bigGap;*/
    .product-box-superMarket {
        .picture {
            padding: 30px 12px 46px;
        }
    }
    /*> .title {
		font-size: x-large;
		margin-bottom: @baseGap/3;
	}*/
    /*&.featured-product-grid, &.best-seller-product-grid, &.related-product-grid, &.also-purchased-product-grid, &.cross-sells {
		.title {
			font-size: x-large;
			margin-bottom: @baseGap/3;
		}
	}*/
    ul.item-grid {
        background-color: @bgWidgetColor;
        padding: 0 0;
        list-style: none;
        /*border: 1px solid fadeout(@borderColor, 50%);*/
        margin: 0;

        .item-box {
            border-bottom: 1px solid fadeout(@borderColor, 50%);
            border-left: 1px solid fadeout(@borderColor, 50%);

            .product-box {
                padding: @baseGap*2 @baseGap @baseGap;
            }
        }
    }
}

.item-grid {
    .item-box-list {
        border-bottom: 1px solid @borderColor;

        .product-box-list {
            padding: @baseGap 0;
            position: relative;
        }
    }

    .item-box {
        padding-left: 0;
        padding-right: 0;

        &:hover {
            box-shadow: 0 0 10px 0 rgba(0,0,0,.1) !important;
        }
    }
}

.product-grid-carousel {
    margin-bottom: @bigGap;
    border-radius: 8px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
    background: @bgWidgetColor;

    .picture {

        > .d-flex {
            display: block !important;
        }
    }

    .title {
        position: relative;
        margin: 0 @baseGap @baseGap;

        span {
            display: inline-block;
            position: relative;
            padding: 5px 0;
            color: @textColor;
            font-size: large;
            padding-right: @baseGap;

            &::before, &::after {
                content: "";
                position: absolute;
                bottom: 0;
                height: 1px;
                z-index: 1;
            }

            &::before {
                left: 0;
                right: 0;
                background-color: @brandColor;
            }

            &::after {
                right: -17px;
                width: 15px;
                background-color: @bgWidgetColor;
            }
        }

        &::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 1px;
            background-color: @borderColor;
        }
    }

    .product-box {
        transition: @transition;

        .ribbon {
            position: unset !important;
            display: none;
        }

        .details {

            .product-title {
            }

            .rating {
                display: none;
            }
        }

        &:hover {
            box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
            transform: translateY(-3px);
        }

        .d-flex {

            .add-to-cart-button {
                display: none !important;
            }
        }
    }

    /*.actions {
        display: none !important;
    }*/


    &.also-purchased-product-grid {
        .title {
            /*padding-top: 30px;*/
            font-size: 1.286rem;
            line-height: 31px;
        }
    }

    .owl-carousel {
        position: relative;

        .owl-nav {

            button {
                position: absolute;
                top: 50%;
                background-color: @bgWidgetColor;
                width: 35px;
                height: 70px;
                font-size: 26px;
                opacity: .95;
                transform: translateY(-50%);

                &.owl-prev {
                    left: 0;
                    border-radius: 0 @baseRadius @baseRadius 0;
                    box-shadow: 1.5px 0 4px 0 rgba(0,0,0,.15);

                    &.disabled {
                        opacity: .15;
                    }
                }

                &.owl-next {
                    right: 0;
                    border-radius: @baseRadius 0 0 @baseRadius;
                    box-shadow: -1.5px 0 4px 0 rgba(0,0,0,.15);
                }
            }
        }
    }
}


.product-grid-carousel, .category-products-item {
    .product-box {
        .out-stock {
            span {
                font-size: small;
            }
        }
    }
}

.product-thumbnails {
    img {
        opacity: .8;

        &:hover {
            opacity: 1;
            cursor: pointer;
        }
    }

    &.owl-carousel {

        .owl-nav {
            position: absolute;
            left: 50%;
            margin-left: -32px;
            top: 80%;
        }
    }
}


.product-review-item {
    margin-bottom: @baseGap;
    padding-bottom:@baseGap;
        border-bottom: 1px solid @borderColor;

    .review-item-head {
        .review-title {
            font-size: large;
        }

        .product-review-box {

            a {
                font-size: small;
            }
        }
    }

    .review-content {
        /*@media(max-width:992px) {
            margin-bottom: @baseGap*2;
        }*/
        .review-text {
            @media(max-width:992px) {
                margin-bottom: @baseGap;
            }
        }

        .review-info {
            color: @muteColor;

            .date, .review-for, .user {
                display: inline-block;
                color: @muteColor;
                font-size: smaller;
            }
        }
    }
}

.new-product-grid {

    > .container {
        .owl-stage {
            display: flex;
        }

        .title {
            margin-top: 1rem;
        }

        .section-title {
            a {
                position: relative;
                top: -30px;
                right: 10px;
                padding: 6px @baseGap;
            }
        }
    }

    .product-box, .product-box-list {
        .ribbon-new {
            display: none;
        }
    }
}

.product-reviews-page {

    .reply {
        margin-left: @baseGap*2;
        border: 1px solid @borderColor;
        padding: @baseGap/3 @baseGap @baseGap/2;

        .reply-header {
            color: @muteColor;
            font-size: smaller;
            font-weight: bold;
        }
    }
}

.my-product-reviews-list-page {
    .product-review-item {
        .review-content {
            background-color: @bgDarkenColor;
        }
    }
}

.product-review-helpfulness {
    text-align: center;
    position:relative;
    .result {
        display: none;
        position: absolute;
        top: 5px;
        left: 0;
        background: @invBgColor;
        color: @invTextColor;
        padding: 2px 5px;
    }
}

.html-product-details-page {
    .breadcrumb {
        .breadcrumb-item {
            &.active {
                position: absolute;
                clip: rect(1px,1px,1px,1px);
            }
        }
    }
}

.product-details-page {
    .add-to-cart-box {

        @media(min-width:1024px) {
            background-color: darken(@bgColor,2%);
            border: 1px solid lighten(@borderColor,@basePercent);
            padding: @baseGap;
        }

        .sku, .manufacturers, .product-vendor {
            margin-bottom: @baseGap/2;
        }

        .availability {
            text-align: center;

            .stock {
                position: relative;
                margin-bottom: @baseGap*2;

                span {
                    background-color: @bgColor;
                    color: @muteColor;
                    font-size: large;
                    position: relative;
                    padding: 0 @baseGap;
                    z-index: 1;

                    &.attr {
                        display: none;
                    }
                }

                &::after {
                    content: "";
                    position: absolute;
                    background-color: @muteColor;
                    width: 100%;
                    height: 1px;
                    bottom: 10px;
                    left: 0;
                }
            }
        }

        .manufacturers, .product-vendor {
            position: relative;

            .attr {
                margin: 0 @baseGap/4;
            }

            &::before {
                font-family: @fontawesome;
                font-size: @baseGap;
                color: @brandColor;
                vertical-align: middle;
            }
        }

        .manufacturers {

            &::before {
                content: "\f1f9";
            }
        }

        .additional-details {

            .product-vendor {
                display: block;

                &::before {
                    content: "\f07a";
                }
            }
        }

        .delivery {
            border-bottom: 1px solid @borderColor;
            padding-bottom: @baseGap;

            .dk-icon-sending {
                color: @brandColor;
                font-size: 2em;
                vertical-align: middle;
            }
        }

        .prices {
            margin: @baseGap 0;
            text-align: left;

            .rental-price {
                border-bottom: 1px solid @borderColor;
                padding-bottom: @baseGap;
            }

            .old-product-price, .non-discounted-price {
                display: inline-block;

                .value {
                    color: @muteColor;
                    text-decoration: line-through;
                    font-size: medium;
                }
            }

            .call-for-price {
                color: @dangerColor;
            }

            .product-price {
                display: block;
                font-size: x-large;
                margin-top: @baseGap/2;
            }
        }

        .add-to-cart {

            .add-to-cart-panel {

                .form-control {
                    display: none;
                }
            }
        }
    }

    .product-tabs {
        margin-bottom: @bigGap;

        .nav-tabs {
            background-color: @bgColor;
            border: 1px solid @borderColor;
            border-bottom: none;
            margin-bottom: 0;

            .nav-item {
                .nav-link {
                    border-radius: unset;
                    padding: @baseGap/2;
                    font-size: small;
                    color: fadeout(@textColor, 30%);
                    color: @textColor;
                    border-right: 1px solid @borderColor;

                    @media(min-width:768px) {
                        padding: @baseGap;
                        font-size: medium;
                    }

                    .dk-icon {
                        margin-right: @baseGap/2;
                        vertical-align: sub;
                        color: lighten(@muteColor, 20%);
                        font-size: 1.5em;

                        @media(max-width:767px) {
                            display: none;
                        }
                    }

                    &.active {
                        position: relative;

                        &::before {
                            content: "";
                            position: absolute;
                            background-color: @secondaryColor;
                            height: 5px;
                            left: 0;
                            right: 0;
                            top: -5px;
                        }
                    }
                }
            }
        }
    }

    .tab-content {
        background-color: @bgWidgetColor;
        padding: @baseGap;

        @media(min-width:768px) {
            padding: @baseGap*2 @baseGap @baseGap;
        }

        .tab-pane {
            &.full-description {
                /*padding: @baseGap*2 @baseGap;*/
                img {
                    max-width: 100%;
                }
            }

            .wrapper-product-specs {
                .title {
                    margin-left: @bigGap*2;
                }
            }

            .product-specs-box {
                width: 100%;

                .product-specs-key {
                    position: relative;
                    color: @muteColor;

                    @media(max-width:767px) {
                        margin-right: .75rem;
                        margin-left: @baseGap/2;

                        &::before {
                            content: "";
                            position: absolute;
                            top: 5px;
                            right: -.75rem;
                            width: 7px;
                            height: 7px;
                            border-radius: 50%;
                            background-color: darken(@bgDarkenColor,@basePercent);
                        }

                        &::after {
                            content: ":";
                        }
                    }
                }

                .product-specs-value {
                    color: @textColor;
                    font-weight: 500;
                }

                @media(min-width:768px) {
                    font-size: @baseGap;

                    .product-specs-key {
                        flex: 0 0 22.2%;
                        max-width: 22.2%;
                    }

                    .product-specs-value {
                        flex: 0 0 77.8%;
                        max-width: 77.8%;
                    }
                }
            }

            .product-questions-page {
                background-color: @bgWidgetColor !important;
                padding: 50px;


                .title {
                    font-size: 20px;
                    padding-right: 11px;
                }

                .form-fields {
                    background-color: @bgWidgetColor;


                    .inputs {
                        .question-text {
                            border: 1px solid @borderColor;
                            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;
                        }
                    }
                }

                .buttons {
                    padding: @baseGap;

                    .write-product-question-button {
                        font-size: 1.143rem;
                        line-height: 1.375;
                        border-radius: 8px;
                        background-color: @secondaryColor;
                        border: 1px solid #41a7b4;
                        padding: 14px 31px;
                        color: @bgWidgetColor;
                        width: 20%;
                    }
                }
            }

            .product-review-list {
                /*padding: 10px 30px;*/
                .media-body {
                    background-color: fadeout(@bgColor,50%);
                    border-radius: 5px;
                    border: 1px solid fadeout(@borderColor,60%);
                    padding: @baseGap;

                    @media(min-width:768px) {
                        padding: @baseGap*2;
                    }
                }

                .review-content {
                    .review-info {
                        margin-bottom: @baseGap;
                        font-size: 15px;
                    }

                    .review-text {
                        /*border-top: 1px solid fadeout(@borderColor,70%);
                        width: 100%;
                        margin-top: @baseGap*2;*/
                        font-size: larger;
                    }
                }
            }
        }
    }

    .product-name {
        font-size: large;
        background-color: @bgWidgetColor;
        font-weight: bold;
        /*span{
            display:block;
        }*/
        .secondary-name {
            display: block;
            margin-top: @baseGap/2;
            position: relative;
            font-size: small;
            color: @muteColor;
            z-index: 0;

            span {
                position: relative;
                display: inline-block;
                padding-right: @baseGap;
                background-color: @bgWidgetColor;
                font-weight: normal;
            }
            /*&::before {
                content: "";
                position: absolute;
                right: 0;
                height: 1px;
                width: 40px;
                background-color: @bgWidgetColor;
                z-index: 11;
                top: 45px;
            }*/
            &::after {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                height: 0;
                top: 50%;
                width: 100%;
                border-bottom: 1px solid @borderColor;
                z-index: -1;
            }
        }
    }
}

.product-spec-box {
    .product-spec-cat {
        @media (min-width: 768px) {
            display: -webkit-box;
            display: -ms-flexbox;
            display: -moz-box;
            display: -webkit-flex;
            display: flex;
            flex-direction: column;
        }
    }

    @media (min-width: 768px) {
        .product-spec-cat {
            display: block;
            color: #000;

            .table th, .table td {
                border: 1px solid #dee2e6;
                color: #000;
            }

            .table {
                thead {
                    border-bottom: 1px solid black;
                    color: #000;
                }
            }
        }

        .product-spec-cat-title {
            background-color: #e9e9e9;
            padding: @baseGap;
            margin: @baseGap 0;
            display: block;

            .table {
                color: #000;

                th, td {
                    color: #000;
                }
            }
        }

        .product-spec-cat-title {
            width: 100% !important;
        }
    }
}

.Product-details-pictures {
    .picture {
        position: relative;

        .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 @borderColor;
        border-radius: @baseRadius;
        height: auto;

        &:not(.active) {
            opacity: .75;
            cursor: pointer;
        }

        &.active {
            border-color: @secondaryColor;
        }

        &:hover {
            opacity: 1;
        }
    }
}

.enlarge-image-modal {
    .picture-thumbs {
        .thumb-item {
            max-width: 60px;
            margin-bottom: @baseGap/3;
        }
    }
}

ul.owl-stage {
    padding: 0;
    list-style: none;
    margin-bottom:0;
}
/*
	** shopping cart page
*/
.cart, .data-table, .forum-table {
    th {
        white-space: nowrap;
        font-weight: normal;
        font-size: small;
        color: @muteColor;
    }

    td {
        min-width: 50px;

        &.unit-price {
            white-space: nowrap;
        }
    }
    /*a:hover,
	a:hover {
		text-decoration: underline;
	}*/
    .product {
        min-width: 225px;
    }

    .product a,
    .info a {
        font-weight: bold;
    }

    .attributes {
        color: @muteColor;
        font-size: smaller;
    }
}

.cart {

    tbody > tr > td {
        vertical-align: middle;
    }

    td {
        &.quantity {
            min-width: 90px;

            input, select {
                text-align: center;
                max-width: 110px;
            }
        }

        &.subtotal {
            white-space: nowrap;
            color: @textColor;

            .discount, .discount-additional-info {
                font-style: italic;
                color: @brandColor;
            }
        }
    }

    .product {
        .edit-item {
            margin: 10px 0 0;

            a {
                font-weight: normal;
                padding: 6px 0;

                &::before {
                    content: "\f044";
                    .fontawesome-regular;
                    margin-right: 3px;
                }
            }
        }
    }

    .remove-from-cart, .add-to-cart {

        .custom-control {
            display: inline-block;
            /*	vertical-align:middle;*/
            /*.custom-control-label::before{
				left:0;
			}*/
        }
    }

    @media (min-width:769px) {

        .td-title {
            display: none;
        }
    }
}

.data-table {
    td {
        &.total {
            white-space: nowrap;
            color: @textColor;
        }
    }

    .message, .info, .name {
        min-width: 225px;
    }

    .select-boxes, .order {
        text-align: center;
    }

    em a {
        font-weight: bold;
    }

    div.download {
        margin: 10px 0 0;
    }
}


@media (max-width: 768px) {
    /*** GLOBAL TABLES ***/
    .cart {
        display: block;

        > tbody > tr > td {
            border-top: none;
        }

        colgroup, thead {
            display: none;
        }

        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;
        }

        tr {
            display: block;
            width: 49%;
            margin-bottom: @baseGap;
            border: 1px solid @borderColor;
        }

        td {
            display: block;
            border: none;
            padding: 10px;

            &.remove-from-cart {
                /*margin: 0 0 15px;*/
                background-color: @bgDarkenColor;
                padding: 10px @baseGap;
            }

            &.product-picture {
                border-top: 1px solid @borderColor;
                text-align: center;
            }

            &.product {
                min-width: 0;
                border-bottom: 1px solid @borderColor;
                padding: 5px 10px 15px;
                text-align: center;
            }

            &.quantity {
                display: inline-block;
                padding: 10px;
                vertical-align: middle;

                > .bootstrap-touchspin {
                    display: inline-table;
                    max-width: 75px;
                    vertical-align: middle;
                }
            }

            &.unit-price {
                display: inline-block;
                padding: 10px;
                vertical-align: middle;
            }

            &.subtotal {
                text-align: center;
            }
        }
    }
}

@media (max-width: 479px) {
    .cart tr {
        width: 100%;

        &:last-child {
            margin-bottom: 0;
        }

        &:nth-child(2n+1) {
            clear: both;
        }
    }
}

.section-order-progress {
    background-color: @bgWidgetColor;
    padding-top: @baseGap*2;
    text-align: center;
    margin-bottom: @baseGap;

    .store-logo {
        img {
            object-position: center;
        }
    }

    @media(min-width:768px) {
        margin-bottom: @bigGap;
    }
}

.address-list-page, .order-list-page {
    .section {
        position: relative;
    }

    .info {
        button {
            margin-right: @baseGap;
        }
    }
}

.order-list-page {

    td:last-child:hover {
        background-color: @borderColor;
        cursor: pointer;
    }

    .order-details-icon {
        display: block;
    }

    .data-table {
        .start-date, .next-payment {
            min-width: 120px;
        }
    }

    .info {
        .pending {
            .badge {
                background-color: @warningColor;
                color: @textColor;
            }
        }

        .processing {
            .badge {
                background-color: @infoColor;
                color: @invTextColor;
            }
        }

        .complete {
            .badge {
                background-color: @successColor;
                color: @invTextColor;
            }
        }
    }

    .title-items {
        background-color: @secondaryColor;
        padding: @baseGap 0;
        color: @bgWidgetColor;
        font-weight: bold;
        text-align: center;
    }

    .row-items {
        border-bottom: 1px solid @borderColor;
        border-right: 1px solid @borderColor;
        text-align: center;
        font-size: 1.1em;
        position: relative;



        .title, .CreatedOn, .row-number, .OrderStatus, .OrderTotal, .PaymentStatus, .order-details {
            border-left: 1px solid @borderColor;
            padding: @baseGap*2 0;
            margin: 0;
        }

        .order-details

        :hover {
            background-color: fadeout(@borderColor,30%);
            cursor: pointer;
        }
    }

    .order-items {
        background-color: @bgWidgetColor;

        &:nth-child(odd) {
            background-color: fadeout(@muteColor,99%);
        }
    }


    .mobile-order-list-page {
        border-radius: 9px;
        background-color: @bgWidgetColor;
        box-shadow: 0 2px 4px 0 rgba(0,0,0,.09);
        margin-bottom: @baseGap*2;

        .col-6, .col-8, .col-4, .col-9, .col-3, .col-2, .col-10, .col-1, .col-11 {
            padding: 0;
        }
    }

    .mobile-order-number {
        font-size: 1rem;
        line-height: 25px;
        vertical-align: middle;
        padding: @baseGap 0;
        margin: 0 @baseGap*2;
        border-bottom: 2px solid @borderColor;
    }

    .mobile-order-date {
        padding: @baseGap 0;
        margin: 0 @baseGap*2;
        border-bottom: 1px solid @borderColor;
    }

    .mobile-order-total {
        padding: @baseGap 0;
        margin: 0 @baseGap*2;
    }
}

.order-details-page {
    .row-total {
        justify-content: center;
    }

    .section {
        padding-top: @bigGap;
    }
}

.list-order {
    > .row {
        @media(max-width:992px) {
            border-bottom: 1px solid @borderColor;
        }
    }



    .title-items {
        background-color: @secondaryColor;
        padding: @baseGap 0;
        color: @bgWidgetColor;
        font-weight: bold;
        text-align: center;
    }

    .row-items {
        border-bottom: 1px solid @borderColor;
        border-right: 1px solid @borderColor;
        text-align: center;
        font-size: 1.1em;
        position: relative;
        background-color: @bgWidgetColor;

        .align-self-center {
            width: 100%;
        }

        @media(max-width:992px) {
            border-bottom: none;
            border-left: 1px solid @borderColor;
        }
    }

    .sku, .product, .attributes, .rental-info, .download, .quantity, .unit-price, .total, .order-detail, .row-numbers {
        border-left: 1px solid @borderColor;
        padding: @baseGap*2 0;
        margin: 0;

        @media(max-width:992px) {
            padding: @baseGap/2 0;
        }

        div {
            .btn {
                border-radius: 8px;
                border: 1px solid @borderColor;
                padding: 10px;
                background-color: transparent;
                color: @muteColor;
                transition: all .3s ease-in-out;
                text-align: center;
            }

            &:last-child {
                .btn {
                    padding: 10px 18px;
                    margin-top: 5px;
                }
            }
        }
    }

    .quantity {
        @media(max-width:992px) {
            border-left: none;

            .td-title {
                display: none;
            }

            background-color: @secondaryColor;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            position: absolute;
            top: 5px;
            left: 5px;
            z-index: 100;
            color: @bgWidgetColor;
            font-weight: bold;
        }
    }

    .product {
        @media(max-width:992px) {
            border-left: none;
            border-top: 1px solid @borderColor;
        }

        .product-names {
            a {
                color: @textColor !important;
            }

            @media(max-width:992px) {
                font-weight: bold;
            }
        }
    }

    .total {
        @media(max-width:992px) {
            border-left: none;
        }
    }
}

.tax-shipping-info {
    margin-bottom: @baseGap;
    color: @muteColor;
}

.common-buttons {
    margin-bottom: @baseGap*2;

    @media(min-width:768px) {
        margin-bottom: @bigGap;
    }
}

/*.order-summary-content {

    .totals {
        margin-bottom: @baseGap;
    }
}*/

.flyout-cart {
    min-width: 300px;
}

.flyout-account {
    padding-top: 0;
    padding-bottom: 0;
    width: 200px;

    .dropdown-header {
        padding: .75rem;

        .avatar {
            border-radius: 50%;
            border: 1px solid @muteColor;
        }

        .customer-name {
            color: @textColor;
            font-weight: bold;
        }

        .customer-reward {
            position: relative;

            &::before {
                content: "";
                position: absolute;
                left: -24px;
                bottom: 13px;
                width: 1px;
                height: 115%;
                background-color: darken(@borderColor,@basePercent*2);
            }

            small {
                position: relative;

                &::before {
                    content: "";
                    position: absolute;
                    top: 4px;
                    left: -27px;
                    width: 7px;
                    height: 7px;
                    border-radius: 50%;
                    background-color: darken(@borderColor,@basePercent*2);
                }
            }
        }
    }

    .dropdown-item {
        padding: @baseGap/2 @baseGap;
        position: relative;

        span {
            color: @muteColor;
        }

        i {

            &::before {
                font-size: 1em;
            }
        }

        &:not(:last-child):after {
            content: "";
            width: calc(100% - 32px);
            height: 1px;
            background: fadeout(@borderColor,20%);
            position: absolute;
            right: 16px;
            bottom: 0;
        }
    }

    i {
        vertical-align: middle;
    }
}

.card-body {
    color: #212529;
}

.order-summary-content {

    .shopping-cart {
        .box;
        margin-bottom: 10px;

        .shopping-cart-item {
            border-bottom: 1px solid @borderColor;
            padding-bottom: @baseGap;
            margin-bottom: @baseGap;

            &:last-child {
                border: none;
                margin-bottom: 0;
            }

            .product-name {
                font-size: large;
                font-weight: 400;
                color: @textColor;
            }

            .quantity {

                .form-control {
                    max-width: 60px;
                    color: @secondaryColor;
                    text-align: center;
                }

                .btn {
                    border-radius: 0 !important;
                }

                .btn-outline-secondary {
                    border-color: @borderColor;

                    &:hover {
                        background-color: transparent;
                        color: @textColor;
                    }
                }
            }

            .quantity, .remove-from-cart {
                margin-left: @baseGap;

                @media(min-width:768px) {
                    margin-left: @baseGap*2;
                }
            }

            .subtotal {
                font-size: medium;

                .discount {
                    font-size: small;
                    color: @primaryColor;
                }
            }
        }
    }

    .cart-collaterals {
        .box;
    }

    .cross-sells {
        margin-top: @baseGap;
    }
}

.deals {
    margin-bottom: @baseGap*2;

    .coupon-box, .giftcard-box {
        .box;
        margin-bottom: @baseGap;
    }
}

.cart-footer {

    .selected-checkout-attributes {
        .box;
        margin-bottom: 1px;
    }

    .totals {
        .box;

        .total-info {
            .cart-total {
                .order-total {
                    font-size: 1.6em;

                    .value-summary {
                        color: @brandColor;
                    }
                }
            }

            .earn-reward-points {
                .value-summary {
                    font-style: italic;
                }
            }
        }

        .total-footer {

            @media(max-width:767px) {
                position: fixed;
                left: 0;
                bottom: 0;
                right: 0;
                padding: @baseGap/2 @baseGap;
                background-color: @bgWidgetColor;
                border-top: 1px solid lighten(@borderColor,@basePercent);
                z-index: 1030;
            }

            @media(min-width:768px) {

                .terms-of-service {
                    border-top: 1px solid lighten(@borderColor,@basePercent*2);
                    padding-top: @baseGap/2;
                }
            }
        }
    }
}

.order-completed-page {
    .title {
        margin-bottom: 20px;
        text-align: center;
    }

    .page-title {
        margin-top: 100px;
        text-align: center;
    }

    .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;
    }

    .buttons {
        text-align: center;
    }
}

.btn-blue-vertical {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: @secondaryColor;
    padding: @baseGap*2;

    @media(max-width:578px) {
        position: relative;
        width: 100%;
        padding: @baseGap;
    }


    .dk-icon3-next {
        position: absolute;
        font-size: 21px;
        right: 15px;
        color: @bgWarning;

        @media(max-width:578px) {
            position: relative;
        }
    }
}

.btn-blue {
    background-color: @secondaryColor;
    border: 1px solid #41a7b4;
    font-size: 1.2em;
    padding: 14px 148px 14px 88px;
    border-radius: 10px;
    color: @bgWidgetColor;
    position: relative;
    overflow: hidden;
    max-width: none !important;



    @media(max-width:600px) {
        padding: 10px 50px;
    }

    @media(max-width:400px) {
        padding: 10px 50px;
    }




    &::before {
        content: "";
        position: absolute;
        width: 90px;
        height: 90px;
        border-radius: 50px;
        background-color: @bgWidgetColor;
        opacity: 0.25;
        top: -17px;
        right: -11px;
        transition: @transition;


        @media(max-width:600px) {
            display: none;
        }
    }



    .dk-icon3-next {
        position: absolute;
        font-size: 21px;
        top: 16px;
        right: 35px;

        @media(max-width:600px) {
            display: none;
        }
    }

    .dk-icon3-success {
        position: absolute;
        font-size: 18px;
        top: 16px;
        right: 35px;

        @media(max-width:600px) {
            display: none;
        }
    }





    &:hover {
        &::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 90px;
            background-color: @bgWidgetColor;
            opacity: .25;
            top: -17px;
            right: 0;
            border-radius: 0;
        }
    }

    .btn:focus {
        box-shadow: none;
    }



    &.btn-login {
        padding-right: 120px;

        &::after {
            content: "\E09B\00FE0E";
            font-family: digikala;
            font-size: 14px;
            position: absolute;
            top: 18px;
            right: 30px;
        }
    }

    &.btn-register {
        padding-right: 120px;

        &::after {
            content: "\E003\00FE0E";
            font-family: digikala;
            font-size: 14px;
            position: absolute;
            top: 18px;
            right: 30px;
        }
    }
}


.flyout-cart {
    padding-top: @baseGap;
    /*left: 0;*/
    /*top: calc(100% - 3px);*/
    /*background: @bgWidgetColor;*/
    /*border-radius: 5px;*/
    /*box-shadow: 0 4px 12px 0 rgba(0,0,0,.2);*/
    a {
        text-decoration: none;
    }
    /*.button {
        display: block;
        border-radius: 5px;
        font-size: 14px;
        font-size: 1rem;
        line-height: 26px;
        letter-spacing: -.5px;
        font-weight: 700;
        color: #fff;
        text-align: center;
        padding-top: 9px;
        padding-bottom: 10px;
        background-color: #00bfd6;
        border-top: 1px solid #c6c6c6;
    }*/
    .items {
        margin-bottom: @baseGap/2;
        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: @baseGap;
        position: relative;




        .item {
            margin-bottom: @baseGap/2;
            padding-bottom: @baseGap/2;
            border-bottom: 1px solid @borderColor;
            font-size: small;
            padding: 15px 0;
            display: flex;
            align-items: flex-start;
            border-bottom: 1px solid #f0f0f1;


            .fa-trash-o {
                &::after {
                    font-family: @fontawesome;
                    content: "\f014";
                    color: @borderColor;
                    position: absolute;
                    z-index: 100;
                    left: 31px;
                }
            }

            .picture {
                margin-right: @baseGap/2;
            }

            .name {
                margin-bottom: @baseGap/2;
                /*float: right;*/
                a {
                    color: @textColor !important;
                }
            }

            &:last-child {
                border-bottom: none;
            }
        }
    }

    .attributes {
        color: @muteColor;
        margin-bottom: @baseGap/2;
    }

    .attribute-square {
        display: inline-block;
        width: 16px;
        height: 16px;
        margin-left: @baseGap/3;
        border-radius: 50%;
    }

    .totals {
        margin-bottom: @baseGap/3;
        background-color: @bgWidgetColor;
    }

    .buttons {
        display: inline-block;

        a {
            text-decoration: none;
            color: @secondaryColor;
        }
    }
}

.cart-collaterals {
    margin-bottom: @baseGap;

    .estimate-shipping {
        .hint {
            color: @muteColor;
        }
    }
}

.coupon-box {
    .current-code {
        margin-top: 5px;
        margin-bottom: 10px;
    }
}

/*
	** account page
*/
.block-account-navigation {
    .title {
        padding: @baseGap 0 @baseGap @baseGap*2;
        border-bottom: 1px solid @borderColor;
        font-weight: 700;
        letter-spacing: .2px;
        font-size: @baseGap;
        line-height: 1.692;
    }

    .list > a {


        &::before {
            margin-right: @baseGap/2;
            .fontawesome-solid;
            width: 1.25em;
            font-family: digikala8C;
            font-size: 1.1em;
            color: @muteColor;
        }

        &.active::before {
            color: @textColor;
        }

        &:not(.active):hover::before {
            color: @secondaryColor;
        }

        &.customer-info::before {
            content: "\E003\00FE0E";
        }

        &.customer-addresses::before {
            content: "\E0DB\00FE0E";
        }

        &.customer-orders::before {
            content: "\E0DA\00FE0E";
        }

        &.return-requests::before {
            content: "\f0e2";
        }

        &.downloadable-products::before {
            content: "\E0E7\00FE0E";
        }

        &.back-in-stock-subscriptions::before {
            content: "\E0B1\00FE0E";
        }

        &.reward-points::before {
            content: "\E13C\00FE0E";
        }

        &.change-password::before {
            content: "\E0D5\00FE0E";
        }

        &.customer-avatar::before {
            content: "\f2bd";
        }

        &.forum-subscriptions::before {
            content: "\f0a1";
        }

        &.customer-reviews::before {
            content: "\E0D9\00FE0E";
        }
    }
}

.account-page {
    .page-title {
        margin-bottom: @baseGap*3;
        padding-bottom: @baseGap/3;
        font-size: small;
        color: @muteColor;

        small {
            display: block;
            font-size: xx-large;
            color: @textColor;
        }
    }
}

.html-login-page, .html-password-recovery-page, .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;
    }

    .page-body {
        max-width: 420px;
    }
}

.html-login-page, .html-registration-page, .html-password-recovery-page, .html-mobile-verify {
    body {
        background-color: @bgWidgetColor;
    }

    .page-body {
        padding: @baseGap*2;
        border: 1px solid darken(@bgColor,@basePercent);

        .store-logo {
            img {
                object-position: center;
            }
        }

        .form-fields {
            background-color: transparent;
            padding: 0;

            .form-group {
                max-width: 100%;
            }
        }
    }
}

.login-page {

    .store-logo {
        margin-bottom: @bigGap;
    }

    .topic-block {
        text-align: center;
        margin-top: @baseGap*2;

        @media (min-width:768px) {
            max-width: 420px;
        }
    }

    .returning-wrapper {

        .fieldset {
            .btn-primary {
                i {
                    vertical-align: middle;
                }
            }

            .new-wrapper {
                border-top: 1px solid darken(@bgColor,@basePercent);
                padding-top: @baseGap;

                p {
                    color: @muteColor;
                    margin-bottom: 0;
                    /*text-decoration-line: underline;*/
                }
            }
        }
    }

    @media (min-width:768px) {

        .checkout-as-guest {
            margin-bottom: @bigGap;
        }
    }
}

.registration-page {
    .page-body {
        max-width: 600px;
        margin: @bigGap auto;
    }
}

.html-customer-info-page, .html-registration-page, .html-address-edit-page {

    .buttons {
        margin-top: @baseGap;
        text-align: center;
    }
}

.external-authentication {
    text-align: center;
}

.check-username-availability-button {
    margin-top: @baseGap/2;
}

.countdown-timer-verify {
    position: relative;
    width: 140px;
    margin: 0 auto;
    cursor: default;

    .controlls {
        position: absolute;
        width: 100%;
        left: 0;
        top: 50%;
        text-align: center;
        transform: translateY(-50%)
    }

    .display-remain-time {
        font-weight: lighter;
        font-size: 2em;
        color: @brandColor;
    }

    .e-c-base {
        fill: none;
        stroke: @muteColor;
    }

    .e-c-progress {
        fill: none;
        stroke: @brandColor;
        stroke-width: 5px;
        transition: stroke-dashoffset 0.7s;
    }

    .e-c-pointer {
        fill: @bgWidgetColor;
        stroke: @brandColor;
        stroke-width: 2px;
    }

    .e-pointer {
        transition: transform 0.7s;
    }
}
/*
	** order page
*/
@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 page
*/
.checkout-logo {
    background-color: @bgWidgetColor;
}

.order-progress {

    @media(max-width:767px) {
        overflow-x: scroll;
    }

    ol {
        padding: 0;
        list-style: none;
        display: flex;
        justify-content: center;
        margin-top: @baseGap;

        li {
            display: inline-block;
            margin-bottom: @baseGap;
            color: @muteColor;
            position: relative;

            a {
                position: relative;
                display: block;
                min-width: 70px;
                color: currentColor;
                text-decoration: none;
                cursor: default;

                &::before {
                    content: "";
                    position: absolute;
                    top: 25px;
                    right: 34%;
                    width: 20px;
                    height: 20px;
                    background-color: @borderColor;
                    border-radius: 100%;
                    z-index: 20;
                }
            }

            &:not(:last-child)::after {
                content: "";
                position: absolute;
                height: 3px;
                background-color: @borderColor;
                width: 100%;
                z-index: 10;
                top: 33px;
                left: 62%;
            }

            &.complete-step::after {
                background-color: @secondaryColor;
            }

            &.active-step a, &.complete-step a {
                cursor: pointer;

                &::before {
                    background-color: @secondaryColor;
                }
            }
        }
    }
}

.order-completed-page {
    .order-progress {
        .active-step a {
            &::before {
                content: "\f14a";
            }
        }
    }
}

.checkout-page {
    .select2-container {
        width: 100% !important;
    }

    .page-title {
        @media(max-width:600px) {
            margin-top: @baseGap*3;
        }
    }

    &:not(.order-confirm-page) {
        .cart-box {
            display: none;
        }
    }
}

.section-shipping-address, .section-billing-address {
    margin-bottom: @baseGap*2;

    .address-item, .add-button .btn {
        min-height: 270px;
    }

    .address-item {
        border: 1px solid @secondaryColor;
        border-radius: @baseRadius;
        padding: @baseGap;
        margin-bottom: @baseGap;
    }

    .add-button {

        .btn {
            width: 100%;
            border: 2px dashed @borderColor;
            padding: @baseGap @baseGap*2;
            cursor: pointer;
            transition: @transition;

            &:hover, &:focus {
                background-color: @secondaryColor;
                color: @bgWidgetColor;
            }
        }
    }

    .new-billing-address {
        .form-fields {
            padding: initial;

            .form-group {
                max-width: initial;
            }
        }

        .buttons {
            text-align: center;

            .btn {
                width: 95%;
                max-width: 320px;
            }
        }
    }
}

.billing-address-page, .shipping-address-page, .order-confirm-page, .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 {
    .box;
}

.checkout-page, .shopping-cart-page {
    .cart-box, .total-box {
        width: 100%;
    }
}

.order-confirm-page, .shopping-cart-page {
    @media(min-width:992px) {
        .cart-box {
            flex: 0 0 73%;
            max-width: 73%;
        }

        .total-box {
            flex: 0 0 25%;
            max-width: 25%;
        }
    }
}

.order-confirm-page {
    .order-review-data {
        border: 1px solid @borderColor;
        border-radius: @baseRadius;
        padding: @baseGap;
        margin-bottom: @baseGap;
    }
}

.edit-address {
    margin-bottom: @baseGap;
}

.opc {

    .section {
        margin-bottom: @baseGap;
    }

    .tab-section {

        &.active {
            border-color: @secondaryColor;

            .step-title {
                background-color: @secondaryColor;
                color: @invTextColor;
            }
        }

        .step:not(#checkout-step-payment-info):not(#checkout-step-confirm-order), .terms-of-service {
            max-width: 600px;
            margin: auto;
            width: 95%;
        }

        .buttons {
            text-align: center;
        }
        /*.buttons{
			margin-top:@baseGap;
		}*/
    }
}

.address-list {
    &.form-horizontal {
        .form-group {
            margin-bottom: 0;
        }
    }
}

.checkout-data {

    .payment-logo img {
        height: 30px;
        margin: 0 @baseGap/2;
    }
}

ul {
    &.address-box, &.info-list {
        li {

            span {
                font-weight: bold;
            }
        }
    }
}

.order-review-data {
    margin-bottom: 50px;
}

.method-list {
    padding: @baseGap;
    margin-bottom: @baseGap;

    li:not(:last-child) {
        border-bottom: 1px solid lighten(@borderColor,@basePercent*2);
        padding-bottom: @baseGap;
    }

    .method-name {
        label {
            margin-bottom: 0;
        }
    }

    .method-description {
        color: @muteColor;
        font-size: smaller;
    }
}

/*
	** search page
*/
.search-page {
    .form-fields {
        margin-bottom: @baseGap;
    }
}
/*
	** compare page
*/
.compare-products-table {
    td {
        min-width: 150px;
        padding: @baseGap;
        vertical-align: top;

        &:first-child {
            min-width: 0;
        }

        label {
            font-weight: normal;
            color: #777;
        }
    }

    .picture {
        display: block;
        position: relative;
        max-width: 200px;
        height: 200px;
        overflow: hidden;

        img {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            max-width: 100%;
            max-height: 100%;
            margin: auto;
        }
    }

    .product-name td {
        font-weight: bold;
    }

    .short-description td {
        line-height: 22px;
    }

    .full-description td {
        display: none;

        @media (min-width:769px) {
            display: table-cell;
        }
    }
}
/*
	** wishlist page
*/
.wishlist-page {
    .whishlist-box {
        background-color: @bgWidgetColor;
        box-shadow: 0 12px 12px 0 hsla(0,0%,71%,.1);
        padding: @baseGap;
        margin-bottom: @baseGap;

        @media(max-width:767px) {
            .quantity, .remove, .add-to-cart {
                margin-bottom: @baseGap/2;
            }
        }

        .product-name {
            text-decoration: none;
            font-size: medium;

            @media(min-width:768px) {
                font-size: large;
            }
        }

        label {
            margin-bottom: 0;
        }

        .quantity {
            .form-control {
                max-width: 65px;
                text-align: center;
                display: inline-block;
            }
        }

        .remove {
            i {
                color: @dangerColor;
                font-size: 1.5em;
            }
        }

        .custom-checkbox {
            display: inline-block;
            min-height: @baseGap;
        }

        .product-unit-price {
            font-size: medium;
            font-weight: 500;
            color: @brandColor;

            @media(min-width:768px) {
                font-size: large;
            }
        }
    }
}

.share-info {
    background-color: @bgDarkenColor;
    margin-bottom: @bigGap;
    padding: @baseGap;

    .share-link {
        font-weight: bold;
    }
}
/*
	** news page and blog page
*/

.blog-post-page .page-body, .news-item-page {
    background-color: @bgWidgetColor;
    padding: @baseGap;

    @media(min-width:768px) {
        padding: @baseGap @baseGap*4;
    }

    .page-title {
        margin-top: 0;
    }

    .post-date, .news-date {
        /*display: block;*/
        font-size: smaller;
        color: @muteColor;
        margin-bottom: @baseGap;
    }

    .post-body, .news-body {
        img {
            max-width: 100%;
        }
    }

    .fieldset {
        margin: @baseGap*2 0;
    }
}

.post-item, .news-item {
    margin-bottom: @baseGap*2;

    .post-title, .news-title {
        /*font-size: x-large;*/
        margin-bottom: @baseGap;
    }

    .post-body, .news-body {
        margin-bottom: @baseGap/2;
    }
}

.html-blog-list-page, .html-blog-post-page, .html-blog-search-results-page {

    .store-aside {
        .block {
            &.block-category-navigation {
                ul.list {
                    list-style-type: none;
                    padding: 0;

                    a {
                        color: @muteColor;
                    }
                }
            }

            .title {
                font-size: .895rem;
                text-align: center;
                color: @muteColor;
                position: relative;
                margin-top: @baseGap/2;

                @media(min-width:768px) {
                    margin-top: @baseGap;
                }

                &::before {
                    content: "";
                    position: absolute;
                    top: 50%;
                    right: 0;
                    width: 40px;
                    height: 1px;
                    background-color: @secondaryColor;
                }
            }

            .listbox {
                padding: @baseGap;

                @media(max-width:767px) {
                    display: none;
                }

                .list-group-item {
                    padding: 0;
                    margin-bottom: @baseGap/2;

                    img {
                        object-fit: cover;
                    }

                    .product-name {
                        font-size: smaller;
                    }
                }
            }

            .tags {
                a {
                    color: @muteColor;
                }
            }
        }
    }

    a {
        &:hover {
            text-decoration: none;
        }
    }
}

.blog-list-page {

    @media (max-width: 767px) {
        .page-body {
            background-color: @bgWidgetColor;
            padding: @baseGap;
        }
    }

    .page-title {
        margin: 0 0 @baseGap;
    }

    .blog-posts {
        @media (min-width: 768px) {
            column-count: 3;
            column-gap: @baseGap;

            .post-item {
                display: grid;
                grid-template-rows: 1fr auto;
                break-inside: avoid;
            }
        }

        .post-item {
            background-color: @bgWidgetColor;
            margin-bottom: @baseGap;

            figure {
                position: relative;
                margin-bottom: 0;

                img {
                    width: 100%;
                }

                a {
                    color: @invTextColor;
                }

                .category-btn, .post-info, &::before {
                    position: absolute;
                    visibility: hidden;
                    opacity: 0;
                    transition: @transition;
                }

                .category-btn {
                    top: -@baseGap;
                    left: @baseGap;
                    background-color: @secondaryColor;
                    padding: @baseGap/4 @baseGap/2;
                    border-radius: 25px;
                }

                .post-info {
                    bottom: -@baseGap;
                    left: @baseGap;
                    color: @invTextColor;
                }

                &::before {
                    content: "";
                    width: 100%;
                    height: 100%;
                    background: linear-gradient(to top,#2f2727,transparent);
                }
            }

            .post-title {
                font-size: large;
                line-height: 1.5;
                text-align: center;
                position: relative;
                padding: 20px 40px;
                margin-bottom: 1.5rem;

                a {
                    color: @muteColor;
                }

                &::after {
                    content: "";
                    position: absolute;
                    right: 50%;
                    transform: translateX(50%);
                    bottom: 0;
                    width: 45px;
                    height: 1px;
                    background-color: @secondaryColor;
                }
            }

            p {
                text-align: justify;
            }

            &:hover {
                box-shadow: 0 0 30px 0 rgba(0,0,0,.2);

                figure {

                    .category-btn, .post-info, &::before {
                        visibility: visible;
                        opacity: 1;
                    }

                    .category-btn {
                        top: @baseGap;
                    }

                    .post-info {
                        bottom: @baseGap;
                    }
                }
            }

            .post-date {
                font-size: smaller;
                color: @muteColor;
            }

            &.post-item-mobile {
                position: relative;
                padding-bottom: @baseGap;

                figure {
                    img {
                        width: 120px;
                    }
                }

                .post-title-mobile {
                    font-size: small;

                    a {
                        color: @muteColor;
                    }
                }

                &:not(:last-child) {
                    &::before {
                        content: "";
                        position: absolute;
                        bottom: 0;
                        width: 240px;
                        height: 1px;
                        background-color: darken(@bgDarkenColor,@basePercent*2);
                    }
                }
            }
        }
    }

    .pagination {
        margin-top: @baseGap;
    }
}

.blog-list-page, .blog-post-page {
    .post-author {
        font-size: smaller;
        color: @muteColor;

        img {
            width: 30px;
            display: inline-block;
            border-radius: 50%;
        }
    }

    .post-body {
        p {
            line-height: 1.7;
        }

        img {
            transition: @transition;

            &:hover {
                transform: scale(1.14);
            }
        }
    }
}

.html-blog-post-page {

    .related-posts-list {
        .listbox {
            &:not(:last-child) {
                border-bottom: 1px solid lighten(@borderColor,@basePercent*2);
            }

            img {
                width: 64px;
                height: 64px;
                object-fit: cover;
            }
        }
    }

    .post-minutes-read {
        margin-top: 6px;

        @media (min-width: 768px) {
            float: left;
        }
    }

    .post-navigation {
        .btn {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
    }

    .post-tags-list {
        border-top: 1px solid @borderColor;
        border-bottom: 1px solid @borderColor;
        padding-top: @baseGap*2;
        padding-bottom: @baseGap;
        margin-bottom: @baseGap;

        .tags-list {
            display: inline-flex;

            @media (max-width: 767px) {
                overflow: auto;
                width: 100%;
            }
        }

        .tag {
            background-color: @bgDarkenColor;
            color: @muteColor;
            border-radius: 100px;
            white-space: nowrap;
        }
    }

    .share-post {
        li a {
            font-size: 2em;
            color: @muteColor;

            &:hover {
                color: @secondaryColor;
            }
        }
    }

    .new-comment {
        form {
            border: 1px solid @borderColor;
            padding: @baseGap @baseGap*2;
            border-radius: @baseRadius;

            .comment-form-avatar {
                .fa-user {
                    width: 45px;
                    height: 45px;
                    line-height: 1.2;
                    border: 1px solid @muteColor;
                    color: @muteColor;
                    border-radius: 50%;
                    font-size: xx-large;
                    text-align: center;
                }

                .user-comment {
                    font-size: medium;
                }
            }

            .form-fields {
                padding: 0;

                .form-group {
                    max-width: 100%;
                    display: none;
                    margin-top: @baseGap;

                    .form-control {
                        border-color: transparent transparent @borderColor transparent;
                    }

                    .blog-post-add-comment-button {
                        border: 1px solid @borderColor;
                        border-radius: 25px;
                    }
                }
            }

            &.open {
                .form-group {
                    display: block;
                }
            }
        }
    }
}

.comment {
    margin-bottom: @baseGap*2;

    .user-info {
        background-color: @bgDarkenColor;
        font-weight: bold;
        padding: 3px @baseGap;
    }

    .comment-content {
        padding: @baseGap/2 @baseGap @baseGap;
    }

    .comment-time {
        font-size: smaller;
        color: @muteColor;
        margin-top: @baseGap;
    }

    .reply {
        margin-left: @baseGap*2;
        border: 1px solid @borderColor;
        padding: @baseGap/3 @baseGap @baseGap/2;

        .reply-header {
            color: @muteColor;
            font-size: smaller;
            font-weight: bold;
        }
    }
}
/*
	** private messages page
*/
.private-messages {
    .buttons {
        text-align: center;
        margin-top: @baseGap*2;
    }
}

.view-message {
    .message-head {

        label {
            color: @muteColor;
        }
    }

    .message-body {
        padding: @baseGap;
        background-color: @bgDarkenColor;
    }
}
/*
	** profile page
*/
.profile-stats {
    .stats {
        label {
            color: @muteColor;
        }
    }
}
/*
	** sitemap page
*/
.sitemap-page {
    .description {
        margin-bottom: @bigGap;
        color: @muteColor;
    }

    .entity-body {
        margin-bottom: @baseGap*2;
        max-height: 400px;
        overflow-y: auto;

        ul {
            list-style: none;
            padding: 0;

            > li > a {
                display: block;
                padding: @baseGap/3 0;
            }
        }
    }
}
/*
    Home page
*/
.html-home-page {
    scroll-behavior: smooth;



    #mainMenuHomePage {
        display: none;
    }

    .top-slider {

        .ws_gestures {
            border-radius: 16px;
            box-shadow: 0 2px 4px 1px rgba(0,0,0,.1);
            overflow: hidden;
        }

        img {
            width: 100%;
        }
    }
    /*.main-nav .navbar {
		border-bottom: none;
		margin-bottom: 0;
	}*/
}

.picture-wraper {
    border-radius: 5px;
}

.home-page, .blog-list-page, .blog-post-page, .shopping-cart-page, .checkout-page {
    .container {
        max-width: 1336px;
    }
    /*.title {
		font-size: x-large;
		margin-bottom: @baseGap/3;
	}*/
}

.home-page-polls {
    @media (min-width:768px) {
        text-align: center;
    }

    margin-top: @bigGap;
    margin-bottom: @bigGap;
    padding-top: @bigGap;
    padding-bottom: @baseGap;
    background-color: @bgWidgetColor;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
    border-radius: 8px;

    .title {
        margin-bottom: 1rem;
    }

    .poll {
        margin-bottom: @baseGap*2;

        &:not(:last-of-type) {
            border-bottom: 1px solid @borderColor;
            padding-bottom: @baseGap;
        }

        .poll-results {
            max-width: 600px;
            margin: auto;

            .vote-title {
                text-align: initial;
            }
        }

        .poll-options {
            margin-bottom: @baseGap/2;

            @media (min-width:768px) {
                .answer {
                    display: inline-block;

                    &:not(:last-child) {
                        margin-right: @baseGap;
                    }
                }
            }
        }
    }
}

.story {
    @media(max-width:769px) {
        border-top: 1px solid @borderColor;
        padding-top: @baseGap;
        padding-bottom: @baseGap;
    }
}

.news-list-homepage {
    margin-top: @bigGap;
    margin-bottom: @bigGap;

    .view-all {
        text-align: center;
    }
}

.blog-list-homepage {
    .blog-item {
        background-color: @bgWidgetColor;
        border-radius: 3px;
        padding-bottom: @baseGap;
        text-align: center;

        figure {

            img {
                border-radius: 3px 3px 0 0;
            }
        }

        .blog-title {
            font-size: medium;
            padding: 0 @baseGap*2;
            height: 55px;

            a {
                color: @muteColor;
            }
        }
    }
}

/*
    ** Widgets
*/
/*.tag-grid-carousel {
    .owl-carousel {
        position: relative;

        .owl-stage-outer {
            padding: 5px 20px;
        }

        img {
            padding-top: 30px;
        }

        .owl-nav {
            text-align: center;
            -webkit-tap-highlight-color: transparent;
            width: 100%;
            position: absolute;

            button[class*='owl-'] {
                padding: 7px 8px !important;
                transition: @transition;
                border-radius: @baseRadius;

                &:hover:not(.disabled) {
                    text-decoration: none;
                    color: @textColor;
                    cursor: pointer;
                }
            }

            .disabled {
                opacity: 0.4;
                cursor: default !important;
            }

            &.disabled + .owl-dots {
                margin-top: 10px;
            }
        }

        .owl-prev, .owl-next {
            position: absolute;
            background-color: @bgWidgetColor !important;
        }


        .owl-prev {
            right: 0;
            box-shadow: -2px 0 4px 0 rgba(0,0,0,.15);
            border-radius: 20px 0 0 20px !important;
            margin-top: -34px;
        }

        .owl-next {
            left: 0;
            box-shadow: 2px 0 4px 0 rgba(0,0,0,.15);
            border-radius: 0 20px 20px 0 !important;
            margin-top: -34px;
        }
    }
}*/
.select2 {
    &.select2-container--default {

        .select2-selection--single {
            border-color: @borderColor !important;
            border-radius: 3px !important;
            height: 50px !important;
            padding: 10px 5px;
        }
    }

    .select2-selection--single {
        &:hover, &:focus {
            border-color: @brandColor !important;
        }
    }

    + .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-dot {
        display: inline-block;
        zoom: 1;
        *display: inline;

        span {
            width: 10px;
            height: 10px;
            margin: 5px;
            background: @bgDarkenColor;
            display: block;
            -webkit-backface-visibility: visible;
            transition: opacity 200ms ease;
            border-radius: 30px;
        }

        &.active span, &:hover span {
            background: @secondaryColor;
        }
    }
}
// Stars
@star-default: @borderColor;
@star-active: @brandColor;
@star-selected: gold;

.br-theme-fontawesome-stars {

    .br-widget {
        height: 28px;
        white-space: nowrap;

        a {
            .fontawesome-solid;
            text-rendering: auto;
            -webkit-font-smoothing: antialiased;
            text-decoration: none;
            margin-right: 2px;
        }

        a::after {
            content: '\f005';
            color: @star-default;
        }

        a.br-active::after {
            color: @star-active;
        }

        a.br-selected::after {
            color: @star-selected;
        }

        .br-current-rating {
            display: none;
        }
    }

    .br-readonly {
        a {
            cursor: default;
        }
    }
}

@media print {
    .br-theme-fontawesome-stars {

        .br-widget {
            a::after {
                content: '\f006';
                color: black;
            }

            a.br-active::after,
            a.br-selected::after {
                content: '\f005';
                color: black;
            }
        }
    }
}

.zoomLens, .zoomWindow {
    border: none !important;
}

.zoomWindow {
    box-shadow: @baseShadow;
    transform: translate(-1rem);

    @media(min-width:1440px) {
        width: 800px !important;
    }
}

.old-browser-warning {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    color: black;
    background-color: #dc3545;

    .old-browser-logo {
        margin: 30px 0 60px;
        padding: 30px 15px;
        text-align: center;
        background-color: @bgColor;

        img {
            max-height: 90px;
            max-width: 90%;
        }
    }

    .old-browser-notice {
        padding: 50px 0;
        font-family: Tahoma,sans-serif;
        min-height: 300px;
        margin-bottom: 50px;

        h6 {
            font-size: 42px;
        }

        p {
            margin-bottom: 30px;
        }

        a {
            text-decoration: none;
            background: none;
            border: 2px solid;
            color: #fff;
            padding: 6px 15px;

            &:hover {
                background-color: #fff;
                color: black;
            }
        }
    }
}
/*
    ** plugins
*/
.wowslider-container {
    margin: 0 0 @baseGap*2;

    .context {
        display: none;
    }

    .owl-stage-outer {
        border-radius: @baseRadius;
    }

    .owl-stage {
        margin: 0;
    }

    .owl-item {
        img {
            width: 100%;
            height: auto;
            border-radius: @baseRadius;
        }
    }

    .owl-nav {
        button {
            position: absolute;
            top: 50%;
            color: #000 !important;
            color: @invTextColor !important;
        }

        .owl-prev {
            color: #000 !important;
            left: @baseGap;
        }

        .owl-next {
            right: @baseGap;
            color: #000 !important;
        }
    }

    .owl-dots {
        position: absolute;
        bottom: 0;
        width: 100%;
    }
}

.bootstrap-slider {
    .carousel-item img {
        border-radius: @baseRadius;
    }
}

.new-product-grid-product-grid, .sale-of-the-day-offer {
    .owl-stage {
        display: flex;
    }

    .view-all {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        .product-element {
            flex-direction: column;
            justify-content: center;
            display: flex;
            border-radius: 12px 0 0 12px;

            a {
                i {
                    border: 1px solid @primaryColor;
                    padding: 15px;
                    border-radius: 50%;
                    color: @primaryColor;
                }
            }

            p {
                font-weight: 700;
                padding: 0 40px;
            }
        }
        /*@media(max-width:768px) {
            height: auto !important;
        }*/
    }
}

.sale-of-the-day-offer {
    .view-all {
        border-radius: @baseRadius;
        background: @bgWidgetColor;
    }
}

.sale-of-the-day-offer-hero {
    display: none;
}

.popup1 {
    .modal-content {
        background: none;
        border: 0;

        .modal-header {
            display: none;
        }
    }
}

.instagram-homepage .instagram-post img {
    object-fit: cover;
    height: 180px !important;

    @media (min-width:375px) {
        height: 215px !important;
    }

    @media (min-width:425px) {
        height: 245px !important;
    }

    @media (min-width:768px) {
        height: 230px !important;
    }

    @media (min-width:992px) {
        height: 300px !important;
    }

    @media (min-width:1024px) {
        height: 315px !important;
    }

    @media (min-width:1440px) {
        height: 273px !important;
    }
}
/*
    ** Print

               
*/
@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;

        th, 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: 0px;
    }

    .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;
    }
}

.order-details-page {

    .fa-print, .fa-file-pdf {
        @media(max-width:992px) {
            display: none;
        }
    }

    .row-total {
        justify-content: center;
    }

    .back-order {
        position: relative;
        border-right: 1px solid @borderColor;
        margin-right: 15px;
        font-size: @baseGap;
        color: @muteColor;
        padding: 36px 0 32px 16px;
        cursor: pointer;

        &::before {
            content: "\f060";
            position: absolute;
            left: 2px;
            top: 5px;
            font-size: 27px;
            font-family: @fontawesome;
        }
    }

    .title {
        color: @muteColor;
    }

    .order-overview-content {
        color: fadeout(@muteColor,10%);
        font-size: .857rem;
        line-height: 1.833;
        letter-spacing: -.3px;
        margin-top: 5px;
        margin-bottom: -5px;
    }

    .card {
        .d-flex {
            > div {
                width: 100%;

                @media(min-width:768px) {
                    width: 50%;
                }

                &:nth-child(even) {

                    @media(min-width:768px) {
                        border-right: 1px solid @borderColor;
                    }
                }

                &:nth-child(1) {
                    border-top: none;
                }

                &:nth-child(2) {

                    @media(min-width:768px) {
                        border-top: none;
                    }
                }
            }
        }

        .order-list-item {
            padding: @baseGap*2 @baseGap;
            border-top: 1px solid @borderColor;

            @media(max-width:768px) {
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

            label {
                display: block;
            }
        }

        .card-item {
            font-size: .929rem;
            line-height: 1.692;
            color: #bababa;

            @media(max-width:768px) {
                font-size: 1em;
                color: @textColor;
            }
        }

        .text-item {
            font-size: 1.143rem;
            line-height: 1.375;
            letter-spacing: -.3px;

            @media(max-width:768px) {
                font-size: 1em;
            }

            .hint {
                font-size: 10px;

                @media(max-width:992px) {
                    display: none;
                }
            }
        }
    }
}
/*
    ** animations
 */
@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(0px, 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, 0px) 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(0px, 9px) rotate(-1.5deg);
    }

    94% {
        transform: translate(5px, 4px) rotate(.5deg);
    }

    96% {
        transform: translate(-4px, 0px) rotate(3.5deg);
    }

    98% {
        transform: translate(-6px, 1px) rotate(-2.5deg);
    }

    0%,100% {
        transform: translate(0, 0) rotate(0);
    }
}

.beta {
    position: fixed;
    background: gold;
    padding: 1px 15px;
    left: 0;
    bottom: 0;
    color: #000;
    font-weight: bold;
}
