:root {
    --color-success: #00C2FF;
    --color-info: #0024A6;
    --color-warning: #faa806;
    --color-danger: #ec2434;
    --color-border: #e4e4e4;
    --color-text: #707070;
    --color-contrast: #fff;
    --color-heading: #282828;
    --cowlor-dark: #8a8a8a;
}

* {
    font-family: var(--primary-font);
    /*font-weight: 400;*/
}

html {
    font-size: 62.5%;
}

body {
    font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-heading);
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 0;
    position: relative;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 14px;
}

h6 {
    font-size: 12px;
}

p {
    color: var(--color-text);
    font-size: 14px;
    line-height: 1.6em;
}

p span {
    font-family: inherit;
    font-size: inherit;
}

a,
p span {
    color: inherit;
}

a {
    position: relative;
    text-decoration: none;
    transition: all 0.4s ease;
}

a:hover {
    color: var(--color-1st);
}

a,
button,
input,
select,
textarea {
    outline: none;
}

a:hover,
h1:focus,
h2:focus,
h3:focus,
h4:focus,
h5:focus,
h6:focus {
    text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
    text-decoration: none;
}

img {
    max-width: 100%;
}

figure {
    margin: 0;
}

body,
html {
    min-height: 100%;
    position: relative;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

body {
    overflow-x: hidden;
}

.list--social {
    margin: 0;
    padding: 0;
}

.list--social li {
    display: inline-block;
    margin-right: 15px;
    position: relative;
    vertical-align: top;
}

.list--social li a {
    border: 1px solid #404040;
    border-radius: 50%;
    color: #636363;
    display: inline-block;
    font-size: 14px;
    height: 40px;
    width: 40px;
}

.list--social li a i {
    font-size: 18px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.list--social li a:hover {
    background-color: var(--color-1st);
    border-color: var(--color-1st);
    color: var(--color-1st);
}

.list--social li a:hover i {
    color: #fff;
}

.list--social li:last-child {
    margin-right: 0;
}

.list--plus li {
    margin: 10px 0;
}

.list--plus li a {
    display: block;
    line-height: 20px;
    position: relative;
}

.list--plus li a:before {
    content: "";
    left: 0;
    line-height: 20px;
    position: absolute;
    top: 0;
}

.btn--hamburger {
    background-color: rgba(206, 135, 58, 0.6);
    border-radius: 50px;
    display: inline-block;
    height: 50px;
    overflow: hidden;
    position: relative;
    width: 50px;
}

.btn--hamburger span,
.btn--hamburger:after,
.btn--hamburger:before {
    background-color: #fff;
    height: 2px;
    position: absolute;
    transition: all 0.4s ease;
    width: 20px;
    z-index: 100;
}

.btn--hamburger span {
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
}

.btn--hamburger:after,
.btn--hamburger:before {
    content: "";
    left: 15px;
}

.btn--hamburger:before {
    top: 16px;
}

.btn--hamburger:after {
    bottom: 16px;
}

.btn--hamburger:hover {
    cursor: pointer;
}

.btn--hamburger.active span {
    opacity: 0;
    transform: translateX(100%);
    visibility: hidden;
}

.btn--hamburger.active:after,
.btn--hamburger.active:before {
    background-color: #fc354c;
    bottom: auto;
    top: 50%;
    transform-origin: 50% 50%;
    width: 20px;
}

.btn--hamburger.active:before {
    transform: rotate(45deg);
}

.btn--hamburger.active:after {
    transform: rotate(-45deg);
}

@media (max-width: 1199px) {
    .btn--hamburger {
        display: inline-block;
    }
}

.fa-arrow-right:before {
    display: none;
}


button.btn--custom {
    background-color: var(--color-success);
    color: var(--color-contrast);
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    padding: 14px 36px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    text-align: center;
    width: 48%;
}

.btn--custom.btn--rounded,
button.btn--custom.btn--rounded {
    border-radius: 18px;
}

.btn--custom.btn--curve,
button.btn--custom.btn--curve {
    border-radius: 5px;
}

.btn--custom.btn--outline,
button.btn--custom.btn--outline {
    background-color: #0024a6;
    border: 1px solid var(--color-1st);
    color: #ffffff;
    font-size: 14px;
    padding: 14px 36px;
    text-transform: uppercase;
}

.btn--custom.btn--outline:hover,
button.btn--custom.btn--outline:hover {
    border: solid var(--color-info) 2px;
    color: var(--color-info);
}

.btn--custom.btn--fullwidth,
button.btn--custom.btn--fullwidth {
    text-align: center;
    width: 100%;
}

.btn--custom.btn--sm,
button.btn--custom.btn--sm {
    font-size: 1.2rem;
    padding: 0.5rem 2rem;
}

.btn--custom.btn--sm.btn--curve,
button.btn--custom.btn--sm.btn--curve {
    border-radius: 3px;
}

.btn--custom.btn--lg,
button.btn--custom.btn--lg {
    padding: 1.5rem 4rem;
}

.btn--custom.btn--xl,
button.btn--custom.btn--xl {
    font-size: 1.6rem;
    padding: 2rem 6rem;
}

.btn--custom.btn--reverse,
button.btn--custom.btn--reverse {
    background-color: #576391;
}

.btn--custom.btn--reverse:hover,
button.btn--custom.btn--reverse:hover {
    background-color: var(--color-2nd);
}

.btn--custom.btn--gray,
button.btn--custom.btn--gray {
    background-color: #e5e5e5;
    color: #000;
    font-size: 1.6rem;
}

.btn--custom.btn--black,
button.btn--custom.btn--black {
    background-color: var(--color-heading);
}

.btn--custom.btn--black.btn--outline,
button.btn--custom.btn--black.btn--outline {
    background-color: transparent;
    border: 2px solid var(--color-heading);
    color: var(--color-heading);
}

.btn--custom.btn--black.btn--outline:hover,
button.btn--custom.btn--black.btn--outline:hover {
    background-color: var(--color-heading);
    color: #fff;
}

.btn--custom.btn--success,
button.btn--custom.btn--success {
    background-color: var(--color-success);
}

.btn--custom:active,
.btn--custom:hover,
button.btn--custom:active,
button.btn--custom:hover {
    background-color: var(--color-1st);
    color: var(--color-info);
}

.btn--custom:active.btn--black,
.btn--custom:hover.btn--black,
button.btn--custom:active.btn--black,
button.btn--custom:hover.btn--black {
    background-color: var(--color-1st);
}

.btn--remove {
    border: none;
    font-size: 20px;
    outline: none;
}

.btn--remove:hover {
    color: var(--color-danger);
}

.btn--close {
    border-radius: 50%;
    display: inline-block;
    height: 30px;
    position: relative;
    transition: all 0.4s ease;
    width: 30px;
}

.btn--close:after,
.btn--close:before {
    background-color: #9f9a98;
    content: "";
    height: 50%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform-origin: center center;
    transition: all 0.4s ease;
    width: 2px;
}

.btn--close:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.btn--close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.btn--close:hover {
    transform: rotate(180deg);
}

.btn--close:hover:after,
.btn--close:hover:before {
    background-color: #f44336;
    transition-delay: 0.3s;
}

.form-control {
    background-color: transparent;
    border: 1px solid var(--color-success);
    border-radius: 0;
    box-shadow: 0 0 0 transparent;
    font-size: 14px;
    height: 50px;
    outline: none;
    padding: 0 20px;
    transition: all 0.4s ease;
}

.form-control::-webkit-input-placeholder {
    font-size: 14px;
    opacity: 1;
}

.form-control:-moz-placeholder,
.form-control::-moz-placeholder {
    font-size: 14px;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    font-size: 14px;
    opacity: 1;
}

.form-control:focus {
    border-color: var(--color-1st);
    box-shadow: 0 0 0 #000;
    outline: none;
}

textarea.form-control {
    height: auto;
    padding: 2rem;
    resize: none;
}

.checkbox {
    display: block;
    position: relative;
}

.checkbox>input {
    position: absolute;
    visibility: hidden;
}

.checkbox label {
    color: rgba(var(--color-heading), 0.5);
    cursor: pointer;
    font-family: var(--primary-font);
    font-weight: 400;
    margin-bottom: 0;
    padding-left: 30px;
    position: relative;
}

.checkbox label:before {
    border: 1px solid var(--color-heading);
    height: 20px;
    left: 0;
    top: 0;
    width: 20px;
}

.checkbox label:after,
.checkbox label:before {
    content: "";
    display: block;
    position: absolute;
    transition: all 0.4s ease;
    z-index: 10;
}

.checkbox label:after {
    border: 2px solid #fff;
    border-left: none;
    border-top: none;
    height: 10px;
    left: 7px;
    opacity: 0;
    top: 4px;
    transform: rotate(0deg);
    width: 6px;
}

.checkbox input[type="checkbox"]:checked~label:before {
    background-color: var(--color-2nd);
    border-color: var(--color-2nd);
}

.checkbox input[type="checkbox"]:checked~label:after {
    opacity: 1;
    transform: rotate(45deg);
}

.radio {
    position: relative;
}

.radio>input {
    position: absolute;
    visibility: hidden;
}

.radio label {
    color: #737373;
    cursor: pointer;
    font-family: var(--primary-font);
    font-weight: 400;
    margin-bottom: 0;
    padding-left: 30px;
    position: relative;
}

.radio label:before {
    border: 1px solid rgba(19, 8, 1, 0.2);
    height: 20px;
    left: 0;
    top: 0;
    transition: all 0.4s ease;
    width: 20px;
    z-index: 10;
}

.radio label:after,
.radio label:before {
    background-color: #fff;
    border-radius: 50%;
    content: "";
    display: block;
    position: absolute;
}

.radio label:after {
    height: 8px;
    left: 6px;
    opacity: 0;
    top: 6px;
    transition: all 0.6s ease;
    width: 8px;
    z-index: 15;
}

.radio input[type="checkbox"]:checked~label:before {
    background-color: transparent;
}

.radio input[type="checkbox"]:checked~label:after {
    background-color: var(--color-1st);
    border: none;
    border-radius: 50%;
    height: 8px;
    left: 6px;
    opacity: 1;
    top: 6px;
    width: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group>label {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 1em;
    margin-bottom: 10px;
}

.form-group>label sup {
    color: var(--color-danger);
}

.form-group--inline {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    position: relative;
    width: 100%;
}

.form-group--inline>label {
    margin-bottom: 0;
}

.form-group--inline .form-group__content {
    width: 100%;
}

.form-group--number {
    display: inline-block;
    position: relative;
}

.form-group--number button {
    background: none;
    border: none;
    color: var(--color-heading);
    font-size: 30px;
    height: 20px;
    max-width: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
}

.form-group--number button.up {
    right: 12px;
}

.form-group--number button.up:after,
.form-group--number button.up:before {
    background-color: var(--color-text);
    content: "";
    display: inline-block;
    height: 1px;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 14px;
}

.form-group--number button.up:before {
    transform: translate(-50%, -50%) rotate(90deg);
}

.form-group--number button.up:after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.form-group--number button.down {
    left: 12px;
}

.form-group--number button.down:before {
    background-color: var(--color-text);
    content: "";
    display: inline-block;
    height: 1px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    width: 14px;
}

.form-group--number .form-control {
    background-color: transparent;
    border: none;
    color: var(--color-heading);
    font-size: 18px;
    font-weight: 600;
    height: 45px;
    padding: 0 25px;
    text-align: center;
}

.form-group--number .form-control::-webkit-input-placeholder {
    color: var(--color-heading);
}

.form-group--number .form-control:-moz-placeholder,
.form-group--number .form-control::-moz-placeholder {
    color: var(--color-heading);
}

.form-group--number .form-control:-ms-input-placeholder {
    color: var(--color-heading);
}

.select--arrow {
    position: relative;
}

.select--arrow i {
    position: absolute;
    right: 10px;
    top: 71%;
    transform: translateY(-50%);
}

.select--arrow .form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
}

.dropdown {
    display: inline-block;
    position: relative;
}

.dropdown>a {
    display: block;
    padding-right: 20px;
    position: relative;
}

.dropdown>a:after {
    content: "\e93a";
    font: normal normal normal 12px/1 linearicons;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.dropdown ul {
    background-color: #fff;
    box-shadow: 0 1px 1px 2px hsla(0, 0%, 80%, 0.2);
    max-width: 200px;
    min-width: 120px;
    opacity: 0;
    padding: 4px 0;
    position: absolute;
    right: 0;
    text-align: left;
    top: 100%;
    visibility: hidden;
    width: 100%;
    z-index: 100;
}

.dropdown ul li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.dropdown ul li a {
    color: var(--color-heading);
    display: block;
    font-size: 1.3rem;
    padding: 6px 10px;
}

.dropdown:hover ul {
    opacity: 1;
    visibility: visible;
}

.custom-checkbox input[type="checkbox"],
.custom-checkbox input[type="radio"],
.custom-radio input[type="checkbox"],
.custom-radio input[type="radio"] {
    display: none;
}

.custom-checkbox label,
.custom-radio label {
    display: block;
}

.custom-checkbox span,
.custom-radio span {
    border-radius: 50%;
    cursor: pointer;
    display: block;
    height: 25px;
    position: relative;
    width: 25px;
}

.custom-checkbox input[type="checkbox"]:checked~span:before,
.custom-checkbox input[type="radio"]:checked~span:before,
.custom-radio input[type="checkbox"]:checked~span:before,
.custom-radio input[type="radio"]:checked~span:before {
    border: 2px solid var(--color-1st);
    border-radius: 50%;
    bottom: -4px;
    content: "";
    display: block;
    left: -4px;
    position: absolute;
    right: -4px;
    top: -4px;
}

.custom-checkbox.disabled label,
.custom-radio.disabled label {
    position: relative;
}

.custom-checkbox.disabled label:after,
.custom-checkbox.disabled label:before,
.custom-radio.disabled label:after,
.custom-radio.disabled label:before {
    background-color: var(--color-heading);
    content: "";
    height: 90%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform-origin: 50% 50%;
    transition: all 0.4s ease;
    width: 1px;
    z-index: 20;
}

.custom-checkbox.disabled label:before,
.custom-radio.disabled label:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.custom-checkbox.disabled label:after,
.custom-radio.disabled label:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.custom-checkbox.disabled span,
.custom-radio.disabled span {
    opacity: 0.9;
}

.custom-checkbox.disabled input[type="checkbox"]:checked~span:before,
.custom-checkbox.disabled input[type="radio"]:checked~span:before,
.custom-radio.disabled input[type="checkbox"]:checked~span:before,
.custom-radio.disabled input[type="radio"]:checked~span:before {
    display: none;
}

.collection {
    position: relative;
}

.collection img {
    width: 100%;
}

.collection .collection__more_link {
    align-items: center;
    background-color: #fff;
    border-radius: 50px;
    bottom: 30px;
    color: var(--color-1st);
    display: flex;
    font-weight: 600;
    height: 50px;
    justify-content: center;
    left: 50%;
    min-width: 200px;
    position: absolute;
    text-transform: uppercase;
    transform: translateX(-50%);
    z-index: 20;
}

.collection .collection__more_link:hover {
    background-color: var(--color-1st);
    color: #fff;
}

.post .post__wrapper {
    transition: all 0.3s ease-in-out;
}

.post .post__wrapper .post__content {
    padding: 15px;
}

.post:hover .post__wrapper {
    background: #fff;
    box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
    transform: translateY(-5px);
}

.post .post__overlay {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

.post .post__title {
    font-weight: 600;
}

.post .post__title a {
    font-weight: inherit;
}

.post .post__thumbnail {
    overflow: hidden;
    position: relative;
}

.post .post__thumbnail img {
    transition: all 0.25s ease;
}

.post .post__header {
    padding-bottom: 10px;
}

.post .post__content {
    padding-top: 20px;
}

.post:hover .post__overlay {
    background-color: rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 480px) and (max-width: 992px) {
    .post {
        display: flex;
        flex-flow: row nowrap;
    }

    .post>* {
        flex-basis: 100%;
        max-width: 50%;
    }

    .post .post__content {
        display: flex;
        flex-flow: column wrap;
        justify-content: flex-start;
        padding-left: 20px;
    }
    ul.forum-latest>li {
        padding: 8px;
    }
}
@media screen and (min-width: 330px) {

    ul.forum-latest>li {
        padding: 8px;
    }
}

.post--detail .post__header {
    padding: 20px 0;
    text-align: center;
}

.post--detail .post__header h1 {
    font-size: 20px;
    text-transform: uppercase;
}

@media screen and (min-width: 768px) {
    .post--detail .post__header {
        padding: 30px 0;
    }

    .post--detail .post__header h1 {
        font-size: 30px;
    }
}

.pagination .page-item.active span {
    background: var(--color-1st);
    color: #fff;
}

.pagination .page-item .page-link {
    background-color: #e9ecef;
    border: none;
    color: var(--color-text);
    margin: 0 5px;
    outline: none;
    padding: 8px 15px;
}

.pagination .page-item .page-link:hover {
    background: var(--color-1st);
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    background-color: #e9ecef !important;
}

.shop__pagination {
    align-items: center;
    display: flex;
    justify-content: center;
    padding-top: 60px;
    text-align: center;
}

.breadcrumb-wrapper {
    background: #f6f6f8;
    padding: 15px;
    display: none;
}

.breadcrumb-wrapper .breadcrumb--custom {
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-wrapper .breadcrumb--custom li {
    color: var(--color-heading);
    display: inline-block;
    font-size: 14px;
    position: relative;
}

.breadcrumb-wrapper .breadcrumb--custom li:before {
    content: "/";
    margin: 0 5px;
}

.breadcrumb-wrapper .breadcrumb--custom li a {
    color: var(--color-text);
    font-size: 14px;
}

.breadcrumb-wrapper .breadcrumb--custom li a:hover {
    color: var(--color-heading);
}

.breadcrumb-wrapper .breadcrumb--custom li:first-child:before {
    display: none;
}

.block--contact-info {
    margin-bottom: 30px;
}

.block--contact-info h3 {
    font-size: 18px;
    text-transform: uppercase;
}

@media screen and (min-width: 768px) {
    .block--contact-info h3 {
        font-size: 20px;
    }
}

@media screen and (min-width: 992px) {
    .block--contact-info {
        align-items: center;
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
    }

    .block--contact-info>* {
        flex-basis: 100%;
        max-width: 50%;
    }

    .block--contact-info .block__info {
        padding-left: 60px;
    }
}

.panel--sidebar {
    background-color: #fff;
    bottom: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 0;
    transform: translate3d(400px, 0, 0);
    transition: transform 0.25s ease;
    width: 400px;
    z-index: 1000001;
}

.panel--sidebar .panel__close {
    cursor: pointer;
    height: 30px;
    position: absolute;
    right: 0;
    top: 10px;
    width: 30px;
}

.panel--sidebar .panel__close:after,
.panel--sidebar .panel__close:before {
    background-color: #fff;
    content: "";
    height: 50%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform-origin: 50% 50%;
    transition: all 0.4s ease;
    width: 1px;
}

.panel--sidebar .panel__close:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.panel--sidebar .panel__close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.panel--sidebar .panel__close:hover:after,
.panel--sidebar .panel__close:hover:before {
    background-color: var(--color-danger);
}

.panel--sidebar .panel__header {
    
    background: url('/themes/september/img/header-background.png');
    padding: 15px;
    position: relative;
}

.panel--sidebar .panel__header h4 {
    color: #fff;
    font-weight: 500;
    margin-bottom: 0;
    text-transform: capitalize;
}

.panel--sidebar .panel__content {
    display: flex;
    flex: 1 1 auto;
    margin-bottom: 0;
    padding: 10px;
    position: relative;
}

.panel--sidebar.active {
    transform: none;
}

@media screen and (max-width: 479px) {
    .panel--sidebar {
        max-width: 100%;
    }
}

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

.widget--footer p strong {
    color: var(--color-heading);
}

.widget--footer .widget__title {
    color: var(--color-heading);
    font-size: 14px;
    font-weight: 600;
    line-height: 23px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.widget--footer .widget__links li {
    margin-bottom: 0.5em;
}

.widget--footer .widget__links li a {
    display: block;
    line-height: 20px;
}

.widget--footer .widget__links li:last-child {
    margin-bottom: 0;
}

.widget--shop .widget__title {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    text-transform: capitalize;
}

.widget--shop .widget__links li a {
    font-size: 14px;
    font-weight: 400;
}

.widget--tags .list--tags li {
    display: inline-block;
    margin-bottom: 5px;
    margin-right: 5px;
}

.widget--tags .list--tags li a {
    border: 1px solid var(--color-heading);
    border-radius: 50px;
    display: inline-block;
    font-size: 14px;
    padding: 6px 10px;
}

.widget--tags .list--tags li a:hover {
    border-color: var(--color-1st);
}

.widget--colors .color-swatch li {
    display: inline-block;
    margin-bottom: 5px;
    margin-right: 10px;
    vertical-align: top;
}

.widget--colors .color-swatch li label {
    margin-bottom: 0;
}

.ps-list--categories li {
    padding: 5px 20px 5px 0;
    position: relative;
}

.ps-list--categories li a {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    position: relative;
}

.ps-list--categories li a:before {
    content: "";
    left: 0;
    line-height: 20px;
    position: absolute;
    top: 0;
}

.ps-list--categories li.current-menu-item>a {
    color: var(--color-1st);
}

.ps-list--categories li .sub-toggle {
    display: inline-block;
    height: 32px;
    position: absolute;
    right: 0;
    top: 0;
    width: 32px;
}

.ps-list--categories li .sub-toggle i {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.ps-list--categories li .sub-menu {
    background-color: transparent;
    border: none;
    display: none;
    opacity: 1;
    padding-left: 20px !important;
    position: relative;
    transition: all 0s ease;
    visibility: visible;
    z-index: unset;
}

.ps-list--categories li .sub-menu li a {
    background-color: transparent;
    border: none;
    color: inherit;
    font-size: 14px;
    padding: 0 0 0 15px;
}

.ps-list--categories li .sub-menu li.menu-item-has-children .sub-toggle {
    display: inline-block;
}

.ps-list--categories li .sub-menu li.menu-item-has-children .sub-menu {
    left: 0;
    opacity: 1;
    position: relative;
    top: 0;
    transform: translateY(0);
    visibility: visible;
}

.slick-slider .slick-slide {
    box-shadow: 0 0 transparent;
    outline: none;
}

.slick-slider .slick-slide:active,
.slick-slider .slick-slide:focus,
.slick-slider .slick-slide:hover {
    outline: none;
}

.owl-carousel .owl-item .slider-item {
    margin: 0;
    max-height: 650px;
}

.carousel--nav .owl-nav>* i {
    color: var(--color-heading);
}

#nonlinear {
    margin: 10px auto;
    width: 96%;
}

.noUi-connect {
    background-color: var(--color-1st);
}

.noUi-horizontal {
    height: 6px;
}

.noUi-handle:after,
.noUi-handle:before {
    display: none;
}

.noUi-horizontal .noUi-handle {
    background-color: var(--color-1st);
    height: 16px;
    left: -17px;
    outline: none;
    top: -6px;
    width: 16px;
}

html:not([dir="rtl"]) .noUi-horizontal .noUi-handle {
    right: -7px;
}

.noUi-handle {
    border: 3px solid var(--color-1st);
    border-radius: 50%;
    box-shadow: none;
}

.product .badge {
    align-items: center;
    color: #fff;
    display: flex;
    height: 24px;
    justify-content: center;
    padding: 0 10px;
}

.product .badge i {
    color: #fff;
    font-size: 1.3rem;
    font-style: normal;
    line-height: 1.2em;
    text-align: center;
}

.product .badge--sale {
    background-color: #fe9931;
}

.product .product__badges {
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 30;
}

.product .product__shopping {
    background-color: #fff;
    bottom: 10px;
    color: var(--color-text);
    font-size: 1.3rem;
    left: 10px;
    line-height: 2rem;
    padding: 1.5rem 2rem;
    text-align: center;
    transform: translateY(100%);
    transition: all 0.5s ease;
    width: calc(100% - 20px);
}

.product .product__actions,
.product .product__shopping {
    opacity: 0;
    position: absolute;
    visibility: hidden;
    z-index: 30;
}

.product .product__actions {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -100%);
    transition: all 0.25s ease;
    width: 100%;
}

.product .product__actions li {
    margin-bottom: 10px;
    text-align: center;
}

.product .product__actions li a {
    background-color: #fff;
    border-radius: 4px;
    color: var(--color-heading);
    display: inline-block;
    line-height: 20px;
    padding: 10px 30px;
    text-align: center;
}

.product .product__actions li a:hover {
    background-color: var(--color-heading);
    color: #fff;
}

.product .product__actions li a:hover i {
    color: var(--color-1st);
}

.product .product__actions li:last-child {
    margin-bottom: 0;
}

.product .product__overlay {
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

.product .product__thumbnail {
    position: relative;
}

.product .product__thumbnail img {
    max-width: 100%;
    width: 100%;
}

.product .product__thumbnail:before {
    background-color: rgba(0, 0, 0, 0.15);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: all 0.4s ease;
    visibility: hidden;
    width: 100%;
    z-index: 10;
    z-index: 1;
}

.product .product__thumbnail .product__actions {
    z-index: 11;
}

.product .product__thumbnail .product__favorite {
    color: #fff;
    font-size: 16px;
    left: 10px;
    opacity: 0;
    position: absolute;
    top: 10px;
    transition: all 0.4s ease;
    visibility: hidden;
    z-index: 40;
}

.product .product__thumbnail .product__favorite.active,
.product .product__thumbnail .product__favorite:hover {
    color: var(--color-1st);
}

.product .product__thumbnail:hover .product__favorite,
.product .product__thumbnail:hover:before {
    opacity: 1;
    visibility: visible;
}

.product .product__thumbnail:hover .product__shopping {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.product .product__thumbnail:hover .product__actions {
    opacity: 1;
    transform: translate(-50%, -50%);
    visibility: visible;
}

.product .product__title {
    color: var(--color-heading);
    display: block;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.8em;
}

.product .product__title:hover {
    color: var(--color-1st);
}

.product .product__variants {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}

.product .product__variants li {
    margin-right: 6px;
}

.product .product__variants li:last-child {
    margin-right: 0;
}

.product .product__content {
    padding: 15px 0 0;
    text-align: left;
}

.product .product__price {
    color: #696969;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 5px;
}

.product .product__price del {
    color: var(--color-text);
    margin-right: 5px;
}

.product .product__price.sale del {
    color: var(--color-danger);
}

@media (max-width: 767px) {
    .product {
        margin: 0 auto 2rem;
        max-width: 350px;
    }
    .latest-topics-section{
        height: 385px !important;
        margin-bottom: 20px;
    }
    .main-slider-section {
        padding: 0px !important;
    }
    .owl-carousel .owl-item .slider-item {
        border-radius: 10px;
    }
    .product .product__title{
        font-size:14px;   
    }
    .product .product__price{
        font-size: 1.2rem;
    }
    div#main-tabs ul {
        display: flex;
        padding-inline-start: 0px;
        justify-content: center;
    }
}

.product--on-cart {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}

.product--on-cart>* {
    flex-basis: 100%;
}

.product--on-cart .product__thumbnail {
    max-width: 56px;
}

.product--on-cart .product__content {
    padding-left: 20px;
    padding-right: 30px;
    position: relative;
}

.product--on-cart .product__content .product__remove {
    color: var(--color-text);
    font-size: 18px;
    position: absolute;
    right: 0;
    top: 0;
}

.product--on-cart .product__content .product__remove:hover {
    color: var(--color-danger);
    text-decoration: none;
}

.product--on-cart .product__content a {
    color: var(--color-heading);
    display: block;
    font-size: 14px;
}

.product--on-cart .product__content a:hover {
    text-decoration: underline;
}

.product--on-cart .product__content small {
    color: var(--color-heading);
    font-size: 12px;
    font-weight: 600;
}

.product--on-cart .product__content small .cart-price {
    color: var(--color-1st);
}

.product--cart {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
}

.product--cart .product__title {
    color: var(--color-heading);
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.product--cart .product__title:hover {
    color: var(--color-1st);
}

.product--cart .product__thumbnail {
    flex-basis: 110px;
}

.product--cart .product__content {
    padding-left: 15px;
}

.product--cart .product__content small {
    font-size: 14px;
}

.product__attribute>* {
    flex-basis: 100%;
}

.product--detail figure.product__sharing figcaption,
.product--detail figure.product__tags figcaption {
    color: var(--color-heading);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.product--detail .product__info-header {
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.product--detail .product__title {
    color: var(--color-heading);
    display: inline-block;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3em;
    text-transform: uppercase;
}

.product--detail .product__variants .item {
    border: 2px solid transparent;
    cursor: pointer;
    margin-bottom: 10px;
}

.product--detail .product__variants .item img {
    opacity: 0.5;
    transition: all 0.4s ease;
}

.product--detail .product__variants .item:last-child {
    margin-bottom: 0;
}

.product--detail .product__variants .item.slick-current img {
    opacity: 1;
}

.product--detail .product__variants .item:hover img {
    opacity: 1;
    width: 100%;
}

.product--detail .product__gallery {
    position: relative;
}

.product--detail .product__gallery img {
    width: 100%;
}

.product--detail .product__gallery .slick-arrow {
    background-color: hsla(0, 0%, 100%, 0.5);
    border-radius: 4px;
    color: #000;
    font-size: 18px;
    height: 35px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    visibility: hidden;
    width: 35px;
    z-index: 100;
}

.product--detail .product__gallery .slick-arrow i {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.product--detail .product__gallery .slick-arrow:first-child {
    left: 20px;
}

.product--detail .product__gallery .slick-arrow:last-child {
    right: 10px;
}

.product--detail .product__gallery .slick-arrow:hover {
    background-color: var(--color-1st);
    color: #fff;
}

.product--detail .product__gallery:hover .item:before,
.product--detail .product__gallery:hover .slick-arrow {
    opacity: 1;
    visibility: visible;
}

.product--detail .product__info {
    text-align: left;
}

.product--detail .product__add-wishlist {
    font-size: 18px;
    float: right;
}

.product--detail .product__add-wishlist span {
    padding-left: 5px;
    text-decoration: underline;
}

.product--detail .product__price {
    align-items: center;
    color: var(--color-heading);
    display: flex;
    flex-flow: row nowrap;
    font-size: 18px;
    font-weight: 400;
    justify-content: space-between;
    margin-bottom: 10px;
}

.product--detail .product__price del {
    color: #bcbcbc;
    font-size: 1.3rem;
    font-style: normal;
}

.product--detail .product__price p {
    color: var(--color-info);
    font-size: 21px;
    font-weight: 600;
}

.product--detail .product__price p span {
    font-weight: inherit;
}

.product--detail .product__price.sale {
    color: var(--color-heading);
}

.product--detail .product__price.sale del {
    color: var(--color-danger);
    font-size: 22px;
    margin-right: 20px;
}

.product--detail .product__attribute {
    align-items: center;
    border-bottom: 1px solid #ddd;
    display: flex;
    flex-flow: row nowrap;
}

.product--detail .product__attribute label {
    margin-bottom: 0;
}

.product--detail .product__attribute .form-control {
    border: none;
}

.product--detail .product__color {
    padding-bottom: 10px;
}

.product--detail .product__color .color-swatch li {
    display: inline-block;
    margin-right: 5px;
    vertical-align: top;
}

.product--detail .product__color .color-swatch li:last-child {
    margin-right: 0;
}

.product--detail .product__color .color-swatch li span {
    margin-bottom: 0;
}

.product--detail .product__desc {
    margin-bottom: 20px;
}

.product--detail .product__desc p {
    color: #777;
    font-size: 14px;
    margin-bottom: 0;
}

.product--detail .product__shopping {
    margin-bottom: 36px;
}

.product--detail .product__shopping figure {
    display: flex;
    justify-content: space-between;
    max-width: 470px;
    padding-bottom: 20px;
}

.product--detail .product__shopping figure>* {
    margin-right: 10px;
}

.product--detail .product__shopping figure .form-group--number {
    max-width: 150px;
}

.product--detail .product__shopping figure .form-group--number input {
    border-radius: 0;
}

.product--detail .product__shopping figure .btn {
    font-size: 14px;
    font-weight: 500;
    min-width: 250px;
    padding: 12px 30px 13px;
    text-align: center;
    text-transform: uppercase;
    vertical-align: top;
}

.product--detail .product__shopping figure .btn.btn--gray {
    background-color: rgba(34, 34, 34, 0.5);
    color: #fff;
}

.product--detail .product__shopping figure .btn.btn--gray:hover {
    background-color: var(--color-heading);
}

.product--detail .product__shopping figure .product__favorite {
    align-items: center;
    border: 2px solid #eaeaea;
    color: #999;
    display: flex;
    height: 45px;
    justify-content: center;
    margin-right: 0;
    min-width: 45px;
    position: relative;
    vertical-align: top;
}

.product--detail .product__shopping figure .product__favorite i {
    color: var(--color-text);
    left: 50%;
    padding-top: 2px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.product--detail .product__shopping figure .product__favorite:hover {
    border-color: var(--color-1st);
}

.product--detail .product__shopping figure .product__favorite:hover i {
    color: var(--color-1st);
}

.product--detail .product__shopping .btn--black {
    letter-spacing: 0.1em;
}

.product--detail .product__sharing {
    margin-bottom: 0;
}

.product--detail .product__sharing p {
    color: var(--color-heading);
    font-weight: 500;
    line-height: 30px;
}

.product--detail .product__sharing a {
    border-radius: 50%;
    display: inline-block;
    height: 30px;
    margin-right: 5px;
    vertical-align: top;
    width: 30px;
}

.product--detail .product__sharing a i {
    color: var(--color-heading);
    font-size: 20px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.product--detail .product__sharing a:last-child {
    margin-right: 0;
}

.product--detail .product__sharing a:hover {
    background-color: var(--color-1st);
    color: #fff;
}

.product--detail .product__sharing p {
    margin-bottom: 0;
}

.product--detail .product__sharing .list--social li {
    margin-right: 5px;
}

.product--detail .product__sharing .list--social a {
    height: 40px;
    width: 40px;
}

.product--detail .product__tags a {
    border: 1px solid var(--color-heading);
    border-radius: 50px;
    display: inline-block;
    font-size: 14px;
    margin-bottom: 6px;
    margin-right: 6px;
    padding: 6px 10px;
}

.product--detail .product__tags a:hover {
    background-color: var(--color-1st);
    border-color: var(--color-1st);
    color: #fff;
}

.product--detail .product__thumbnail {
    display: flex;
    flex-flow: column wrap;
    margin-bottom: 30px;
    width: 100%;
}

.product--detail .product__thumbnail>* {
    width: 100%;
}

.product--detail .product__thumbnail figure {
    display: block;
    position: relative;
}

.product--detail .product__thumbnail .product__variants {
    min-width: 80px;
    width: 100%;
}

.product--detail .product__thumbnail .wrapper {
    margin-bottom: 10px;
    position: relative;
}

.product--detail .product__thumbnail.product__thumbnail[data-vertical="false"] {
    flex-flow: column wrap;
}

.product--detail .product__thumbnail.product__thumbnail[data-vertical="false"] figure {
    max-width: 100%;
    padding-left: 0;
}

.product--detail .product__thumbnail.product__thumbnail[data-vertical="false"] .product__variants {
    max-width: 100%;
    text-align: center;
    width: 100%;
}

.product--detail .product__thumbnail.product__thumbnail[data-vertical="false"] .product__variants .item {
    margin-bottom: 0;
    margin-right: 10px;
}

.product--detail .product__thumbnail.product__thumbnail[data-vertical="false"] .product__variants .item.slick-active:last-child {
    margin-right: 0;
}

.product--detail .product__thumbnail.product__thumbnail[data-vertical="false"] .product__variants .slick-list {
    margin-right: -10px;
}

.product--detail .product__thumbnail.product__thumbnail[data-vertical="false"] .product__variants .slick-arrow {
    font-size: 20px;
    line-height: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.product--detail .product__thumbnail.product__thumbnail[data-vertical="false"] .product__variants .slick-arrow:first-child {
    left: -20px;
}

.product--detail .product__thumbnail.product__thumbnail[data-vertical="false"] .product__variants .slick-arrow:first-child i:before {
    content: "\f104";
}

.product--detail .product__thumbnail.product__thumbnail[data-vertical="false"] .product__variants .slick-arrow:last-child {
    right: 0;
}

.product--detail .product__thumbnail.product__thumbnail[data-vertical="false"] .product__variants .slick-arrow:last-child i:before {
    content: "\f105";
}

.product--detail .product__thumbnail.product__thumbnail[data-vertical="false"] .product__variants .slick-arrow:hover i {
    color: #000;
}

.product--detail .product__thumbnail.product__thumbnail[data-vertical="false"] .product__gallery {
    margin-bottom: 10px;
}

.product--detail .product__thumbnail.product__thumbnail[data-vertical="false"] .product__gallery img {
    width: 100%;
}

.product--detail .tab-list {
    display: block;
    margin: 0 0 50px;
    padding: 20px 0;
    position: relative;
}

.product--detail .tab-list li {
    display: inline-block;
    margin-right: 30px;
}

.product--detail .tab-list li a {
    border: 1px solid transparent;
    border-radius: 50px;
    color: var(--color-text);
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    padding: 10px 0;
    position: relative;
    text-transform: uppercase;
}

.product--detail .tab-list li a:before {
    background-color: var(--color-1st);
    content: "";
    height: 3px;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 100%;
    visibility: hidden;
    width: 100%;
}

.product--detail .tab-list li a:hover {
    color: var(--color-heading);
}

.product--detail .tab-list li:last-child {
    margin-right: 0;
}

.product--detail .tab-list li.active a {
    color: var(--color-1st);
}

.product--detail .tab-list li.active a:before {
    opacity: 1;
    visibility: visible;
}

.product--detail .product__content {
    padding-top: 50px;
}

@media (max-width: 480px) {
    .product--detail .product__shopping figure {
        flex-flow: row wrap;
    }

    .product--detail .product__shopping figure .form-group--number {
        margin-right: 0;
        max-width: 100%;
        width: 100%;
    }

    .product--detail .product__shopping figure>* {
        margin-bottom: 10px;
    }

    .product--detail .product__shopping figure .btn {
        flex-grow: 2;
        text-align: center;
    }
}

@media (min-width: 768px) {
    .product--detail .product__thumbnail {
        max-width: 500px;
    }
}

@media (min-width: 992px) {
    .product--detail .product__title {
        font-size: 28px;
    }

    .product--detail .product__desc p {
        font-size: 16px;
    }

    .product--detail .product__price {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .product--detail .product__sharing {
        padding-top: 20px;
    }

    .product--detail .product__header {
        display: flex;
        flex-flow: row nowrap;
    }

    .product--detail .product__header>* {
        max-width: 50%;
        width: 100%;
    }

    .product--detail .product__header .product__thumbnail {
        padding-right: 30px;
    }

    .product--detail .product__content {
        padding-top: 0px;
    }
}

@media (min-width: 1200px) {
    .product--detail .product__thumbnail {
        align-content: flex-start;
        flex-flow: row-reverse nowrap;
    }

    .product--detail .product__thumbnail figure {
        max-width: calc(100% - 80px);
        padding-left: 10px;
    }

    .product--detail .product__variants {
        max-width: 80px;
    }

    .product--detail .product__info {
        padding-left: 30px;
    }
}

.table--cart .form-group--number {
    max-width: 120px;
}

.table--cart .total {
    color: var(--color-text);
    font-size: 18px;
}

.table--cart .total strong {
    color: var(--color-heading);
    text-transform: uppercase;
}

.table--cart .total span {
    font-size: 0.75em;
}

.table--cart .total .total__price {
    color: var(--color-heading);
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2em;
}

.table--cart .total .total__price span {
    display: block;
    font-size: 0.6em;
}

.table--cart thead tr th {
    border: none;
    border-bottom: 1px solid #e5e5e5;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.table--cart tbody tr td {
    border: none;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 20px;
    padding-top: 20px;
    vertical-align: middle;
}

.table--cart tbody tr td strong {
    font-weight: 600;
}

.table--cart tbody tr td:first-child {
    padding-left: 0;
}

.table--cart tbody tr td:last-child {
    padding-right: 0;
    text-align: right;
}

.table--cart tbody tr td:last-child button {
    background-color: transparent;
}

.table--orders thead tr th {
    border: none;
}

.table--orders tbody td {
    padding: 20px;
}

.table--orders tbody td:first-child {
    padding-left: 0;
}

.table--orders tbody td:last-child {
    padding-right: 0;
    text-align: right;
}

@keyframes half-circle-spinner-animation {
    0% {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(1turn);
    }
}

.tab {
    display: none;
}

.tab.active {
    display: block;
}

.cart--mini {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    position: relative;
}

.cart--mini .cart__items {
    border-bottom: none;
    flex: 1 1 auto;
    overflow-y: auto;
    position: relative;
}

.cart--mini .cart__items .product--on-cart {
    border-bottom: 1px dashed #eaeaea;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.cart--mini .cart__summary p {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}

.cart--mini .cart__summary p strong {
    color: var(--color-heading);
    font-weight: 500;
}

.cart--mini .cart__actions {
    padding: 1em 0;
}

.cart--mini .cart__actions .btn--custom {
    border-radius: 0;
    padding: 10px;
    text-align: center;
    text-transform: none;
    width: 100%;
}

.cart--mini .cart__footer {
    border-top: 1px solid #eaeaea;
    padding-top: 20px;
}

.cart--mini figure .btn {
    margin-bottom: 10px;
    padding: 12px 30px;
    text-align: center;
    width: 100%;
}

.cart--mini figure .btn--black {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    min-height: 48px;
}

.form--subscribe {
    position: relative;
}

.form--subscribe input {
    height: 40px;
}

.form--subscribe button {
    background-color: transparent;
    border: none;
    color: var(--color-heading);
    font-weight: 700;
    height: 30px;
    padding: 0 20px;
    position: absolute;
    right: 0;
    text-transform: uppercase;
    top: 50%;
    transform: translateY(-50%);
}

.form--primary-search {
    position: relative;
}

.form--primary-search button {
   background-color: var(--color-success);
    border-radius: 0px 20px 20px 0px;
    border: none;
    color: var(--color-contrast);
    font-weight: 700;
    height: 38px;
    padding: 0 10px;
    position: absolute;
    right: -4px;
    text-transform: uppercase;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 5px;
}

.form--contact {
    margin-bottom: 30px;
}

.form--contact .form-group {
    margin-bottom: 35px;
}

.form--contact .form__submit .btn--custom {
    min-width: 175px;
    text-align: center;
}

.form--auth .form__header {
    padding-bottom: 10px;
    text-align: center;
}

.form--auth .form__header h3 {
    font-size: 20px;
    text-transform: uppercase;
}

.form--auth .form__actions p a {
    color: var(--color-1st);
}

.form--auth .form__actions p a:hover {
    text-decoration: underline;
}

.form--auth .form__actions button {
    min-width: 175px;
    text-align: center;
    width: 100%;
}

@media screen and (min-width: 992px) {
    .form--auth .form__header {
        padding-bottom: 20px;
    }

    .form--auth .form__header h3 {
        font-size: 30px;
    }

    .form--auth .form__actions {
        align-items: center;
        display: flex;
        justify-content: space-between;
        padding-top: 10px;
    }

    .form--auth .form__actions button {
        width: auto;
    }
}

.form--shopping-cart .form__section h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1em;
    margin-bottom: 20px;
    padding-bottom: 5px;
    position: relative;
    text-transform: uppercase;
}

.form--shopping-cart .form__section h4:before {
    background-color: var(--color-heading);
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    top: 100%;
    width: 100px;
}

.panel--search .panel__close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease;
    z-index: 99;
}

.panel--search .panel__close i {
    font-size: 26px;
}

.panel--search .panel__close:hover i {
    color: var(--color-danger);
}

.panel--search.active {
    opacity: 1;
    transition-delay: 0s;
    visibility: visible;
}

.panel--search.active:before {
    transform: scaleX(1);
    transform-origin: 50% 0;
}

@media (max-width: 479px) {
    .panel--search {
        /*padding-right: 30px;*/
    }
}

.section .section__header h3 {
    font-size: 20px;
    text-transform: uppercase;
}

@media screen and (min-width: 1200px) {
    .section .section__header h3 {
        font-size: 30px;
    }
}

.section--homepage {
    padding-top: 30px;
}

.section--homepage .section__header {
    padding-bottom: 40px;
    text-align: center;
}

.section--homepage .section__header h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 0.25em;
    text-transform: capitalize;
}
.section--homepage .section__header h3 span {
    text-transform: capitalize !immportant;
}

.section--homepage .section__header p {
    font-size: 12px;
    font-weight: 700;
    text-transform: capitalize;
}

@media screen and (min-width: 992px) {
    .section--homepage {
        padding-top: 40px;
    }
}

@media screen and (min-width: 1200px) {
    .section--homepage {
        padding-top: 60px;
    }
}

.home-collection .collection {
    margin-bottom: 32px;
}

.shop--sidebar .shop__header {
    display: block;
    /*height: 40px;*/
    margin-bottom: 50px;
}

.shop--sidebar .shop__header:after {
    clear: both;
}

.shop--sidebar .shop__header .panel-trigger {
    padding: 10px 30px;
}

.shop--sidebar .shop__left {
    display: none;
    margin-top: 20px;
}

.shop--sidebar .shop__left .widget--shop {
    background-color: #f5f5f5;
    margin-bottom: 20px;
    padding: 25px 20px;
}

.shop--sidebar .shop__sort {
    /*display: none;*/
}

.shop--sidebar .shop__sort .form-group--inline {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}

.shop--sidebar .shop__sort .form-group--inline label {
    font-size: 14px;
    font-weight: 500;
    margin-right: 10px;
    min-width: 60px;
}

.shop--sidebar .shop__sort .form-group--inline .form-control {
    border-color: var(--color-heading);
    border-radius: 50px;
    height: 30px;
    padding: 0px 0px 0px 10px;
}

@media screen and (min-width: 992px) {
    .shop--sidebar .shop__left {
        padding-right: 30px;
    }

    .shop--sidebar .shop__header .panel-trigger {
        display: none;
    }

    .shop--sidebar .shop__sort {
        display: block;
        float: right;
    }
}

@media screen and (min-width: 1200px) {
    .shop--sidebar {
        display: flex;
        flex-flow: row nowrap;
    }

    .shop--sidebar .shop__left {
        display: block;
        max-width: 300px;
    }

    .shop--sidebar .shop__content {
        align-items: flex-start;
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
    }

    .shop--sidebar .shop__content>* {
        flex-basis: 100%;
    }
}

.section--blog {
    padding: 30px 0;
}

.section--blog .section__header {
    padding-bottom: 30px;
    text-align: center;
}

.section--blog .section__header h1 {
    color: var(--color-heading);
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

.section--blog .section__content .post {
    margin-bottom: 30px;
}

.section--blog .section__footer {
    padding-top: 30px;
}

@media screen and (min-width: 1200px) {
    .section--blog {
        padding: 30px 0 60px;
    }

    .section--blog .section__header {
        padding-bottom: 30px;
    }
}

.section--related-posts {
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.section--related-posts .post {
    margin-bottom: 30px;
}

.section--related-posts .section__header {
    padding-bottom: 20px;
}

.section--related-posts .section__header h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

@media screen and (min-width: 992px) {
    .section--related-posts .post {
        margin-bottom: 0;
    }
}

.section--auth .form--auth {
    background-color: #f7f7f7;
    margin: 0 auto 100px;
    max-width: 600px;
    padding: 30px;
}

.section--shopping-cart .section__header {
    padding-bottom: 20px;
    text-align: center;
}

@media screen and (min-width: 992px) {
    .section--shopping-cart .section__header {
        padding-bottom: 40px;
    }
}

.section--instagram {
    position: relative;
}

.section--instagram figure h3 {
    color: #fff;
}

.section--instagram .instagram-images {
    display: flex;
    flex-flow: row wrap;
    position: relative;
}

.section--instagram .instagram-images>* {
    flex-basis: 33.3333%;
}

.section--instagram .instagram-images .block--instagram {
    position: relative;
}

.section--instagram .instagram-images .block--instagram .block__actions {
    color: #fff;
    left: 50%;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.25s ease;
    visibility: hidden;
    width: 80%;
    z-index: 10;
}

.section--instagram .instagram-images .block--instagram .block__actions a {
    color: #fff;
    display: inline-block;
    font-size: 20px;
    margin-bottom: 10px;
    margin-right: 10px;
}

.section--instagram .instagram-images .block--instagram .block__actions a i {
    margin-right: 0.5em;
}

.section--instagram .instagram-images .block--instagram .block__actions a:last-child {
    margin-right: 0;
}

.section--instagram .instagram-images .block--instagram .block__actions p {
    color: #fff;
}

.section--instagram .instagram-images .block--instagram .block__overlay {
    background-color: transparent;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
    z-index: 10;
}

.section--instagram .instagram-images .block--instagram .block__caption {
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    max-height: 110px;
    overflow: hidden;
}

.section--instagram .instagram-images .block--instagram:hover .block__actions {
    opacity: 1;
    visibility: visible;
}

.section--instagram .instagram-images .block--instagram:hover .block__overlay {
    background-color: rgba(0, 0, 0, 0.4);
}

.section--instagram .section__follow-instagram {
    background-color: rgba(40, 40, 40, 0.9);
    box-shadow: 0 0.5px 1.5px 0 rgba(40, 40, 40, 0.3);
    left: 50%;
    max-width: 90%;
    padding: 20px 30px;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 20;
}

.section--instagram .section__follow-instagram h4 {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
}

.section--instagram .section__follow-instagram p {
    color: #8a8a8a;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.section--instagram .section__follow-instagram a {
    color: var(--color-1st);
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

@media screen and (min-width: 480px) {
    .section--instagram .instagram-images>* {
        flex-basis: 33.3333%;
    }
}

@media screen and (min-width: 768px) {
    .section--instagram .instagram-images>* {
        flex-basis: 25%;
    }

    .section--instagram .section__follow-instagram {
        max-width: 400px;
        padding: 20px 30px;
    }

    .section--instagram .section__follow-instagram h4 {
        font-size: 30px;
    }
}

@media screen and (min-width: 1200px) {
    .section--instagram .instagram-images>* {
        flex-basis: 25%;
    }
}

@media screen and (min-width: 1366px) {
    .section--instagram .instagram-images>* {
        flex-basis: 16.6666666667%;
    }
}

.home-blog {
    margin-bottom: 60px;
}

@media screen and (max-width: 1199px) {
    .home-blog .post {
        margin-bottom: 30px;
    }
}

.page--blog,
.page--inner {
    padding: 30px 0;
}

@media screen and (min-width: 768px) {

    .page--blog,
    .page--inner {
        padding: 30px 0 50px;
    }
}

@media screen and (min-width: 1200px) {

    .page--blog,
    .page--inner {
        padding: 50px 0 100px;
    }
}

.page--shop {
    padding-bottom: 50px;
}

.page--shop .page__hero {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 75px;
    position: relative;
    text-transform: uppercase;
}

.page--shop .page__hero:before {
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

.page--shop .page__hero h1 {
    color: #fff;
    font-size: 20px;
    position: relative;
    text-transform: capitalize;
    z-index: 10;
}

@media screen and (min-width: 768px) {
    .page--shop .page__hero h1 {
        font-size: 30px;
    }
}

@media screen and (min-width: 992px) {
    .page--shop .page__hero h1 {
        font-size: 36px;
    }
}

@media screen and (min-width: 1200px) {
    .page--shop {
        padding-bottom: 90px;
    }

    .page--shop .page__hero h1 {
        font-size: 48px;
    }
}

.page--product--detail .product--detail {
    margin-bottom: 50px;
}

.sub-toggle {
    cursor: pointer;
    display: inline-block;
    height: 36px;
    position: relative;
    transform-style: preserve-3d;
    width: 36px;
}

.sub-toggle:after,
.sub-toggle:before {
    background-color: var(--color-heading);
    content: "";
    height: 1px;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 12px;
}

.sub-toggle:before {
    transform: translateX(-50%);
}

.sub-toggle:after {
    transform: translateX(-50%) rotate(90deg);
}

.sub-toggle.active:after {
    display: none;
}

.sub-menu {
    background-color: hsla(0, 0%, 100%, 0.95);
    border: 1px solid #eee;
    left: 0;
    min-width: 240px;
    opacity: 0;
    position: absolute;
    top: 100%;
    transition: all 0.25s ease;
    visibility: hidden;
    z-index: 1000;
}

.sub-menu:before {
    border-bottom: 6px solid #fff;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    bottom: 100%;
    content: "";
    display: none;
    height: 0;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 0;
}

.sub-menu>li {
    display: block;
}

.sub-menu>li .sub-toggle-desktop {
    display: inline-block;
    position: absolute;
    right: 7px;
    top: 15px;
}

.sub-menu>li .sub-toggle-desktop:before {
    content: "\e844";
}

.sub-menu>li>a {
    color: var(--color-text);
    display: inline-block;
    font-size: 15px;
    padding: 10px 20px;
    text-transform: capitalize;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    width: 100%;
}

.sub-menu>li>a:hover {
    color: var(--color-1st);
}

.sub-menu>li:last-child a {
    border-bottom: 1px solid #eee;
}

.sub-menu>li.menu-item-has-children {
    position: relative;
}

.sub-menu>li.menu-item-has-children>.sub-toggle {
    display: none;
}

.sub-menu>li.menu-item-has-children>.sub-menu {
    left: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    transform: translateY(30px);
    visibility: hidden;
}

.sub-menu>li.menu-item-has-children>.sub-menu:before {
    display: none;
}

.sub-menu>li.menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.sub-menu>li:last-child {
    border-bottom: none;
}

.menu>li {
    padding-right: 30px;
}

.menu>li,
.menu>li>a {
    display: inline-block;
}

.menu>li>a {
    color: var(--color-contrast);
    font-size: 17px;
    font-weight: 700;
    line-height: 20px;
    padding: 30px 0;
    position: relative;
    text-transform: capitalize;
    transform-style: preserve-3d;
}

.menu>li>a:hover {
    color: var(--color-success);
}

.menu>li:first-child {
    padding-left: 0;
}

.menu>li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.menu>li .sub-toggle {
    display: none;
}

.menu>li.menu-item-has-children {
    position: relative;
}

.menu>li.menu-item-has-children .sub-toggle {
    display: none;
    margin-left: 5px;
}

.menu>li.menu-item-has-children .sub-menu {
    opacity: 0;
    transform: scaleZ(0) translateY(30px);
    visibility: hidden;
}

.menu>li.menu-item-has-children:hover .sub-toggle {
    color: #fff;
}

.menu>li.menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    transform: scaleX(1) translateY(0);
    visibility: visible;
}

.menu>li.current-menu-item>a {
    color: var(--color-success);
}
.menu--mobile>li.current-menu-item>a {
    color: var(--color-success);
}
.menu>li.current-menu-item .sub-toggle {
    color: #fff;
}

@media (max-width: 1199px) {
    .menu>li {
        border-bottom: 1px dashed #e4e4e4;
        display: block;
        padding-right: 0;
    }

    .menu>li>a {
        color: var(--color-heading);
        display: block;
        font-size: 1.5rem;
        line-height: 20px;
        padding: 1rem 0;
    }

    .menu>li.menu-item-has-children {
        position: relative;
    }

    .menu>li.menu-item-has-children>.sub-menu {
        display: none;
        opacity: 1;
        transition: all 0s ease;
        visibility: visible;
    }

    .menu>li.menu-item-has-children>.sub-menu>.menu-item-has-children>.sub-toggle {
        height: 40px;
        width: 40px;
    }

    .menu>li.menu-item-has-children .sub-toggle {
        height: 30px;
        margin-left: 0;
        position: absolute;
        right: 0;
        top: 0;
        width: 30px;
        z-index: 10;
    }

    .menu>li.menu-item-has-children .sub-toggle i {
        left: 50%;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .menu>li.current-menu-item {
        border-left: 2px solid var(--color-1st);
        padding-left: 1rem;
    }

    .menu>li.current-menu-item>a:before {
        display: none;
    }
}

.menu--mobile {
    width: 100%;
}

.menu--mobile .sub-menu {
    border: none;
    display: none;
    opacity: 1;
    position: relative;
    transform: translate(0);
    transition: all 0s ease;
    visibility: visible;
}

.menu--mobile .sub-menu>li>a {
    border: none;
    padding: 10px 20px;
}

.menu--mobile .sub-toggle:after,
.menu--mobile .sub-toggle:before {
    background-color: var(--color-text);
}

.menu--mobile>li {
    border-bottom: 1px dashed #eaeaea;
    padding-left: 1rem !important;
}

.menu--mobile>li>a {
    color: var(--color-text);
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding: 10px 20px 10px 0;
    position: relative;
    text-transform: capitalize;
    z-index: 10;
}

.menu--mobile>li>a:hover {
    color: var(--color-1st);
    padding-left: 5px;
}

.menu--mobile>li.menu-item-has-children:not(.has-mega-menu) {
    position: relative;
}

.menu--mobile>li.menu-item-has-children:not(.has-mega-menu) .sub-toggle {
    display: inline-block;
    height: 40px;
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    z-index: 20;
}

@media screen and (max-width: 768px) {
    .sub-toggle-desktop {
        display: none !important;
    }
    div.main-tabs {
        font-size: 12px !important;
    }
    
}

.navigation>.container {
    flex-flow: row nowrap;
}

.navigation--mobile,
.navigation>.container {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.navigation--mobile {

    padding: 10px 15px;
}

@media screen and (min-width: 1200px) {
    .navigation--mobile {
        display: none;
    }
}

.header {
    display: none;
}

.header .btn-shopping-cart {
    position: relative;
}

.header .btn-shopping-cart>span {
    align-items: center;
    background-color: var(--color-success);
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-size: 10px;
    height: 16px;
    justify-content: center;
    min-width: 16px;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(25%, 25%);
}

.header .header__actions {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    color: var(--color-contrast);
}

.header .header__actions>* {
    align-items: center;
    display: flex;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.header .header__actions>* i {
    font-size: 20px;
}

.header.header--sticky>.navigation {
    animation: fadeInDown 0.6s both;
    background: url('/themes/september/img/header-background.png');
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    left: 0;
    min-height: 60px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
}

@media screen and (min-width: 1200px) {
    .header {
        display: block;
    }
}

.header--mobile .logo {
    font-size: 20px;
}

.header--mobile.header--sticky {
    padding: 15px 20px;
}

.header--mobile.header--sticky .navigation--mobile {
    background-color: var(--color-1st);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

@media screen and (max-width: 1199px) {
    .header--mobile {
        display: block;
        background: url('http://muhrak.com/themes/september/img/header-background.png');
        background-repeat: no-repeat;
        background-size: cover;
        padding-bottom: 20px;
    }
    div.main-tabs ul>li{
        margin: 4px !important;
    }
}

.navigation--list {
    background-color: var(--color-1st);
    bottom: 0;
    left: 0;
    padding: 10px 30px;
    position: fixed;
    width: 100%;
    z-index: 100;
}

.navigation--list .navigation__item {
    align-items: center;
    border-radius: 50px;
    display: flex;
    height: 36px;
    justify-content: center;
    text-align: center;
    width: 36px;
}

.navigation--list .navigation__item i {
    color: #fff;
    font-size: 20px;
}

.navigation--list .navigation__item span {
    display: block;
}

.navigation--list .navigation__item.active {
    background-color: #fff;
}

.navigation--list .navigation__item.active i {
    color: var(--color-1st);
    font-size: 18px;
}

.navigation--list .navigation__item.active span {
    color: var(--color-1st);
}

.navigation--list .navigation__content {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 300px;
}

@media (min-width: 1200px) {
    .navigation--list {
        display: none;
    }
}

.navigation--sticky {
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navigation--sticky,
.navigation--sticky .navigation {
    background-color: #fff;
}

.navigation--sticky .header__top {
    display: none;
}

.navigation--sticky.navigation--pin {
    transform: translate(0);
}

.navigation--sticky.navigation--unpin {
    transform: translateY(-100%);
}

.navigation--sticky.header--1.navigation--pin .navigation {
    background-color: rgba(0, 0, 0, 0.95);
}

.navigation--sticky.header--1.navigation--pin.header--black .navigation {
    background-color: hsla(0, 0%, 100%, 0.95);
}

.navigation--sticky.header--2.navigation--pin.active {
    background-color: #fff;
    transform: translate(270px);
}

@media (max-width: 1199px) {
    .navigation--sticky.navigation--unpin {
        transform: translate(0);
    }
}

.site-mask {
    background-color: rgba(0, 0, 0, 0.75);
    height: 100vh;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: all 0.4s ease;
    visibility: hidden;
    width: 100%;
    z-index: 1000;
}

.site-mask.active {
    opacity: 1;
    visibility: visible;
}

.ps-search--mobile {
    margin: 0 auto;
    max-width: 450px;
    padding: 10px 20px;
}

.footer {
    background-color: #f9f9f9;
    padding: 45px 0;
}

.footer .widget--footer {
    margin-bottom: 20px;
}

@media screen and (min-width: 1200px) {
    .footer .widget--footer {
        margin-bottom: 40px;
    }

    .footer .widget--footer:last-child {
        margin-bottom: 0;
    }
}

.mb-0 {
    margin-bottom: 0;
}

.bg--cover {
    background-position: 50% 50% !important;
    background-size: cover !important;
}

.header ul,
.panel--sidebar ul,
.product ul,
.product--detail .product__color ul,
.shop--sidebar .shop__left ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-reviews-container .review-container form .btn-primary {
    background-color: transparent;
    border: 1px solid var(--color-1st);
    border-radius: 50px;
    color: var(--color-1st);
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    margin-top: 15px;
    min-width: 175px;
    padding: 14px 36px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.product-reviews-container .review-container form .btn-primary:hover {
    background-color: var(--color-1st);
    border-color: var(--color-1st);
    color: #fff;
}

.product-reviews-container .review-container .btn-check {
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
    position: absolute;
}

.product-reviews-container .review-container .ms-2 {
    margin-left: 0.5rem !important;
}

.product-reviews-container .review-container .gap-2 {
    gap: 0.5rem !important;
}

.product-reviews-container .review-container .gap-5,
.product-reviews-container .review-container.gap-5 {
    gap: 3rem !important;
}

.product-reviews-container .review-container .g-1,
.product-reviews-container .review-container .gy-1 {
    --bs-gutter-y: 0.25rem;
}

.product-reviews-container .review-container .g-1,
.product-reviews-container .review-container .gx-1 {
    --bs-gutter-x: 0.25rem;
}

.product-reviews-container .review-container .badge {
    border-radius: 0.25rem;
    color: #fff;
    display: inline-block;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    padding: 0.35em 0.65em;
    text-align: center;
    vertical-align: baseline;
    white-space: nowrap;
}

.product-reviews-container .review-container .bg-dark {
    --bs-bg-opacity: 1;
    --bs-dark-rgb: 33, 37, 41;
    background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.product-reviews-container .review-container .translate-middle {
    transform: translate(-50%, -50%) !important;
}

.product-reviews-container .review-container .start-50 {
    left: 50% !important;
}

.product-reviews-container .review-container .top-50 {
    top: 50% !important;
}

.product-reviews-container .review-container .start-0 {
    left: 0 !important;
}

.product-reviews-container .review-container .top-0 {
    top: 0 !important;
}

.product-reviews-container .review-container .position-absolute {
    position: absolute !important;
}

.product-reviews-container .review-container .opacity-75 {
    opacity: 0.75 !important;
}

.product-reviews-container .review-container .review-images.row,
.product-reviews-container .review-container .review-item__images .row {
    --bs-gutter-x: 0.25rem;
    --bs-gutter-y: 0.25rem;
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(var(--bs-gutter-x) * -0.5);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-top: calc(var(--bs-gutter-y) * -1);
}

.product-reviews-container .review-container .review-images.row>*,
.product-reviews-container .review-container .review-item__images .row>* {
    flex-shrink: 0;
    margin-top: var(--bs-gutter-y);
    max-width: 100%;
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    width: 100%;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes slideInLeft {
    0% {
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        transform: translateZ(0);
    }
}

@keyframes slideInRight {
    0% {
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        transform: translateZ(0);
    }
}

@keyframes slideInUp {
    0% {
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    to {
        transform: translateZ(0);
    }
}

@keyframes slideInDown {
    0% {
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        transform: translateZ(0);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    to {
        opacity: 0;
    }
}

p:empty {
    margin-bottom: 0;
}

.required:after {
    color: red;
    content: " *";
}

.product-attributes ul {
    list-style: none;
    padding-left: 0;
}

.product--detail .product__price.sale del {
    font-size: 14px;
}

.btn--custom.btn-disabled {
    border: 1px solid var(--color-text);
    color: var(--color-text);
    opacity: 0.7;
}

.widget--tags .list--tags li.active a {
    border-color: var(--color-1st);
    color: var(--color-1st);
}

.widget__links li.active a {
    color: var(--color-1st);
}

.block--review .block__content {
    padding-top: 0;
}

.block--review .block__header {
    align-items: start;
}

.block--product-reviews>.block__header p i {
    margin-right: 0;
}

.block--product-reviews>.block__header p span {
    margin-left: 0.5em;
}

.star-yellow {
    color: #edb867;
}

.product {
    margin: 20px 0;
}

.product .product__wrapper {
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.product .product__wrapper .product__content {
    padding: 15px;
}

.product:hover .product__wrapper {
    background: #fff;
    box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
    transform: translateY(-5px);
}

.product .product__thumbnail .product__variants {
    bottom: -10px;
    left: 50%;
    position: absolute;
    text-align: center;
    transform: translateX(-50%);
    width: 100%;
}

.product .product__thumbnail .product__variants .custom-checkbox span {
    border: 1px solid #f2f2f2;
    border-radius: 0;
    height: 20px;
    width: 20px;
}

.single-variation-wrap .error-message,
.single-variation-wrap .success-message {
    margin-top: 10px;
}

body .cookie-consent .cookie-consent-body {
    max-width: 1200px;
}

.panel--sidebar .panel__content {
    overflow-y: scroll;
}

.panel--sidebar .panel__content.panel__scroll {
    display: block;
    flex: none;
}

.ps-slider__value {
    display: inline-block;
    margin-top: 10px;
}

.product--detail .product__attribute .text-swatch li,
.widget--shop .widget-content .text-swatch li {
    display: inline-block;
    margin-right: 5px;
}

.product--detail .product__attribute .text-swatch li input[type="checkbox"],
.product--detail .product__attribute .text-swatch li input[type="radio"],
.widget--shop .widget-content .text-swatch li input[type="checkbox"],
.widget--shop .widget-content .text-swatch li input[type="radio"] {
    display: none;
}

.product--detail .product__attribute .text-swatch li input[type="checkbox"]:checked~span,
.product--detail .product__attribute .text-swatch li input[type="radio"]:checked~span,
.widget--shop .widget-content .text-swatch li input[type="checkbox"]:checked~span,
.widget--shop .widget-content .text-swatch li input[type="radio"]:checked~span {
    border: 1px solid var(--color-1st);
}

.product--detail .product__attribute .text-swatch li input[type="checkbox"]:checked~span:after,
.product--detail .product__attribute .text-swatch li input[type="radio"]:checked~span:after,
.widget--shop .widget-content .text-swatch li input[type="checkbox"]:checked~span:after,
.widget--shop .widget-content .text-swatch li input[type="radio"]:checked~span:after {
    bottom: -5px;
    color: #fff;
    content: "\e83f";
    font-family: feather !important;
    font-size: 8px;
    height: 16px;
    overflow: hidden;
    position: absolute;
    right: -8px;
    width: 16px;
}

.product--detail .product__attribute .text-swatch li input[type="checkbox"]:checked~span:before,
.product--detail .product__attribute .text-swatch li input[type="radio"]:checked~span:before,
.widget--shop .widget-content .text-swatch li input[type="checkbox"]:checked~span:before,
.widget--shop .widget-content .text-swatch li input[type="radio"]:checked~span:before {
    border: 16px solid transparent;
    border-bottom: 16px solid var(--color-1st);
    bottom: -1px;
    content: "";
    position: absolute;
    right: -16px;
}

.product--detail .product__attribute .text-swatch li span,
.widget--shop .widget-content .text-swatch li span {
    border: 1px solid #eee;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 5px 15px;
    position: relative;
    transition: 0.2s;
}

.widget--shop .widget-content .text-swatch li span {
    background: #fff;
}

.slider__content {
    bottom: 0;
    display: table;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.slider__content .slider__content__wrapper {
    display: table-cell;
    vertical-align: middle;
}

.slider__content .slider__content__wrapper .slider__content__wrapper__content {
    margin: 0 auto;
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
}

.slider__content .slider__content__wrapper .slider__content__wrapper__content h2 {
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    max-width: 50%;
    text-transform: capitalize;
}

.slider__content .slider__content__wrapper .slider__content__wrapper__content p {
    color: #fff;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 30px;
    max-width: 50%;
}

.widget-filter-item {
    border-top: 1px solid #ccc;
    padding: 20px 0;
}

.nonlinear-wrapper {
    padding-bottom: 20px;
}

.panel__content .widget--shop {
    margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
    .slider__content .slider__content__wrapper .slider__content__wrapper__content h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .slider__content .slider__content__wrapper .slider__content__wrapper__content p {
        line-height: 24px;
        margin-bottom: 10px;
    }

    .slider__content .slider__content__wrapper .slider__content__wrapper__content .btn--custom,
    .slider__content .slider__content__wrapper .slider__content__wrapper__content button.btn--custom {
        font-size: 14px;
        padding: 10px 20px;
    }
}

.fb-customerchat,
.fb_dialog {
    z-index: 9999 !important;
}

.banner-effect {
    display: block;
    overflow: hidden;
    position: relative;
}

.banner-effect:before {
    background: linear-gradient(90deg,
            hsla(0, 0%, 100%, 0) 0,
            hsla(0, 0%, 100%, 0.3));
    content: "";
    display: block;
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transform: skewX(-25deg);
    width: 50%;
    z-index: 2;
}

.banner-effect:hover:before {
    animation: shine 1.1s;
}

@keyframes shine {
    to {
        left: 125%;
    }
}

@media screen and (max-width: 768px) {
    .slider__content .slider__content__wrapper .slider__content__wrapper__content {
        display: none;
    }
}

.ps-block--feature {
    display: flex;
    flex-flow: row nowrap;
    max-width: 260px;
}

.ps-block--feature>* {
    width: 100%;
}

.ps-block--feature>.ps-block__left {
    max-width: 55px;
}

.ps-block--feature>.ps-block__left i {
    color: var(--color-text);
    font-size: 3.5rem;
}

.ps-block--feature>.ps-block__right p {
    color: var(--color-heading);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.4em;
    text-transform: uppercase;
}

.ps-block--feature>.ps-block__right small {
    color: var(--color-text);
    display: block;
    font-size: 1.4rem;
}

@media (max-width: 991px) {
    .ps-block--feature {
        margin: 0 auto 3rem;
    }
    .row.slider-section{
        margin-right: 0px !important;
        margin-left: 0px !important;
    }
}

@media (max-width: 767px) {
    .ps-block--feature {
        max-width: 100%;
    }
}

.ps-block--features {
    padding: 4rem 0;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input {
    -moz-appearance: textfield;
}

.show-admin-bar #alert-container {
    top: 100px;
}

.show-admin-bar .panel--search {
    top: 40px;
}

.show-admin-bar #avatar-modal {
    top: 80px;
}

.show-admin-bar .header.header--sticky>.navigation {
    top: 40px;
}

.form--contact .form__submit .btn--custom.button-loading {
    background-color: var(--color-1st) !important;
}

.rating_wrap .rating {
    display: inline-block;
    font-family: feather !important;
    height: 20px;
    overflow: hidden;
    position: relative;
    vertical-align: top;
    width: 80px;
}

.rating_wrap .rating:before {
    color: #d2d2d2;
    content: "\e90b\e90b\e90b\e90b\e90b";
    float: left;
    font-size: 16px;
    left: 0;
    letter-spacing: 2px;
    position: absolute;
    top: 0;
}

.rating_wrap .rating_num {
    color: #696969;
    display: inline-block;
    font-size: 14px;
    vertical-align: middle;
}

.rating_wrap .product_rate {
    color: #FF5C00;
    font-family: feather !important;
    left: 0;
    overflow: hidden;
    padding-top: 1.5em;
    position: absolute;
    top: 0;
}

.rating_wrap .product_rate:before {
    content: "\e90b\e90b\e90b\e90b\e90b";
    font-size: 16px;
    left: 0;
    letter-spacing: 2px;
    position: absolute;
    top: 0;
}

.error-inner {
    min-height: calc(100vh - 385px);
}

.show-admin-bar .error-inner {
    min-height: calc(100vh - 425px);
}

.top-header {
    padding: 10px 0;
    transition: all 0.5s ease-in-out;
}

.top-header,
.top-header a {
    color: #ffffff;
    font-size: 12px;
}

.top-header a:hover {
    color: var(--color-1st);
}

.mr-3,
.mx-3 {
    margin-right: 1rem !important;
}

.contact-detail li {
    display: inline-block;
    margin-right: 10px;
}

.header_list>li {
    color: #333;
    display: inline-block;
    font-size: 14px;
    padding: 2px 15px 2px 0;
    vertical-align: middle;
}

.header_list>li:last-child {
    padding-right: 0;
}

.header_list>li i {
    vertical-align: middle;
}

.slider__content {
    background: rgba(0, 0, 0, 0.2);
}

.customer-page .profile-sidebar .profile-usermenu li.list-group-item a.active {
    color: var(--color-1st);
}

.tracking-form {
    background-color: #f7f7f7;
    margin: 15px auto 30px;
    max-width: 500px;
    padding: 30px;
}

.tracking-form .btn--custom.btn--outline,
.tracking-form .form-control,
.tracking-form button.btn--custom.btn--outline {
    background-color: #fff;
}

.tracking-form .btn--custom:active,
.tracking-form .btn--custom:hover,
.tracking-form button.btn--custom:active,
.tracking-form button.btn--custom:hover {
    background-color: var(--color-1st);
    color: #fff;
}

.customer-information-box {
    text-align: right;
}

@media (max-width: 767px) {
    .customer-information-box {
        text-align: left;
    }
}

#remove-item-modal {
    z-index: 99999999;
}

#alert-container {
    position: fixed;
    right: 5px;
    top: 60px;
    z-index: 9999999;
}

#alert-container .alert {
    box-shadow: 0 4px 10px 0 rgba(3, 3, 3, 0.1);
    font-weight: 400;
    margin-bottom: 10px;
    max-width: 450px !important;
    min-height: 45px !important;
    padding: 15px 40px 15px 60px;
    position: relative;
}

#alert-container .alert.alert-success {
    background-color: #bff9d0;
    color: #299c77;
}

#alert-container .alert .message-icon {
    fill: #299c77;
    stroke: #299c77;
    font-size: 20px;
    left: 5%;
    position: absolute;
    top: 30%;
}

#alert-container .alert.alert-dismissible .close {
    font-size: 10px;
    padding: 0;
    position: absolute;
    right: 15px;
    top: 20px;
}

.ps-pagination {
    align-items: center;
    display: flex;
    justify-content: center;
    padding-bottom: 30px;
    padding-top: 30px;
    text-align: center;
}

.ps-pagination a {
    cursor: pointer;
}

.ps-checkbox {
    display: block;
    position: relative;
}

.ps-checkbox>input {
    box-sizing: border-box;
    position: absolute;
    visibility: hidden;
}

.ps-checkbox label {
    cursor: pointer;
    font-weight: 400;
    margin-bottom: 0;
    padding-left: 30px;
    position: relative;
}

.ps-checkbox label:before {
    border: 1px solid #000;
    height: 20px;
    left: 0;
    top: 0;
    width: 20px;
}

.ps-checkbox label:after,
.ps-checkbox label:before {
    content: "";
    display: block;
    position: absolute;
    transition: all 0.4s ease;
    z-index: 10;
}

.ps-checkbox label:after {
    border: 2px solid #fff;
    border-left: none;
    border-top: none;
    height: 10px;
    left: 7px;
    opacity: 0;
    top: 4px;
    transform: rotate(0deg);
    width: 6px;
}

.ps-checkbox input[type="checkbox"]:checked~label:before {
    background-color: #222;
    border-color: #222;
}

.ps-checkbox input[type="checkbox"]:checked~label:after {
    opacity: 1;
    transform: rotate(45deg);
}

.avatar-view.mt-card-avatar {
    height: 150px;
    margin: 0 auto;
    width: 150px;
}

.section--auth a {
    color: var(--color-1st);
}

.section--auth .form-control {
    background-color: #fffefe;
}

.top-header {
    min-height: 45px;
    background-color: rgb(0, 0, 0, 0.2);
}

.header>.navigation,
.header>.navigation>.container {
    min-height: 80px;
}

#app {
    min-height: 500px;
}

.menu--mobile .sub-menu>li.menu-item-has-children>.sub-menu {
    padding-left: 20px;
    position: static;
}

.product .badge {
    float: left;
    margin-right: 5px;
}

.header .logo img {
    max-height: 70px;
}

.footer {
    padding: 45px 0 20px;
}

.table--cart.table--wishlist tr td,
.table--orders.table--wishlist tr td {
    padding: 0.75rem;
}

.table--cart tr td .product__price.sale,
.table--orders tr td .product__price.sale {
    color: var(--color-heading);
}

.table--cart tr td .product__price.sale p>span,
.table--orders tr td .product__price.sale p>span {
    font-weight: 600;
}

.table--cart tr td .product__price.sale del,
.table--orders tr td .product__price.sale del {
    color: var(--color-danger);
    font-size: 13px;
}

.product__attribute .attribute-swatch-item.pe-none {
    cursor: not-allowed !important;
}

.product__attribute .attribute-swatch-item.pe-none>div {
    pointer-events: none !important;
}

.product__attribute .color-swatch .attribute-swatch-item.pe-none span,
.product__attribute .text-swatch .attribute-swatch-item.pe-none span {
    color: gray;
    cursor: unset;
    opacity: 0.7;
}

.product__attribute .color-swatch .attribute-swatch-item.pe-none span:after,
.product__attribute .color-swatch .attribute-swatch-item.pe-none span:before,
.product__attribute .text-swatch .attribute-swatch-item.pe-none span:after,
.product__attribute .text-swatch .attribute-swatch-item.pe-none span:before {
    border-top: 1px dashed #999;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    top: 50%;
    width: 100%;
}

.product__attribute .color-swatch .attribute-swatch-item.pe-none span:before,
.product__attribute .text-swatch .attribute-swatch-item.pe-none span:before {
    transform: rotate(45deg);
}

.product__attribute .color-swatch .attribute-swatch-item.pe-none span:after,
.product__attribute .text-swatch .attribute-swatch-item.pe-none span:after {
    transform: rotate(-45deg);
}

.button-loading {
    border: 1px solid #c4cdd5;
    color: transparent !important;
    cursor: default;
    position: relative;
    text-shadow: none;
    transition: border-color 0.2s ease-out;
}

.button-loading,
.button-loading:active,
.button-loading:focus,
.button-loading:hover {
    color: transparent;
}

.button-loading:before {
    animation: button-loading-spinner 1s linear infinite;
    border: 3px solid;
    border-color: #fff #fff transparent;
    border-radius: 50%;
    content: "";
    height: 18px;
    left: 50%;
    margin-left: -9px;
    margin-top: -9px;
    position: absolute;
    top: 50%;
    width: 18px;
}

.button-loading.btn-fill-out {
    border: 1px solid var(--color-1st);
    color: transparent !important;
}

.button-loading.btn-fill-out:before {
    background-color: transparent;
    border-color: var(--color-1st);
    border-bottom-color: transparent;
    width: 18px;
}

.button-loading.btn-fill-out:after {
    display: none;
}

@keyframes button-loading-spinner {
    0% {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(1turn);
    }
}

.section--shopping-cart .table-responsive {
    padding: 0 10px;
}

.section--shopping-cart .table-responsive .table--cart.content-loading:after {
    left: -10px;
    right: -10px;
}

.cart__items .product--on-cart.content-loading,
.section--shopping-cart .table--cart.content-loading {
    position: relative;
}

.cart__items .product--on-cart.content-loading:before,
.section--shopping-cart .table--cart.content-loading:before {
    animation: button-loading-spinner 1s linear infinite;
    border-color: var(--color-1st);
    border-bottom-color: transparent;
    border-radius: 50%;
    border-style: solid;
    border-width: 1px;
    content: "";
    height: 18px;
    left: 50%;
    margin-left: -9px;
    margin-top: -9px;
    position: absolute;
    top: 50%;
    width: 18px;
}

.cart__items .product--on-cart.content-loading:after,
.section--shopping-cart .table--cart.content-loading:after {
    background: rgba(0, 0, 0, 0.02);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: -10px;
}

.form--review-product .text-danger a {
    color: var(--color-1st);
}

.language-wrapper .dropdown {
    height: 100%;
}

.language-wrapper .dropdown.open .language_bar_chooser.dropdown-menu {
    display: block;
}

.language-wrapper .dropdown .btn {
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: inherit !important;
    font-size: inherit;
    height: 100%;
    margin-bottom: 0;
    outline: none !important;
    padding: 7px 15px;
    transition: all 0.4s ease;
}

.language-wrapper .dropdown .dropdown-menu {
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    display: none;
    float: left;
    font-size: 14px;
    line-height: 58px;
    list-style: none;
    margin: 0;
    min-width: 160px;
    padding: 0;
    position: absolute;
    right: 0;
    text-align: left;
    top: 100%;
    width: 160px;
    z-index: 1000;
}

.language-wrapper .dropdown .dropdown-menu li img {
    margin: 0 10px;
}

.language-wrapper .dropdown .dropdown-menu li span {
    color: #222;
}

.language-wrapper .dropdown .dropdown-menu li.active a span {
    color: #fff;
}

.language-wrapper .dropdown .language_bar_chooser {
    display: block;
    float: right;
    line-height: 58px;
    text-align: center;
    width: 160px;
}

.language-wrapper .dropdown .language_bar_chooser li {
    display: inline-block;
    float: left;
    margin-left: 5px;
}

.language-wrapper .dropdown .language_bar_chooser.dropdown-menu {
    border-radius: 0 !important;
    display: none;
}

.language-wrapper .dropdown .language_bar_chooser.dropdown-menu li {
    display: block;
    margin: 0;
    width: 100%;
}

.language-wrapper .dropdown .language_bar_chooser.dropdown-menu li:hover {
    background: #ddd;
}

.language-wrapper .dropdown .language_bar_chooser.dropdown-menu li a {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    margin-right: 0 !important;
    text-align: left;
    width: 100%;
}

.language-wrapper .language_bar_list li {
    display: inline-block;
    margin-left: 5px;
    min-width: 90px;
}

.language-wrapper .language_bar_list li a {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
}

.language-wrapper .language_bar_list li a img {
    margin-right: 10px;
    width: 20px;
}

.language-wrapper .language_bar_list li a span {
    color: #222;
}

body[dir="rtl"] .language-wrapper .language_bar_list li a img {
    margin-left: 10px;
    margin-right: 0;
}

body[dir="rtl"] .language-wrapper .language_bar_chooser.dropdown-menu li a {
    text-align: right;
}

.language-wrapper .language_bar_list li a img {
    margin-right: 5px;
    margin-top: 1px;
}

.language-wrapper .dropdown-toggle:after {
    display: none;
}

.language-wrapper .dropdown .btn {
    padding: 7px;
}

.language-wrapper .btn-select-language {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: var(--color-muted) !important;
    font-size: 12px;
    font-weight: 400;
    height: auto;
    padding: 0;
}

.language-wrapper .dropdown-menu.language_bar_chooser {
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid #dee2e6 !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    display: none;
    font-size: 12px;
    line-height: 1;
    list-style: none;
    margin: 0.125rem 0 0;
    min-width: 10rem;
    padding: 0;
    text-align: left;
    z-index: 1000;
}

.language-wrapper .dropdown-menu li img {
    margin: 0 10px;
}

.language-wrapper .dropdown-menu li a {
    padding: 10px 0;
}

.language-wrapper .btn img {
    margin-right: 7px;
    margin-top: 2px;
}

.language-wrapper.choose-currency .dropdown .dropdown-menu.language_bar_chooser {
    min-width: 0;
    width: auto;
}

.language-wrapper.choose-currency .dropdown .dropdown-menu.language_bar_chooser li a {
    padding: 10px;
    text-align: center;
}

.deal {
    background-color: #f5f6f9;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-flow: row wrap;
    min-height: 300px;
    padding: 30px;
}

.deal-co {
    margin: 15px 0;
}

.deal,
.deal>div {
    width: 100%;
    border-radius: 10px;
}

.deal .deal-content {
    align-self: center;
}

.deal .product-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 25px;
    max-width: 240px;
}

.deal .product-title a {
    color: var(--color-heading);
    font-weight: 600;
}

.deal .product-price {
    align-items: center;
    color: var(--color-info);
    display: flex;
    flex-flow: wrap;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 20px;
}

.deal .product-price .new-price {
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-right: 10px;
}

.deal .product-price .old-price {
    color: var(--color-heading);
    text-decoration: line-through;
    font-size: 14px;
}

.deal .deal-bottom {
    align-self: flex-end;
}

.deal .deal-bottom .deals-countdown {
    margin-bottom: 20px;
    margin-left: -12px;
}

.deals-countdown .countdown-section {
    background-color: var(--color-info);
    border: none;
    border-radius: 0.3rem;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 2rem;
    margin-left: 0.8rem;
    margin-right: 0.8rem;
    padding: 0.9rem 0 0.3rem;
    position: relative;
}

.deals-countdown .countdown-section .countdown-amount {
    color: #fff;
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    height: 50px;
    line-height: 50px;
    margin-bottom: 15px;
    text-align: center;
    width: 50px;
}

.deals-countdown .countdown-section .countdown-period {
    bottom: -20px;
    color: var(--color-heading);
    display: block;
    font-weight: 400;
    left: 0;
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
    position: absolute;
    right: 0;
    text-align: center;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
    width: 100%;
}

.deals-countdown .countdown-section:not(:last-child):after {
    color: var(--color-heading);
    content: ":";
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
    left: 100%;
    line-height: 1;
    margin-left: 7px;
    margin-top: -1px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.custom-modal .modal-dialog {
    border: 0;
    border-radius: 0;
    margin: auto;
    max-width: 800px !important;
    overflow: hidden;
    top: 50%;
    transform: translateY(-50%) !important;
}

.custom-modal .modal-dialog .modal-content {
    border-radius: 0;
    padding: 0;
}

.custom-modal .modal-dialog .btn-close {
    background: transparent url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3E%3C/svg%3E") 50%/1em auto no-repeat;
    border: 0;
    border-radius: 0.25rem;
    box-sizing: content-box;
    color: #000;
    height: 1em;
    opacity: 0.5;
    padding: 0.25em;
    position: absolute;
    right: 30px;
    top: 30px;
    width: 1em;
    z-index: 2;
}

.ps-pagination .pagination .page-item.active .page-link {
    background: var(--color-1st);
    color: #fff;
}

.btn--custom.btn--outline.btn-outline-danger {
    border-color: #dc3545;
    color: #dc3545;
}

.btn--custom.btn--outline.btn-outline-danger:hover {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

.pagination {
    align-items: center;
    flex-flow: row wrap;
    justify-content: center;
}

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

.dropdown-swatch select.form-control {
    height: 34px;
}

.ps-list--categories .sub-menu li.current-menu-item>a {
    color: var(--color-1st);
}

.faqs-list h4 {
    margin-top: 30px;
}

.faqs-list h4:first-child {
    margin-top: 0;
}

.faqs-list .card {
    border: 1px solid rgba(0, 0, 0, 0.125) !important;
    margin-bottom: 10px;
}

.faqs-list .card .card-header {
    background: #fff;
    border-radius: 0;
    padding: 1rem;
}

.faqs-list .card .card-header h2 button {
    background: #fff;
    border: none;
    color: #333;
    display: block;
    font-size: 16px;
    font-weight: 600;
    padding: 0;
    position: relative;
    text-decoration: none !important;
    text-transform: none;
    width: 100%;
}

.faqs-list .card .card-header h2 button:before {
    display: none;
}

.faqs-list .card .card-header h2 button:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 1.25rem;
    border: 1px solid #ced4da;
    border-radius: 50%;
    color: #ced4da;
    content: "";
    height: 40px;
    line-height: 30px;
    position: absolute;
    right: 0;
    top: -7px;
    transform: scale(0.7) !important;
    transition: transform 0.2s ease-in-out;
    width: 40px;
}

.faqs-list .card .card-header h2 button:not(.collapsed):after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3E%3C/svg%3E");
}

.ps-custom-scrollbar {
    max-height: 250px;
}

.ps-custom-scrollbar .mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #666;
}

.ps-custom-scrollbar .mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
    background: hsla(0, 0%, 80%, 0.9);
}

.ps-custom-scrollbar .mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.ps-custom-scrollbar .mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
    border-radius: 0 !important;
    opacity: 1 !important;
    width: 6px;
}

.table__compare .product--detail .product__attribute {
    border: none;
    padding-bottom: 0;
}

.table__compare .product--detail .product__attribute .text-swatch li input[type="radio"]:checked~span:after {
    right: -5px;
}

.slider__content {
    display: block;
}

.slider__content .slider__content__wrapper {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
}

.slider__content .slider__content__wrapper .slider__content__wrapper__content {
    flex: 1;
}

.cat_slider.owl-carousel.owl-drag .owl-item:last-child {
    margin-right: 0 !important;
}

.cat_slider.owl-carousel .owl-stage {
    margin: 0 auto;
}

.cat_slider.owl-carousel .owl-item img {
    margin-bottom: 5px;
}

.generic-form .g-recaptcha {
    margin-top: 15px;
}

.product__attribute>label {
    flex: 1;
    margin-right: 10px;
    white-space: nowrap;
}

.product .product__title {
    word-break: break-word;
}

.iti.iti--allow-dropdown {
    width: 100%;
}

.icon-tiktok {
    background-size: 100%;
    background: url(../img/icon-tiktok.svg) no-repeat;
    display: inline-block;
    height: 15px;
    width: 15px;
}

.list--social li a:hover i.icon-tiktok {
    background: url(../img/icon-tiktok-light.svg) no-repeat;
}

.auth-card form {
    padding-top: 0 !important;
}

.auth-card form svg {
    height: 24px;
    margin-bottom: 0;
    width: 24px;
}

.auth-card form .auth-input-icon {
    top: 9px;
}

.auth-card form .ps-5 {
    padding-left: 40px !important;
}

.auth-card form .mb-3 {
    margin-bottom: 15px !important;
}

.auth-card form .form-check .form-check-input {
    margin-top: 3px;
    vertical-align: top;
}

.form--primary-search>input.form-control {
    border-radius: 50px;
    height: 40px;
    margin-top: 15px;
    background: var(--color-contrast);
    color: #000000;
}

.form--primary-search>input.form-control::placeholder {
    color: #000000;
}

div.main-tabs {
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    color: var(--color-contrast);
}

div.main-tabs ul>li {
    display: inline-block;
    padding: 6px;
    margin: 20px;
}

div.main-tabs .active {
    color: var(--color-contrast);
    margin-top: 10px;
    font-weight: 800;
    background-color: var(--color-info);
    border-radius: 5px;
}

div.main-tabs .inactive {
    color: var(--color-contrast);
    margin-top: 10px;
    font-weight: 400;
    background-color: #F1F4FF;
    border-radius: 5px;
}
div.main-tabs .inactive span {
    display: none;
}

div.main-tabs .inactive a {
    color: var(--color-info);
}


ul.forum-latest {
    list-style: none;
    padding-left: 2px;
}

ul.forum-latest>li {
    font-weight: 600;
    
    border-bottom: solid 1px #CBD5F9;
}
@media screen and (min-width: 993px) {

    ul.forum-latest>li {
        padding: 15px;
    }
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #0024A6;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #0024A6;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #00C2FF;
}

h3>span {
    color: #0024A6;
    font-weight: 700;
}

.categories_box>a>img {
    width: 40px !important;
}

.categories_box {
    display: flex;
    align-items: center;
    justify-content: center;
}

section.section--homepage.featured-categories {
    background-color: #F1F4FF;
    margin-top: 31px;
    padding-bottom: 35px;
}

.product__content h2 {
    font-size: 16px;
}

.ui-widget.ui-widget-content {
    font-weight: 600;
    max-height: 400px !important;
    overflow-y: scroll !important;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
    max-width: 96%;
    width: 1170px !important;
    z-index: 99;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 5px;
    background-color:#fff;
}
.ui-menu-item{
    background-color: #ffffff !important;
    padding: 15px !important;
    width:100%;

}


.hero-cover {
    background-color: var(--color-success);
    width: 100%;
    opacity: 78%;
}

.sendwhatsapp {
    width: 98%;
    border-radius: 20px;
    border: solid 1px #c9c9c9;
    background: transparent;
    padding: 3px;
    margin-top: 10px;
    text-transform: uppercase;
    font-weight: 500;
}

.sendwhatsapp img {
    margin-right: 10px;
}

header.header.homepage {
    background: url('http://muhrak.com/themes/september/img/header-background.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom:30px;
}

header.header.otherpage {
    background: url('http://muhrak.com/themes/september/img/header-background.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 20px;
}
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}
div.main-tabs img {
    height: 30px;
}
.shadow-effect span {
    padding: 20px;
    background-color: var(--color-info);
    border-radius: 50%;
    font-size: 20px;
    color: var(--color-success);
    font-weight: 600;
    border: solid 2px;
}
.forum-latest a {
    font-size: 16px;
    font-weight: 600;
}
.latest-topics-section{
    background-color: #F1F4FF;
    height: 428px;
    border-radius: 7px;
}