@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 100;
    src: url("../fonts/IranSansX/IRANSansX-Thin.woff") format("woff");
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 200;
    src: url("../fonts/IranSansX/IRANSansX-UltraLight.woff") format("woff");
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/IranSansX/IRANSansX-Light.woff") format("woff");
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/IranSansX/IRANSansX-Medium.woff") format("woff");
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/IranSansX/IRANSansX-DemiBold.woff") format("woff");
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 800;
    src: url("../fonts/IranSansX/IRANSansX-ExtraBold.woff") format("woff");
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 900;
    src: url("../fonts/IranSansX/IRANSansX-Black.woff") format("woff");
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: bold;
    src: url("../fonts/IranSansX/IRANSansX-Bold.woff") format("woff");
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/IranSansX/IRANSansX-Regular.woff") format("woff");
}

@font-face {
    font-family: AdobeClean;
    font-weight: 300;
    src: url("../fonts/AdobeClean/AdobeClean-light.otf");
}

@font-face {
    font-family: AdobeClean;
    font-weight: 500;
    src: url("../fonts/AdobeClean/AdobeClean-medium.otf");
}

@font-face {
    font-family: AdobeClean;
    font-weight: 800;
    src: url("../fonts/AdobeClean/AdobeClean-extrabold.otf");
}

@font-face {
    font-family: AdobeClean;
    font-weight: 900;
    src: url("../fonts/AdobeClean/AdobeClean-black.otf");
}

@font-face {
    font-family: AdobeClean;
    font-weight: bold;
    src: url("../fonts/AdobeClean/AdobeClean-bold.otf");
}

@font-face {
    font-family: AdobeClean;
    src: url("../fonts/AdobeClean/AdobeClean-regular.otf");
}

a,
a:hover {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aeen--page-wrapper {
    direction: rtl;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    font-family: IRANSansX;
}

.aeen--page-wrapper .aeen--page-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 35px 0;
    position: relative;
    z-index: 0;
}

.aeen--page-wrapper .aeen--page-content.aeen-page-auth {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.aeen--page-wrapper .aeen--page-content .aeen-section-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 70px;
}

.aeen--page-wrapper .aeen--page-content .aeen-section-title i {
    margin-left: 10px;
    font-size: 28px;
}

.aeen-content-title-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #06703f;
}

.aeen-content-title-container .aeen-content-title-icon {
    font-size: 94px;
    position: relative;
    margin-left: 15px;
    line-height: 0;
}

.aeen-content-title-container .aeen-content-title-icon::before {
    content: '';
    width: 65px;
    height: 65px;
    background-color: #c0dacd;
    border-radius: 35%;
    position: absolute;
    right: 15px;
    bottom: -20px;
    z-index: -1;
}

.aeen-content-title-container .aeen-content-title {
    font-weight: 600;
    font-size: 32px;
}

.aeen-content-title-container .aeen-content-title .aeen-content-title-subtitle {
    font-weight: 900;
}

.skeleton-loading {
    position: relative;
    overflow: hidden;
}

.skeleton-loading::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #ebebeb;
    z-index: 100000;
}

.skeleton-loading::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    cursor: progress;
    -webkit-animation: sk-loading 1.5s infinite;
    animation: sk-loading 1.5s infinite;
    background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.3)), to(transparent));
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    z-index: 1000001;
}

.skeleton-loading.skeleton-loading-translateY-15::before {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
    bottom: -15px;
}

@-webkit-keyframes sk-loading {
    from {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    to {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes sk-loading {
    from {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    to {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

.aeen-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 13px;
    font-weight: bold;
    color: #898df7;
}

.aeen-link:hover {
    color: #898df7;
}

.aeen-guide-container {
    padding: 15px;
}

.aeen-guide-container p {
    font-size: 14px;
    color: #666;
}

.aeen-guide-container img {
    width: auto !important;
    height: auto !important;
    max-width: 100%;
    display: block;
    margin: 15px auto;
}

.aeen-message-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.aeen-message-box .aeen-message-box-icon {
    color: #363636;
    margin-bottom: 15px;
}

.aeen-message-box .aeen-message-box-icon i {
    font-size: 58px;
}

.aeen-message-box .aeen-message-box-title {
    font-size: 18px;
    font-weight: 600;
}

.aeen-message-box .aeen-message-box-text {
    color: #979797;
    text-align: center;
}

.ss02 {
    -webkit-font-feature-settings: "ss02";
    font-feature-settings: "ss02";
    font-family: IRANSansX;
}

.text-sm {
    font-size: 13px !important;
}

.text-md {
    font-size: 18px !important;
}

.text-lg {
    font-size: 23px !important;
}

.text-warning {
    color: #f6bc01 !important;
}

.text-primary {
    color: #363636 !important;
}

.text-danger {
    color: #FF003D !important;
}

.container {
    max-width: 1400px;
}

.text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mh-50 {
    min-height: 50px;
}

.text-xxl {
    font-size: 62px;
}

.fixed-to-footer {
    -webkit-transform: translateY(135px);
    transform: translateY(135px);
}

.text-en {
    font-family: AdobeClean;
}

.aeen-section-default {
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    padding: 45px 35px;
    overflow: hidden;
}

@media (max-width: 480px) {
    .aeen-section-default {
        padding: 25px 15px;
    }
}

.aeen-section-default .aeen-section-default-title {
    font-size: 21px;
    font-weight: 700;
    color: #363636;
    margin-bottom: 5px;
}

.aeen-section-default .aeen-section-default-subtitle {
    color: #363636;
    margin-bottom: 30px;
}

.ui-sticky {
    position: -webkit-sticky;
    position: sticky;
    z-index: 2;
}

.ui-sticky.ui-sticky-top {
    top: 0;
}

.ui-sticky.ui-sticky-box {
    background-color: #fff;
    padding: 10px 0;
}

.rounded-sm {
    border-radius: 15px;
}

.expandable-text {
    height: 160px;
    overflow: hidden;
    position: relative;
}

.expandable-text .expandable-text_text p {
    color: #666;
    line-height: 35px;
    font-weight: 500;
}

.expandable-text .expandable-text-expand-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    height: 70px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.3)), to(#fff));
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.3), #fff);
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

.expandable-text .expandable-text-expand-btn .show-more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.expandable-text .expandable-text-expand-btn .show-less {
    display: none;
}

.expandable-text.active {
    height: auto;
    padding-bottom: 30px;
}

.expandable-text.active .expandable-text-expand-btn {
    background-image: unset;
}

.expandable-text.active .show-more {
    display: none;
}

.expandable-text.active .show-less {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.aeen-form-row.with-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.aeen-form-row.with-icon i {
    position: absolute;
    left: 15px;
    font-size: 21px;
    color: #ECECEC;
}

.aeen-form-row.aeen-form-row-textarea.with-icon i {
    top: 15px;
}

.aeen-form-radio--image-container {
    display: block;
    width: 100%;
    height: 100%;
}

.aeen-form-radio--image-container .aeen-form-radio--input {
    display: none;
}

.aeen-form-radio--image-container .aeen-form-radio--input:checked + .aeen-form-radio--image-container {
    border-color: #000;
    padding: 5px;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.aeen-form-radio--image-container .aeen-form-radio--image-container {
    display: inline-block;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    -webkit-transition: all .1s ease;
    transition: all .1s ease;
}

.aeen-form-radio--image-container .aeen-form-radio--image-container .aeen-form-radio--image {
    display: inline-block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.aeen-select-size-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 15px 80px;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.aeen-select-size-container .aeen-select-size {
    width: 20%;
}

.aeen-select-size-container .aeen-form-radio--input {
    display: none;
}

.aeen-select-size-container .aeen-form-radio--input:checked + .aeen-form-radio--image-container::after {
    content: "\EB80";
    color: #06703f;
}

.aeen-select-size-container .aeen-form-radio--input:checked + .aeen-form-radio--image-container .aeen-form-radio--image {
    -webkit-filter: unset;
    filter: unset;
    opacity: 1;
}

.aeen-select-size-container .aeen-form-radio--image-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    -webkit-transition: all .1s ease;
    transition: all .1s ease;
}

.aeen-select-size-container .aeen-form-radio--image-container::after {
    content: "\EB7C";
    font-family: remixicon !important;
    position: absolute;
    bottom: -60px;
    font-size: 21px;
    color: #ababab;
}

.aeen-select-size-container .aeen-form-radio--image-container .aeen-form-radio--title {
    position: absolute;
    bottom: -30px;
    color: #363636;
    font-size: 13px;
    font-weight: 700;
}

.aeen-select-size-container .aeen-form-radio--image-container .aeen-form-radio--label {
    position: absolute;
    color: #fff;
    font-family: AdobeClean;
    font-size: 24px;
    text-transform: uppercase;
}

@media (max-width: 480px) {
    .aeen-select-size-container .aeen-form-radio--image-container {
        padding: 0 3px;
    }
}

.aeen-select-size-container .aeen-form-radio--image-container .aeen-form-radio--image {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: .5;
}

@media (max-width: 480px) {
    .aeen-select-size-container .aeen-form-radio--image-container .aeen-form-radio--image {
        width: 100%;
    }
}

.aeen-select-color-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.aeen-select-color-container .aeen-select-color {
    margin-left: 10px;
}

.aeen-select-color-container .aeen-select-color:last-child {
    margin-left: 0;
}

.aeen-select-color-container .aeen-form-radio--input {
    display: none;
}

.aeen-select-color-container .aeen-form-radio--input:checked + .aeen-form-radio--color-container::after {
    border-color: #06703f;
}

.aeen-select-color-container .aeen-form-radio--color-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    cursor: pointer;
}

.aeen-select-color-container .aeen-form-radio--color-container::after {
    content: "";
    position: absolute;
    top: -5px;
    right: -5px;
    left: -5px;
    bottom: -5px;
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 16px;
}

.aeen-select-color-container .aeen-form-radio--color-container .aeen-form-radio--color {
    width: 30px;
    height: 30px;
    border-radius: 12px;
}

.aeen-select-option-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.aeen-select-option-container .aeen-select-option {
    margin-left: 10px;
    margin-bottom: 10px;
}

.aeen-select-option-container .aeen-select-option:last-child {
    margin-left: 0;
}

.aeen-select-option-container .aeen-form-radio--input {
    display: none;
}

.aeen-select-option-container .aeen-form-radio--input:checked + .aeen-form-radio--option-container .aeen-form-radio--option {
    background-color: #F7BC00;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.aeen-select-option-container .aeen-form-radio--option-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    cursor: pointer;
}

.aeen-select-option-container .aeen-form-radio--option-container .aeen-form-radio--option {
    padding: 5px 15px;
    background-color: #F3F3F3;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.custom-radio-btn .custom-radio-btn-input {
    display: none;
}

.custom-radio-btn .custom-radio-btn-input:checked + .custom-radio-btn-label .label {
    border-color: #5AA080;
    color: #363636;
}

.custom-radio-btn .custom-radio-btn-label .label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #f2f2f2;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 25px;
    position: relative;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.aeen-custom-radio-outline .aeen-custom-radio-outline-input {
    display: none;
}

.aeen-custom-radio-outline .aeen-custom-radio-outline-input:checked + .aeen-custom-radio-outline-label .label::before {
    content: "\F059";
    color: #07703F;
}

.aeen-custom-radio-outline .aeen-custom-radio-outline-input:checked + .aeen-custom-radio-outline-label .label .title {
    color: #07703F;
}

.aeen-custom-radio-outline .aeen-custom-radio-outline-label .label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 600;
    padding: 10px 35px 10px 25px;
    position: relative;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.aeen-custom-radio-outline .aeen-custom-radio-outline-label .label::before {
    content: "\F05A";
    font-family: "remixicon";
    position: absolute;
    right: 0;
    font-size: 21px;
    color: #E3E3E3;
}

.aeen-custom-radio-outline .aeen-custom-radio-outline-label .label .detail .title {
    display: block;
    color: #E3E3E3;
}

.aeen-custom-radio-outline .aeen-custom-radio-outline-label .label .detail .title {
    font-size: 16px;
}

.aeen-select-quantity-container {
    background-color: #f1f1f1;
    padding: 5px 10px;
}

.aeen-select-quantity-container .aeen-select-quantity-label {
    color: #606060;
    word-spacing: -3.5px;
}

.aeen-select-quantity-container .select2-selection {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    width: 50px;
    -webkit-font-feature-settings: "ss02";
    font-feature-settings: "ss02";
    font-family: IRANSansX;
}

.aeen-select-quantity-container .select2-selection .select2-selection__rendered {
    padding: 0 !important;
}

.select2-dropdown {
    width: 60px !important;
    background-color: #fff;
    -webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.03);
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.03);
    border: 1px solid #363636 !important;
    border-radius: 0;
    -webkit-font-feature-settings: "ss02";
    font-feature-settings: "ss02";
    font-family: IRANSansX;
    text-align: center;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #06703f;
}

.select2-container {
    z-index: 14;
}

.aeen-form-row .select2-selection--single {
    width: 100%;
    min-height: 50px;
    border: 1px solid #E6E6E6;
    padding-right: 15px;
    padding-left: 60px;
    outline: none;
}

.aeen-form-row .select2-selection--single .select2-selection__rendered {
    height: 100%;
    line-height: 45px;
    text-align: right;
    padding-right: 0;
}

.aeen-form-row .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 15px;
    left: 11px;
    right: auto;
    width: 20px;
}

.aeen-form-row.with-rounded-pill .select2-selection--single {
    border-radius: 25rem !important;
}

.select-option--text.select2-container--open .select2-selection--single {
    border-radius: 25rem !important;
}

.select-option--text-dropdown {
    width: 160px !important;
}

.remodal .select2-container {
    width: 100% !important;
}

.aeen-form-element-select {
    width: 100%;
    min-height: 50px;
    background-color: #fff;
    border: 1px solid #E6E6E6;
    padding-right: 15px;
    padding-left: 60px;
    outline: none;
}

.aeen-form-element-select::-webkit-input-placeholder {
    color: #B2B2B2;
}

.aeen-form-element-select:-ms-input-placeholder {
    color: #B2B2B2;
}

.aeen-form-element-select::-ms-input-placeholder {
    color: #B2B2B2;
}

.aeen-form-element-select::placeholder {
    color: #B2B2B2;
}

.form-select {
    border-radius: 0;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.form-select.form-select-inline {
    display: inline-block;
}

.aeen-form-file {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border: 2px dashed #9f9f9f;
    padding: 15px;
}

.aeen-form-file .aeen-form-element-file-label {
    color: #363636;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.aeen-form-file .aeen-form-element-file-sublabel {
    color: #9f9f9f;
    font-size: 13px;
    font-weight: 600;
}

.aeen-form-file .aeen-form-element-file-sublabel span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.aeen-form-file .aeen-form-element-file label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    background-color: #ccc;
    border-radius: 25rem;
    color: #363636;
    cursor: pointer;
    padding: 5px 15px;
}

.aeen-form-file .aeen-form-element-file input {
    display: none;
}

.image-upload {
    position: relative;
    max-width: 100px;
}

.image-upload .image-edit {
    position: absolute;
    top: 50%;
    right: 50%;
    margin: auto;
    -webkit-transform: translateY(-50%) translateX(50%);
    transform: translateY(-50%) translateX(50%);
    z-index: 1;
}

.image-upload .image-edit input {
    display: none;
}

.image-upload .image-edit input + label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 100%;
    background: #fff;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-weight: normal;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.image-upload .image-edit input + label:after {
    content: "\EFDF";
    font-family: "remixicon";
    font-size: 16px;
    color: #757575;
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
}

.image-upload .image-edit input + label:hover {
    background: #f1f1f1;
}

.image-upload .image-preview {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    position: relative;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
}

.image-upload .image-preview > div {
    width: 80%;
    height: 80%;
    border-radius: 10%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.noUi-target {
    height: 14px;
    background-color: #d8d8d6;
    border: 0;
    border-radius: 25rem;
    -webkit-box-shadow: unset;
    box-shadow: unset;
}

.noUi-base {
    height: 100%;
    border: 0;
}

.noUi-base .noUi-connects {
    background-color: #d8d8d6;
    border-radius: 25rem;
}

#aeen-send-comment-star-slider .noUi-connect {
    background: #f7bc00;
}

#aeen-send-comment-star-slider .noUi-handle {
    height: 25px;
    width: 25px;
    top: -6px;
    right: -9px;
    /* half the width */
    background-color: #f7bc00;
    border: 0;
    border-radius: 50%;
    -webkit-box-shadow: unset;
    box-shadow: unset;
}

#aeen-send-comment-star-slider .noUi-handle::before, #aeen-send-comment-star-slider .noUi-handle::after {
    display: none;
}

#aeen-send-comment-star-slider .noUi-handle.noUi-active {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.form-switch .form-check-input {
    background-color: #f1f1f1;
    border: 0;
    height: 1.25em !important;
    width: 2.75em !important;
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
}

.form-switch .form-check-input:checked {
    background-color: #07703F;
}

.form-switch .form-check-label {
    cursor: pointer;
}

.form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 25px;
}

.form-check .form-check-input {
    height: 1.5em;
    width: 1.5em;
    background-color: #dadada;
    border: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.form-check .form-check-input:checked {
    background-color: #07703F;
}

.form-check .form-check-label {
    cursor: pointer;
    padding-right: 10px;
}

.aeen-check-option-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.aeen-check-option-container .aeen-check-circle {
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 10px;
}

.aeen-check-option-container .aeen-check-circle:last-child {
    margin-left: 0;
}

.aeen-check-option-container .aeen-form-radio--input {
    display: none;
}

.aeen-check-option-container .aeen-form-radio--input:checked + .aeen-form-radio--circle-container .aeen-form-radio--circle {
    background-color: #06703E;
}

.aeen-check-option-container .aeen-form-radio--circle-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    cursor: pointer;
}

.aeen-check-option-container .aeen-form-radio--circle-container .aeen-form-radio--circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #787878;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    line-height: 45px;
}

.aeen-form-element-input {
    width: 100%;
    min-height: 50px;
    border: 1px solid #E6E6E6;
    padding-right: 15px;
    padding-left: 60px;
    outline: none;
}

.aeen-form-element-input::-webkit-input-placeholder {
    color: #B2B2B2;
}

.aeen-form-element-input:-ms-input-placeholder {
    color: #B2B2B2;
}

.aeen-form-element-input::-ms-input-placeholder {
    color: #B2B2B2;
}

.aeen-form-element-input::placeholder {
    color: #B2B2B2;
}

.aeen-form-element-textarea {
    width: 100%;
    padding: 20px 15px;
    border: 1px solid #363636;
    color: #363636;
    outline: none;
    resize: none;
}

.aeen-form-element-textarea::-webkit-input-placeholder {
    color: #a5a5a5;
}

.aeen-form-element-textarea:-ms-input-placeholder {
    color: #a5a5a5;
}

.aeen-form-element-textarea::-ms-input-placeholder {
    color: #a5a5a5;
}

.aeen-form-element-textarea::placeholder {
    color: #a5a5a5;
}

.aeen-form-element-textarea-default {
    width: 100%;
    min-height: 250px;
    border: 1px solid #E6E6E6;
    border-radius: 15px;
    padding-top: 15px;
    padding-right: 15px;
    padding-left: 60px;
    outline: none;
}

.aeen-form-element-textarea-default::-webkit-input-placeholder {
    color: #B2B2B2;
}

.aeen-form-element-textarea-default:-ms-input-placeholder {
    color: #B2B2B2;
}

.aeen-form-element-textarea-default::-ms-input-placeholder {
    color: #B2B2B2;
}

.aeen-form-element-textarea-default::placeholder {
    color: #B2B2B2;
}

.accordion .accordion-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 0;
    border-radius: 0 !important;
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
    color: #363636;
    font-weight: 700;
    padding: 25px 60px 25px 10px;
}

.accordion .accordion-button::after {
    content: "\EA10";
    font-family: remixicon !important;
    font-size: 30px;
    position: absolute;
    right: 10px;
    -ms-flex-negative: unset;
    flex-shrink: unset;
    width: unset;
    height: unset;
    margin-right: unset;
    background-image: unset;
    background-repeat: unset;
    background-size: unset;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.accordion .accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #06703f;
}

.accordion .accordion-button:not(.collapsed)::after {
    content: "\EE56";
}

.accordion .accordion-button:hover, .accordion .accordion-button:focus {
    z-index: unset;
}

.accordion .accordion-item {
    border: 0;
    border-radius: 0 !important;
    position: relative;
}

.accordion .accordion-item::after {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    height: 1px;
    background-color: #c9c9c9;
}

.accordion .accordion-item .accordion-body {
    padding: 16px 60px;
}

@media (max-width: 768px) {
    .accordion .accordion-item .accordion-body {
        padding: 16px 30px;
    }
}

.accordion .accordion-item .accordion-body p {
    color: #363636;
    line-height: 30px;
}

.accordion .accordion-item .accordion-body img {
    display: block;
    margin: 15px auto;
    max-width: 100%;
    width: auto !important;
    height: auto !important;
}

.breadcrumb .breadcrumb-item a {
    color: #626262;
}

.breadcrumb .breadcrumb-item.active {
    color: #363636;
    font-weight: 700;
}

.btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid transparent;
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
    padding: 10px 20px;
}

.btn.btn-primary {
    background-color: #06703f;
    border-color: #06703f;
    color: #fff !important;
}

.btn.btn-primary:hover {
    background-color: #06703f;
}

.btn.btn-danger {
    background-color: #f16b72;
}

.btn.btn-danger:hover {
    background-color: #f16b72;
}

.btn.btn-light {
    background-color: #fff;
}

.btn.btn-link {
    text-decoration: none;
}

.btn.btn-link.btn-link-primary {
    color: #06703f;
}

.btn.btn-warning {
    background-color: #F7BC00;
    color: #fff;
}

.btn.btn-has-shadow {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08) !important;
}

.btn.btn-outline-light {
    border: 1.5px solid #fff;
    color: #fff;
}

.btn.btn-outline-light:hover {
    background-color: #fff;
    color: #363636;
}

.btn.btn-outline-primary {
    border: 1.5px solid #06703f;
    color: #363636;
}

.btn.btn-outline-primary:hover {
    background-color: #06703f;
    color: #fff;
}

.btn.btn-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.btn.btn-xs {
    font-size: 12px;
}

.btn i {
    font-size: 21px;
}

.aeen-tab .nav-item {
    margin-left: 15px;
    margin-bottom: 40px;
}

.aeen-tab .nav-item:last-child {
    margin-left: 0;
}

.aeen-tab .nav-link {
    color: #363636;
    background-color: #f1f1f1;
    border-radius: 0;
    font-weight: 700;
    padding: 10px 55px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.aeen-tab .nav-link.active {
    background-color: #06703f;
    -webkit-box-shadow: 0px 20px 22px -14px rgba(15, 15, 15, 0.9);
    box-shadow: 0px 20px 22px -14px rgba(15, 15, 15, 0.9);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
}

.aeen-tab.aeen-tab-flat .nav-item {
    margin-bottom: 20px;
}

.aeen-tab.aeen-tab-flat .nav-link {
    -webkit-box-shadow: unset;
    box-shadow: unset;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 600;
}

.aeen-tab.aeen-tab-flat .nav-link.active {
    background-color: #F7BC00;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.aeen-card--box {
    border: 3px solid transparent;
    -webkit-transition: all .1s ease;
    transition: all .1s ease;
}

.aeen-card--box .aeen-card--box-thumbnail {
    overflow: hidden;
}

.aeen-card--box .aeen-card--box-thumbnail a {
    display: block;
}

.aeen-card--box .aeen-card--box-thumbnail img {
    max-width: 100%;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.aeen-card--box .aeen-card--box-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f1f1f1;
    padding: 15px 0;
}

.aeen-card--box .aeen-card--box-detail .aeen-card--box-title {
    margin-bottom: 10px;
}

.aeen-card--box .aeen-card--box-detail .aeen-card--box-title a {
    color: #363636;
    font-weight: 600;
}

.aeen-card--box .aeen-card--box-detail .aeen-card--box-price {
    color: #06703f;
    font-size: 21px;
    font-weight: 800;
    cursor: default;
}

.aeen-card--box .aeen-card--box-detail .aeen-card--box-price .currency {
    font-weight: 500;
}

.aeen-card--box .aeen-add-to-cart-container .input-group {
    display: none;
    width: 144px;
    height: 34px;
    margin: auto;
    margin-top: 8px;
    position: relative;
}

.aeen-card--box .aeen-add-to-cart-container .input-group input {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 25rem !important;
    background-clip: unset;
    cursor: default;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.aeen-card--box .aeen-add-to-cart-container .input-group input:focus {
    -webkit-box-shadow: unset;
    box-shadow: unset;
    z-index: 0;
}

.aeen-card--box .aeen-add-to-cart-container .btn-minus {
    display: inline-block;
    position: absolute;
    right: 2px;
    top: 1px;
    bottom: 1px;
}

.aeen-card--box .aeen-add-to-cart-container .btn-plus {
    display: inline-block;
    position: absolute;
    left: 2px;
    top: 1px;
    bottom: 1px;
}

.aeen-card--box .aeen-add-to-cart-container .btn-minus,
.aeen-card--box .aeen-add-to-cart-container .btn-plus {
    background-color: #06703f;
    border: 0;
    color: #fff;
    font-size: 20px;
    width: 30px;
    min-width: unset !important;
    height: 30px;
    border-radius: 50% !important;
    padding: 0;
}

.aeen-card--box .aeen-add-to-cart-container .add-to-cart {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 10px;
    padding: 5px 15px;
    border-radius: 25rem;
    background-color: #06703f;
    color: #fff;
    cursor: pointer;
}

.aeen-card--box .aeen-add-to-cart-container .add-to-cart i {
    margin-right: 5px;
}

.aeen-card--box .aeen-add-to-cart-container .add-to-cart:hover {
    opacity: 0.8;
}

.aeen-card--box .aeen-add-to-cart-container.show-quantity .input-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.aeen-card--box .aeen-add-to-cart-container.show-quantity .add-to-cart {
    display: none;
}

.aeen-card--box .aeen-add-to-cart-container[data-added="true"] .add-to-cart {
    display: none;
}

.aeen-card--box .aeen-add-to-cart-container[data-added="true"] .input-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.aeen-card--box:hover {
    padding: 5px;
    border-color: #06703f;
}

.aeen-card--box:hover .aeen-card--box-thumbnail img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: .9;
}

.aeen-product-card .aeen-product-card-thumbnail {
    margin-bottom: 15px;
    position: relative;
}

.aeen-product-card .aeen-product-card-thumbnail a {
    display: block;
    width: 100%;
    height: 400px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 2px solid transparent;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.aeen-product-card .aeen-product-card-thumbnail a.swiper-lazy {
    position: relative;
}

.aeen-product-card .aeen-product-card-thumbnail a.swiper-lazy::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #c5c5c5;
}

.aeen-product-card .aeen-product-card-thumbnail a.swiper-lazy.swiper-lazy-loaded::before {
    display: none;
}

.aeen-product-card .aeen-product-card-thumbnail .aeen-product-card-label {
    position: absolute;
    top: 15px;
    right: 2px;
    background-color: #06703f;
    color: #fff;
    cursor: default;
    padding: 2px 10px;
    font-weight: 500;
}

.aeen-product-card .aeen-product-card-detail .aeen-product-card-detail-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 10px;
}

.aeen-product-card .aeen-product-card-detail .aeen-product-card-detail-row:last-child {
    margin-bottom: 0;
}

.aeen-product-card .aeen-product-card-detail .aeen-product-card-detail-title {
    margin-bottom: 0;
}

.aeen-product-card .aeen-product-card-detail .aeen-product-card-detail-title a {
    color: #363636;
    font-size: 18px;
    font-weight: 700;
}

.aeen-product-card .aeen-product-card-detail .aeen-product-card-detail-title-en {
    font-size: 14px;
    font-family: AdobeClean;
    color: #9e9e9e;
    text-transform: uppercase;
    margin-bottom: 0;
}

.aeen-product-card .aeen-product-card-detail .aeen-product-card-detail-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    font-weight: 700;
    color: #06703f;
}

.aeen-product-card .aeen-product-card-detail .aeen-product-card-detail-price .aeen-product-card-detail-price-now {
    background-color: #06703f;
    color: #fff;
    padding-right: 5px;
    padding-left: 5px;
}

.aeen-product-card .aeen-product-card-detail .aeen-product-card-detail-price .aeen-product-card-detail-price-discount {
    background-color: #f7bc00;
    color: #353736;
    padding-right: 5px;
    padding-left: 5px;
}

.aeen-product-card .aeen-product-card-detail .aeen-product-card-detail-price .aeen-currency {
    margin-right: 5px;
}

.aeen-product-card .aeen-product-card-detail .aeen-product-card-detail-meta {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #9e9e9e;
}

.aeen-product-card .aeen-product-card-detail .aeen-product-card-detail-meta i {
    font-size: 18px;
    margin-right: 5px;
}

.aeen-product-card:hover .aeen-product-card-thumbnail a {
    border-color: #06703f;
    opacity: .9;
}

.aeen-blog-card {
    position: relative;
    height: 400px;
}

@media (max-width: 576px) {
    .aeen-blog-card {
        height: 310px;
    }
}

.aeen-blog-card .aeen-blog-card-thumbnail {
    height: 100%;
}

.aeen-blog-card .aeen-blog-card-thumbnail a {
    display: block;
    height: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
}

.aeen-blog-card .aeen-blog-card-thumbnail a::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(6, 112, 63, 0.7);
}

.aeen-blog-card .aeen-blog-card-detail {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 25px;
}

.aeen-blog-card .aeen-blog-card-detail .aeen-blog-card-title {
    color: #fff;
    font-size: 21px;
    font-weight: 700;
}

.aeen-blog-card .aeen-blog-card-detail .aeen-blog-card-title a {
    color: inherit;
}

.aeen-blog-card .aeen-blog-card-detail .aeen-blog-card-meta-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.aeen-blog-card .aeen-blog-card-detail .aeen-blog-card-meta-container .aeen-blog-card-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    margin-left: 15px;
}

.aeen-blog-card .aeen-blog-card-detail .aeen-blog-card-meta-container .aeen-blog-card-meta:last-child {
    margin-left: 0;
}

.aeen-blog-card .aeen-blog-card-detail .aeen-blog-card-meta-container .aeen-blog-card-meta i {
    margin-left: 5px;
}

.aeen-blog-card .aeen-blog-card-detail .aeen-blog-card-meta-container .aeen-blog-card-meta a {
    color: inherit;
}

.aeen-post-card {
    -webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.05);
}

.aeen-post-card .aeen-post-card-thumbnail {
    margin-bottom: 15px;
    position: relative;
}

.aeen-post-card .aeen-post-card-thumbnail a {
    display: block;
    width: 100%;
    height: 330px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 2px solid transparent;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.aeen-post-card .aeen-post-card-detail {
    padding: 0 15px 15px;
}

.aeen-post-card .aeen-post-card-detail .aeen-post-card-detail-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 10px;
}

.aeen-post-card .aeen-post-card-detail .aeen-post-card-detail-title {
    margin-bottom: 0;
}

.aeen-post-card .aeen-post-card-detail .aeen-post-card-detail-title a {
    color: #363636;
    font-size: 18px;
    font-weight: 700;
}

.aeen-post-card .aeen-post-card-detail .aeen-post-card-detail-meta {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #959595;
}

.aeen-post-card .aeen-post-card-detail .aeen-post-card-detail-meta i {
    font-size: 18px;
    margin-left: 5px;
}

.aeen-post-card .aeen-post-card-detail .aeen-post-card-detail-meta a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: inherit;
    margin-left: 15px;
}

.aeen-post-card .aeen-post-card-detail .aeen-post-card-detail-meta a:last-child {
    margin-left: 0;
}

.aeen-post-card:hover .aeen-post-card-thumbnail a {
    border-color: #06703f;
    opacity: .9;
}

.remodal {
    font-family: IRANSansX;
    direction: rtl;
    text-align: right;
}

.remodal.remodal-lg {
    max-width: 992px;
}

.remodal.remodal-sm {
    max-width: 450px;
}

.remodal.remodal-xs {
    max-width: 350px;
}

.remodal-wrapper,
.remodal-overlay {
    z-index: 15;
}

.remodal-is-locked .select2-container {
    z-index: 100;
}

.pagination .page-item {
    margin-left: 10px;
}

.pagination .page-item:last-child {
    margin-left: 0;
}

.pagination .page-link {
    border: 0;
    width: 40px;
    height: 40px;
    line-height: 30px;
    border-radius: 50% !important;
    text-align: center;
    color: #939393;
}

.pagination .prev .page-link,
.pagination .next .page-link {
    background-color: #939393;
    color: #fff;
}

.pagination .active .page-link {
    background-color: transparent;
    color: #363636;
}

.progress {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    border-radius: 25rem;
    background-color: #d8d8d6;
}

.progress .progress-bar {
    background-color: #f7bc00;
}

.swiper-container .swiper-button-prev,
.swiper-container .swiper-button-next {
    width: 35px;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.swiper-container .swiper-button-prev::after,
.swiper-container .swiper-button-next::after {
    font-size: 18px;
    color: #fff;
}

.swiper-container .swiper-button-disabled {
    opacity: 0;
}

.swal2-container .swal2-popup {
    direction: rtl;
    border-radius: 0;
    font-family: IRANSansX;
}

.swal2-container .swal2-popup .swal2-styled {
    border-radius: 25rem;
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
}

.swal2-container .swal2-popup .swal2-confirm {
    background-color: #06703f !important;
}

.swal2-container .swal2-popup .swal2-cancel {
    background-color: #f16b72 !important;
}

.swal2-container .swal2-popup.swal2-toast {
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.swal2-container .swal2-popup.swal2-toast .swal2-timer-progress-bar {
    background-color: #06703f;
}

.aeen-search-filter-options-tab-content {
    position: relative;
}

.aeen-search-filter-options-tab-content .aeen-search-filter-option-content {
    display: none;
}

.aeen-search-filter-options-tab-content .aeen-search-filter-option-content.aeen-active-tab-content {
    display: block;
}

.aeen--page-header {
    position: relative;
    z-index: 1;
}

.aeen--page-header .aeen--page-header--top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 35px;
    padding-bottom: 15px;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 768px) {
    .aeen--page-header .aeen--page-header--top .aeen--user-options-container {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen--user-option {
    margin-left: 30px;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen--user-option:last-child {
    margin-left: 0;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen--user-option.cart {
    position: relative;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen--user-option.cart .aeen--user-option-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen--user-option.cart:hover .aeen-cart-items-container {
    opacity: 1;
    visibility: visible;
    top: 35px;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen--user-option.account {
    position: relative;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen--user-option.account .aeen--user-account-dropdown {
    position: absolute;
    top: 70px;
    background-color: #fff;
    border-radius: 7px;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    min-width: 250px;
    overflow: hidden;
    z-index: 101;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4s ease-in;
    transition: all .4s ease-in;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen--user-option.account .aeen--user-account-dropdown .aeen--user-account-dropdown-header {
    padding: 15px;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen--user-option.account .aeen--user-account-dropdown .aeen--user-account-dropdown-header .aeen--user-account-dropdown-header-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 10px;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen--user-option.account .aeen--user-account-dropdown .aeen--user-account-dropdown-header .aeen--user-account-dropdown-header-row:last-child {
    margin-bottom: 0;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen--user-option.account .aeen--user-account-dropdown .aeen--user-account-dropdown-header .avatar-container {
    position: relative;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen--user-option.account .aeen--user-account-dropdown .aeen--user-account-dropdown-header .avatar-container::after {
    content: "";
    position: absolute;
    right: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -15px;
    width: 1px;
    height: 15px;
    background-color: #ccc;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen--user-option.account .aeen--user-account-dropdown .aeen--user-account-dropdown-header .club-point-icon {
    display: inline-block;
    width: 50px;
    text-align: center;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen--user-option.account .aeen--user-account-dropdown .aeen--user-account-dropdown-header .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen--user-option.account .aeen--user-account-dropdown .aeen--user-account-dropdown-header .btn-link {
    color: #212121;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen--user-option.account .aeen--user-account-dropdown .aeen--user-account-dropdown-menu ul a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #212121;
    padding: 15px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen--user-option.account .aeen--user-account-dropdown .aeen--user-account-dropdown-menu ul a i {
    margin-left: 10px;
    font-size: 18px;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen--user-option.account .aeen--user-account-dropdown .aeen--user-account-dropdown-menu ul a:hover {
    background-color: #EBEBEB;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen--user-option.account:hover .aeen--user-account-dropdown {
    top: 50px;
    opacity: 1;
    visibility: visible;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen--user-option.menu {
    display: none;
}

@media (max-width: 768px) {
    .aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen--user-option {
        margin-left: 15px;
    }

    .aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen--user-option.menu {
        display: block;
    }
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen--user-option-btn {
    color: #000;
    font-size: 28px;
    position: relative;
}

@media (max-width: 450px) {
    .aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen--user-option-btn {
        font-size: 21px;
    }
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen--user-option-btn .aeen--user-option-btn-counter {
    position: absolute;
    right: 0;
    left: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    line-height: 18px;
    background-color: #0d6d3f;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen-cart-items-container {
    width: 350px;
    background-color: #fff;
    -webkit-box-shadow: 0px 20px 22px -14px rgba(15, 15, 15, 0.2);
    box-shadow: 0px 20px 22px -14px rgba(15, 15, 15, 0.2);
    position: absolute;
    top: 55px;
    right: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .1s ease;
    transition: all .1s ease;
    z-index: 100;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen-cart-items-container .aeen-cart-items-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: #F9F9F9;
    border-bottom: 1px solid #f5f5f5;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen-cart-items-container .aeen-cart-items-header .aeen-cart-items-count {
    color: #0d6d3f;
    font-size: 14px;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen-cart-items-container .aeen-cart-items-header .aeen-cart-link {
    color: #06703f;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen-cart-items-container .aeen-cart-items-header .aeen-cart-link::after {
    content: "\e931";
    font-family: 'iconsax';
    margin-right: 5px;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen-cart-items-container .aeen-cart-items .aeen-cart-item {
    padding: 10px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-bottom: 1px solid #f5f5f5;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen-cart-items-container .aeen-cart-items .aeen-cart-item:last-child {
    border-bottom: 0;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen-cart-items-container .aeen-cart-items .aeen-cart-item .aeen-cart-item-thumbnail {
    margin-left: 10px;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen-cart-items-container .aeen-cart-items .aeen-cart-item .aeen-cart-item-thumbnail a {
    display: inline-block;
    width: 70px;
    height: 70px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen-cart-items-container .aeen-cart-items .aeen-cart-item .aeen-cart-item-detail {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen-cart-items-container .aeen-cart-items .aeen-cart-item .aeen-cart-item-detail .aeen-cart-item-title {
    color: #000;
    font-weight: 700;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen-cart-items-container .aeen-cart-items .aeen-cart-item .aeen-cart-item-detail .aeen-cart-item-meta {
    font-size: 14px;
    font-weight: 500;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen-cart-items-container .aeen-cart-items .aeen-cart-item .aeen-cart-item-detail .aeen-cart-item-quantity {
    color: #4E4E4E;
    font-size: 14px;
    font-weight: 500;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen-cart-items-container .aeen-cart-items .aeen-cart-item .aeen-cart-item-remove {
    background-color: transparent;
    border: 0;
    outline: none;
    padding: 0;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen-cart-items-container .aeen-cart-items .aeen-cart-item .aeen-cart-item-remove::after {
    content: "\EB99";
    font-family: remixicon !important;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen-cart-items-container .aeen-cart-items-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: 1px solid #f5f5f5;
    padding: 10px 15px;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen-cart-items-container .aeen-cart-items-footer .aeen-cart-items-total {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.aeen--page-header .aeen--page-header--top .aeen--user-options-container .aeen-cart-items-container .aeen-cart-items-footer .aeen-cart-items-total .aeen-cart-items-total-label {
    font-size: 14px;
    font-weight: 700;
}

.aeen--page-header .aeen--page-header--top .aeen-brand-container {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .aeen--page-header .aeen--page-header--top .aeen-brand-container {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
}

.aeen--page-header .aeen--page-header--top .aeen-brand-container .aeen-brand {
    margin-right: 50px;
    margin-left: 50px;
    position: relative;
    top: -20px;
}

@media (max-width: 768px) {
    .aeen--page-header .aeen--page-header--top .aeen-brand-container .aeen-brand {
        margin-right: 10px;
        margin-left: 10px;
    }
}

.aeen--page-header .aeen--page-header--top .aeen-brand-container .aeen-brand img {
    width: 80px;
}

@media (max-width: 450px) {
    .aeen--page-header .aeen--page-header--top .aeen-brand-container .aeen-brand img {
        width: 50px;
    }
}

@media (max-width: 370px) {
    .aeen--page-header .aeen--page-header--top .aeen-brand-container .aeen-brand img {
        width: 50px;
    }
}

.aeen--page-header .aeen--page-header--top .aeen-search-container {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .aeen--page-header .aeen--page-header--top .aeen-search-container {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
}

.aeen--page-header .aeen--page-header--top .aeen-search-container a {
    color: #4E4E4E;
    margin-left: 20px;
}

.aeen--page-header .aeen--page-header--top .aeen-search-container .aeen-search-btn {
    background-color: transparent;
    border: 0;
    color: #000;
    padding: 0;
    font-size: 28px;
}

@media (max-width: 450px) {
    .aeen--page-header .aeen--page-header--top .aeen-search-container .aeen-search-btn {
        font-size: 21px;
    }
}

.aeen--page-header .aeen--nav {
    background-color: #F9F9F9;
    position: relative;
}

.aeen--page-header .aeen--nav ul.list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.aeen--page-header .aeen--nav ul.list .list-item {
    position: relative;
    margin-left: 25px;
}

.aeen--page-header .aeen--nav ul.list .list-item:last-child {
    margin-left: 0;
}

.aeen--page-header .aeen--nav ul.list .list-item > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #000;
    padding: 10px 0;
}

.aeen--page-header .aeen--nav ul.list li.category-list::before {
    content: '';
    position: absolute;
    right: 0;
    top: 100%;
    min-width: 1100px;
    min-height: 455px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.051);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.051);
    display: none;
}

.aeen--page-header .aeen--nav ul.list li.category-list > ul {
    width: 220px;
    min-height: 455px;
    position: absolute;
    right: 0;
    top: 100%;
    border-left: 1px solid #e0e0e0;
    display: none;
}

.aeen--page-header .aeen--nav ul.list li.category-list > ul > li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 45px;
    padding-right: 10px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    color: #000;
    font-size: 15px;
}

.aeen--page-header .aeen--nav ul.list li.category-list > ul > li.active > a {
    background-color: #f5f5f5;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}

.aeen--page-header .aeen--nav ul.list li.category-list > ul > li.active > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.aeen--page-header .aeen--nav ul.list li.category-list > ul > li > ul {
    width: 870px;
    height: 450px;
    overflow: hidden;
    position: absolute;
    right: 220px;
    top: 0;
    margin-right: 1px;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    max-height: 418px;
    display: none;
}

.aeen--page-header .aeen--nav ul.list li.category-list > ul > li > ul > li {
    padding-right: 10px;
    padding-left: 10px;
    min-width: 25%;
    max-width: 25%;
}

.aeen--page-header .aeen--nav ul.list li.category-list > ul > li > ul .sublist--title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 500;
    line-height: 35px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
}

.aeen--page-header .aeen--nav ul.list li.category-list > ul > li > ul .sublist--title a {
    color: inherit;
}

.aeen--page-header .aeen--nav ul.list li.category-list > ul > li > ul .sublist--title::after {
    content: "\EA63";
    font-family: remixicon !important;
    position: relative;
    left: -3px;
}

.aeen--page-header .aeen--nav ul.list li.category-list > ul > li > ul .sublist--item {
    color: #a6a6a6;
    font-size: 13px;
    line-height: 27px;
}

.aeen--page-header .aeen--nav ul.list li.category-list > ul > li > ul .sublist--item a {
    color: inherit;
}

.aeen--page-header .aeen--nav ul.list li.category-list:hover:before,
.aeen--page-header .aeen--nav ul.list li.category-list:hover > ul {
    display: block;
}

.aeen-search-box-container .aeen-search-box--content {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 550px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.03);
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.03);
    padding: 0 20px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    z-index: 12;
}

.aeen-search-box-container .aeen-search-box--content form {
    max-width: 800px;
    margin: 150px auto 0;
    position: relative;
}

.aeen-search-box-container .aeen-search-box--content form input {
    width: 100%;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #ccc;
    color: #000;
    line-height: 50px;
    padding-right: 35px;
    font-size: 18px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

.aeen-search-box-container .aeen-search-box--content form .search-icon {
    position: absolute;
    top: 50%;
    right: 0;
    color: #000;
    font-size: 18px;
    opacity: .4;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.aeen-search-box-container .aeen-search-box--content form button {
    position: absolute;
    left: 0;
    top: -100px;
    background-color: transparent;
    border: 0;
    padding: 0;
    font-size: 28px;
}

.aeen-search-box-container .aeen-search-box--content .aeen-search-result-container {
    max-width: 800px;
    margin: 15px auto 0;
    position: relative;
}

.aeen-search-box-container .aeen-search-box--content .aeen-search-result-container .aeen-most-searched {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.aeen-search-box-container .aeen-search-box--content .aeen-search-result-container .aeen-most-searched li {
    margin-left: 10px;
    margin-bottom: 5px;
}

.aeen-search-box-container .aeen-search-box--content .aeen-search-result-container .aeen-most-searched li:last-child {
    margin-left: 0;
}

.aeen-search-box-container .aeen-search-box--content .aeen-search-result-container .aeen-most-searched li a {
    display: inline-block;
    padding: 5px 15px;
    background-color: #f9f9f9;
    border-radius: 25rem;
    color: #363636;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.aeen-search-box-container .aeen-search-box--content .aeen-search-result-container .aeen-most-searched li a:hover {
    background-color: #06703f;
    color: #fff;
}

.aeen-search-box-container .aeen-search-box--content .aeen-search-result-container .aeen-search-result {
    max-height: 200px;
    overflow: auto;
}

.aeen-search-box-container .aeen-search-box--content .aeen-search-result-container .aeen-search-result li {
    margin-bottom: 5px;
}

.aeen-search-box-container .aeen-search-box--content .aeen-search-result-container .aeen-search-result li:last-child {
    margin-bottom: 0;
}

.aeen-search-box-container .aeen-search-box--content .aeen-search-result-container .aeen-search-result li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px;
    color: #363636;
    position: relative;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.aeen-search-box-container .aeen-search-box--content .aeen-search-result-container .aeen-search-result li a::before {
    content: "\ea44";
    font-family: 'iconsax';
    margin-left: 5px;
}

.aeen-search-box-container .aeen-search-box--content .aeen-search-result-container .aeen-search-result li a:hover {
    color: #06703f;
}

.aeen-search-box-container .aeen-search-box--content .aeen-search-result-container .search-result-not-found {
    text-align: center;
    padding: 15px 0;
}

.aeen-search-box-container .aeen-search-box--content .aeen-search-result-container .search-result-not-found .search-result-not-found-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.aeen-search-box-container .aeen-search-box--content .aeen-search-result-container .search-result-not-found .search-result-not-found-text {
    font-weight: 700;
}

.aeen-search-box-container .aeen-search-box--overlay {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
    transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    z-index: 11;
}

.aeen-search-box-container.show .aeen-search-box--content,
.aeen-search-box-container.show .aeen-search-box--overlay {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.aeen-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 84vw;
    background-color: #fff;
    padding-bottom: 60px;
    overflow-y: auto;
    z-index: 17;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
}

.aeen-navigation .aeen-navigation-header {
    padding: 10px 15px;
}

.aeen-navigation .aeen-navigation-header .aeen-navigation-header-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.aeen-navigation .aeen-navigation-header .aeen-navigation-header-top .aeen-close-navigation {
    background-color: transparent;
    border: 0;
    font-size: 21px;
    margin-left: 10px;
    padding: 0;
    height: 30px;
}

.aeen-navigation .aeen-navigation-body {
    padding: 10px 15px;
    position: relative;
}

.aeen-navigation .aeen-navigation-body .aeen-search {
    margin-bottom: 15px;
}

.aeen-navigation .aeen-navigation-body .aeen-search form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.aeen-navigation .aeen-navigation-body .aeen-search form input {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    border: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 40px;
}

.aeen-navigation .aeen-navigation-body .aeen-search form i {
    position: absolute;
    left: 0;
}

.aeen-navigation .aeen-navigation-body .aeen-menu li {
    margin-bottom: 5px;
}

.aeen-navigation .aeen-navigation-body .aeen-menu li:last-child {
    margin-bottom: 0;
}

.aeen-navigation .aeen-navigation-body .aeen-menu li:last-child a {
    border-top: 1px solid #eee;
}

.aeen-navigation .aeen-navigation-body .aeen-menu li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #000;
    font-weight: 500;
    border-top: 1px solid #eee;
    height: 50px;
}

.aeen-navigation .aeen-navigation-body .aeen-menu li a.aeen-toggle-submenu {
    position: relative;
}

.aeen-navigation .aeen-navigation-body .aeen-menu li a.aeen-toggle-submenu::after {
    content: "\EA64";
    font-family: remixicon !important;
    font-size: 18px;
    position: absolute;
    left: 0;
}

.aeen-navigation .aeen-navigation-body .aeen-menu li .aeen-submenu {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 84vw;
    background-color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 15px;
    -webkit-transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    z-index: 1;
}

.aeen-navigation .aeen-navigation-body .aeen-menu li .aeen-submenu .aeen-close-submenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #f5f5f5;
    padding: 10px;
    position: relative;
    font-size: 18px;
    font-weight: 500;
}

.aeen-navigation .aeen-navigation-body .aeen-menu li .aeen-submenu .aeen-close-submenu i {
    position: absolute;
    right: 10px;
}

.aeen-navigation .aeen-navigation-body .aeen-menu li .aeen-submenu li a {
    line-height: 30px;
}

.aeen-navigation .aeen-navigation-body .aeen-menu li .aeen-submenu li a.aeen-toggle-submenu {
    position: relative;
}

.aeen-navigation .aeen-navigation-body .aeen-menu li .aeen-submenu li a.aeen-toggle-submenu::after {
    content: "\EA64";
    font-family: remixicon !important;
    font-size: 18px;
    position: absolute;
    left: 0;
}

.aeen-navigation .aeen-navigation-body .aeen-menu li .aeen-submenu img {
    margin-left: 10px;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    width: 30px;
}

.aeen-navigation .aeen-navigation-body .aeen-menu li .aeen-submenu.toggle {
    right: 0;
}

.aeen-navigation.toggle {
    right: 0;
}

.aeen-navigation-overlay {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 16;
    display: none;
}

.aeen-cart-side-container {
    position: fixed;
    top: 0;
    left: -100%;
    bottom: 0;
    min-width: 1024px;
    max-width: 1024px;
    overflow-y: auto;
    background-color: #fff;
    z-index: 17;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

@media (max-width: 1024px) {
    .aeen-cart-side-container {
        min-width: 100%;
        max-width: 100%;
    }
}

.aeen-cart-side-container.show {
    left: 0;
}

.aeen-cart-side-container .aeen-cart-side-header .aeen-cart-side-btn-close-container {
    padding: 20px 40px;
}

@media (max-width: 768px) {
    .aeen-cart-side-container .aeen-cart-side-header .aeen-cart-side-btn-close-container {
        padding: 20px;
    }
}

.aeen-cart-side-container .aeen-cart-side-header .aeen-cart-side-btn-close-container .aeen-cart-side-btn-close {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #F1F1F1;
    border: 0;
    border-radius: 15px;
    color: #2D3136;
    width: 45px;
    height: 45px;
    font-size: 21px;
    outline: none;
}

.aeen-cart-side-container .aeen-cart-side-header .aeen-cart-side-detail-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #07703F;
    color: #fff;
    padding: 20px 40px;
}

@media (max-width: 768px) {
    .aeen-cart-side-container .aeen-cart-side-header .aeen-cart-side-detail-container {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 20px;
    }

    .aeen-cart-side-container .aeen-cart-side-header .aeen-cart-side-detail-container .aeen-cart-side-detail-action {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin-top: 15px;
    }
}

.aeen-cart-side-container .aeen-cart-side-header .aeen-cart-side-detail-container .aeen-cart-side-detail-icon {
    margin-left: 10px;
    font-size: 28px;
    line-height: 0;
}

.aeen-cart-side-container .aeen-cart-side-header .aeen-cart-side-detail-container .btn-link {
    color: #fff;
    text-decoration: none;
}

.aeen-cart-side-container .aeen-cart-side-header .aeen-cart-side-detail-container .aeen-cart-total {
    color: #F7BC00;
    font-size: 24px;
    font-weight: 900;
}

.aeen-cart-side-container .aeen-cart-side-footer {
    max-width: 400px;
    margin: auto;
    color: #C9C9C9;
    line-height: 30px;
    text-align: center;
}

.aeen-cart-side-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 20px 40px;
}

@media (max-width: 768px) {
    .aeen-cart-side-content {
        padding: 20px;
    }
}

.aeen-cart-side-content .aeen-cart-side-content-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.aeen-cart-side-content .aeen-cart-side-content-title i {
    margin-left: 10px;
    font-size: 28px;
}

.aeen-cart-side-content .aeen-cart-side-content-title span {
    font-size: 18px;
    font-weight: 700;
}

.aeen-cart-side-content .aeen-cart-side-content-title .aeen-cart-item-gift-card-price-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 768px) {
    .aeen-cart-side-content .aeen-cart-side-content-title .aeen-cart-item-gift-card-price-container {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin-top: 15px;
    }
}

.aeen-cart-side-content .aeen-cart-side-content-title .aeen-cart-item-gift-card-price-container .aeen-cart-item-gift-card-price {
    font-weight: 700;
    font-size: 24px;
    color: #07703F;
    margin-left: 10px;
}

.aeen-cart-side-content .aeen-cart-side-content-title .aeen-cart-item-gift-card-price-container .aeen-cart-item-gift-card-price-label {
    font-size: 17px;
    font-weight: 500;
}

.aeen-cart-side-content .aeen-cart-side-box-items-container {
    -webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.05);
    padding: 50px 60px 20px;
    position: relative;
}

@media (max-width: 768px) {
    .aeen-cart-side-content .aeen-cart-side-box-items-container {
        padding: 50px 25px 20px;
    }
}

.aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-box-items-remove {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #07703F;
    border: 0;
    border-radius: 0 0 25px 0;
    padding: 5px 20px 5px 10px;
}

.aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-box-items-remove span {
    color: #fff;
    margin-right: 5px;
    margin-left: 5px;
}

.aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-box-items-remove i {
    color: #46A478;
    margin-right: 5px;
}

.aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 45px;
    position: relative;
}

.aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item {
        border-bottom: 1px solid #8C8C8C;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item .aeen-cart-side-remove-item-container {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 10001;
}

.aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item .aeen-cart-side-remove-item-container .title {
    font-weight: 700;
    margin-bottom: 10px;
}

.aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item .aeen-cart-side-remove-item-container .action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item .aeen-cart-side-remove-item-container .action .btn {
    margin-left: 15px;
}

.aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item .aeen-cart-side-remove-item-container .action .btn:last-child {
    margin-left: 0;
}

.aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item .aeen-cart-side-remove-item-container.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item .aeen-cart-side-item-detail-container {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-left: 2px solid #8C8C8C;
    padding-left: 20px;
}

@media (max-width: 768px) {
    .aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item .aeen-cart-side-item-detail-container {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        border-left: 0;
    }
}

.aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item .aeen-cart-side-item-detail-container .aeen-cart-side-item-detail-thumbnail {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
}

.aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item .aeen-cart-side-item-detail-container .aeen-cart-side-item-detail-thumbnail a {
    display: block;
}

.aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item .aeen-cart-side-item-detail-container .aeen-cart-side-item-detail-thumbnail img {
    max-width: 100%;
}

.aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item .aeen-cart-side-item-detail-container .aeen-cart-side-item-detail {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    padding-right: 15px;
    padding-left: 15px;
    overflow: hidden;
}

.aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item .aeen-cart-side-item-detail-container .aeen-cart-side-item-detail .aeen-cart-side-item-detail-title {
    font-size: 21px;
    font-weight: 700;
    color: #363636;
    margin-bottom: 10px;
}

.aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item .aeen-cart-side-item-detail-container .aeen-cart-side-item-detail .aeen-cart-side-item-detail-title a {
    color: inherit;
}

.aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item .aeen-cart-side-item-detail-container .aeen-cart-side-item-detail .aeen-cart-side-item-detail-title-en {
    text-transform: uppercase;
    font-family: AdobeClean;
    font-weight: 600;
    color: #747474;
    position: relative;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item .aeen-cart-side-item-detail-container .aeen-cart-side-item-detail .aeen-cart-side-item-detail-title-en {
        margin-bottom: 25px;
    }
}

.aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item .aeen-cart-side-item-detail-container .aeen-cart-side-item-detail .aeen-cart-side-item-detail-title-en::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 65%;
    height: 2px;
    background-color: #E5E5E5;
}

.aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item .aeen-cart-side-item-price-container {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 230px;
    flex: 0 0 230px;
    padding-right: 10px;
}

@media (max-width: 768px) {
    .aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item .aeen-cart-side-item-price-container {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item .aeen-cart-side-item-price-container > div {
        width: auto;
    }
}

.aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item .aeen-cart-side-item-price-container .aeen-select-quantity-container {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 200px;
}

.aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item .aeen-cart-side-item-price-container .aeen-select-quantity-container .form-select {
    width: auto;
    -webkit-font-feature-settings: "ss02";
    font-feature-settings: "ss02";
    font-family: IRANSansX;
    background-color: transparent;
    border: 0;
}

.aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item .aeen-cart-side-item-price-container .aeen-product-price-old-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item .aeen-cart-side-item-price-container .aeen-product-price-old-container .aeen-product-discount {
    background-color: #f7bc00;
    color: #353736;
    padding-right: 5px;
    padding-left: 5px;
}

.aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item .aeen-cart-side-item-price-container .aeen-product-price-old-container .aeen-product-price-old {
    color: #f16b72;
    margin-right: 5px;
    font-size: 18px;
}

.aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item .aeen-cart-side-item-price-container .aeen-cart-side-item-price {
    font-size: 32px;
    font-weight: 800;
    color: #363636;
    margin-top: 15px;
    margin-bottom: 15px;
}

.aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item .aeen-cart-side-item-price-container .aeen-cart-side-item-remove-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.aeen-cart-side-content .aeen-cart-side-box-items-container .aeen-cart-side-item .aeen-cart-side-item-price-container .aeen-cart-side-item-remove-container .aeen-cart-side-item-btn-remove {
    background-color: transparent;
    border: 0;
    color: #A2A2A2;
    font-size: 32px;
}

.aeen-cart-side-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer;
    z-index: 12;
}

.aeen-cart-side-overlay.show {
    left: 0;
}

.aeen-banner-club-container {
    background-color: #f3f3f3;
    padding: 100px;
    margin-top: 100px;
}

@media (max-width: 768px) {
    .aeen-banner-club-container {
        padding: 25px;
    }
}

.aeen-banner-club-container .aeen-banner-club-title {
    font-size: 28px;
    font-weight: 700;
    color: #363636;
    margin-bottom: 20px;
}

.aeen-banner-club-container .aeen-banner-club-title .aeen-brand {
    color: #f16b72;
    font-weight: 800;
}

.aeen-banner-club-container .aeen-banner-club-url {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: #363636;
    font-weight: 600;
}

.aeen-banner-club-container .aeen-banner-club-url::after {
    content: "\e92f";
    font-family: 'iconsax' !important;
    margin-right: 5px;
}

.aeen-special-banner {
    padding: 30px 20px;
}

.aeen-special-banner .aeen-special-banner-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 992px) {
    .aeen-special-banner .aeen-special-banner-row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .aeen-special-banner .aeen-special-banner-row .aeen-special-banner-detail {
        min-width: 700;
    }
}

.aeen-special-banner .aeen-special-banner-title {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
}

.aeen-special-banner .aeen-special-banner-desc {
    font-size: 13px;
    line-height: 30px;
    padding-left: 15px;
}

.aeen-special-banner .aeen-special-banner-thumbnail {
    min-width: 200px;
}

.aeen-special-banner .both-divider {
    border-right: 1px dashed #fff;
    border-left: 1px dashed #fff;
}

.aeen-special-banner .right-divider {
    border-right: 1px dashed #fff;
}

.aeen-special-banner.aeen-special-banner-warning {
    background-color: #FCAD00;
}

.aeen-special-banner.aeen-special-banner-warning .aeen-special-banner-title,
.aeen-special-banner.aeen-special-banner-warning .aeen-special-banner-desc {
    color: #fff;
}

.aeen-special-banner.aeen-special-banner-danger {
    background-color: #F84B53;
}

.aeen-special-banner.aeen-special-banner-danger .aeen-special-banner-title,
.aeen-special-banner.aeen-special-banner-danger .aeen-special-banner-desc {
    color: #fff;
}

.aeen-special-banner.aeen-special-banner-success {
    background-color: #0D6D3F;
}

.aeen-special-banner.aeen-special-banner-success .aeen-special-banner-title,
.aeen-special-banner.aeen-special-banner-success .aeen-special-banner-desc {
    color: #fff;
}

.banner-img a {
    display: block;
}

.banner-img img {
    max-width: 100%;
}

.aeen-product-title h1 {
    font-size: 34px;
    font-weight: 800;
    color: #363636;
}

.aeen-product-title .aeen-product-title-en {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-family: AdobeClean;
    font-size: 18px;
    text-transform: uppercase;
    color: #747474;
}

.aeen-product-title .aeen-product-title-en .aeen-divider {
    display: inline-block;
    width: 60px;
    height: 12px;
    position: relative;
    top: 5px;
    background-color: #f16b72;
    margin-right: 50px;
}

.aeen-product-title-option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #363636;
    font-size: 18px;
    font-weight: 700;
}

.aeen-product-title-option i {
    font-size: 21px;
    margin-left: 5px;
}

.aeen-select-option-slider-container {
    position: relative;
}

.aeen-select-option-slider-container .swiper-wrapper {
    padding: 10px 0;
}

.aeen-select-option-slider-container .swiper-slide {
    height: 150px;
    padding-right: 10px;
    padding-left: 10px;
}

.aeen-select-option-slider-container .aeen-select-option-slider-prev,
.aeen-select-option-slider-container .aeen-select-option-slider-next {
    width: 35px;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10;
}

.aeen-select-option-slider-container .aeen-select-option-slider-prev::after,
.aeen-select-option-slider-container .aeen-select-option-slider-next::after {
    font-family: 'iconsax';
    font-size: 18px;
    color: #fff;
}

.aeen-select-option-slider-container .aeen-select-option-slider-prev.swiper-button-disabled,
.aeen-select-option-slider-container .aeen-select-option-slider-next.swiper-button-disabled {
    opacity: 0;
    visibility: hidden;
}

.aeen-select-option-slider-container .aeen-select-option-slider-prev {
    right: 20px;
    left: auto;
}

.aeen-select-option-slider-container .aeen-select-option-slider-prev::after {
    content: "\e936";
}

.aeen-select-option-slider-container .aeen-select-option-slider-next {
    left: 20px;
    right: auto;
}

.aeen-select-option-slider-container .aeen-select-option-slider-next::after {
    content: "\e931";
}

.aeen-product-price {
    font-size: 26px;
    font-weight: 800;
}

.aeen-product-price .aeen-product-price-old-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    font-size: 14px;
    font-weight: 700;
}

.aeen-product-price .aeen-product-price-old-container .aeen-product-discount {
    background-color: #f7bc00;
    color: #353736;
    padding-right: 5px;
    padding-left: 5px;
}

.aeen-product-price .aeen-product-price-old-container .aeen-product-price-old {
    color: #f16b72;
    margin-right: 5px;
    font-size: 18px;
}

.aeen-product-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.aeen-product-action .add-to-whishlist.added {
    background-color: #f16b72;
    color: #fff;
}

.aeen-product-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    word-spacing: -5px;
    color: #949494;
}

.aeen-product-meta i {
    margin-left: 10px;
    font-size: 21px;
}

.aeen-tab--slider .tab-pane {
    position: relative;
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    padding: 45px;
}

.aeen-tab--slider .aeen-5-col-slider-prev,
.aeen-tab--slider .aeen-5-col-slider-next {
    width: 35px;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10;
}

.aeen-tab--slider .aeen-5-col-slider-prev::after,
.aeen-tab--slider .aeen-5-col-slider-next::after {
    font-family: 'iconsax';
    font-size: 18px;
    color: #fff;
}

.aeen-tab--slider .aeen-5-col-slider-prev.swiper-button-disabled,
.aeen-tab--slider .aeen-5-col-slider-next.swiper-button-disabled {
    opacity: 0;
    visibility: hidden;
}

.aeen-tab--slider .aeen-5-col-slider-prev {
    right: 20px;
    left: auto;
}

.aeen-tab--slider .aeen-5-col-slider-prev::after {
    content: "\e936";
}

.aeen-tab--slider .aeen-5-col-slider-next {
    left: 20px;
    right: auto;
}

.aeen-tab--slider .aeen-5-col-slider-next::after {
    content: "\e931";
}

.aeen-section-features .aeen-features {
    padding-right: 40px;
}

.aeen-section-features .aeen-features div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 30px;
    margin-bottom: 15px;
}

.aeen-section-features .aeen-features div:last-child {
    margin-bottom: 0;
}

.aeen-section-features .aeen-features div i {
    margin-left: 5px;
}

.aeen-product-description {
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    padding: 45px;
}

@media (max-width: 768px) {
    .aeen-product-description {
        padding: 20px;
    }
}

.aeen-product-description .aeen-product-attributes .aeen-product-attributes-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 5px;
    padding: 5px 10px;
    -webkit-font-feature-settings: "ss02";
    font-feature-settings: "ss02";
    font-family: IRANSansX;
}

.aeen-product-description .aeen-product-attributes .aeen-product-attributes-row div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.aeen-product-description .aeen-product-attributes .aeen-product-attributes-row div i {
    margin-left: 5px;
}

.aeen-product-description .aeen-product-attributes .aeen-product-attributes-row div:first-child {
    min-width: 150px;
    border-left: 1px solid #e8e8e8;
}

@media (max-width: 768px) {
    .aeen-product-description .aeen-product-attributes .aeen-product-attributes-row div:first-child {
        min-width: 100%;
        margin-bottom: 10px;
        font-weight: 600;
        border-left: 0;
    }
}

.aeen-product-description .aeen-product-attributes .aeen-product-attributes-row div:last-child {
    padding-right: 10px;
}

@media (max-width: 768px) {
    .aeen-product-description .aeen-product-attributes .aeen-product-attributes-row div:last-child {
        padding-right: 20px;
    }
}

.aeen-product-description .aeen-product-attributes .aeen-product-attributes-row:last-child {
    margin-bottom: 0;
}

.aeen-product-description .aeen-product-attributes .aeen-product-attributes-row:nth-child(even) {
    background-color: #f6f6f6;
}

.aeen-product-ratings-container {
    border-left: 1px solid #363636;
    padding-left: 30px;
}

.aeen-product-ratings-container .aeen-product-ratings-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.aeen-product-ratings-container .aeen-product-ratings-detail .aeen-product-ratings-info {
    color: #393834;
    font-size: 13px;
    font-weight: 600;
}

.aeen-product-ratings-container .aeen-product-ratings-detail .aeen-product-ratings-average-stars {
    color: #363636;
    font-size: 26px;
    font-weight: 900;
    margin-right: 5px;
    margin-left: 5px;
}

.aeen-product-ratings-container .aeen-product-ratings-detail .aeen-product-ratings-label {
    color: #363636;
    font-size: 15px;
    font-weight: 800;
}

.aeen-product-ratings-container .aeen-product-comment-club {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.aeen-product-ratings-container .aeen-product-comment-club i {
    margin-left: 5px;
    font-size: 21px;
}

.aeen-product-ratings-container .aeen-product-comment-club span span:first-child {
    font-weight: 700;
    font-size: 18px;
}

.aeen-product-ratings-container .aeen-product-comment-club span span:last-child {
    font-size: 14px;
}

.aeen-product-comments-container .aeen-product-comments-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
}

.aeen-product-comments-list .aeen-product-comment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    background-color: #f5f5f5;
    padding: 15px;
    margin-bottom: 15px;
}

@media (max-width: 480px) {
    .aeen-product-comments-list .aeen-product-comment {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: relative;
    }
}

.aeen-product-comments-list .aeen-product-comment:last-child {
    margin-bottom: 0;
}

.aeen-product-comments-list .aeen-product-comment .author-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-left: 15px;
}

.aeen-product-comments-list .aeen-product-comment .aeen-product-comment-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
}

@media (max-width: 480px) {
    .aeen-product-comments-list .aeen-product-comment .aeen-product-comment-detail {
        position: absolute;
        top: 20px;
        right: 140px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .aeen-product-comments-list .aeen-product-comment .aeen-product-comment-detail div {
        margin-bottom: 5px;
    }

    .aeen-product-comments-list .aeen-product-comment .aeen-product-comment-detail div:last-child {
        margin-bottom: 0;
    }
}

.aeen-product-comments-list .aeen-product-comment .aeen-product-comment-detail .author-fullname {
    font-size: 18px;
    font-weight: 700;
    margin-left: 25px;
}

.aeen-product-comments-list .aeen-product-comment .aeen-product-comment-detail .comment-date {
    color: #979797;
    margin-left: 20px;
}

.aeen-product-comments-list .aeen-product-comment .aeen-product-comment-detail .comment-label {
    background-color: #dbdbdb;
    border-radius: 25rem;
    padding: 5px 15px;
    color: #686868;
}

.aeen-product-comments-list .aeen-product-comment .progress {
    min-width: 150px;
}

.aeen-product-comments-list .aeen-product-comment .aeen-product-comment-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

.aeen-product-comments-list .aeen-product-comment .aeen-product-comment-text p {
    color: #8d8d8d;
    line-height: 30px;
}

.aeen-product-comments-list .aeen-product-comment .aeen-product-comment-images {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    text-align: left;
}

.aeen-product-comments-list .aeen-product-comment .aeen-product-comment-images img {
    width: 80px;
    display: inline-block;
    margin-bottom: 10px;
}

.aeen-product-comments-list .aeen-product-comment .aeen-product-comment-images img:last-child {
    margin-left: 0;
}

@media (max-width: 1100px) {
    .aeen-product-comments-list .aeen-product-comment .aeen-product-ratings-container {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin-top: 10px;
        padding-left: 0;
    }
}

.aeen-product-slider-container {
    position: relative;
}

.aeen-product-slider-container::before, .aeen-product-slider-container::after {
    content: '';
    position: absolute;
    display: none;
}

.aeen-product-slider-container::before {
    width: 120px;
    height: 120px;
    background-color: #f16b72;
    top: 40px;
    right: -20px;
}

.aeen-product-slider-container::after {
    width: 80px;
    height: 80px;
    background-color: #f16b72;
    bottom: 70px;
    left: -20px;
}

.aeen-product-slider-container.aeen-section-without-pattern::before, .aeen-product-slider-container.aeen-section-without-pattern::after {
    display: none;
}

.aeen-send-comment-container .aeen-send-comment-author {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 35px;
}

.aeen-send-comment-container .aeen-send-comment-rules-container {
    border-left: 1px solid #e1e1e1;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 15px;
}

.aeen-send-comment-container .aeen-send-comment-rules-container .aeen-send-comment-rules-title {
    color: #06703f;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 35px;
}

.aeen-send-comment-container .aeen-send-comment-rules-container .aeen-send-comment-rules {
    padding-right: 20px;
}

.aeen-send-comment-container .aeen-send-comment-rules-container .aeen-send-comment-rules ul li {
    line-height: 30px;
    color: #363636;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.aeen-send-comment-container .aeen-send-comment-rules-container .aeen-send-comment-rules ul li:last-child {
    margin-bottom: 0;
}

.aeen-send-comment-container .aeen-send-comment-rules-container .aeen-send-comment-rules ul li span {
    margin-left: 5px;
}

.aeen-send-comment-container .aeen-send-comment-star-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.aeen-send-comment-container .aeen-send-comment-star-container .aeen-send-comment-star-label {
    color: #363636;
    font-size: 18px;
    font-weight: 800;
    position: relative;
    top: 5px;
}

.aeen-send-comment-container .aeen-send-comment-star-container .aeen-send-comment-star {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
}

.aeen-send-comment-container .aeen-send-comment-star-container .aeen-send-comment-star .aeen-send-comment-star-value-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin: 10px;
}

.aeen-send-comment-container .aeen-send-comment-star-container .aeen-send-comment-star .aeen-send-comment-star-value-container .aeen-send-comment-star-value {
    color: #363636;
    font-size: 23px;
    font-weight: 800;
    margin-left: 5px;
}

.aeen-send-comment-container .aeen-send-comment-star-container .aeen-send-comment-star .aeen-send-comment-star-value-container .aeen-send-comment-star-value-label {
    font-size: 14px;
    font-weight: 700;
}

.aeen-send-comment-form-note {
    color: #363636;
    font-weight: 600;
    word-spacing: -1px;
}

.aeen-send-comment-form-note a {
    color: #06703f;
    text-decoration: underline;
}

.aeen-product-not-available-container {
    border: 4px solid #F0F0F0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}

@media (max-width: 768px) {
    .aeen-product-not-available-container {
        padding: 35px 10px;
    }
}

.aeen-product-not-available-container .aeen-product-not-available-title {
    color: #363636;
    font-size: 21px;
    font-weight: 700;
    text-align: center;
}

.aeen-product-not-available-container .aeen-product-not-available-text {
    text-align: center;
    color: #363636;
    margin-top: 30px;
    margin-bottom: 30px;
}

.aeen-product-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 10px;
    z-index: 10;
}

.aeen-product-options ul {
    background-color: #fff;
    border: 1px solid #efefef;
    border-radius: 25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.aeen-product-options ul li {
    position: relative;
}

.aeen-product-options ul li:last-child::after {
    display: none;
}

.aeen-product-options ul li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background-color: #efefef;
}

.aeen-product-options ul li a {
    color: #363636;
    font-size: 21px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 15px;
}

.aeen-blog-desc {
    font-size: 14px;
    color: #262626;
}

.aeen-blog-slider-container .swiper-button-next,
.aeen-blog-slider-container .swiper-button-prev {
    top: unset;
    bottom: 35px;
}

.aeen-blog-slider-container .swiper-button-next {
    right: auto;
    left: 30px;
}

.aeen-blog-slider-container .swiper-button-prev {
    right: auto;
    left: 70px;
}

.aeen-gallery-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.aeen-gallery-container .aeen-gallery-slider-thumbs-container {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    margin-left: 10px;
    position: relative;
}

@media (max-width: 660px) {
    .aeen-gallery-container .aeen-gallery-slider-thumbs-container {
        display: none;
    }
}

.aeen-gallery-container .aeen-gallery-slider-thumbs {
    height: 470px;
}

@media (max-width: 660px) {
    .aeen-gallery-container .aeen-gallery-slider-thumbs {
        height: unset;
    }
}

.aeen-gallery-container .aeen-gallery-slider-thumbs .swiper-slide {
    height: 33.3 !important;
}

.aeen-gallery-container .aeen-gallery-slider-thumbs .aeen-gallery-slider-thumb {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transition: all .1s ease;
    transition: all .1s ease;
}

.aeen-gallery-container .aeen-gallery-slider-thumbs .aeen-gallery-slider-thumb:hover {
    border: 1px solid #000;
    opacity: .8;
}

.aeen-gallery-container .aeen-gallery-slider {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    /*height: 620px;*/
    overflow: hidden;
    position: relative;
}

@media (max-width: 660px) {
    .aeen-gallery-container .aeen-gallery-slider {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        height: unset;
    }
}

.aeen-gallery-container .aeen-gallery-slider .aeen-product-available {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #06703f;
    border-radius: 0 0 0 20px;
    color: #fff;
    padding: 7px 10px 7px 15px;
    font-size: 14px;
    z-index: 2;
}

.aeen-gallery-container .aeen-gallery-slider .aeen-product-available i {
    margin-left: 5px;
}

.aeen-gallery-container .aeen-gallery-slider img {
    max-width: 100%;
}

.aeen-gallery-container .aeen-gallery-slider-thumbs-prev,
.aeen-gallery-container .aeen-gallery-slider-thumbs-next {
    width: 35px;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    position: absolute;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 10;
}

.aeen-gallery-container .aeen-gallery-slider-thumbs-prev::after,
.aeen-gallery-container .aeen-gallery-slider-thumbs-next::after {
    font-family: 'iconsax';
    font-size: 18px;
    color: #fff;
}

.aeen-gallery-container .aeen-gallery-slider-thumbs-prev.swiper-button-disabled,
.aeen-gallery-container .aeen-gallery-slider-thumbs-next.swiper-button-disabled {
    opacity: 0;
    visibility: hidden;
}

.aeen-gallery-container .aeen-gallery-slider-thumbs-prev {
    top: -15px;
    right: 50%;
    left: 0;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
}

.aeen-gallery-container .aeen-gallery-slider-thumbs-prev::after {
    content: "\e940";
}

.aeen-gallery-container .aeen-gallery-slider-thumbs-next {
    bottom: 135px;
    right: 50%;
    left: 0;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
}

.aeen-gallery-container .aeen-gallery-slider-thumbs-next::after {
    content: "\e92d";
}

.aeen-gallery-container .swiper-pagination {
    right: 0;
    left: 0 !important;
    bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100% !important;
    -webkit-transform: unset !important;
    transform: unset !important;
}

.aeen-gallery-container .swiper-pagination .swiper-pagination-bullet {
    margin-left: 3px;
    border-radius: 10px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.aeen-gallery-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 35px;
    background-color: #fff;
}

.aeen-special-offer-container {
    background-color: #e9e9e9;
    border-radius: 60px;
    margin-top: 100px;
    margin-bottom: 100px;
}

.aeen-special-offer-container .aeen-special-offer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 95%;
    background-color: #ffc801;
    border-radius: 60px;
    padding: 35px 65px;
}

.aeen-special-offer-container .aeen-special-offer .aeen-special-offer-detail-container {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
}

@media (max-width: 768px) {
    .aeen-special-offer-container .aeen-special-offer .aeen-special-offer-detail-container {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}

.aeen-special-offer-container .aeen-special-offer .aeen-special-offer-detail-container .aeen-special-offer-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 32px;
    font-weight: 900;
    color: #fe2c2b;
    margin-bottom: 20px;
}

.aeen-special-offer-container .aeen-special-offer .aeen-special-offer-detail-container .aeen-special-offer-title i {
    margin-left: 10px;
}

.aeen-special-offer-container .aeen-special-offer .aeen-special-offer-detail-container .aeen-special-offer-detail-title {
    color: #162232;
    font-size: 21px;
    font-weight: 700;
    word-spacing: -1px;
    margin-bottom: 15px;
}

.aeen-special-offer-container .aeen-special-offer .aeen-special-offer-detail-container .aeen-special-offer-detail-title a {
    color: inherit;
}

.aeen-special-offer-container .aeen-special-offer .aeen-special-offer-detail-container .aeen-special-offer-detail-desc {
    color: #3d381b;
    line-height: 30px;
    width: 70%;
    text-align: justify;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .aeen-special-offer-container .aeen-special-offer .aeen-special-offer-detail-container .aeen-special-offer-detail-desc {
        width: 100%;
    }
}

.aeen-special-offer-container .aeen-special-offer .aeen-special-offer-detail-container .aeen-special-offer-url {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #162232;
    font-weight: 600;
}

.aeen-special-offer-container .aeen-special-offer .aeen-special-offer-detail-container .aeen-special-offer-url i {
    margin-right: 5px;
}

.aeen-special-offer-container .aeen-special-offer .aeen-special-offer-img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
}

@media (max-width: 768px) {
    .aeen-special-offer-container .aeen-special-offer .aeen-special-offer-img {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}

.aeen-special-offer-container .aeen-special-offer .aeen-special-offer-img img {
    max-width: 100%;
}

.aeen-for-gifts-container {
    position: relative;
}

.aeen-for-gifts-container::before, .aeen-for-gifts-container::after {
    content: '';
    position: absolute;
    z-index: -1;
}

.aeen-for-gifts-container::before {
    width: 80px;
    height: 160px;
    background-color: #f16b72;
    top: 100px;
    right: -20px;
}

.aeen-for-gifts-container::after {
    width: 80px;
    height: 80px;
    background-color: #f16b72;
    bottom: 90px;
    left: -20px;
}

.aeen-for-gifts-container .aeen-gifts-4 .aeen-product-card {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}

.aeen-for-gifts-container .aeen-gifts-4 .aeen-product-card .aeen-product-card-thumbnail a {
    height: 250px;
}

.aeen-for-gifts-container .aeen-gifts-1 .aeen-product-card {
    position: relative;
}

.aeen-for-gifts-container .aeen-gifts-1 .aeen-product-card .aeen-product-card-thumbnail a {
    height: 630px;
    position: relative;
}

@media (max-width: 576px) {
    .aeen-for-gifts-container .aeen-gifts-1 .aeen-product-card .aeen-product-card-thumbnail a {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .aeen-for-gifts-container .aeen-gifts-1 .aeen-product-card .aeen-product-card-thumbnail a {
        height: 300px;
    }
}

.aeen-for-gifts-container .aeen-gifts-1 .aeen-product-card .aeen-product-card-thumbnail a::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: black;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, rgba(19, 25, 31, 0)), color-stop(105%, #000));
    background: linear-gradient(180deg, rgba(19, 25, 31, 0) 60%, #000 105%);
    display: none;
}

.aeen-for-gifts-container .aeen-gifts-1 .aeen-product-card .aeen-product-card-detail {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 35px;
}

.aeen-for-gifts-container .aeen-gifts-1 .aeen-product-card .aeen-product-card-detail .aeen-product-card-detail-title a {
    color: #fff;
}

.aeen-for-gifts-container .aeen-gifts-1 .aeen-product-card .aeen-product-card-detail .aeen-product-card-detail-price-now {
    background-color: transparent;
}

.aeen-for-gifts-container .aeen-gifts-1 .aeen-product-card .aeen-select-color-container .aeen-form-radio--input:checked + .aeen-form-radio--color-container::after {
    border-color: #fff;
}

.aeen-products-introduction-container .aeen-products-introduction-thumbnail img {
    max-width: 100%;
    display: block;
    margin: auto;
}

@media (max-width: 576px) {
    .aeen-products-introduction-container .aeen-products-introduction-thumbnail img {
        max-width: 70%;
    }
}

.aeen-products-introduction-container .aeen-products-introduction-title {
    font-size: 28px;
    font-weight: 800;
    color: #363636;
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.aeen-products-introduction-container .aeen-products-introduction-title::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    height: 2px;
    background-color: #363636;
}

.aeen-products-introduction-container .aeen-products-introduction-desc {
    color: #363636;
    width: 50%;
    margin-bottom: 25px;
}

@media (max-width: 576px) {
    .aeen-products-introduction-container .aeen-products-introduction-desc {
        width: 100%;
    }
}

.aeen-products-introduction-container .aeen-products-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.aeen-products-introduction-container .aeen-products-images img {
    max-width: 100%;
}

.aeen-products-introduction-container .aeen-products-introduction-label {
    line-height: 44px;
}

.aeen-products-introduction-container .aeen-products-introduction-video {
    height: 100%;
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #363636;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}

.aeen-products-introduction-container .aeen-products-introduction-video::after {
    content: "\eb74";
    font-family: 'iconsax' !important;
    font-size: 62px;
}

.aeen-points-to-discounts {
    position: relative;
    padding: 150px 0;
}

.aeen-points-to-discounts::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-image: url(../images/theme/points-to-discounts-pattern.svg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.aeen-points-to-discounts .aeen-points-to-discounts-slider {
    height: 410px;
}

.aeen-points-to-discounts .aeen-points-to-discounts-slider .swiper-slide {
    height: calc((100% - 30px) / 2);
}

.aeen-points-to-discounts .aeen-points-to-discounts-slider .aeen-points-to-discounts-slider-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    top: -20px;
}

.aeen-points-to-discounts .aeen-points-to-discounts-slider .aeen-points-to-discounts-slider-navigation > div {
    position: relative;
    margin-left: 25px;
}

.aeen-points-to-discounts .aeen-points-to-discounts-slider .aeen-points-to-discounts-slider-navigation > div:last-child {
    margin-left: 0;
}

.aeen-points-to-discounts .aeen-points-to-discounts-slider .aeen-points-to-discounts-slider-navigation > div.swiper-button-disabled {
    opacity: .7;
}

.aeen-points-to-discounts .points-to-discounts-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #fff;
    padding: 15px;
    min-height: 150px;
    margin: 10px;
}

.aeen-points-to-discounts .points-to-discounts-item .discount {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #EBEBEB;
    border-radius: 45px 0 0 0;
    color: #363636;
    cursor: default;
    -webkit-transition: all .1s ease;
    transition: all .1s ease;
}

.aeen-points-to-discounts .points-to-discounts-item .discount .value {
    font-size: 52px;
    font-weight: 800;
}

.aeen-points-to-discounts .points-to-discounts-item .discount .label {
    font-size: 28px;
}

.aeen-points-to-discounts .points-to-discounts-item .detail {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 15px;
}

.aeen-points-to-discounts .points-to-discounts-item .detail .title {
    display: block;
    color: #363636;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 5px;
}

.aeen-points-to-discounts .points-to-discounts-item .detail .countdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.aeen-points-to-discounts .points-to-discounts-item .detail .countdown .countdown-label {
    margin-left: 15px;
    color: #B8B8B8;
}

.aeen-points-to-discounts .points-to-discounts-item .detail .countdown .countdown-timer {
    color: #7B7B7B;
}

.aeen-points-to-discounts .points-to-discounts-item .detail .points {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #F7BC00;
}

.aeen-points-to-discounts .points-to-discounts-item .detail .points i {
    margin-left: 5px;
}

.aeen-points-to-discounts .points-to-discounts-item .detail .points span {
    font-size: 21px;
    font-weight: 800;
}

.aeen-points-to-discounts .points-to-discounts-item .detail .btn {
    background-color: #EBEBEB;
    color: #898989;
    padding: 5px 10px;
}

.aeen-points-to-discounts .points-to-discounts-item:hover .discount {
    background-color: #F16B72;
    color: #fff;
}

.aeen-main-slider-container {
    margin-top: -35px;
}

.aeen-main-slider {
    height: 450px;
}

@media (max-width: 650px) {
    .aeen-main-slider {
        height: 380px;
    }
}

.aeen-main-slider .aeen-main-slider-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 450px;
}

@media (max-width: 650px) {
    .aeen-main-slider .aeen-main-slider-item {
        height: 380px;
    }
}

.aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
}

@media (max-width: 650px) {
    .aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-right {
        display: none;
    }
}

.aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-right .aeen-main-slider-item-img {
    display: block;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    background-color: rgba(6, 112, 63, 0.8);
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px 70px;
}

.aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-left::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-image: url(../images/theme/main-slider-item-background.jpg);
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-left .aeen-main-slider-item-img {
    display: none;
}

@media (max-width: 820px) {
    .aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-left {
        padding: 20px;
    }
}

@media (max-width: 650px) {
    .aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-left {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-left .aeen-main-slider-item-detail {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
        flex: 0 0 60%;
    }

    .aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-left .aeen-main-slider-item-img {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
        flex: 0 0 40%;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        margin-right: 15px;
    }

    .aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-left .aeen-main-slider-item-img a {
        display: block;
    }

    .aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-left .aeen-main-slider-item-img a img {
        max-width: 100%;
        border-radius: 15px;
    }
}

@media (max-width: 576px) {
    .aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-left {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-left .aeen-main-slider-item-img {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-bottom: 15px;
        margin-top: 10px;
    }

    .aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-left .aeen-main-slider-item-img img {
        height: 150px;
    }

    .aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-left .aeen-main-slider-item-detail {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

.aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-left .aeen-main-slider-item-discount-container {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

.aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-left .aeen-main-slider-item-discount-container i {
    font-size: 38px;
    display: inline-block;
    margin-left: 15px;
}

.aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-left .aeen-main-slider-item-discount-container .aeen-main-slider-item-discount {
    background-color: #f16b72;
    border-radius: 10px;
    padding: 0 15px;
    font-size: 26px;
    line-height: 29px;
    padding-top: 3px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-left .aeen-main-slider-item-discount-container .aeen-main-slider-item-discount span {
    font-size: 21px;
}

.aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-left .aeen-main-slider-item-discount-container .aeen-main-slider-item-discount::before {
    content: '';
    border-top: 15px solid transparent;
    border-left: 10px solid #f16b72;
    border-bottom: 11px solid transparent;
    position: absolute;
    right: -7px;
}

.aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-left .aeen-main-slider-item-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-left .aeen-main-slider-item-title a {
    color: inherit;
}

@media (max-width: 576px) {
    .aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-left .aeen-main-slider-item-title {
        font-size: 26px;
    }
}

.aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-left .aeen-main-slider-item-desc {
    text-align: justify;
    color: #f7fffd;
    font-size: 14px;
    margin-bottom: 10px;
}

@media (max-width: 400px) {
    .aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-left .aeen-main-slider-item-desc {
        display: none;
    }
}

.aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-left .aeen-main-slider-item-detail-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 400px) {
    .aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-left .aeen-main-slider-item-detail-footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-left .aeen-main-slider-item-price {
    color: #ffe74d;
    font-size: 28px;
    font-weight: 700;
}

.aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-left .aeen-main-slider-item-price .aeen-currency {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-left .aeen-main-slider-item-url {
    position: relative;
    color: #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.aeen-main-slider .aeen-main-slider-item .aeen-main-slider-item-left .aeen-main-slider-item-url::after {
    content: "\eae8";
    font-family: 'iconsax';
    font-size: 21px;
    color: #ffe74d;
    margin-right: 5px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.aeen-main-slider .swiper-pagination {
    width: auto;
    top: 50%;
    right: 0;
    bottom: unset;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.aeen-main-slider .swiper-pagination .swiper-pagination-bullet {
    margin-bottom: 3px;
    border-radius: 10px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.aeen-main-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    height: 35px;
    background-color: #0d6d3f;
}

.aeen-main-swiper-slider .main-swiper-slide a {
    display: block;
    height: 455px;
    background-size: cover;
    background-position: 50%;
}

.aeen-main-swiper-slider .main-swiper-slide img {
    display: none;
    max-width: 100%;
}

@media (max-width: 992px) {
    .aeen-main-swiper-slider .main-swiper-slide a {
        background-image: none !important;
        height: auto !important;
    }

    .aeen-main-swiper-slider .main-swiper-slide img {
        display: block;
    }
}

.aeen-main-swiper-slider .swiper-pagination {
    bottom: 20px;
}

.aeen-main-swiper-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #fff;
}

.aeen-search-page-container {
    padding-top: 100px;
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .aeen-search-page-container {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.aeen-search-page-container .aeen-search-page-title {
    font-size: 38px;
    font-weight: 900;
    color: #363636;
    text-align: center;
    margin-bottom: 60px;
}

.aeen-search-page-container .aeen-search-page-form-container {
    margin-bottom: 70px;
}

.aeen-search-page-container .aeen-search-page-form {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 640px) {
    .aeen-search-page-container .aeen-search-page-form {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.aeen-search-page-container .aeen-search-page-form .aeen-search-page-form-input {
    width: 100%;
    height: 60px;
    border: 1px solid #363636;
    border-radius: 25rem;
    padding-right: 25px;
    outline: none;
}

.aeen-search-page-container .aeen-search-page-form .aeen-search-page-form-action {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 5px;
    left: 5px;
    bottom: 5px;
}

@media (max-width: 640px) {
    .aeen-search-page-container .aeen-search-page-form .aeen-search-page-form-action {
        position: relative;
        margin: auto;
    }
}

.aeen-search-page-container .aeen-search-page-form .aeen-search-page-form-action a,
.aeen-search-page-container .aeen-search-page-form .aeen-search-page-form-action button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.aeen-search-page-container .aeen-search-page-form .aeen-search-page-form-action .aeen-search-page-form-btn-submit {
    background-color: #fff;
    border: 0;
    border-radius: 50%;
    color: #363636;
    width: 50px;
    height: 50px;
}

.aeen-search-page-container .aeen-search-page-form .aeen-search-page-form-action .aeen-search-page-form-btn-submit i {
    font-size: 28px;
}

.aeen-search-page-container .aeen-search-page-form .aeen-search-page-form-action .aeen-search-page-form-btn-submit:hover {
    background-color: #EEEEEE;
}

.aeen-search-page-container .aeen-search-page-form .aeen-search-page-form-action .divider {
    display: inline-block;
    height: 100%;
    border-left: 1px dashed #B3B3B3;
    margin-right: 15px;
    margin-left: 15px;
}

@media (max-width: 640px) {
    .aeen-search-page-container .aeen-search-page-form .aeen-search-page-form-action .divider {
        height: 20px;
    }
}

.aeen-search-page-container .aeen-search-page-form .aeen-search-page-form-action .aeen-search-page-form-btn-filter {
    background-color: #EEEEEE;
    border: 0;
    border-radius: 25rem;
    color: #363636;
    height: 50px;
}

.aeen-search-page-container .aeen-search-page-form .aeen-search-page-form-action .aeen-search-page-form-btn-filter i {
    font-size: 28px;
    margin-right: 5px;
    margin-left: 5px;
}

.aeen-search-page-container .aeen-search-page-most-search-container .aeen-search-page-most-search-title {
    font-size: 22px;
    font-weight: 600;
    color: #363636;
    text-align: center;
    margin-bottom: 60px;
}

.aeen-search-page-container .aeen-search-page-most-search-container .aeen-search-page-most-search-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.aeen-search-page-container .aeen-search-page-most-search-container .aeen-search-page-most-search-list ul li {
    margin-left: 20px;
    margin-bottom: 20px;
}

.aeen-search-page-container .aeen-search-page-most-search-container .aeen-search-page-most-search-list ul li:last-child {
    margin-left: 0;
}

.aeen-search-page-container .aeen-search-page-most-search-container .aeen-search-page-most-search-list ul a {
    padding: 5px 15px;
    background-color: #F9F9F9;
    border-radius: 25rem;
    color: #4E4E4E;
}

.aeen-search-page-filter-container .aeen-search-page-filter-box {
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    padding: 40px 30px 0;
}

.aeen-search-page-filter-container .aeen-search-page-filter-box .aeen-search-page-filter-box-title {
    font-size: 21px;
    font-weight: 700;
    color: #363636;
    margin-bottom: 5px;
}

.aeen-search-page-filter-container .aeen-search-page-filter-box .aeen-search-page-filter-box-subtitle {
    font-size: 16px;
    color: #777;
}

.aeen-search-page-filter-container .aeen-search-filter-options-slider {
    margin-top: 70px;
    padding-bottom: 50px;
}

.aeen-search-page-filter-container .aeen-search-filter-options-slider .aeen-search-filter-option {
    background-color: #F5F5F5;
    position: relative;
    height: 150px;
    cursor: pointer;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.aeen-search-page-filter-container .aeen-search-filter-options-slider .aeen-search-filter-option .aeen-search-filter-option-img {
    position: absolute;
    top: 0;
    right: 0;
}

.aeen-search-page-filter-container .aeen-search-filter-options-slider .aeen-search-filter-option .aeen-search-filter-option-img img {
    max-width: 100px;
}

.aeen-search-page-filter-container .aeen-search-filter-options-slider .aeen-search-filter-option .aeen-search-filter-option-detail {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 15px;
    color: #363636;
    cursor: pointer;
}

.aeen-search-page-filter-container .aeen-search-filter-options-slider .aeen-search-filter-option .aeen-search-filter-option-detail .aeen-search-filter-option-label {
    margin-bottom: 10px;
}

.aeen-search-page-filter-container .aeen-search-filter-options-slider .aeen-search-filter-option .aeen-search-filter-option-detail .aeen-search-filter-option-title {
    font-size: 18px;
    font-weight: 700;
}

.aeen-search-page-filter-container .aeen-search-filter-options-slider .aeen-active-tab .aeen-search-filter-option {
    background-color: #F7BC00;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
}

.aeen-search-page-filter-container .aeen-search-filter-options-slider .aeen-active-tab .aeen-search-filter-option::after {
    content: "\e92d";
    font-family: 'iconsax';
    position: absolute;
    right: 50%;
    bottom: -30px;
    margin: auto;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    font-size: 25px;
}

.aeen-search-filter-option-content .aeen-search-filter-option-title {
    font-size: 18px;
    font-weight: 600;
    color: #363636;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .category-filter-sidebar {
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        width: 300px;
        background-color: #fff;
        z-index: 3;
        overflow-y: auto;
        overflow-x: hidden;
        padding-top: 15px;
        padding-bottom: 15px;
        -webkit-transition: all .2s ease;
        transition: all .2s ease;
    }
}

.category-filter-sidebar.show {
    right: 0;
}

@media (max-width: 992px) {
    .category-filter-sidebar-overlay {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 2;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all .2s ease;
        transition: all .2s ease;
    }
}

.category-filter-sidebar-overlay.show {
    opacity: 1;
    visibility: visible;
}

.aeen-shop-page-header-container {
    margin-top: -35px;
    background-color: #F5F5F5;
    min-height: 300px;
}

.aeen-shop-page-header-container .aeen-shop-page-header-bg {
    position: relative;
}

.aeen-shop-page-header-container .aeen-shop-page-header-bg::before, .aeen-shop-page-header-container .aeen-shop-page-header-bg::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 280px;
}

@media (max-width: 480px) {
    .aeen-shop-page-header-container .aeen-shop-page-header-bg::before, .aeen-shop-page-header-container .aeen-shop-page-header-bg::after {
        height: 180px;
    }
}

.aeen-shop-page-header-container .aeen-shop-page-header-bg::before {
    background-image: url(../images/theme/main-slider-item-background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.aeen-shop-page-header-container .aeen-shop-page-header-bg::after {
    background-color: rgba(6, 112, 63, 0.8);
}

.aeen-shop-page-header-container .category-detail-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    height: 280px;
    position: relative;
}

@media (max-width: 480px) {
    .aeen-shop-page-header-container .category-detail-container {
        height: 180px;
    }
}

.aeen-shop-page-header-container .category-detail-container .category-name {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 150px;
    flex: 0 0 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px;
    text-align: center;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(60%, #f7bd03));
    background: linear-gradient(180deg, transparent, #f7bd03 60%);
    color: #fff;
    font-size: 26px;
    font-weight: 900;
    height: 90%;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
}

.aeen-shop-page-header-container .category-detail-container .category-desc {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 15px;
    color: #fff;
}

@media (max-width: 576px) {
    .aeen-shop-page-header-container .category-detail-container .category-desc {
        display: none;
    }
}

.aeen-shop-page-header-container .breadcrumb {
    padding: 15px 0;
    margin-top: 40px;
}

.listing-products-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid #efefef;
    padding: 10px 0;
}

.listing-products-header .listing-products-filter-container {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.listing-products-header .listing-products-filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
    min-width: 810px;
}

.listing-products-header .listing-products-filter .aeen-tab {
    min-width: 768px;
    border-bottom: 0;
    overflow: auto;
    padding-top: 40px;
}

.listing-products-header .listing-products-filter .aeen-tab .nav-item {
    margin-bottom: 0;
}

.listing-products-header .products-count {
    margin-top: 40px;
}

.aeen-checkout-section {
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    padding: 45px 35px;
    overflow: hidden;
}

.aeen-checkout-section .aeen-checkout-section-title {
    font-size: 21px;
    font-weight: 700;
    color: #363636;
    margin-bottom: 5px;
    position: relative;
}

.aeen-checkout-section .aeen-checkout-section-title .aeen-checkout-section-close {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    left: -20px;
    top: -30px;
    background-color: transparent;
    border: 0;
    border-radius: 7px;
    padding: 0;
    font-size: 21px;
    font-weight: bold;
    width: 35px;
    height: 35px;
}

.aeen-checkout-section .aeen-checkout-section-subtitle {
    color: #363636;
    margin-bottom: 30px;
}

.aeen-checkout-section .aeen-cart-side-box-items-container {
    -webkit-box-shadow: unset;
    box-shadow: unset;
}

.aeen-user-addresses--select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.aeen-user-addresses--select > div {
    margin-left: 15px;
    margin-bottom: 15px;
}

.aeen-user-addresses--select > div:last-child {
    margin-left: 0;
}

.aeen-user-addresses .aeen-user-address {
    min-width: 350px;
    max-width: 350px;
    height: 180px;
    position: relative;
}

@media (max-width: 768px) {
    .aeen-user-addresses .aeen-user-address {
        min-width: 100%;
        max-width: 100%;
        min-height: 180px;
        height: auto;
    }
}

.aeen-user-addresses .aeen-user-address .aeen-user-address-input {
    display: none;
}

.aeen-user-addresses .aeen-user-address .aeen-user-address-input:checked + .aeen-user-address-detail-container {
    border-color: #406D58;
}

.aeen-user-addresses .aeen-user-address .aeen-user-address-input:checked + .aeen-user-address-detail-container .aeen-user-address-detail-head .aeen-user-address--label {
    color: #06703F;
}

.aeen-user-addresses .aeen-user-address .aeen-user-address-input:checked + .aeen-user-address-detail-container .aeen-user-address-detail-head .aeen-user-address--label::before {
    content: "\EB80";
}

.aeen-user-addresses .aeen-user-address .aeen-user-address-detail-container {
    display: block;
    border: 1px solid #E3E3E3;
    padding: 20px;
}

.aeen-user-addresses .aeen-user-address .aeen-user-address-detail-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid #EFEFEF;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.aeen-user-addresses .aeen-user-address .aeen-user-address-detail-head .aeen-user-address--label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #E3E3E3;
    position: relative;
}

.aeen-user-addresses .aeen-user-address .aeen-user-address-detail-head .aeen-user-address--label::before {
    content: "\F04F";
    font-family: remixicon !important;
    font-size: 21px;
    margin-left: 5px;
}

.aeen-user-addresses .aeen-user-address .aeen-user-address-detail-head .aeen-user-address--label span {
    font-weight: 600;
}

.aeen-user-addresses .aeen-user-address .aeen-user-address-detail-head .aeen-user-address-edit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #C1C1C1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.aeen-user-addresses .aeen-user-address .aeen-user-address-excerpt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #2A2C31;
    font-weight: 600;
    margin-bottom: 5px;
}

.aeen-user-addresses .aeen-user-address .aeen-user-address-excerpt i {
    margin-left: 5px;
}

.aeen-user-addresses .aeen-user-address .aeen-user-address-full {
    color: #BFBFBF;
    font-size: 14px;
}

.aeen-user-addresses .aeen-user-address .aeen-user-address-detail-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 15px;
}

.aeen-user-addresses .aeen-user-address .aeen-user-address-detail-footer > span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 10px;
    color: #BFBFBF;
    font-size: 14px;
}

.aeen-user-addresses .aeen-user-address .aeen-user-address-detail-footer > span i {
    margin-left: 5px;
}

.aeen-user-addresses .aeen-user-address .aeen-user-address-detail-footer > span:last-child {
    margin-left: 0;
}

.aeen-user-address-insert-btn-container {
    min-width: 350px;
    max-width: 350px;
    height: 180px;
    position: relative;
}

@media (max-width: 768px) {
    .aeen-user-address-insert-btn-container {
        min-width: 100%;
        max-width: 100%;
        min-height: 180px;
        height: auto;
    }
}

.aeen-user-address-insert-btn-container .aeen-user-address-insert-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border: 1px solid #E3E3E3;
    color: #E3E3E3;
}

.aeen-user-address-insert-btn-container .aeen-user-address-insert-btn i {
    margin-bottom: 15px;
    font-size: 40px;
}

.aeen-discount-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.aeen-discount-container .aeen-discount-form-container {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    padding: 45px 35px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .aeen-discount-container .aeen-discount-form-container {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}

@media (max-width: 480px) {
    .aeen-discount-container .aeen-discount-form-container {
        padding: 20px 10px;
    }
}

.aeen-discount-container .aeen-discount-form-container .aeen-discount-form .aeen-form-row {
    position: relative;
}

.aeen-discount-container .aeen-discount-form-container .aeen-discount-form .aeen-form-row .btn {
    position: absolute;
    top: 3px;
    left: 3px;
    bottom: 3px;
}

.aeen-discount-container .aeen-discount-divider-container {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

@media (max-width: 768px) {
    .aeen-discount-container .aeen-discount-divider-container {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}

.aeen-discount-container .aeen-discount-divider-container::before, .aeen-discount-container .aeen-discount-divider-container::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #fafafa;
    border-radius: 50%;
}

.aeen-discount-container .aeen-discount-divider-container::before {
    top: -25px;
}

@media (max-width: 768px) {
    .aeen-discount-container .aeen-discount-divider-container::before {
        right: -25px;
    }
}

@media (max-width: 480px) {
    .aeen-discount-container .aeen-discount-divider-container::before {
        right: -50px;
    }
}

.aeen-discount-container .aeen-discount-divider-container::after {
    bottom: -25px;
}

@media (max-width: 768px) {
    .aeen-discount-container .aeen-discount-divider-container::after {
        left: -25px;
    }
}

@media (max-width: 480px) {
    .aeen-discount-container .aeen-discount-divider-container::after {
        left: -50px;
    }
}

.aeen-discount-container .aeen-discount-divider-container .aeen-discount-divider {
    border-left: 1px dashed #B3B3B3;
}

@media (max-width: 768px) {
    .aeen-discount-container .aeen-discount-divider-container .aeen-discount-divider {
        width: 100%;
        border-left: 0;
        border-bottom: 1px dashed #B3B3B3;
    }
}

.aeen-checkout-points-to-discount {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 25px 35px;
    background-color: #EFEFEF;
}

.aeen-checkout-points-to-discount span {
    color: #363636;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
}

.aeen-checkout-points-to-discount .btn {
    margin-top: 10px;
    margin-bottom: 10px;
}

.aeen-select-payment-method .accordion {
    display: inline-block;
    min-width: 450px;
}

@media (max-width: 576px) {
    .aeen-select-payment-method .accordion {
        min-width: 100%;
    }
}

.aeen-select-payment-method .accordion .accordion-button {
    padding: 15px 10px 15px 10px;
    opacity: .5;
}

.aeen-select-payment-method .accordion .accordion-button::after {
    display: none;
}

.aeen-select-payment-method .accordion .accordion-button[aria-expanded="true"] {
    opacity: 1;
}

.aeen-select-payment-method .accordion .accordion-button span {
    margin-right: 10px;
}

.aeen-select-payment-method .aeen-payment-method-item {
    margin-left: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.aeen-select-payment-method .aeen-payment-method-item:last-child {
    margin-left: 0;
}

.aeen-select-payment-method .aeen-payment-method-item .aeen-select-payment-method-input {
    display: none;
}

.aeen-select-payment-method .aeen-payment-method-item .aeen-select-payment-method-input:checked + .aeen-select-payment-method-label {
    border-color: #0F6C40;
}

.aeen-select-payment-method .aeen-payment-method-item .aeen-select-payment-method-label {
    background-color: #F2F2F2;
    border: 1px solid #F2F2F2;
    padding: 10px 15px;
    color: #3E3E3E;
}

.aeen-select-payment-method .aeen-payment-method-item .aeen-select-payment-method-label img {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 30px !important;
    height: 30px !important;
    border-radius: 10px;
    margin: 0 0 0 5px !important;
}

.aeen-page-payment-status-action {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.aeen-page-payment-status-action .btn {
    margin-top: 10px;
    margin-bottom: 10px;
}

.aeen-checkout-purchase-detail {
    max-width: 400px;
    margin: auto;
}

.aeen-checkout-purchase-detail .aeen-checkout-purchase-detail-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.aeen-checkout-purchase-detail .aeen-checkout-purchase-detail-row .aeen-checkout-purchase-title {
    font-weight: 700;
    color: #363636;
    margin-left: 10px;
}

.aeen-checkout-purchase-detail .aeen-checkout-purchase-detail-row .aeen-checkout-purchase-value .amount {
    font-weight: 700;
}

.aeen-checkout-purchase-detail .aeen-checkout-purchase-detail-row.aeen-checkout-purchase-cart-total .aeen-checkout-purchase-title {
    font-size: 19px;
}

.aeen-checkout-purchase-detail .aeen-checkout-purchase-detail-row.aeen-checkout-purchase-cart-total .amount {
    font-size: 19px;
}

.aeen-checkout-purchase-detail .aeen-checkout-purchase-detail-row.aeen-checkout-purchase-total .aeen-checkout-purchase-title {
    font-size: 19px;
}

.aeen-checkout-purchase-detail .aeen-checkout-purchase-detail-row.aeen-checkout-purchase-total .amount {
    color: #126A40;
}

.aeen-search-in-map {
    position: relative;
}

.aeen-search-in-map .aeen-search-in-map-field {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.aeen-search-in-map .aeen-search-in-map-field .aeen-search-in-map-field-close {
    position: absolute;
    left: 15px;
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    border: 0;
    border-radius: 50%;
    color: #fff;
    outline: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.aeen-search-in-map .aeen-search-in-map-result {
    position: absolute;
    right: 0;
    left: 0;
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    padding: 15px;
    overflow: hidden;
    list-style: none;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1;
}

.aeen-search-in-map .aeen-search-in-map-result li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
    padding-right: 30px;
}

.aeen-search-in-map .aeen-search-in-map-result li::before {
    content: "\EF13";
    font-family: remixicon !important;
    position: absolute;
    right: 15px;
}

.aeen-search-in-map .aeen-search-in-map-result li:last-child {
    margin-bottom: 0;
}

.aeen-search-in-map .aeen-search-in-map-result li a {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    color: #0F6C40;
    font-weight: 500;
}

.map {
    z-index: 0;
}

.aeen-checkout-time-swiper-slider .swiper-slide {
    width: 150px;
}

.checkout-time .checkout-time-label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.checkout-time .checkout-time-date {
    font-size: 13px;
    color: #979797;
    margin-bottom: 10px;
}

.aeen-page-payment-status {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.aeen-page-payment-status-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

@media (max-width: 768px) {
    .aeen-page-payment-status-container {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.aeen-page-payment-status-container .aeen-page-payment-status-img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
}

@media (max-width: 768px) {
    .aeen-page-payment-status-container .aeen-page-payment-status-img {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}

.aeen-page-payment-status-container .aeen-page-payment-status-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    padding: 40px;
}

@media (max-width: 480px) {
    .aeen-page-payment-status-container .aeen-page-payment-status-text {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .aeen-page-payment-status-container .aeen-page-payment-status-text {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
}

.aeen-page-payment-status-container .aeen-page-payment-status-text .aeen-page-payment-status-title {
    font-size: 24px;
    font-weight: 900;
    color: #25AD5B;
    margin-bottom: 20px;
}

.aeen-page-payment-status-container .aeen-page-payment-status-text .aeen-page-payment-status-desc {
    font-size: 16px;
    color: #363636;
    margin-bottom: 35px;
}

.aeen-page-payment-status-container .aeen-page-payment-status-text.failed .aeen-page-payment-status-title {
    color: #FF4A4A;
}

.aeen-panel-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100vh;
    overflow-y: hidden;
    overflow-x: hidden;
}

.aeen-panel-container .simplebar-track {
    right: auto;
    left: 0;
}

.aeen-panel-container .aeen-panel-side {
    width: 450px;
    background-color: #fff;
    border-right: 1px solid #DDDDDD;
    padding: 40px 40px 0;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.aeen-panel-container .aeen-panel-side.aeen-panel-profile {
    width: 350px;
    background-color: #f9f9f9;
    border-right: 0;
    border-left: 1px solid #D9D9D9;
}

.aeen-panel-container .aeen-panel-side.aeen-panel-profile .simplebar-wrapper,
.aeen-panel-container .aeen-panel-side.aeen-panel-profile .simplebar-content-wrapper,
.aeen-panel-container .aeen-panel-side.aeen-panel-profile .simplebar-content {
    min-height: 100vh;
}

@media (max-width: 1300px) {
    .aeen-panel-container .aeen-panel-side.aeen-panel-profile {
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        z-index: 2;
    }
}

@media (max-width: 480px) {
    .aeen-panel-container .aeen-panel-side.aeen-panel-profile {
        width: 84vw;
    }
}

.aeen-panel-container .aeen-panel-side.aeen-panel-profile.show {
    right: 0;
}

@media (max-width: 992px) {
    .aeen-panel-container .aeen-panel-side.aeen-panel-club {
        position: fixed;
        top: 0;
        left: -100%;
        bottom: 0;
        z-index: 2;
    }
}

@media (max-width: 480px) {
    .aeen-panel-container .aeen-panel-side.aeen-panel-club {
        width: 84vw;
    }
}

.aeen-panel-container .aeen-panel-side.aeen-panel-club.show {
    left: 0;
}

.aeen-panel-container .aeen-panel-content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    background-color: #fff;
    border-right: 1px solid #DDDDDD;
    padding: 40px 40px 0;
}

@media (max-width: 480px) {
    .aeen-panel-container .aeen-panel-content {
        padding: 15px;
    }
}

.aeen-panel-container .aeen-panel-content .aeen-panel-profile-header {
    display: none;
}

@media (max-width: 1300px) {
    .aeen-panel-container .aeen-panel-content .aeen-panel-profile-header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.aeen-panel-container .aeen-panel-profile-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.aeen-panel-container .aeen-panel-profile-header .aeen-panel-profile-avatar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: 80px;
    height: 80px;
}

.aeen-panel-container .aeen-panel-profile-header .aeen-panel-profile-avatar::after {
    content: "";
    position: absolute;
    left: -10px;
    width: 40px;
    height: 40px;
    background-color: #FF5B7D;
    border-radius: 50px;
    z-index: 1;
}

.aeen-panel-container .aeen-panel-profile-header .aeen-panel-profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.aeen-panel-container .aeen-panel-profile-header .aeen-panel-profile-detail {
    padding: 0 20px;
}

.aeen-panel-container .aeen-panel-profile-header .aeen-panel-profile-detail .aeen-panel-profile-username {
    font-size: 18px;
    font-weight: 700;
    color: #363636;
}

.aeen-panel-container .aeen-panel-profile-header .aeen-panel-profile-detail .aeen-panel-profile-role {
    margin-top: 5px;
    margin-bottom: 5px;
    letter-spacing: -.5px;
}

.aeen-panel-container .aeen-panel-profile-header .aeen-panel-profile-detail .aeen-panel-profile-link a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #FF2652;
    font-size: 13px;
}

.aeen-panel-container .aeen-panel-profile-header .aeen-panel-menus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    left: 0;
}

@media (max-width: 576px) {
    .aeen-panel-container .aeen-panel-profile-header .aeen-panel-menus {
        position: relative;
        margin-top: 15px;
        margin-bottom: 15px;
    }
}

.aeen-panel-container .aeen-panel-profile-header .aeen-panel-menu-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #06703f;
    border-radius: 25rem;
    color: #fff;
    padding: 10px 15px;
}

.aeen-panel-container .aeen-panel-profile-header .aeen-panel-menu-btn i {
    font-size: 21px;
}

.aeen-panel-container .aeen-panel-profile-header .aeen-panel-menu-btn span {
    font-size: 14px;
    margin-left: 10px;
}

.aeen-panel-container .aeen-panel-profile-header .aeen-panel-club-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    background-color: #f7bc00;
    border-radius: 50%;
    color: #363636;
    margin-right: 10px;
}

.aeen-panel-container .aeen-panel-profile-header .aeen-panel-club-btn i {
    font-size: 21px;
}

.aeen-panel-container .aeen-panel-profile-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.aeen-panel-container .aeen-panel-profile-menu ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #363636;
    font-size: 18px;
    padding: 10px 0;
    position: relative;
}

.aeen-panel-container .aeen-panel-profile-menu ul li a i {
    margin-left: 10px;
}

.aeen-panel-container .aeen-panel-profile-menu ul li a .counter {
    position: absolute;
    left: 0;
    padding: 2px 10px;
    border-radius: 10px 10px 10px 0;
    font-size: 14px;
    color: #fff;
}

.aeen-panel-container .aeen-panel-profile-menu ul li a .counter.danger {
    background-color: #FF3A3A;
}

.aeen-panel-container .aeen-panel-profile-menu ul li a .counter.warning {
    background-color: #F7BC00;
}

.aeen-panel-container .aeen-panel-profile-menu ul li a.aeen-active-link {
    color: #F7BC00;
}

.aeen-panel-container .aeen-panel-profile-menu ul li a.aeen-active-link::before {
    content: "";
    position: absolute;
    top: 0;
    right: -40px;
    bottom: 0;
    width: 5px;
    background-color: #F7BC00;
    border-radius: 20px 0 0 20px;
}

.aeen-panel-container .aeen-panel-wishlist .aeen-panel-wishlist-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}

.aeen-panel-container .aeen-panel-wishlist .aeen-panel-wishlist-item:last-child {
    margin-bottom: 0;
}

.aeen-panel-container .aeen-panel-wishlist .aeen-panel-wishlist-item .aeen-panel-wishlist-item-thumbnail a {
    display: block;
}

.aeen-panel-container .aeen-panel-wishlist .aeen-panel-wishlist-item .aeen-panel-wishlist-item-thumbnail a img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
}

.aeen-panel-container .aeen-panel-wishlist .aeen-panel-wishlist-item .aeen-panel-wishlist-item-detail {
    padding: 0 15px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.aeen-panel-container .aeen-panel-wishlist .aeen-panel-wishlist-item .aeen-panel-wishlist-item-detail .aeen-panel-wishlist-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #363636;
    margin-bottom: 5px;
}

.aeen-panel-container .aeen-panel-wishlist .aeen-panel-wishlist-item .aeen-panel-wishlist-item-detail .aeen-panel-wishlist-item-category {
    color: #9F9F9F;
}

.aeen-panel-container .aeen-panel-wishlist .aeen-panel-wishlist-item .aeen-panel-wishlist-item-detail .aeen-panel-wishlist-item-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 10px;
}

.aeen-panel-container .aeen-panel-wishlist .aeen-panel-wishlist-item .aeen-panel-wishlist-item-detail .aeen-panel-wishlist-item-action .btn-sm {
    font-size: 13px;
}

.aeen-panel-container .aeen-panel-wishlist .aeen-panel-wishlist-more {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #363636;
}

.aeen-panel-container .aeen-panel-profile-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #363636;
}

.aeen-panel-container .aeen-panel-profile-section-title.with-after {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.aeen-panel-container .aeen-panel-profile-section-title.with-after::after {
    content: "\EB7C\EB7C";
    font-family: remixicon !important;
    font-size: 9px;
    position: absolute;
    left: 0;
    color: #E2E2E2;
}

.aeen-panel-container .aeen-panel-profile-section-subtitle {
    font-size: 14px;
    color: #9F9F9F;
}

.aeen-panel-container .aeen-panel-profile-footer {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    padding: 15px 0;
    background-color: #f9f9f9;
    border-top: 1px solid #D9D9D9;
    margin-top: 20px;
}

.aeen-panel-container .aeen-panel-profile-footer .aeen-profile-logout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    color: #9F9F9F;
}

.aeen-panel-container .aeen-panel-profile-footer .aeen-profile-logout .icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #E2E2E2;
    border-radius: 50%;
    color: #363636;
    margin-right: 10px;
    font-size: 21px;
}

.aeen-panel-container .my-rating-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #f7bc00;
    border-radius: 10px;
    -webkit-box-shadow: 0 20px 80px -15px rgba(247, 188, 0, 0.5);
    box-shadow: 0 20px 80px -15px rgba(247, 188, 0, 0.5);
    padding: 0 25px;
    height: 80px;
}

.aeen-panel-container .my-rating-container .my-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
}

.aeen-panel-container .my-rating-container .my-rating span {
    font-size: 16px;
    font-weight: 800;
    margin-right: 10px;
}

.aeen-panel-container .my-rating-container .my-rating-convert {
    background-color: #fff;
    border-radius: 10px;
    color: #363636;
    font-size: 13px;
    padding: 5px 10px;
}

.aeen-panel-container .aeen-panel-discount .aeen-panel-discount-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
}

.aeen-panel-container .aeen-panel-discount .aeen-panel-discount-item:last-child {
    margin-bottom: 0;
}

.aeen-panel-container .aeen-panel-discount .aeen-panel-discount-item .aeen-panel-discount-title {
    cursor: default;
}

.aeen-panel-container .aeen-panel-discount .aeen-panel-discount-item .aeen-panel-discount-countdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #2BCCA0;
    cursor: default;
}

.aeen-panel-container .aeen-panel-discount .aeen-panel-discount-item .aeen-panel-discount-countdown .countdown-label {
    margin-left: 5px;
}

.aeen-panel-container .aeen-panel-discount .aeen-panel-discount-item .aeen-panel-discount-countdown .countdown-timer {
    font-size: 13px;
}

.aeen-panel-container .aeen-panel-discount .aeen-panel-discount-item .aeen-panel-discount-code {
    background-color: #EEEEEE;
    border-radius: 10px;
    color: #363636;
    padding: 2px 10px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.aeen-panel-container .aeen-panel-discount .aeen-panel-discount-item:hover .aeen-panel-discount-code {
    background-color: #00C28D;
    color: #fff;
}

.aeen-panel-container .aeen-badges-club {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.aeen-panel-container .aeen-badges-club .aeen-badge {
    margin-left: 10px;
    margin-bottom: 10px;
    border-radius: 25rem;
    padding: 5px;
    font-size: 13px;
}

.aeen-panel-container .aeen-badges-club .aeen-badge .aeen-badge-counter {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
}

.aeen-panel-container .aeen-badges-club .aeen-badge.aeen-badge-link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.aeen-panel-container .aeen-badges-club .aeen-badge.aeen-badge-link a {
    color: inherit;
}

.aeen-panel-container .aeen-badges-club .aeen-badge.aeen-badge-link a::after {
    content: "\e92f";
    font-family: 'iconsax' !important;
}

.aeen-panel-container .aeen-badges-club .aeen-badge.aeen-badge-warning {
    background-color: #FEF4D4;
    color: #F7BC00;
}

.aeen-panel-container .aeen-badges-club .aeen-badge.aeen-badge-warning .aeen-badge-counter {
    background-color: #F7BC00;
    color: #fff;
}

.aeen-panel-container .aeen-badges-club .aeen-badge.aeen-badge-danger {
    background-color: #FEE1E2;
    color: #F84D54;
}

.aeen-panel-container .aeen-badges-club .aeen-badge.aeen-badge-danger .aeen-badge-counter {
    background-color: #F84D54;
    color: #fff;
}

.aeen-panel-container .aeen-badges-club .aeen-badge.aeen-badge-success {
    background-color: #D4F5EC;
    color: #00C28D;
}

.aeen-panel-container .aeen-badges-club .aeen-badge.aeen-badge-success .aeen-badge-counter {
    background-color: #00C28D;
    color: #fff;
}

.aeen-panel-container .aeen-badges-club .aeen-badge.aeen-badge-primary {
    background-color: #EEE1FA;
    color: #9C4DE1;
}

.aeen-panel-container .aeen-badges-club .aeen-badge.aeen-badge-primary .aeen-badge-counter {
    background-color: #9C4DE1;
    color: #fff;
}

.aeen-panel-container .aeen-panel-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #F2F2F2;
    border-radius: 25rem;
}

.aeen-panel-container .aeen-panel-action li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 15px;
    color: #363636;
    font-size: 21px;
    position: relative;
}

.aeen-panel-container .aeen-panel-action li a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background-color: #DEDEDE;
}

.aeen-panel-container .aeen-panel-action li:last-child a::after {
    display: none;
}

.aeen-panel-container .aeen-panel-orders .aeen-panel-order-item,
.aeen-panel-container .aeen-panel-orders .aeen-panel-ticket-item,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-order-item,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-ticket-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #F9F9F9;
    border-radius: 25rem;
    padding: 15px 20px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
    min-width: 768px;
}

.aeen-panel-container .aeen-panel-orders .aeen-panel-order-item .currency,
.aeen-panel-container .aeen-panel-orders .aeen-panel-order-item .label,
.aeen-panel-container .aeen-panel-orders .aeen-panel-ticket-item .currency,
.aeen-panel-container .aeen-panel-orders .aeen-panel-ticket-item .label,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-order-item .currency,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-order-item .label,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-ticket-item .currency,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-ticket-item .label {
    font-size: 14px;
}

.aeen-panel-container .aeen-panel-orders .aeen-panel-order-item .aeen-panel-order-item-status,
.aeen-panel-container .aeen-panel-orders .aeen-panel-order-item .aeen-panel-ticket-item-status,
.aeen-panel-container .aeen-panel-orders .aeen-panel-ticket-item .aeen-panel-order-item-status,
.aeen-panel-container .aeen-panel-orders .aeen-panel-ticket-item .aeen-panel-ticket-item-status,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-order-item .aeen-panel-order-item-status,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-order-item .aeen-panel-ticket-item-status,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-ticket-item .aeen-panel-order-item-status,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-ticket-item .aeen-panel-ticket-item-status {
    letter-spacing: -1px;
}

.aeen-panel-container .aeen-panel-orders .aeen-panel-order-item .aeen-panel-order-item-status .status-success,
.aeen-panel-container .aeen-panel-orders .aeen-panel-order-item .aeen-panel-ticket-item-status .status-success,
.aeen-panel-container .aeen-panel-orders .aeen-panel-ticket-item .aeen-panel-order-item-status .status-success,
.aeen-panel-container .aeen-panel-orders .aeen-panel-ticket-item .aeen-panel-ticket-item-status .status-success,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-order-item .aeen-panel-order-item-status .status-success,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-order-item .aeen-panel-ticket-item-status .status-success,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-ticket-item .aeen-panel-order-item-status .status-success,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-ticket-item .aeen-panel-ticket-item-status .status-success {
    color: #04C38F;
}

.aeen-panel-container .aeen-panel-orders .aeen-panel-order-item .aeen-panel-order-item-status .status-warning,
.aeen-panel-container .aeen-panel-orders .aeen-panel-order-item .aeen-panel-ticket-item-status .status-warning,
.aeen-panel-container .aeen-panel-orders .aeen-panel-ticket-item .aeen-panel-order-item-status .status-warning,
.aeen-panel-container .aeen-panel-orders .aeen-panel-ticket-item .aeen-panel-ticket-item-status .status-warning,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-order-item .aeen-panel-order-item-status .status-warning,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-order-item .aeen-panel-ticket-item-status .status-warning,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-ticket-item .aeen-panel-order-item-status .status-warning,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-ticket-item .aeen-panel-ticket-item-status .status-warning {
    color: #F7C422;
}

.aeen-panel-container .aeen-panel-orders .aeen-panel-order-item .aeen-panel-order-item-status .status-canceled,
.aeen-panel-container .aeen-panel-orders .aeen-panel-order-item .aeen-panel-ticket-item-status .status-canceled,
.aeen-panel-container .aeen-panel-orders .aeen-panel-ticket-item .aeen-panel-order-item-status .status-canceled,
.aeen-panel-container .aeen-panel-orders .aeen-panel-ticket-item .aeen-panel-ticket-item-status .status-canceled,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-order-item .aeen-panel-order-item-status .status-canceled,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-order-item .aeen-panel-ticket-item-status .status-canceled,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-ticket-item .aeen-panel-order-item-status .status-canceled,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-ticket-item .aeen-panel-ticket-item-status .status-canceled {
    color: #D5D5D5;
}

.aeen-panel-container .aeen-panel-orders .aeen-panel-order-item .aeen-panel-order-item-detail-link,
.aeen-panel-container .aeen-panel-orders .aeen-panel-order-item .aeen-panel-ticket-item-detail-link,
.aeen-panel-container .aeen-panel-orders .aeen-panel-ticket-item .aeen-panel-order-item-detail-link,
.aeen-panel-container .aeen-panel-orders .aeen-panel-ticket-item .aeen-panel-ticket-item-detail-link,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-order-item .aeen-panel-order-item-detail-link,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-order-item .aeen-panel-ticket-item-detail-link,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-ticket-item .aeen-panel-order-item-detail-link,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-ticket-item .aeen-panel-ticket-item-detail-link {
    color: #363636;
}

.aeen-panel-container .aeen-panel-orders .aeen-panel-order-item .aeen-panel-order-item-detail-link a,
.aeen-panel-container .aeen-panel-orders .aeen-panel-order-item .aeen-panel-ticket-item-detail-link a,
.aeen-panel-container .aeen-panel-orders .aeen-panel-ticket-item .aeen-panel-order-item-detail-link a,
.aeen-panel-container .aeen-panel-orders .aeen-panel-ticket-item .aeen-panel-ticket-item-detail-link a,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-order-item .aeen-panel-order-item-detail-link a,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-order-item .aeen-panel-ticket-item-detail-link a,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-ticket-item .aeen-panel-order-item-detail-link a,
.aeen-panel-container .aeen-panel-tickets .aeen-panel-ticket-item .aeen-panel-ticket-item-detail-link a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: inherit;
    font-size: 14px;
}

.aeen-panel-container .aeen-panel-gift-slider .swiper-slide {
    width: 300px;
}

.aeen-panel-container .aeen-panel-gift-item {
    border-radius: 15px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: 0px 30px 32px -24px rgba(15, 15, 15, 0.12);
    box-shadow: 0px 30px 32px -24px rgba(15, 15, 15, 0.12);
    min-height: 180px;
}

.aeen-panel-container .aeen-panel-gift-item::after {
    content: "";
    position: absolute;
    left: -50%;
    bottom: -50%;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    z-index: 0;
}

.aeen-panel-container .aeen-panel-gift-item .aeen-panel-gift-item-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 15px;
}

.aeen-panel-container .aeen-panel-gift-item .aeen-panel-gift-item-row:last-child {
    margin-bottom: 0;
}

.aeen-panel-container .aeen-panel-gift-item .aeen-panel-gift-item-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.aeen-panel-container .aeen-panel-gift-item .aeen-panel-gift-item-icon svg {
    width: 30px;
}

.aeen-panel-container .aeen-panel-gift-item .aeen-panel-gift-item-amount {
    font-size: 21px;
    font-weight: 700;
}

.aeen-panel-container .aeen-panel-gift-item .aeen-panel-gift-item-amount .currency {
    font-size: 14px;
}

.aeen-panel-container .aeen-panel-gift-item .aeen-panel-gift-item-action {
    position: relative;
    z-index: 1;
}

.aeen-panel-container .aeen-panel-gift-item .aeen-panel-gift-item-action a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
}

.aeen-panel-container .aeen-panel-gift-item .aeen-panel-gift-item-action a i {
    margin-right: 5px;
}

.aeen-panel-container .aeen-panel-gift-item .aeen-panel-gift-item-status {
    font-size: 13px;
}

.aeen-panel-container .aeen-panel-gift-item.aeen-panel-gift-item-success {
    background-color: #00C28D;
    color: #fff;
}

.aeen-panel-container .aeen-panel-gift-item.aeen-panel-gift-item-danger {
    background-color: #F04770;
    color: #fff;
}

.aeen-panel-container .aeen-panel-gift-item.aeen-panel-buy-coupon {
    background-color: #F2F2F2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: unset;
    box-shadow: unset;
}

.aeen-panel-container .aeen-panel-gift-item.aeen-panel-buy-coupon::after {
    display: none;
}

.aeen-panel-container .aeen-panel-gift-item.aeen-panel-buy-coupon .aeen-panel-buy-coupon-link {
    font-weight: 600;
    color: #363636;
}

.aeen-panel-container .giftcard-wrapper {
    max-width: 400px;
    height: 250px;
    border-radius: 25px;
    margin: 1rem auto;
    position: relative;
    -webkit-box-shadow: 0 12px 12px 0 rgba(181, 181, 181, 0.11);
    box-shadow: 0 12px 12px 0 rgba(181, 181, 181, 0.11);
}

.aeen-panel-container .giftcard-wrapper #display-title {
    font-size: 18px;
    position: absolute;
    top: 47%;
    right: 60px;
    color: #000;
    z-index: 1;
}

.aeen-panel-container .giftcard-wrapper .bg-giftcard {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 25px;
}

.aeen-panel-container .giftcard-wrapper .gift-img {
    position: absolute;
    top: 15px;
    left: 60px;
    width: 60px;
}

.aeen-panel-container .giftcard-wrapper .amount-giftcard {
    position: absolute;
    bottom: 47px;
    right: 77px;
    max-width: 138px;
    height: 45px;
    line-height: 45px;
    overflow: hidden;
}

.aeen-panel-container .giftcard-wrapper .amount-giftcard .wrapper-amount {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
}

.aeen-panel-container .giftcard-wrapper .amount-giftcard .wrapper-amount #display-amount {
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 21px;
    color: #fff;
}

.aeen-panel-container .aeen-panel-profile-overlay,
.aeen-panel-container .aeen-panel-club-overlay {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.aeen-panel-container .aeen-panel-profile-overlay.show,
.aeen-panel-container .aeen-panel-club-overlay.show {
    opacity: 1;
    visibility: visible;
}

.aeen-widget-sidebar {
    position: relative;
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    padding: 25px 15px;
}

.aeen-widget-sidebar .aeen-widget-sidebar-title {
    font-weight: 700;
    color: #363636;
    margin-bottom: 25px;
}

.aeen-widget-sidebar .aeen-widget-sidebar-content {
    max-height: 180px;
}

.aeen-widget-sidebar .aeen-widget-sidebar-content.filter-attributes {
    padding-left: 25px;
}

.aeen-widget-sidebar .aeen-widget-sidebar-content.filter-attributes .form-switch {
    position: relative;
    padding-right: 0;
    padding: 5px 0;
}

.aeen-widget-sidebar .aeen-widget-sidebar-content.filter-attributes .form-switch .form-check-input {
    position: absolute;
    left: 0;
    float: none;
}

.aeen-widget-sidebar .aeen-widget-sidebar-content.filter-attributes .form-switch .form-check-label {
    color: #525252;
}

.aeen-widget-sidebar .aeen-widget-sidebar-content .filter-price .filter-range {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.aeen-widget-sidebar .aeen-widget-sidebar-content .filter-price .filter-range li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    font-size: 13px;
    letter-spacing: .3px;
    color: #858585;
    position: relative;
}

.aeen-widget-sidebar .aeen-widget-sidebar-content .filter-price .filter-range li:first-child {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.aeen-widget-sidebar .aeen-widget-sidebar-content .filter-price .filter-range li:last-child {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.aeen-widget-sidebar .aeen-widget-sidebar-content .filter-price .filter-range li .slider-range-from,
.aeen-widget-sidebar .aeen-widget-sidebar-content .filter-price .filter-range li .slider-range-to {
    color: #363636;
    margin-left: 5px;
}

.aeen-widget-sidebar .aeen-widget-sidebar-content .filter-price .filter-range li span {
    font-size: 13px;
    font-weight: 700;
}

.aeen-widget-sidebar .aeen-widget-sidebar-content .filter-price .filter-range input[type=text] {
    width: 100%;
    border: 0;
    background-color: transparent;
    border-radius: 7px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    overflow: hidden;
    margin: 6px 0;
    text-align: center;
    color: #3c3c3c;
    font-size: 14px;
    font-weight: 700;
}

.aeen-widget-sidebar .aeen-widget-sidebar-content .filter-price .filter-price {
    text-align: center;
    min-height: 140px;
}

.aeen-widget-sidebar .aeen-widget-sidebar-content .filter-price .filter-slider {
    padding: 18px 18px 18px 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.aeen-widget-sidebar .aeen-widget-sidebar-content .filter-price .noUi-horizontal {
    height: 4px;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

.aeen-widget-sidebar .aeen-widget-sidebar-content .filter-price .noUi-target {
    background-color: #c4c4c4;
    border: 0;
}

.aeen-widget-sidebar .aeen-widget-sidebar-content .filter-price .noUi-connect,
.aeen-widget-sidebar .aeen-widget-sidebar-content .filter-price .noUi-origin {
    left: 0;
}

.aeen-widget-sidebar .aeen-widget-sidebar-content .filter-price .noUi-connect {
    background-color: #F7BC00;
}

.aeen-widget-sidebar .aeen-widget-sidebar-content .filter-price .noUi-horizontal .noUi-handle {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    top: -9px;
    left: 0;
    right: -12px;
    background-color: #F7BC00;
    border: 0;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    cursor: pointer;
}

.aeen-widget-sidebar .aeen-widget-sidebar-content .filter-price .noUi-horizontal .noUi-handle::before, .aeen-widget-sidebar .aeen-widget-sidebar-content .filter-price .noUi-horizontal .noUi-handle::after {
    display: none;
}

.aeen-widget-sidebar .aeen-widget-sidebar-content .simplebar-track {
    right: auto;
    left: 0;
}

.aeen-widget-sidebar .aeen-widget-sidebar-content .simplebar-track .simplebar-visible:before {
    opacity: 0.2;
}

.aeen-faq-container {
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    padding: 45px;
}

@media (max-width: 768px) {
    .aeen-faq-container {
        padding: 20px;
    }
}

.aeen-faq-container .aeen-section-title {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.aeen-faq-container .aeen-faq-search-form {
    min-width: 350px;
    font-size: 16px;
}

@media (max-width: 480px) {
    .aeen-faq-container .aeen-faq-search-form {
        min-width: 100%;
    }
}

.aeen-contact-us-container {
    position: relative;
    margin-top: -35px;
    margin-bottom: 100px;
    padding-top: 200px;
}

@media (max-width: 992px) {
    .aeen-contact-us-container {
        padding-top: 50px;
    }
}

.aeen-contact-us-container::before, .aeen-contact-us-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 650px;
    z-index: -1;
}

.aeen-contact-us-container::before {
    background-image: url(../images/theme/main-slider-item-background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.aeen-contact-us-container::after {
    background-color: rgba(6, 112, 63, 0.8);
}

.aeen-contact-us-container .aeen-about-container {
    color: #fff;
}

.aeen-contact-us-container .aeen-about-container .aeen-about-title {
    margin-bottom: 25px;
}

.aeen-contact-us-container .aeen-about-container .aeen-about-title h1 {
    font-size: 24px;
    font-weight: 800;
    word-spacing: -1.5px;
}

.aeen-contact-us-container .aeen-about-container .aeen-about-desc {
    line-height: 30px;
    font-size: 14px;
}

.aeen-contact-us-container .aeen-map-container {
    color: #fff;
}

.aeen-contact-us-container .aeen-map-container .aeen-map-section-title {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 800;
    word-spacing: -1.5px;
}

.aeen-contact-us-container .aeen-map-container .aeen-map-section-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.aeen-contact-us-container .aeen-map-container .aeen-map-section-detail svg {
    margin-left: 10px;
}

.aeen-contact-us-container .aeen-map-container .aeen-map-section-detail .aeen-address-label {
    margin-left: 5px;
    font-size: 18px;
    font-weight: 800;
}

.aeen-contact-us-container .aeen-map-container .aeen-map-box {
    height: 400px;
    background-color: #fff;
    -webkit-box-shadow: 0px 40px 32px -24px rgba(252, 173, 0, 0.5);
    box-shadow: 0px 40px 32px -24px rgba(252, 173, 0, 0.5);
    position: relative;
}

.aeen-contact-us-container .aeen-map-container .aeen-map-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(252, 173, 0, 0.8);
    z-index: 0;
}

.aeen-contact-us-container .aeen-map-container .aeen-map-box .btn-outline-light {
    z-index: 1;
    position: absolute;
    right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    bottom: 40px;
}

.aeen-contact-us-container .aeen-contact-us-ways-container {
    color: #363636;
}

.aeen-contact-us-container .aeen-contact-us-ways-container .aeen-contact-us-ways-title {
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 20px;
}

.aeen-contact-us-container .aeen-contact-us-ways-container ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 50px;
}

.aeen-contact-us-container .aeen-contact-us-ways-container ul li .icon {
    font-size: 26px;
    margin-left: 10px;
}

.aeen-contact-us-container .aeen-contact-us-form-container {
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    padding: 70px;
}

@media (max-width: 768px) {
    .aeen-contact-us-container .aeen-contact-us-form-container {
        padding: 20px;
    }
}

.aeen-contact-us-ways-social-container {
    color: #363636;
}

.aeen-contact-us-ways-social-container .aeen-contact-us-ways-title {
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 40px;
}

.aeen-contact-us-ways-social-container ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.aeen-contact-us-ways-social-container ul li {
    margin-left: 15px;
    margin-bottom: 15px;
}

.aeen-contact-us-ways-social-container ul li:last-child {
    margin-left: 0;
}

.aeen-contact-us-ways-social-container ul a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #B7B7B7;
    border-radius: 50%;
    color: #fff;
    position: relative;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.aeen-contact-us-ways-social-container ul a:hover {
    background-color: #0D6D3F;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.aeen-contact-us-ways-social-container ul a:hover .label {
    opacity: 1;
    visibility: visible;
    background-color: #0D6D3F;
}

.aeen-contact-us-ways-social-container ul a .label {
    position: absolute;
    top: -30px;
    background-color: #B7B7B7;
    font-size: 13px;
    padding: 3px 10px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.aeen-contact-us-ways-social-container ul a i {
    font-size: 24px;
}

.club-intro-container {
    text-align: center;
    padding: 100px 0;
}

.club-intro-container .club-intro-text {
    font-size: 36px;
    font-weight: 800;
    color: #363636;
    margin-top: 20px;
    margin-bottom: 35px;
}

.aeen-gift-coupons-slider {
    padding-bottom: 60px;
}

.aeen-gift-coupons-slider .gift-coupon-item {
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    padding: 25px 35px;
    margin: 15px;
    text-align: center;
    overflow: hidden;
}

.aeen-gift-coupons-slider .gift-coupon-item .gift-coupon-item-icon {
    font-size: 32px;
}

.aeen-gift-coupons-slider .gift-coupon-item .gift-coupon-item-title {
    font-size: 18px;
    font-weight: 700;
    color: #363636;
    margin-bottom: 10px;
}

.aeen-gift-coupons-slider .gift-coupon-item .gift-coupon-item-amount-container .gift-coupon-item-amount {
    font-size: 28px;
    font-weight: 900;
}

.aeen-gift-coupons-slider .gift-coupon-item .gift-coupon-item-amount-container .currency {
    font-size: 21px;
    font-weight: 600;
}

.aeen-gift-coupons-slider .gift-coupon-item .gift-coupon-item-desc {
    font-size: 13px;
    color: #515151;
    margin-bottom: 20px;
}

.aeen-gift-coupons-slider .gift-coupon-item .gift-coupon-item-divider-container {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
}

.aeen-gift-coupons-slider .gift-coupon-item .gift-coupon-item-divider-container::before, .aeen-gift-coupons-slider .gift-coupon-item .gift-coupon-item-divider-container::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #fafafa;
    border-radius: 50%;
}

.aeen-gift-coupons-slider .gift-coupon-item .gift-coupon-item-divider-container::before {
    top: -25px;
    right: -65px;
}

.aeen-gift-coupons-slider .gift-coupon-item .gift-coupon-item-divider-container::after {
    bottom: -25px;
    left: -65px;
}

.aeen-gift-coupons-slider .gift-coupon-item .gift-coupon-item-divider-container .gift-coupon-item-divider {
    width: 100%;
    border-bottom: 1px dashed #B3B3B3;
}

.aeen-gift-coupons-slider .aeen-gift-coupons-slider-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    bottom: -40px;
}

.aeen-gift-coupons-slider .aeen-gift-coupons-slider-navigation > div {
    position: relative;
    margin-left: 25px;
}

.aeen-gift-coupons-slider .aeen-gift-coupons-slider-navigation > div:last-child {
    margin-left: 0;
}

.aeen-gift-coupons-slider .aeen-gift-coupons-slider-navigation > div.swiper-button-disabled {
    opacity: .7;
}

.about-intro-container {
    text-align: center;
    padding: 100px 0;
}

.about-intro-container .about-intro {
    max-width: 768px;
    margin: auto;
}

.about-intro-container .about-intro-title {
    font-size: 36px;
    font-weight: 900;
    color: #363636;
    margin-top: 20px;
    margin-bottom: 35px;
}

.aeen-about-text-warning-container {
    position: relative;
    margin-bottom: 100px;
}

.aeen-about-text-warning-container::before, .aeen-about-text-warning-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    min-height: 350px;
    z-index: -1;
}

.aeen-about-text-warning-container::before {
    background-image: url(../images/theme/main-slider-item-background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.aeen-about-text-warning-container::after {
    background-color: rgba(252, 173, 0, 0.8);
}

.aeen-about-text-container {
    position: relative;
    padding-top: 180px;
    padding-bottom: 40px;
}

.aeen-about-text-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-image: url(../images/theme/points-to-discounts-pattern.svg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.aeen-about-text-container.without-pattern::before {
    display: none;
}

.aeen-terms-and-conditions-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #F9F9F9;
    color: #1A7549;
    padding: 50px;
}

.aeen-terms-and-conditions-item .aeen-terms-and-conditions-item-icon {
    margin-bottom: 10px;
}

.aeen-terms-and-conditions-item .aeen-terms-and-conditions-item-icon i {
    font-size: 48px;
}

.aeen-terms-and-conditions-item .aeen-terms-and-conditions-item-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.aeen-terms-and-conditions-item .aeen-terms-and-conditions-item-desc {
    font-size: 13px;
    text-align: center;
    margin-bottom: 25px;
}

.aeen-terms-and-conditions-item .aeen-terms-and-conditions-item-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
}

.aeen-auth-container {
    min-width: 400px;
    max-width: 400px;
    margin: auto;
}

@media (max-width: 480px) {
    .aeen-auth-container {
        min-width: 90%;
        max-width: 90%;
    }
}

.aeen-auth-container .aeen-auth-box {
    background-color: #fff;
    border: 1px solid #E6E6E6;
    border-radius: 25px;
    padding: 25px;
}

.aeen-auth-container .aeen--auth-header {
    margin-bottom: 60px;
}

@media (max-width: 480px) {
    .aeen-auth-container .aeen--auth-header {
        margin-bottom: 25px;
    }
}

.aeen-auth-container .aeen--auth-header .aeen--auth-header-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.aeen-auth-container .aeen--auth-header .aeen--auth-header-title span {
    font-size: 21px;
    font-weight: 700;
}

@media (max-width: 480px) {
    .aeen-auth-container .aeen--auth-header .aeen--auth-header-title span {
        font-size: 16px;
    }
}

.aeen-auth-container .aeen--auth-header .aeen--auth-header-title a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #F1F1F1;
    border-radius: 50%;
}

@media (max-width: 480px) {
    .aeen-auth-container .aeen--auth-header .aeen--auth-header-title a {
        width: 40px;
        height: 40px;
    }
}

.aeen-auth-container .aeen-auth-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.aeen-auth-container .aeen-auth-link a {
    color: #0D6D3F;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.aeen-auth-container .aeen-auth-link a i {
    font-size: 21px;
    margin-left: 5px;
}

.aeen-auth-container .aeen-auth-note {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.aeen-auth-container .aeen-auth-note.aeen-auth-note-text-md {
    font-size: 16px;
}

.aeen-auth-container .aeen-auth-note a {
    color: #0D6D3F;
    margin-right: 5px;
    margin-left: 5px;
}

.aeen-auth-container .aeen--auth-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 25px;
    font-size: 13px;
    font-weight: 500;
}

.aeen-auth-container .aeen--auth-footer .btn-link {
    font-size: 13px;
}

.aeen-auth-container .aeen--auth-footer .text-warning {
    color: #F7BC00 !important;
}

.aeen-auth-container .form-input-code-container {
    direction: ltr;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
}

.aeen-auth-container .form-input-code-container .form-control {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 4px;
}

.aeen-auth-container .form-input-code-container .divider {
    font-size: 28px;
    font-weight: bold;
    margin-right: 10px;
    margin-left: 10px;
}

.aeen-auth-container .verify-code-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    padding-right: 50px;
}

@media (max-width: 480px) {
    .aeen-auth-container .verify-code-wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.aeen-auth-container .verify-code-wrapper #timer--verify-code {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 20px;
    position: absolute;
    right: 0;
}

.aeen-auth-container .verify-code-wrapper #timer--verify-code .jst-hours {
    display: none;
}

.aeen-auth-container .verify-code-wrapper #timer--verify-code.jst-timeout + .send-again {
    display: block;
}

.aeen-auth-container .verify-code-wrapper .send-again {
    display: none;
    font-size: 14px;
    text-decoration: none;
}

.remodal .aeen-auth-container {
    min-width: 100%;
    max-width: 100%;
}

.remodal .aeen-auth-container .aeen-auth-box {
    padding-right: 0;
    padding-left: 0;
}

.aeen-service {
    border: 1px solid #d9d9d9;
    padding: 20px;
}

.aeen-service .aeen-service-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #06703f;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
}

.aeen-service .aeen-service-title .aeen-service-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 20px;
    font-size: 42px;
    position: relative;
}

.aeen-service .aeen-service-title .aeen-service-icon::before {
    content: '';
    width: 30px;
    height: 30px;
    background-color: #c0dacd;
    border-radius: 35%;
    position: absolute;
    left: -5px;
    bottom: -5px;
    z-index: -1;
}

.aeen-service .aeen-service-title span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.aeen-service .aeen-service-desc {
    color: #363636;
}

.aeen-get-point {
    position: relative;
    height: 300px;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    -webkit-transition: all .1s ease;
    transition: all .1s ease;
}

.aeen-get-point img {
    max-width: 150px;
    z-index: -1;
    top: 0;
    position: absolute;
}

.aeen-get-point .aeen-get-point-content {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.aeen-get-point .aeen-get-point-content .point_label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: absolute;
    right: 0;
    left: 0;
    top: 50px;
    padding-left: 20px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.aeen-get-point .aeen-get-point-content .point_label .point {
    font-size: 72px;
    font-weight: 800;
    line-height: 70px;
}

.aeen-get-point .aeen-get-point-content .point_label .label {
    font-size: 42px;
    font-weight: 600;
}

.aeen-get-point .aeen-get-point-content .club_link {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .1s ease;
    transition: all .1s ease;
    color: #fff;
}

.aeen-get-point .aeen-get-point-content .club_link .btn-light {
    margin-bottom: 5px;
}

.aeen-get-point:hover {
    background-color: rgba(6, 112, 63, 0.8);
}

.aeen-get-point:hover .point_label {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    color: #ffcf31;
}

.aeen-get-point:hover .club_link {
    opacity: 1;
    visibility: visible;
}

.aeen--page-footer {
    background-color: #064e2d;
    padding: 100px 0 50px;
    margin-top: 100px;
}

@media (max-width: 768px) {
    .aeen--page-footer {
        padding: 20px 0;
    }
}

.aeen--page-footer .aeen-brand {
    /*-webkit-filter: grayscale(100%);*/
    /*        filter: grayscale(100%);*/
    margin-bottom: 10px;
}

.aeen--page-footer .aeen-brand a {
    display: inline-block;
}

.aeen--page-footer .aeen-brand img {
    width: 100px;
}

.aeen--page-footer .aeen-about {
    color: #b0bcb8;
    font-size: 14px;
}

.aeen--page-footer .aeen-footer-widget .aeen-footer-widget-title {
    color: #b0bcb8;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.aeen--page-footer .aeen-footer-widget .aeen-footer-widget-list a {
    font-size: 15px;
    color: #b0bcb8;
    line-height: 35px;
}

.aeen--page-footer .aeen-footer-widget .aeen-footer-widget-socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.aeen--page-footer .aeen-footer-widget .aeen-footer-widget-socials hr {
    margin: 0 !important;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    background-color: #083a3b;
    height: 2px;
}

.aeen--page-footer .aeen-footer-widget .aeen-footer-widget-socials ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-left: 15px;
}

.aeen--page-footer .aeen-footer-widget .aeen-footer-widget-socials ul li {
    margin-left: 10px;
}

.aeen--page-footer .aeen-footer-widget .aeen-footer-widget-socials ul li:last-child {
    margin-left: 0;
}

.aeen--page-footer .aeen-footer-widget .aeen-footer-widget-socials a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #053b3b;
    border-radius: 50%;
    color: #fff;
}

.aeen--page-footer .aeen-footer-widget .aeen-footer-widget-newsletter form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.aeen--page-footer .aeen-footer-widget .aeen-footer-widget-newsletter form button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: absolute;
    right: 5px;
    color: #b0bcb8;
    border: 0;
    background-color: transparent;
}

.aeen--page-footer .aeen-footer-widget .aeen-footer-widget-newsletter form input {
    width: 200px;
    height: 40px;
    background-color: #2b4343;
    border: 0;
    outline: none;
    color: #b0bcb8;
    text-align: left;
    padding-left: 5px;
    padding-right: 25px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 14px;
}

.aeen--page-footer .aeen-footer-widget .aeen-footer-widget-newsletter form input::-webkit-input-placeholder {
    color: #b0bcb8;
}

.aeen--page-footer .aeen-footer-widget .aeen-footer-widget-newsletter form input:-ms-input-placeholder {
    color: #b0bcb8;
}

.aeen--page-footer .aeen-footer-widget .aeen-footer-widget-newsletter form input::-ms-input-placeholder {
    color: #b0bcb8;
}

.aeen--page-footer .aeen-footer-widget .aeen-footer-widget-newsletter form input::placeholder {
    color: #b0bcb8;
}

@media (max-width: 768px) {
    .aeen--page-footer .aeen-footer-widget .aeen-footer-widget-newsletter form input {
        width: 100%;
    }
}

.aeen--page-footer .aeen-footer-copyright {
    color: #b0bcb8;
    font-size: 14px;
}

.aeen--page-footer .aeen-footer-copyright p {
    margin-bottom: 0;
}

.aeen--page-footer .aeen-footer-copyright a {
    color: #e4ac25;
}

@media (max-width: 768px) {
    .container {
        max-width: 95%;
    }
}

/*# sourceMappingURL=theme.css.map */

.text-caption {
    font-size: 13px;
}

.input-separators {
    position: absolute;
    left: 50%;
    bottom: 4px;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    pointer-events: none;
    width: 155px;
    padding: 0 20px;
}

.input-separator {
    color: #7b7b7b;
    font-size: 13px;
    font-size: .812rem;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.92;
}

.input-otp-container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.input-otp-separator {
    border-top: 1px solid transparent;
    width: 100%;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: normal;
    line-height: normal;
    margin: 0 auto;
    padding-left: 95px;
    padding-right: 10px;
    padding-bottom: 4px;
    padding-top: 15px;
    text-align: left;
    letter-spacing: 30px;
}

.input-otp {
    color: #262626;
    text-align: right;
    direction: ltr;
    width: 100%;
    height: 30px;
    padding: 0 8px 4px 0;
    margin: 4px 0 0;
    border: none;
    border-top: 1px solid transparent;
    border-bottom: 1px solid #9d9d9d;
    font-size: 13px;
    font-size: .812rem;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.92;
}

.button {
    position: relative;
    padding: 8px 16px;
    background: #009579;
    border: none;
    outline: none;
    border-radius: 2px;
    cursor: pointer;
}

.button:active {
    background: #007a63;
}

.button__text {
    color: #ffffff;
    transition: all 0.2s;
}

.button--loading .button__text {
    visibility: hidden;
    opacity: 0;
}

.button--loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}
