/*------------------------------------------------------------------
font-icon: https://icons8.com/line-awesome
utilities-bootstrap: https://getbootstrap.com/docs/4.0/utilities/borders/
-------------------------------------------------------------------*/
.rounded-30 {
    border-radius: 30px !important;
}

/* General */
hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border-top: 1px solid #e1e1e1;
}

a {
    color: #007bff;
    text-decoration: none;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

a:hover {
    color: #0056b3;
}

h1,h2,h3,h4,h5,h6, .h1,.h2,.h3,.h4,.h5,.h6 {
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 400;
}

h1,.h-1 {
    font-size: 24px;
}

h2,.h-2 {
    font-size: 20px;
}

h3,.h-3 {
    font-size: 18px;
}

h4,.h-4 {
    font-size: 16px;
}

h5,.h-5 {
    font-size: 13px;
}

h6,.h-6 {
    font-size: 11px;
}

body {
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: #222;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    z-index: 1020;
}

:focus {
    -webkit-box-shadow: none;
    outline: -webkit-focus-ring-color auto 0px;
}

.dark-overlay::after {
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
}

.line-af:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 3px;
    background: #D9D9D9;
    left: 0;
    right: 0;
    top: 100%;
    margin: 0 auto;
}

span.required {
    color: #ed0000;
}

.mw-40 {
    max-width: 40% !important;
}

.mw-60 {
    max-width: 60% !important;
}

.w-80 {
    width: 80% !important;
}

.w-85 {
    width: 85% !important;
}

.w-90 {
    width: 90% !important;
}

.w-1-1 {
    width: 35px;
    height: 35px;
    line-height: 35px;
}

.image-60 {
    max-width: 60px;
    width: 100%;
}

.bg-main {
    background: var(--color-main) !important;
}

.color-main {
    color: var(--color-main) !important;
}

.font-danger {
    color: #c33;
}

.font-success {
    color: #390;
}

.font-primary {
    color: #5867dd;
}

.font-secondary {
    color: #e1e1ef;
}

.font-info {
    color: #5578eb;
}

.font-warning {
    color: #ffb822;
}

.font-light {
    color: #f8f9fa;
}

.font-dark {
    color: #343a40;
}

.font-muted {
    color: #74788d;
}

.font-semiblod {
    font-weight: 600;
}

.font-large {
    font-size: 16px;
}

.font-extra-large {
    font-size: 18px;
}

.bg-breadcrums {
    background-color: #f5f5f5;
}

/* General button style (reset) */
.btn {
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 1;
    border-radius: 0;
}

.btn:before {
    content: '';
    position: absolute;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    z-index: -1;
}

label {
    font-weight: 600;
}

input[type=text], input[type=password], input[type=email], input[type=search], textarea {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    vertical-align: middle;
    background-color: #f4f4f4;
    border: 2px solid #f4f4f4;
    border-radius: 0px;
    height: 40px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

textarea {
    padding: 10px 15px;
    min-height: 80px;
}

.btn-light {
    background-color: #f4f4f4;
    border-color: #f4f4f4;
}

.btn-normal {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    padding: 0 25px;
    line-height: 40px;
    height: 40px;
}

.btn-dark.focus, .btn-dark:focus, .btn-dark:hover {
    background-color: #c33;
    border-color: #c33;
}

.disable {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
    -webkit-user-select: none;
    /* Chrome all / Safari all */
    -moz-user-select: none;
    /* Firefox all */
    -ms-user-select: none;
    /* IE 10+ */
    user-select: none;
}

.inner-checkbox {
    padding-left: 25px;
    margin-bottom: 0;
    position: relative;
    cursor: pointer;
}

.inner-checkbox>input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
}

.inner-checkbox>input:checked~span {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.inner-checkbox>input:checked~span::after {
    display: block;
}

.inner-checkbox>input:disabled~span {
    opacity: 0.6;
    filter: alpha(opacity=60);
    pointer-events: none;
}

.inner-checkbox>span {
    border-radius: 3px;
    position: absolute;
    top: 4px;
    left: 0;
    height: 18px;
    width: 18px;
    border: 1px solid #e3e3e3;
}

.inner-checkbox>span::after {
    content: '';
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    margin-left: -2px;
    margin-top: -6px;
    width: 5px;
    height: 10px;
    border-width: 0 2px 2px 0 !important;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border: solid #222;
}

.inner-checkbox:hover>input::not([disabled]):checked~span, .inner-checkbox>input:checked~span {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.entire-radio-inline .inner-radio {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 0px;
}

.inner-radio>span {
    border: 1px solid #c33;
}

.inner-radio>span:after {
    border: solid #c33;
    background: #c33;
}

.inner-radio {
    display: inline-block;
    position: relative;
    padding-left: 18px;
    text-align: left;
    margin-bottom: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    height: 18px;
}

.inner-radio.inner-radio--disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

.inner-radio>input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.inner-radio>span {
    background: none;
    position: absolute;
    top: 4px;
    left: 0;
    height: 18px;
    width: 18px;
    border-radius: 50% !important;
}

.inner-radio>span:after {
    content: '';
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    margin-left: -3px;
    margin-top: -3px;
    width: 6px;
    height: 6px;
    border-radius: 100% !important;
}

.inner-radio>input:checked~span {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: none;
}

.inner-radio>input:checked~span:after {
    display: block;
}

.inner-radio:hover>input:not([disabled]):checked~span, .inner-radio>input:checked~span {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.inner-radio>input:disabled~span {
    opacity: 0.6;
    pointer-events: none;
}

.color-white {
    color: #ffffff !important;
}

.color-black {
    color: #222 !important;
}

.bg-toolbar {
    background-color: #f5f5f5;
}

.opacity-0 {
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
}

.is-mobile .nh-row>.container {
    max-width: 768px;
}

.disable-scroll {
    overflow: hidden;
    height: 100%;
}

.container-full {
    padding: 0;
}

.container-full>.row {
    margin-right: 0;
    margin-left: 0;
}

.container-full>.row>.col, .container-full>.row>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.select2-container {
    height: 40px;
}

.select2-container .select2-selection--single {
    height: 40px;
    outline: none;
    background-color: #f4f4f4;
    border: 2px solid #f4f4f4;
    border-radius: 0;
}

.select2-container .select2-selection--single .select2-selection__arrow {
    right: 10px;
    height: 38px;
}

.select2-container .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-container .select2-selection--single .select2-selection__arrow::after {
    content: "\f107";
    display: block;
    font-family: "Line Awesome Free";
    font-weight: 900;
    font-style: normal;
    line-height: 38px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    color: #666;
    line-height: 36px;
    padding-left: 15px;
}

.select2-dropdown {
    border: 2px solid #f4f4f4;
    border-top: none;
}

.select2-dropdown .select2-results__option {
    padding: 6px 15px;
    outline: none;
}

.select2-dropdown .select2-results__option.select2-results__option--highlighted[aria-selected], .select2-dropdown .select2-results__option.select2-results__option--highlighted[data-selected] {
    background-color: #6c757d;
}

.select2-dropdown .select2-search--dropdown {
    padding: 10px 15px;
    background-color: #f4f4f4;
    border-bottom: 1px solid #f4f4f4;
}

.select2-dropdown .select2-search--dropdown .select2-search__field {
    background-color: #ffffff;
}

.select2-dropdown .select2-results__options::-webkit-scrollbar {
    width: 6px;
}

.select2-dropdown .select2-results__options::-webkit-scrollbar-track {
    border-radius: 8px;
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}

.select2-dropdown .select2-results__options::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: #e6e6e6;
}

.align-row-center>.container>.row>div {
    margin-bottom: auto !important;
    margin-top: auto !important;
}

.btn-submit {
    background: #222;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    border-radius: 0px;
    padding: 0 25px !important;
    height: 40px;
    line-height: 40px !important;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--color-hightlight);
    color: #ffffff;
}

.owl-carousel::before, .owl-carousel::after {
    content: '';
    display: block;
    width: 80px;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.owl-carousel::before {
    left: -80px;
}

.owl-carousel::after {
    right: -80px;
}

.owl-carousel:hover .owl-nav i {
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
}

.owl-carousel:hover .owl-nav .owl-prev {
    left: -55px;
}

.owl-carousel:hover .owl-nav .owl-next {
    right: -55px;
}

.owl-nav>div {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.owl-nav>div.disabled i {
    color: rgba(0, 0, 0, 0.1);
}

.owl-nav .owl-prev {
    left: -75px;
}

.owl-nav .owl-next {
    right: -75px;
}

.owl-nav i {
    color: #000;
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 24px;
    text-align: center;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.owl-nav i:hover {
    color: #c33;
}

.owl-dots button:focus {
    outline: none;
}

.title-section {
    color: #222;
}

.title-section-2 span {
    position: relative;
    font-weight: 700;
}

.title-section-2 span::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: -14px;
    background-color: #222;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

[nh-owl-slick] {
    visibility: hidden;
}

.slick-initialized[nh-owl-slick] {
    visibility: visible;
}

.events-none {
    pointer-events: none;
}

.error-page {
    font-size: 18px;
}

.error-page i {
    font-size: 80px;
}

.error-page a {
    color: #390;
}

.center-me {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.center-left-me {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
}

.top-me {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.bottom-me {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
}

.font-size-extra-large {
    font-size: 18px;
}

.border-top {
    border-top: 1px solid #e3e3e3;
}

.shadow-modal {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
    padding: 5px 10px;
    border: solid 5px #797979;
}

.page-404-content {
    position: relative;
    max-width: 460px;
    margin: 80px auto 70px;
}

.page-404-content a {
    font-weight: 700;
}

.page-404-content a:hover {
    color: #c33;
}

.responsive-table {
    width: 100%;
    margin-bottom: 1.5em;
    border-spacing: 0;
}

.responsive-table .btn-action {
    font-size: 18px;
}

@media (min-width: 48em) {
    .responsive-table {
        font-size: .9em;
    }
}

@media (min-width: 62em) {
    .responsive-table {
        font-size: 1em;
    }
}

.responsive-table thead {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

@media (min-width: 48em) {
    .responsive-table thead {
        position: relative;
        clip: auto;
        height: auto;
        width: auto;
        overflow: auto;
    }
}

.responsive-table thead th {
    background-color: var(--color-main);
    border: 1px solid #dee2e6;
    font-weight: normal;
    text-align: center;
    color: white;
}

.responsive-table thead th:first-of-type {
    text-align: left;
}

.responsive-table tbody, .responsive-table tr, .responsive-table th, .responsive-table td {
    display: block;
    padding: 0;
    text-align: left;
    white-space: normal;
}

@media (min-width: 48em) {
    .responsive-table tr {
        display: table-row;
    }
}

.responsive-table [scope="disable"] {
    display: none;
}

@media (min-width: 48em) {
    .responsive-table [scope="disable"] {
        display: table-cell;
    }
}

.responsive-table th, .responsive-table td {
    padding: .7em .5em;
    vertical-align: middle;
}

@media (min-width: 48em) {
    .responsive-table th, .responsive-table td {
        display: table-cell;
    }
}

.responsive-table caption {
    margin-bottom: 1em;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
}

@media (min-width: 48em) {
    .responsive-table caption {
        font-size: 1.5em;
    }
}

.responsive-table tfoot {
    font-size: .8em;
    color: #222;
    border-top: 1px solid #e3e3e3;
}

@media (min-width: 62em) {
    .responsive-table tfoot {
        font-size: .9em;
        border-top: 0;
    }
}

.responsive-table tfoot th[scope="col"] {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

@media (min-width: 62em) {
    .responsive-table tfoot th[scope="col"] {
        position: relative;
        clip: auto;
        height: auto;
        width: auto;
        overflow: auto;
    }
}

.responsive-table tfoot td[data-title]:before {
    content: attr(data-title);
    float: left;
    color: rgba(94, 93, 82, 0.75);
    font-weight: bold;
}

@media (min-width: 30em) {
    .responsive-table tfoot td[data-title]:before {
        font-size: .9em;
    }
}

@media (min-width: 48em) {
    .responsive-table tfoot td[data-title]:before {
        content: none;
    }
}

@media (min-width: 48em) {
    .responsive-table tbody {
        display: table-row-group;
    }
}

@media (min-width: 48em) {
    .responsive-table tbody tr {
        display: table-row;
        border-width: 1px;
    }
}

.responsive-table tbody tr:last-of-type {
    margin-bottom: 0;
}

.responsive-table tbody tr:nth-of-type(even) {
    background-color: #f1f1f1;
}

@media (min-width: 48em) {
    .responsive-table tbody tr:nth-of-type(even) {
        background-color: #f1f1f1;
    }
}

.responsive-table tbody th[scope="row"] a {
    color: #222;
}

@media (min-width: 30em) {
    .responsive-table tbody th[scope="row"] {
        border-left: 1px solid #dee2e6;
        border-bottom: 1px solid #dee2e6;
    }
}

@media (min-width: 48em) {
    .responsive-table tbody th[scope="row"] {
        background-color: transparent;
        color: #222;
        text-align: left;
    }

    .responsive-table tbody th[scope="row"] a {
        color: #222;
    }
}

.responsive-table tbody td {
    text-align: right;
}

@media (min-width: 48em) {
    .responsive-table tbody td {
        border-left: 1px solid #dee2e6;
        border-bottom: 1px solid #dee2e6;
        text-align: center;
    }
}

@media (min-width: 48em) {
    .responsive-table tbody td:last-of-type {
        border-right: 1px solid #dee2e6;
    }
}

.responsive-table tbody td[data-type=currency] {
    text-align: right;
}

.responsive-table tbody td[data-title]:before {
    content: attr(data-title);
    float: left;
    color: rgba(94, 93, 82, 0.75);
}

@media (min-width: 30em) {
    .responsive-table tbody td[data-title]:before {
        font-size: .9em;
    }
}

@media (min-width: 48em) {
    .responsive-table tbody td[data-title]:before {
        content: none;
    }
}

/* Layout */
.topbar-header {
    border-bottom: 1px solid #e3e3e3;
}

.language-section, .currency-section {
    position: relative;
    font-size: 12px;
}

.language-section ul, .currency-section ul {
    position: absolute;
    background: #ffffff;
    min-width: 130px;
    top: 100%;
    right: 0;
    text-align: center;
    z-index: 1000;
    border-top: 1px solid #e3e3e3;
    margin-bottom: 0;
    -webkit-animation: nav_menu_anim_close 0.3s both;
    -o-animation: nav_menu_anim_close 0.3s both;
    animation: nav_menu_anim_close 0.3s both;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
    -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
}

.language-section ul a, .currency-section ul a {
    padding: 0 10px;
    line-height: 30px;
    height: 30px;
    display: block;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.language-section ul a:hover, .currency-section ul a:hover {
    background: #f4f4f4;
}

.language-section:hover ul, .currency-section:hover ul {
    -webkit-animation: nav_menu_anim_open 0.3s both;
    -o-animation: nav_menu_anim_open 0.3s both;
    animation: nav_menu_anim_open 0.3s both;
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
    pointer-events: unset;
}

.currency-section::after {
    content: '';
    background: #a6a6a6;
    height: 10px;
    width: 1px;
    left: 0px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

a.language-picker, a.currency-picker {
    text-transform: uppercase;
    font-weight: 600;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    padding: 0 10px;
    color: #666;
}

a.language-picker::after, a.currency-picker::after {
    content: "\f107";
    margin-left: 2px;
    font-family: "Line Awesome Free";
    vertical-align: bottom;
    font-weight: 600;
}

a.language-picker:hover, a.currency-picker:hover {
    color: #666;
    opacity: 0.7;
    filter: alpha(opacity=70);
}

.social-section ul {
    padding-left: 5px;
    margin-bottom: 0;
}

.social-section ul li {
    display: inline-block;
    line-height: 40px;
    height: 40px;
}

.social-section ul li a {
    display: inline-block;
    width: 24px;
    font-size: 16px;
    text-align: center;
    color: #666;
}

.social-section ul li a:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
}

.entire-action-header .btn-action-header {
    color: #222;
}

.entire-action-header .btn-action-header:hover {
    color: #bbbbbb;
}

.btn-action-header {
    display: inline-block;
    padding: 8px 15px;
    border-color: #222 !important;
}

.btn-action-header i {
    text-align: center;
    line-height: 18px;
    font-size: 22px;
}

.entire-action-header {
    position: relative;
}

.entire-action-header .form-dropdown {
    position: absolute;
    padding: 10px;
    background-color: #ffffff;
    width: 300px;
    top: 100%;
    left: auto;
    right: 0;
    z-index: 1000;
    margin-bottom: 0;
    -webkit-animation: nav_menu_anim_close 0.3s both;
    -o-animation: nav_menu_anim_close 0.3s both;
    animation: nav_menu_anim_close 0.3s both;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
    -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
}

.entire-action-header:hover .form-dropdown {
    -webkit-animation: nav_menu_anim_open 0.3s both;
    -o-animation: nav_menu_anim_open 0.3s both;
    animation: nav_menu_anim_open 0.3s both;
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
    pointer-events: unset;
}

.search-section .btn-submit {
    padding: 0 0.75rem !important;
    font-size: 13px;
}

.wrap-suggestion {
    padding-top: 5px;
}

.wrap-suggestion ul:last-child {
    margin-bottom: 0;
}

.wrap-suggestion ul li {
    margin-bottom: 10px;
}

.wrap-suggestion ul li:last-child {
    margin-bottom: 0;
}

.wrap-suggestion ul li:hover, .wrap-suggestion ul li.active {
    background-color: #e6e6e6;
}

.wrap-suggestion .suggest-name {
    margin-bottom: 0px;
}

.wrap-suggestion .price-amount {
    font-size: 13px;
}

.wrap-suggestion .price-amount.old-price {
    margin-left: 5px;
}

.box-suggest .wrap-suggestion {
    border: 1px solid #e6e6e6;
    border-top: 0;
    padding: 10px;
}

.user-section .form-title {
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e6e6e6;
}

.user-section .form-title span {
    float: left;
    text-transform: uppercase;
    font-weight: 600;
}

.user-section .form-title a {
    float: right;
    font-size: 14px;
    color: #c33;
}

.user-section label {
    color: #222;
}

.user-section .btn-user {
    width: 100%;
}

#login-modal .close {
    position: absolute;
    right: 10px;
    top: 5px;
    z-index: 1;
}

.user-section .login-form-footer a {
    color: #c33;
}

.btn-mini-cart .cart-items-number {
    position: absolute;
    top: -2px;
    left: 25px;
    background-color: #FBC121;
    color: #ffffff;
    display: inline-block;
    padding: 0 6px;
    line-height: 18px;
    text-align: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.slider-section {
    color: #222;
}

.slick-arrow {
    background-color: rgb(34 34 34 / 75%);
    color: #fff;
    border-radius: 100%;
}

.slick-arrow:hover {
    background-color: rgb(34 34 34);
}

.slick-arrow:before {
    color: #ffffff;
}

.slider-section .slick-next {
    right: 40px !important;
}

.slider-section .slick-prev {
    left: 40px !important;
}

.slider-section .slick-slider::before, .slider-section .slick-slider::after {
    content: none;
}

.slider-section .slick-list {
    margin: 0;
}

.slider-section .slick-list .slick-slide {
    margin: 0;
}

.slider-section.slider-bg {
    background-color: #f1f1f1;
}

.slider-section .inner-content {
    font-size: 16px;
    color: #666;
    line-height: 26px;
    margin-bottom: 50px;
    margin-top: 30px;
}

.slider-section .btn-submit {
    line-height: 44px;
    padding: 0 20px;
}

.brand-section .owl-stage {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.breadcrumbs-section {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    align-items: center;
    font-size: 13px;
    line-height: 24px;
}

.breadcrumbs-section a {
    margin-right: 6px;
    line-height: 24px;
    color: #222;
}

.breadcrumbs-section a::after {
    content: '\f105';
    font-family: "Line Awesome Free";
    margin-left: 5px;
    font-size: 12px;
    font-weight: 900;
}

.breadcrumbs-section a:hover {
    color: #222;
}

.breadcrumbs-section span {
    font-weight: 600;
    color: #222;
}

.categories-section {
    margin-bottom: 0;
}

.categories-section li {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 6px;
    flex-direction: row;
    border-bottom: 1px dashed #dee2e6;
}

.categories-section li:last-child {
    margin-bottom: 0;
    border: 0;
}

.categories-section a {
    padding: 6px 0 6px 0px;
    display: block;
    width: 100%;
}

.categories-section a:hover {
    color: var(--color-hightlight) !important;
}

.categories-section .active {
    color: #222;
    font-weight: 700;
}

.categories-section .active>.has-child>a {
    color: #222;
    font-weight: 700;
}

.categories-section .list-child {
    flex: 1 1 100%;
    max-width: 100%;
    border-top: 1px solid #e3e3e3;
    display: none;
}

.categories-section .list-child li {
    position: relative;
}

.categories-section>li.has-child>ul {
    padding-left: 15px;
}

.categories-section>li.has-child>.list-child {
    border-top: 0;
    background-color: #f5f5f5;
}

.categories-section>li.has-child>.list-child>li.has-child>.list-child {
    padding-left: 15px;
}

.categories-section>li.has-child>.list-child>li.has-child>.list-child>li.has-child>.list-child {
    padding-left: 15px;
}

.categories-section .dropdown-toggle {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    width: 30px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    z-index: 1;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.categories-section .dropdown-toggle.open {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.tags-title {
    margin-right: 15px;
}

.tags li {
    display: inline-block;
}

.tags li a {
    line-height: 1.2;
    padding: 6px 8px;
    margin: 0 2px 5px 0;
    border: 1px solid #e3e3e3;
    display: block;
}

.tags li a:hover {
    color: #000;
    border-color: #f1f1f1;
    background-color: #f1f1f1;
}

.entire-map {
    position: relative;
    padding-top: 36.45%;
}

.entire-map iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.title-address {
    font-weight: 600;
    color: #222;
}

.entire-address {
    padding: 50px 0;
}

.entire-address address {
    line-height: 30px;
}

.form-contact .title-section {
    padding-top: 80px;
}

.datepicker {
    width: 265px;
    padding: 10px;
}

.datepicker.datepicker-orient-top {
    margin-top: 8px;
}

.datepicker table {
    width: 100%;
}

.datepicker td, .datepicker th {
    font-weight: regular;
    width: 35px;
    height: 35px;
    border-radius: 3px;
}

.datepicker thead th {
    color: #74788d;
}

.datepicker thead th.prev, .datepicker thead th.datepicker-switch, .datepicker thead th.next {
    font-weight: 500;
    color: #74788d;
}

.datepicker thead th.prev:hover, .datepicker thead th.datepicker-switch:hover, .datepicker thead th.next:hover {
    background: #f7f8fa !important;
}

.datepicker thead th.prev i, .datepicker thead th.datepicker-switch i, .datepicker thead th.next i {
    font-size: 1.2rem;
    color: #74788d;
}

.datepicker thead th.prev i::before, .datepicker thead th.datepicker-switch i::before, .datepicker thead th.next i::before {
    line-height: 0;
    vertical-align: middle;
}

.datepicker thead th.dow {
    color: #595d6e;
    font-weight: 500;
}

.datepicker tbody tr>td.day {
    color: #595d6e;
}

.datepicker tbody tr>td.day:hover {
    background: #ebedf2;
    color: #595d6e;
}

.datepicker tbody tr>td.day.old {
    color: #74788d;
}

.datepicker tbody tr>td.day.new {
    color: #595d6e;
}

.datepicker tbody tr>td.day.selected, .datepicker tbody tr>td.day.selected:hover, .datepicker tbody tr>td.day.active, .datepicker tbody tr>td.day.active:hover {
    background: #5867dd;
    color: #ffffff;
}

.datepicker tbody tr>td.day.today {
    position: relative;
    background: rgba(93, 120, 255, 0.7) !important;
    color: #ffffff !important;
}

.datepicker tbody tr>td.day.today:before {
    content: '';
    display: inline-block;
    border: solid transparent;
    border-width: 0 0 7px 7px;
    border-bottom-color: #ffffff;
    border-top-color: #ebedf2;
    position: absolute;
    bottom: 4px;
    right: 4px;
}

.datepicker tbody tr>td.day.range {
    background: #f7f8fa;
}

.datepicker tbody tr>td span.year, .datepicker tbody tr>td span.hour, .datepicker tbody tr>td span.minute, .datepicker tbody tr>td span.month {
    color: #595d6e;
}

.datepicker tbody tr>td span.year:hover, .datepicker tbody tr>td span.hour:hover, .datepicker tbody tr>td span.minute:hover, .datepicker tbody tr>td span.month:hover {
    background: #f7f8fa;
}

.datepicker tbody tr>td span.year.focused, .datepicker tbody tr>td span.year.focused:hover, .datepicker tbody tr>td span.year.active:hover, .datepicker tbody tr>td span.year.active.focused:hover, .datepicker tbody tr>td span.year.active, .datepicker tbody tr>td span.hour.focused, .datepicker tbody tr>td span.hour.focused:hover, .datepicker tbody tr>td span.hour.active:hover, .datepicker tbody tr>td span.hour.active.focused:hover, .datepicker tbody tr>td span.hour.active, .datepicker tbody tr>td span.minute.focused, .datepicker tbody tr>td span.minute.focused:hover, .datepicker tbody tr>td span.minute.active:hover, .datepicker tbody tr>td span.minute.active.focused:hover, .datepicker tbody tr>td span.minute.active, .datepicker tbody tr>td span.month.focused, .datepicker tbody tr>td span.month.focused:hover, .datepicker tbody tr>td span.month.active:hover, .datepicker tbody tr>td span.month.active.focused:hover, .datepicker tbody tr>td span.month.active {
    background: #5867dd;
    color: #ffffff;
}

.datepicker tfoot tr>th.today, .datepicker tfoot tr>th.clear {
    border-radius: 3px;
    font-weight: 500;
}

.datepicker tfoot tr>th.today:hover, .datepicker tfoot tr>th.clear:hover {
    background: #ebedf2;
}

.datepicker.datepicker-inline {
    border: 1px solid #ebedf2;
}

.hight-light .inner-icon i {
    font-size: 60px;
}

.page-title-section.page-categories {
    padding: 80px 0;
}

.page-title-section .product-categories li {
    display: inline-block;
}

.page-title-section .product-categories li img {
    margin-bottom: 10px;
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.page-title-section .product-categories li span.category-name {
    font-weight: 700;
    color: #000;
    display: inline-block;
}

.page-title-section .product-categories li .category-summary {
    display: block;
}

.page-title-section .product-categories li span.category-products-count {
    font-size: 12px;
    color: #000;
    display: block;
}

.page-title-section .product-categories li a {
    display: block;
    padding: 10px 25px;
}

.video-banner-section .title-section {
    margin-bottom: 50px;
}

.footer-menu-section ul {
    margin-bottom: 0;
}

.footer-menu-section ul li {
    margin-bottom: 12px;
}

.footer-menu-section ul li a:hover {
    color: var(--color-hightlight) !important;
}

.footer-menu-section ul li:last-child {
    margin-bottom: 0;
}

.setting-menu {
    position: relative;
}

.setting-menu>.container>.row>div {
    position: static;
}

.btn-menu-mobile {
    display: none;
}

.menu-section .menu-top {
    display: none;
}

.menu-section .menu-top .menu-header {
    font-weight: bold;
}

.menu-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.menu-section ul li a:hover {
    color: var(--color-hightlight);
    cursor: pointer;
}

.menu-section .grower {
    display: none;
}

.menu-section .entry-menu {
    top: 100%;
    z-index: 12;
    padding: 20px 25px;
    position: absolute;
    background-color: #ffffff;
    border-top: 1px solid #e3e3e3;
    margin-top: -1px;
}

.menu-section .entry-menu::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: calc(15px + 1px);
}

.menu-section .entry-menu li {
    position: relative;
}

.menu-section .entry-menu.multil-column {
    min-width: 730px;
}

.menu-section .entry-menu.full-width {
    width: 100%;
    left: 0;
}

.menu-section .entry-menu.full-width .menu-link {
    display: inline-block;
}

.menu-section .entry-menu.full-width .container-menu {
    width: 1170px;
}

.menu-section .entry-menu.tabs-menu {
    width: 1170px;
    left: 0;
    right: 0;
    margin: auto;
    padding: 0;
}

.menu-section .entry-menu.tabs-menu .tabs-item {
    width: 100%;
}

.menu-section .entry-menu.tabs-menu .tabs-item>.menu-link {
    width: 25%;
    float: left;
    padding: 15px;
    position: relative;
}

.menu-section .entry-menu.tabs-menu .tabs-item>.menu-link>.child-indicator {
    right: 15px;
}

.menu-section .entry-menu.tabs-menu .tabs-item>.sub-menu {
    padding: 20px;
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
    width: 75%;
    float: left;
    position: absolute;
    left: 25%;
    top: 0;
    min-height: 100%;
    border-left: 1px solid #e3e3e3;
}

.menu-section .entry-menu.tabs-menu .tabs-item.active>.menu-link {
    background-color: #e3e3e3;
}

.menu-section .entry-menu.tabs-menu .container-menu {
    position: relative;
}

.menu-section .entry-menu.dropdown {
    min-width: 250px;
    left: 0;
    padding: 10px 15px;
}

.menu-section .entry-menu.dropdown ul {
    position: absolute;
    top: calc(-50% + 8px);
    left: calc(100% + 15px);
    min-width: 250px;
    background-color: #ffffff;
    border-top: 1px solid #e3e3e3;
    margin-top: -1px;
    padding: 10px 15px;
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
}

.menu-section .entry-menu.dropdown li:hover>ul {
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}

.menu-section .entry-menu.dropdown li:hover>a {
    color: var(--color-hightlight);
}

.menu-section .entry-menu.dropdown li:hover>ul {
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}

.menu-section .entry-menu.dropdown .has-child>ul::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 25px;
    left: -25px;
}

.menu-section .container-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.menu-section .row-menu {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: -10px;
    margin-left: -10px;
}

.menu-section .column-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
}

.menu-section .column-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 10px;
}

.menu-section .column-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 10px;
}

.menu-section .column-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 10px;
}

.menu-section .menu-title {
    font-weight: 600;
    margin-bottom: 5px;
    display: inline-block;
    color: #222;
}

.menu-section .menu-title+.sub-menu {
    padding-top: 5px;
    padding-bottom: 5px;
}

.menu-section .menu-link {
    color: #222;
    padding: 7px 35px 7px 0px;
    display: block;
}

.menu-section .active {
    color: var(--color-hightlight);
}

.menu-section .child-indicator {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.menu-section .menu-image.right {
    margin: -20px -35px -15px -5px;
}

.menu-section .menu-image.left {
    margin: -20px 0px -20px -35px;
}

.menu-section>ul>li {
    display: inline-block;
    margin-right: 35px;
}

.menu-section>ul>li:hover>a {
    color: var(--color-hightlight);
}

.menu-section>ul>li:hover>.entry-menu {
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}

.menu-section>ul>li:hover>.entry-menu .tabs-item.active>.sub-menu {
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
}

.menu-section>ul>li>.entry-menu {
    position: absolute;
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
    -webkit-transition: opacity 0.05s ease;
    transition: opacity 0.05s ease;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
}

.menu-section>ul>li>.entry-menu li {
    text-align: left;
}

.menu-section>ul>li:last-child {
    margin-right: 0px;
}

.menu-section>ul>li>a {
    line-height: 60px;
    height: 60px;
    color: #222;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
}

.menu-section>ul>li>a span {
    display: none;
}

.menu-section>ul>li.has-child>a {
    display: inline-block;
}

.menu-section>ul>li.has-child>a span {
    display: inline-block;
    font-size: 12px;
    margin-left: 3px;
}

footer {
    background-color: #f1f1f1;
}

.entire-info-website address p i {
    font-size: 20px;
    width: 30px;
    color: #222;
}

.entire-info-website .title-social-footer {
    color: #222;
    margin-bottom: 30px;
}

.social-footer-section ul {
    margin: 0;
}

.social-footer-section ul li {
    margin-right: 7px;
    display: inline-block;
}

.social-footer-section ul li a {
    display: block;
    font-size: 18px;
    text-align: center;
    line-height: 1;
}

.social-footer-section ul li a:hover {
    color: #222;
}

.work-time .inner-time p {
    margin-bottom: 7px;
}

.work-time span {
    margin-bottom: 7px;
    display: inline-block;
}

.coppyright-payment {
    border-top: 1px solid rgba(102, 102, 102, 0.2);
}

.coppyright-payment .coppyright {
    margin-bottom: 0;
}

.toolbar-section {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 6px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    z-index: 1120;
}

.toolbar-section .toolbar-item {
    flex: 1 0 25%;
}

.toolbar-section .toolbar-item a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: inherit;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 24px;
}

.toolbar-section .toolbar-item a i {
    font-size: 24px;
}

.toolbar-section .toolbar-item a span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 0;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
}

/* Page */
.article-item .inner-image .featured-media {
    position: absolute;
    top: 9px;
    right: 10px;
    z-index: 1;
}

.article-item .inner-image .featured-media i {
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    color: #222;
    margin: 0px 2px;
}

.article-item .article-info .article-category {
    display: inline-block;
    margin-right: 15px;
}

.article-item .article-info .article-category a {
    color: #c33;
    font-weight: 600;
    line-height: 26px;
    text-transform: uppercase;
}

.article-item .article-info .article-category a:last-child .comma-item {
    display: none;
}

.article-item .article-info .article-category a:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.article-item .article-info .post-date, .article-item .article-info .post-author {
    position: relative;
    display: inline-block;
    font-size: 13px;
    line-height: 26px;
    padding-left: 15px;
    margin-right: 15px;
}

.article-item .article-info .post-date::before, .article-item .article-info .post-author::before {
    content: '';
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #666;
    height: 5px;
    width: 5px;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.article-item .article-info .post-author:hover {
    color: #666;
    text-decoration: underline;
}

.article-item .article-title a {
    color: #222;
}

.article-item .article-title a:hover {
    color: var(--color-hightlight);
}

.article-entry-info>span {
    margin-right: 6px;
}

.article-entry-info .article-category {
    margin-right: 15px;
}

.article-entry-info .article-category a:last-child .comma-item {
    display: none;
}

.article-entry-info .article-category a:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
    color: var(--color-hightlight) !important;
}

.album-item .inner-image {
    margin-bottom: 21px;
}

.album-item .album-info .album-category {
    display: inline-block;
    margin-right: 15px;
}

.album-item .album-info .album-category a {
    color: #c33;
    font-weight: 600;
    line-height: 26px;
    text-transform: uppercase;
}

.album-item .album-info .album-category a:last-child .comma-item {
    display: none;
}

.album-item .album-info .album-category a:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.album-item .album-info .post-date, .album-item .album-info .post-author {
    position: relative;
    display: inline-block;
    font-size: 13px;
    line-height: 26px;
    padding-left: 15px;
    margin-right: 15px;
}

.album-item .album-info .post-date::before, .album-item .album-info .post-author::before {
    content: '';
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #666;
    height: 5px;
    width: 5px;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.album-item .album-info .post-author:hover {
    color: #666;
    text-decoration: underline;
}

.album-item .album-title {
    line-height: 24px;
    font-weight: 600;
}

.album-item .album-title a {
    color: #222;
}

.album-item .album-title a:hover {
    text-decoration: underline;
}

.album-item .album-description {
    margin-bottom: 20px;
}

.album-entry-info {
    font-size: 12px;
    margin-bottom: 9px;
}

.album-entry-info>span {
    margin-right: 6px;
}

.album-entry-info .album-category {
    margin-right: 15px;
}

.album-entry-info .album-category a {
    font-weight: 600;
    line-height: 26px;
    text-transform: uppercase;
}

.album-entry-info .album-category a:last-child .comma-item {
    display: none;
}

.album-entry-info .album-category a:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.view-small .article-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e3e3e3;
}

.view-small .article-item .inner-image {
    float: left;
    margin-right: 18px;
    margin-bottom: 0;
    padding-top: 0;
}

.view-small .article-item .inner-image img {
    width: 80px;
    height: 60px;
    position: static;
}

.view-small .article-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.view-small .article-item .article-title {
    margin-bottom: 5px;
}

.view-small .article-item .article-title a {
    line-height: 1.3;
    display: block;
    font-size: 14px;
}

.view-small .article-item .article-title a:hover {
    text-decoration: none;
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.view-small .article-entry-info {
    margin-bottom: 0;
}

.prd-hot-deal {
    border: 3px solid #67B494;
    border-radius: 30px;
}

.product-additional-action {
    position: absolute;
    bottom: 15px;
    left: 15px;
}

.product-additional-action .btn-addition-action {
    display: block;
    height: 45px;
    width: 45px;
    margin-top: 10px;
    position: relative;
    background-color: #ffffff;
    cursor: pointer;
}

.product-additional-action .btn-addition-action::before {
    content: '';
    height: 28px;
    width: 28px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.product-additional-action .btn-addition-action.btn-video::before {
    background: url("../img/video-player.svg") no-repeat top left;
    background-size: contain;
}

.product-additional-action .btn-addition-action.btn-video.youtube-video::before {
    background: url("../img/youtube-logo.svg") no-repeat top left;
    background-size: contain;
}

.product-additional-action .btn-addition-action.btn-360-view::before {
    background: url("../img/3d.svg") no-repeat top left;
    background-size: contain;
}

.product-additional-action .btn-addition-action.btn-expand::before {
    background: url("../img/full-screen.svg") no-repeat top left;
    background-size: contain;
}

.product-additional-action .btn-addition-action:hover {
    filter: invert(1);
    -webkit-filter: invert(1);
}

.product-attribute-switch {
    margin: 0 -4px 10px;
}

.product-attribute-switch.image-switch .inner-product-attribute {
    height: 40px;
    width: 40px;
    line-height: 40px;
}

.product-attribute-switch.text-switch .inner-product-attribute {
    height: 35px;
    width: auto;
    padding: 5px 10px;
    border-radius: 10px 10px 0 10px;
    -webkit-border-radius: 10px 10px 0 10px;
    -moz-border-radius: 10px 10px 0 10px;
    -ms-border-radius: 10px 10px 0 10px;
    -o-border-radius: 10px 10px 0 10px;
    color: var(--color-text);
}

.product-attribute-switch li.active a.inner-product-attribute::before {
    content: '';
    position: absolute;
    display: block;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 12px 12px;
    border-color: transparent transparent #222;
}

.product-attribute-switch li.active a.inner-product-attribute::after {
    content: '\f00c';
    position: absolute;
    display: block;
    font-family: Line Awesome Free;
    font-weight: 900;
    font-size: 6px;
    line-height: 1;
    color: #ffffff;
    bottom: 0;
    right: 1px;
}

.product-attribute-switch .inner-product-attribute {
    position: relative;
    margin: 4px;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-clip: padding-box;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px solid #b8b7bd;
    border-bottom-right-radius: 0;
    cursor: pointer;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.product-attribute-switch .inner-product-attribute:hover {
    border-color: var(--color-hightlight);
}

.product-attribute-switch .inner-product-attribute.active {
    border-color: var(--color-hightlight);
}

.product-attribute-switch .inner-product-attribute.active::before {
    content: '';
    position: absolute;
    display: block;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 12px 12px;
    border-color: transparent transparent var(--color-hightlight);
}

.product-attribute-switch .inner-product-attribute.active::after {
    content: '\f00c';
    position: absolute;
    display: block;
    font-family: Line Awesome Free;
    font-weight: 900;
    font-size: 6px;
    line-height: 1;
    color: #ffffff;
    bottom: 0;
    right: 1px;
}

.product-attribute-switch .inner-product-attribute.disable {
    opacity: 0.3;
    cursor: not-allowed;
}

.reset-attribute {
    margin-left: 30px;
    color: #222;
    font-weight: 600;
    border-bottom: 1px solid #b8b7bd;
    position: relative;
}

.reset-attribute::before {
    content: '\f00d';
    font-family: "Line Awesome Free";
    font-size: 15px;
    position: absolute;
    right: -20px;
    top: 0;
    color: #222;
}

.reset-attribute:hover {
    color: #222;
}

.product-tab.nav .nav-item {
    padding: 0 15px;
}

.product-tab.nav .nav-item .nav-link {
    font-size: 16px;
    font-weight: 600;
    line-height: 27px;
    color: var(--color-text);
}

.product-tab.nav .nav-item .nav-link.active, .product-tab.nav .nav-item .nav-link:hover {
    color: var(--color-main);
}

.tab-content {
    position: relative;
}

.tab-content iframe, .tab-content video {
    max-width: 100%;
}

.countdown-timer {
    display: flex;
    justify-content: flex-start;
    margin: 0 -4px 5px;
}

.countdown-timer>div {
    height: 50px;
    width: 50px;
    text-align: center;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    margin-left: 4px;
    margin-right: 4px;
    font-weight: 600;
    color: #222;
}

.countdown-timer>div span {
    display: block;
    font-weight: 400;
}

.product-status {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 11;
    pointer-events: none;
}

.product-status>span {
    display: block;
    text-align: center;
    color: #ffffff;
    line-height: 24px;
    padding: 0 10px;
    margin-bottom: 5px;
}

.product-status .out-stock {
    background-color: #3a3a3a;
}

.product-status .onsale {
    background-color: #c33;
}

.product-status .featured {
    background-color: #390;
}

.product-category-section>div {
    height: 530px;
}

.product-category-section .inner-product-cat {
    display: block;
    position: relative;
    height: 100%;
}

.product-category-section .inner-product-cat span.inner-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transform-origin: right bottom;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.product-category-section .inner-product-cat.half-height {
    height: calc(100% / 2 - 15px);
}

.product-category-section .inner-product-cat.half-height:first-child {
    margin-bottom: 30px;
}

.product-category-section .inner-product-cat .inner-content {
    pointer-events: none;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    bottom: 30px;
    right: 25px;
}

.product-category-section .inner-product-cat .inner-content .category-title {
    font-size: 30px;
    font-weight: 700;
    color: #222;
}

@media (max-width: 991px) {
    .product-category-section .inner-product-cat .inner-content .category-title {
        font-size: 26px;
        line-height: 30px;
    }
}

.product-category-section .inner-product-cat .inner-content .category-count {
    color: #666;
}

.currency-symbol {
    margin-left: 3px;
    font-size: 75%;
}

.product-item .inner-image .product-action {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
}

.product-item .inner-image .product-action .btn-product-action {
    margin-right: 4px;
    margin-left: 4px;
    display: inline-block;
    position: relative;
}

.product-item .inner-image .product-action .btn-product-action i {
    background-color: #ffffff;
    color: #222;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.product-item .inner-image .product-action .btn-product-action i:hover {
    background-color: var(--color-hightlight);
    color: #ffffff;
}

.product-item .inner-content .product-category a {
    font-size: 13px;
    color: #666;
}

.product-item .inner-content .product-category a:last-child .comma-item {
    display: none;
}

.product-item .inner-content .product-category a:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
    color: var(--color-hightlight);
}

.product-item .inner-content .product-title a:hover {
    color: var(--color-hightlight) !important;
}

.product-item .inner-content .product-rating-price {
    height: 22px;
    line-height: 22px;
    overflow: hidden;
}

.product-item .inner-content .product-rating-price .wrp-rating-price {
    height: 44px;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out;
}

.product-item:hover .product-action {
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
    bottom: 30px;
}

.product-item:hover .inner-content .product-rating-price .wrp-rating-price {
    -webkit-transform: translateY(-22px);
    -ms-transform: translateY(-22px);
    -o-transform: translateY(-22px);
    transform: translateY(-22px);
}

.price-amount {
    color: var(--color-hightlight);
    font-weight: 700;
    font-size: 16px;
}

.price-amount.old-price {
    color: #666;
    font-weight: 400;
    margin-left: 15px;
    position: relative;
}

.price-amount.old-price::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 0.5px;
    background-color: #666;
    width: 100%;
}

.view-small {
    margin-bottom: 50px;
}

.view-small .product-item {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e3e3e3;
}

.view-small .product-item .inner-image {
    float: left;
    margin-right: 20px;
    margin-bottom: 0;
}

.view-small .product-item .inner-image img {
    max-width: 80px;
}

.view-small .product-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.view-small .product-item .inner-content .product-title {
    margin-bottom: 2px;
}

.view-small .product-item .inner-content .product-title a:hover {
    text-decoration: none;
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.view-small .product-item .inner-content .price-amount {
    font-size: 14px;
}

.view-small .product-item .inner-content .price>span {
    display: inline-block;
    padding: 0 3px;
}

.view-small .product-item .inner-content .price>span.price-amount.old-price {
    margin-left: 0;
}

.btn-wishlist.added-wishlist i::before {
    content: "\f00c";
    font-family: Line Awesome Free;
    font-weight: 900;
}

.quickview-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 20px;
    z-index: 1000;
    color: #222;
}

.quickview-info {
    position: relative;
    height: 515px;
    overflow: auto;
    padding: 50px 50px 50px 30px;
}

.quickview-info::-webkit-scrollbar {
    width: 6px;
}

.quickview-info::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: #e6e6e6;
}

.quickview-info::-webkit-scrollbar-track {
    border-radius: 8px;
}

.product-detail-head {
    margin-top: 80px;
}

.product-detail-footer .nav li {
    margin-right: 15px;
}

.product-detail-footer .nav li a {
    font-size: 14px;
    padding: 8px 15px;
    position: relative;
    background: #f8f9fa;
    color: #222;
    border-top-right-radius: .25rem;
    border-top-left-radius: .25rem;
    font-weight: 600;
}

.product-detail-footer .nav li a:hover {
    background: #D9D9D9;
}

.product-image-detail .owl-carousel::before, .product-image-detail .owl-carousel::after {
    content: none;
}

.product-image-detail .owl-carousel .owl-prev {
    left: 0px;
}

.product-image-detail .owl-carousel .owl-next {
    right: 0px;
}

.product-image-detail .owl-carousel i {
    font-size: 32px;
    color: rgba(0, 0, 0, 0.8);
}

.product-image-detail .owl-carousel i:hover {
    color: #000;
}

.product-image-detail:hover .owl-nav i {
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
}

.product-image-detail:hover .owl-nav .owl-prev {
    left: 15px;
}

.product-image-detail:hover .owl-nav .owl-next {
    right: 15px;
}

.price-amount {
    white-space: nowrap;
}

.product-content-detail label {
    margin-bottom: 0;
    color: #222;
}

.product-content-detail .product-title-detail {
    color: var(--color-main);
}

.product-content-detail .product-description p {
    margin-bottom: 5px;
}

.product-content-detail .price .price-amount {
    font-size: 24px;
    font-weight: 700;
    color: #c33;
}

.product-content-detail .price .price-amount.old-price {
    font-size: 18px;
    font-weight: 400;
    color: #666;
    text-decoration: line-through;
    margin-left: 15px;
}

.product-content-detail .product-category a {
    color: #666;
}

.product-content-detail .product-category a:last-child .comma-item {
    display: none;
}

.product-content-detail .product-category a:hover {
    color: var(--color-hightlight);
}

.product-content-detail .product-meta>div {
    margin-bottom: 6px;
}

.product-content-detail .product-meta>div:last-child {
    margin-bottom: 0;
}

.product-content-detail .code span, .product-content-detail .brand span, .product-content-detail .weight span, .product-content-detail .length span, .product-content-detail .width span, .product-content-detail .height span {
    margin-left: 5px;
}

.product-content-detail .entire-attribute {
    margin-bottom: 20px;
}

.product-content-detail .entire-attribute .list-attribute {
    margin-bottom: 10px;
}

.product-content-detail .entire-attribute .list-attribute label {
    margin-right: 20px;
    margin-bottom: 0;
}

.product-content-detail .entire-attribute .list-attribute .product-attribute-switch {
    margin-bottom: 0;
}

.product-content-detail .entire-attribute .list-attribute:last-child {
    margin-bottom: 0;
}

.product-content-detail .add-to-cart {
    max-width: 155px;
}

.product-content-detail .add-to-cart.disable {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
    -webkit-user-select: none;
    /* Chrome all / Safari all */
    -moz-user-select: none;
    /* Firefox all */
    -ms-user-select: none;
    /* IE 10+ */
    user-select: none;
}

.product-content-detail .out-of-stock {
    font-weight: 600;
    color: #c33;
    text-transform: capitalize;
    height: 44px;
    line-height: 44px;
}

.product-content-detail .btn-compare {
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
    color: #222;
}

.product-content-detail .btn-compare i {
    margin-right: 5px;
}

.product-content-detail .btn-compare:hover {
    color: #c33;
}

.product-quantity {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 25px;
    color: #222;
    border: 1px solid #e1e1e1;
    border-radius: 50px;
    padding: 0 10px;
    margin-right: 10px;
    float: left;
}

.product-quantity .btn-quantity {
    cursor: pointer;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.product-quantity .btn-quantity:hover {
    color: var(--color-main);
}

.product-quantity input {
    font-size: 18px;
    width: 60px;
    height: 42px;
    padding: 0 10px;
    border: none;
    background-color: transparent;
}

.social-share .share-title {
    margin-right: 15px;
}

.social-share .list-social .btn-social {
    float: left;
    margin: 0 4px;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.social-share .list-social .btn-social:hover i {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.social-share .list-social .btn-social.facebook-icon i {
    background-color: #365493;
}

.social-share .list-social .btn-social.twitter-icon i {
    background-color: #3cf;
}

.social-share .list-social .btn-social.google-icon i {
    background-color: #d44132;
}

.social-share .list-social .btn-social.pinterest-icon i {
    background-color: #cb2027;
}

.social-share .list-social .btn-social.linkedin-icon i {
    background-color: #0274b3;
}

.social-share .list-social .btn-social a i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #ffffff;
}

.sidebar-mini-cart {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 0;
    bottom: 0;
    right: 0;
    width: 460px;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 1030;
    background-color: #ffffff;
    -webkit-box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.2);
    box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.2);
    -webkit-transform: translate3d(460px, 0, 0);
    -moz-transform: translate3d(460px, 0, 0);
    -ms-transform: translate3d(460px, 0, 0);
    -o-transform: translate3d(460px, 0, 0);
    transform: translate3d(460px, 0, 0);
    -webkit-transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.51, 0.82);
    transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.51, 0.82);
}

.sidebar-mini-cart.open {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-overflow-scrolling: touch;
}

.sidebar-mini-cart .sidebar-header .close-sidebar {
    font-size: 30px;
    color: #222;
}

.sidebar-mini-cart .content-mini-cart {
    flex: 1 1 auto;
    display: flex;
}

.sidebar-mini-cart .content-mini-cart .remove-mini-cart {
    position: absolute;
    top: 30px;
    right: 5px;
    font-size: 16px;
    cursor: pointer;
}

.sidebar-mini-cart .content-mini-cart .remove-mini-cart:hover i {
    color: #c33;
}

.sidebar-mini-cart .content-mini-cart .inner-content {
    margin-left: 110px;
}

.sidebar-mini-cart .content-mini-cart .inner-content .attr-product {
    line-height: 20px;
    height: 20px;
}

.sidebar-mini-cart .content-mini-cart .inner-content .attr-product label, .sidebar-mini-cart .content-mini-cart .inner-content .attr-product p {
    float: left;
}

.sidebar-mini-cart .content-mini-cart .inner-content .attr-product label {
    font-weight: 400;
    color: #222;
    margin-bottom: 0;
}

.sidebar-mini-cart .content-mini-cart .inner-content .attr-product p {
    margin-bottom: 0;
    font-weight: 700;
    color: #390;
    margin-left: 5px;
}

.sidebar-mini-cart .content-mini-cart .inner-content .quantity {
    color: #222;
}

.sidebar-mini-cart .content-mini-cart .inner-content .quantity .price-amount {
    font-weight: 700;
}

.sidebar-mini-cart .content-mini-cart .total-price {
    padding-top: 20px;
}

.sidebar-mini-cart .content-mini-cart .mini-cart-btn .btn-checkout {
    display: block;
    font-weight: 700;
    padding: 14px 0;
    margin-top: 20px;
}

.sidebar-mini-cart .content-mini-cart .mini-cart-btn .btn-cart-info {
    display: block;
    font-weight: 700;
    padding: 14px 0;
    background-color: transparent;
    border: 1px solid #222;
    color: #222;
}

.sidebar-mini-cart .content-mini-cart .mini-cart-btn .btn-cart-info:hover {
    color: var(--color-hightlight);
    border-color: var(--color-hightlight);
}

.sidebar-mini-cart .content-mini-cart .box-minicart {
    padding-bottom: 270px;
    position: relative;
    width: 100%;
}

.sidebar-mini-cart .content-mini-cart .entire-bottom-minicart {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}

.sidebar-mini-cart::-webkit-scrollbar {
    width: 6px;
}

.sidebar-mini-cart::-webkit-scrollbar-thumb {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    background: #e6e6e6;
}

.sidebar-mini-cart::-webkit-scrollbar-track {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}

.active-quick-shop .product-quick-shop {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.product-quick-shop {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(249, 249, 249, 0.97);
    -webkit-transform: translateY(-101%);
    -ms-transform: translateY(-101%);
    -o-transform: translateY(-101%);
    transform: translateY(-101%);
    -webkit-transition: all 0.35s cubic-bezier(0.65, 0.05, 0.51, 0.82);
    transition: all 0.35s cubic-bezier(0.65, 0.05, 0.51, 0.82);
    z-index: 50;
    overflow-x: hidden;
    overflow-y: auto;
    text-align: center;
}

.product-quick-shop .quick-shop-close {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 15px;
    color: #222;
    cursor: pointer;
}

.product-quick-shop::-webkit-scrollbar {
    width: 6px;
}

.product-quick-shop::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: #e6e6e6;
}

.product-quick-shop::-webkit-scrollbar-track {
    border-radius: 8px;
}

.entry-quick-shop {
    height: 100%;
    width: 100%;
    padding: 20px 10px 10px;
}

.entry-quick-shop .product-attribute-switch {
    margin-bottom: 5px;
}

.entry-quick-shop .product-quantity {
    margin-right: 0;
}

.entry-quick-shop .product-quantity input {
    height: 32px;
}

.entry-quick-shop .product-quantity .btn-quantity {
    line-height: 32px;
}

.entry-quick-shop .reset-attribute {
    margin-left: 0;
}

.entry-quick-shop label {
    font-weight: 600;
    margin-bottom: 2px;
}

.entry-quick-shop .add-to-cart {
    display: inline-block;
    margin-top: 8px;
    height: 34px;
    width: 34px;
    font-size: 20px;
    background-color: var(--color-main);
    text-align: center;
    line-height: 34px;
    color: #ffffff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.entry-quick-shop .add-to-cart.disable {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
    -webkit-user-select: none;
    /* Chrome all / Safari all */
    -moz-user-select: none;
    /* Firefox all */
    -ms-user-select: none;
    /* IE 10+ */
    user-select: none;
}

.entry-quick-shop .entire-attribute {
    margin-bottom: 5px;
}

.entry-quick-shop .added_to_cart i::before {
    content: '\f218';
}

.entry-quick-shop .out-of-stock {
    font-weight: 600;
    color: #c33;
    text-transform: capitalize;
    line-height: 76px;
}

.per-page-title {
    font-weight: 600;
    color: #222;
}

.per-page-variation {
    padding: 0 7px;
}

.per-page-variation.active {
    color: #222;
    font-weight: 600;
}

.orderby-section .dropdown.show .orderby-title::after {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.orderby-section .orderby-title {
    display: block;
    min-width: 150px;
    padding-right: 45px;
    position: relative;
    cursor: pointer;
    color: #222;
    font-weight: 600;
}

.orderby-section .orderby-title::after {
    content: "\f107";
    position: absolute;
    font-family: "Line Awesome Free";
    top: 0;
    right: 0;
    font-weight: 900;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.orderby-section .dropdown-item {
    padding-top: 0;
    padding-bottom: 0;
    line-height: 40px;
    height: 40px;
}

.orderby-section .dropdown-item.active {
    font-weight: 600;
    background-color: #f6f6f6;
    color: #222;
}

.orderby-section .dropdown-menu {
    margin: 0;
    padding: 0;
}

.filter-section {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.filter-section li {
    margin-bottom: 6px;
}

.filter-section li .inner-switch>span {
    width: 15px;
    height: 15px;
    margin-right: 10px;
    display: block;
    position: relative;
    border: 1px solid #e3e3e3;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.filter-section li .inner-switch.circle>span {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.filter-section li>a {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    margin: 6px 0;
}

.filter-section li>a:hover {
    color: #222;
}

.filter-section li>a:hover .inner-switch>span {
    background-color: transparent !important;
}

.filter-section li>a:hover .inner-switch>span::after {
    content: "\f00c";
    font-family: "Line Awesome Free";
    font-weight: 900;
    position: absolute;
    top: 0px;
    left: 0;
    line-height: 1;
}

.filter-section li>a.active .inner-name {
    color: #222;
    font-weight: 700;
}

.filter-section li>a.active .inner-switch>span {
    background-color: transparent !important;
}

.filter-section li>a.active .inner-switch>span::after {
    content: "\f00c";
    font-family: "Line Awesome Free";
    font-weight: 900;
    position: absolute;
    top: 0px;
    left: 0;
    line-height: 1;
}

.filter-section.filter-inline {
    display: flex;
    align-items: center;
}

/* Responsive */
.is-mobile .product-detail-footer {
    border-top: 1px solid #e3e3e3;
    margin-top: 15px;
    padding-top: 15px;
}

.is-mobile .product-detail-footer .nav {
    margin-bottom: 0;
    border-bottom: 0;
}

.is-mobile .product-detail-footer .nav li {
    margin-right: 20px;
}

.is-mobile .product-detail-footer .nav li a {
    font-size: 14px;
}

.is-mobile .product-detail-footer .nav li a::before {
    content: none;
}

.is-mobile .product-detail-footer .nav li a.active {
    color: #c33;
}

.is-mobile .box-rating {
    flex-direction: column;
}

.is-mobile .box-rating .author-info {
    flex: 1 1;
    padding: 0;
    display: flex;
    text-align: left;
}

.is-mobile .box-rating .author-info .letter-first {
    margin: 0 8px 0 0;
    height: 36px;
    width: 36px;
    line-height: 34px;
    font-size: 11px;
}

.is-mobile .box-rating .author-info .meta {
    text-align: left;
    padding-left: 10px;
    margin-top: 5px;
}

.is-mobile .box-rating .rating-content {
    width: 100%;
    padding-left: 0;
}

.is-mobile .box-rating .rating-content .entry-reply {
    margin-bottom: 10px;
}

.is-mobile .box-rating .child-reply .author-info .meta {
    padding-left: 0;
}

.is-mobile .box-rating .child-reply .reviews-form {
    background-color: transparent;
    padding: 0;
}

.is-mobile .reviews-form {
    background-color: transparent;
    padding: 0;
}

.is-mobile .reviews-form input[type=text], .is-mobile .reviews-form textarea {
    background-color: #f4f4f4;
    border: 2px solid #f4f4f4;
}

.is-mobile .logo-section {
    text-align: center;
}

.is-mobile .entry-topbar {
    display: block;
}

.is-mobile .entry-topbar .dropdown-topbar {
    justify-content: center;
}

.is-mobile .entry-topbar .left-topbar {
    display: block;
    text-align: center;
}

.is-mobile .entry-topbar .right-topbar ul {
    text-align: center;
    padding-left: 0;
}

.is-mobile .slider-section .slick-next:hover, .is-mobile .slider-section .slick-prev:hover {
    background-color: rgba(255, 255, 255, 0.75);
}

.is-mobile .slider-section .slick-next:hover::before, .is-mobile .slider-section .slick-prev:hover::before {
    color: #222;
}

.is-mobile .slider-section .inner-content {
    font-size: 13px;
    line-height: 16px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.is-mobile .slider-section .btn-submit {
    font-size: 13px;
    line-height: 35px !important;
    height: 35px;
}

.is-mobile .menu-section {
    position: fixed;
    width: 290px;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    z-index: 1100;
    background-color: #fff;
    padding: 0 20px;
    overflow: auto;
    -webkit-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    -webkit-transform: translate3d(-290px, 0, 0);
    -moz-transform: translate3d(-290px, 0, 0);
    -ms-transform: translate3d(-290px, 0, 0);
    -o-transform: translate3d(-290px, 0, 0);
    transform: translate3d(-290px, 0, 0);
    -webkit-transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.51, 0.82);
    transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.51, 0.82);
    -webkit-box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.2);
    box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.2);
}

.is-mobile .menu-section.open {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    padding-bottom: 90px;
}

.is-mobile .menu-section>ul>li {
    display: block;
    margin-right: 0;
    border-bottom: 1px solid #e3e3e3;
}

.is-mobile .menu-section>ul>li:last-child {
    border-bottom: 0;
}

.is-mobile .menu-section>ul>li>a {
    line-height: 1;
    height: auto;
    display: block !important;
    text-align: left;
    padding: 15px 0px;
}

.is-mobile .menu-section>ul>li>.grower {
    top: 8px;
}

.is-mobile .menu-section .grower {
    display: block;
    position: absolute;
    top: 2px;
    right: 0;
    font-size: 14px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    opacity: 1;
    filter: alpha(opacity=100);
    z-index: 1;
}

.is-mobile .menu-section .grower::after {
    content: "\f067";
    font-family: "Line Awesome Free";
    vertical-align: bottom;
    font-weight: 600;
}

.is-mobile .menu-section .grower.open::after {
    content: "\f068";
}

.is-mobile .menu-section .menu-title {
    font-weight: normal;
    margin-bottom: 0;
    line-height: 1;
    padding: 10px 0;
    display: block;
}

.is-mobile .menu-section .row-menu {
    display: block;
    margin-right: 0px;
    margin-left: 0px;
}

.is-mobile .menu-section .row-menu>div, .is-mobile .menu-section .row-menu li {
    max-width: 100%;
    padding: 0 0 0 15px;
}

.is-mobile .menu-section .container-menu {
    border-left: 1px solid #e3e3e3;
    margin-bottom: 10px;
    min-height: auto !important;
}

.is-mobile .menu-section .container-menu .sub-menu {
    display: none;
    border-left: 1px solid #e3e3e3;
    padding: 0px;
    margin-bottom: 0px;
}

.is-mobile .menu-section .menu-link {
    line-height: 1;
    padding: 10px 0;
    color: #222;
}

.is-mobile .menu-section .child-indicator {
    display: none;
}

.is-mobile .menu-section .entry-menu.tabs-menu .tabs-item {
    padding-left: 15px;
}

.is-mobile .menu-section .entry-menu.tabs-menu .tabs-item.active>.menu-link {
    background-color: #fff;
}

.is-mobile .menu-section .entry-menu.tabs-menu .tabs-item>.menu-link {
    line-height: 1;
    width: 100%;
    padding: 10px 0;
}

.is-mobile .menu-section .entry-menu.tabs-menu .tabs-item>.sub-menu {
    width: 100%;
    position: static;
    padding: 0;
    margin-bottom: 0;
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
}

.is-mobile .menu-section .entry-menu.dropdown {
    margin-bottom: 10px;
}

.is-mobile .menu-section .entry-menu.dropdown ul {
    position: static;
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
    display: none;
    min-width: auto;
    margin: 0;
    padding: 0;
    border: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    border-left: 1px solid #e3e3e3;
}

.is-mobile .menu-section .entry-menu.dropdown ul li {
    padding-left: 15px;
}

.is-mobile .menu-section .entry-menu.full-width .container-menu {
    width: 100%;
}

.is-mobile .menu-section .has-child {
    position: relative;
}

.is-mobile .menu-section .has-child>a {
    position: relative;
}

.is-mobile .menu-section .has-child>a>span {
    display: none !important;
}

.is-mobile .menu-section .has-child>.entry-menu {
    position: static;
    padding: 0;
    border-top: 0;
    min-width: auto;
    width: auto;
    display: none;
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.is-mobile .menu-section .has-child>.entry-menu::before {
    content: none;
}

.is-mobile .menu-section .has-child:hover>a {
    color: inherit;
}

.is-mobile .menu-section .menu-top {
    display: block;
    position: relative;
    margin-bottom: 15px;
    margin-top: 20px;
}

.is-mobile .menu-section .menu-top .menu-close {
    position: absolute;
    top: 5px;
    right: 0;
    font-size: 20px;
}

.is-mobile .menu-section .close-sidebar {
    position: absolute;
    font-size: 30px;
    color: #222;
    top: -5px;
    right: 0;
}

.is-mobile .btn-menu-mobile {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 35px;
    display: inline-block;
    color: #222;
}

.is-mobile .back-drop {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    z-index: 1020;
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
}

.is-mobile .back-drop.open {
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
}

.is-mobile .sticky-menu.fix {
    -webkit-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

.is-mobile .sticky-menu.fix.scroll-up {
    -webkit-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

.is-mobile .sidebar-mini-cart {
    width: 290px;
}

.is-mobile .sidebar-mini-cart .content-mini-cart .remove-mini-cart {
    top: 12px;
}

.is-mobile .hight-light .entry-content {
    flex-direction: column;
    text-align: center;
    margin-bottom: 10px;
}

.is-mobile .hight-light .entry-content .inner-icon {
    margin-right: 0;
}

.is-mobile .product-detail-head .product-quantity, .is-mobile .product-detail-head .add-to-cart {
    margin-top: 5px;
    margin-bottom: 5px;
}

.is-mobile .view-small .product-item .inner-content {
    text-align: left;
}

.is-mobile .view-small .product-item .inner-content .star-rating {
    margin: 0;
}

.is-mobile .product-item .inner-image .product-action {
    display: none;
}

.is-mobile .product-item .inner-content {
    text-align: center;
}

.is-mobile .product-item .inner-content .product-rating-price {
    height: auto;
    line-height: 1.4;
}

.is-mobile .product-item .inner-content .product-rating-price .wrp-rating-price {
    height: auto;
}

.is-mobile .product-item .inner-content .star-rating {
    margin: 0 auto;
}

.is-mobile .product-item .inner-content .price>span {
    display: inline-block;
    padding: 0 3px;
}

.is-mobile .product-item .inner-content .price>span.price-amount.old-price {
    margin-left: 0;
}

.is-mobile .product-item:hover .inner-content .product-rating-price .wrp-rating-price {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}

.article-content iframe, .article-content video, .article-content img, .article-content table {
    max-width: 100%;
}

.product-detail-footer iframe, .product-detail-footer video, .product-detail-footer img, .product-detail-footer table {
    max-width: 100%;
}

.article-content img, .product-detail-footer img {
    height: auto;
}

@media (max-width: 1280px) {
    .menu-section .entry-menu.full-width .container-menu {
        width: auto;
    }

    .menu-section .entry-menu.multil-column {
        min-width: 620px;
    }

    .slick-slider .slick-arrow {
        opacity: 1;
        filter: opacity(1);
        visibility: visible;
    }

    .slick-slider .slick-prev {
        left: 0px;
    }

    .slick-slider .slick-next {
        right: 0px;
    }

    .slick-slider:hover .slick-prev {
        left: 0px;
    }

    .slick-slider:hover .slick-next {
        right: 0px;
    }

    .slick-slider::before, .slick-slider::after {
        content: none;
    }
}

@media (max-width: 1000px) {
    .slick-dotted.slick-slider {
        margin-bottom: 30px;
    }

    .entry-topbar {
        display: block;
    }

    .entry-topbar .dropdown-topbar {
        justify-content: center;
    }

    .entry-topbar .left-topbar {
        display: block;
        text-align: center;
    }

    .entry-topbar .right-topbar ul {
        text-align: center;
        padding-left: 0;
    }

    .menu-section {
        position: fixed;
        width: 290px;
        top: 0;
        bottom: 0;
        left: 0;
        height: 100%;
        z-index: 1100;
        background-color: #fff;
        padding: 0 20px;
        overflow: auto;
        -webkit-transition: all 0.8s ease-in-out;
        transition: all 0.8s ease-in-out;
        -webkit-transform: translate3d(-290px, 0, 0);
        -moz-transform: translate3d(-290px, 0, 0);
        -ms-transform: translate3d(-290px, 0, 0);
        -o-transform: translate3d(-290px, 0, 0);
        transform: translate3d(-290px, 0, 0);
        -webkit-transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.51, 0.82);
        transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.51, 0.82);
        -webkit-box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.2);
        box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.2);
    }

    .menu-section.open {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .menu-section>ul>li {
        display: block;
        margin-right: 0;
        border-bottom: 1px solid #e3e3e3;
    }

    .menu-section>ul>li:last-child {
        border-bottom: 0;
    }

    .menu-section>ul>li>a {
        line-height: 1;
        height: auto;
        display: block !important;
        text-align: left;
        padding: 15px 0px;
    }

    .menu-section>ul>li>.grower {
        top: 8px;
    }

    .menu-section .grower {
        display: block;
        position: absolute;
        top: 2px;
        right: 0;
        font-size: 14px;
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        cursor: pointer;
        opacity: 1;
        filter: alpha(opacity=100);
        z-index: 1;
    }

    .menu-section .grower::after {
        content: "\f067";
        font-family: "Line Awesome Free";
        vertical-align: bottom;
        font-weight: 600;
    }

    .menu-section .grower.open::after {
        content: "\f068";
    }

    .menu-section .menu-title {
        font-weight: normal;
        margin-bottom: 0;
        line-height: 1;
        padding: 10px 0;
        display: block;
    }

    .menu-section .row-menu {
        display: block;
        margin-right: 0px;
        margin-left: 0px;
    }

    .menu-section .row-menu>div, .menu-section .row-menu li {
        max-width: 100%;
        padding: 0 0 0 15px;
    }

    .menu-section .container-menu {
        border-left: 1px solid #e3e3e3;
        margin-bottom: 10px;
        min-height: auto !important;
    }

    .menu-section .container-menu .sub-menu {
        display: none;
        border-left: 1px solid #e3e3e3;
        padding: 0px;
        margin-bottom: 0px;
    }

    .menu-section .menu-link {
        line-height: 1;
        padding: 10px 0;
        color: #222;
    }

    .menu-section .child-indicator {
        display: none;
    }

    .menu-section .entry-menu.tabs-menu .tabs-item {
        padding-left: 15px;
    }

    .menu-section .entry-menu.tabs-menu .tabs-item.active>.menu-link {
        background-color: #fff;
    }

    .menu-section .entry-menu.tabs-menu .tabs-item>.menu-link {
        line-height: 1;
        width: 100%;
        padding: 10px 0;
    }

    .menu-section .entry-menu.tabs-menu .tabs-item>.sub-menu {
        width: 100%;
        position: static;
        padding: 0;
        margin-bottom: 0;
        opacity: 1;
        filter: opacity(1);
        visibility: visible;
    }

    .menu-section .entry-menu.dropdown {
        margin-bottom: 10px;
    }

    .menu-section .entry-menu.dropdown ul {
        position: static;
        opacity: 1;
        filter: opacity(1);
        visibility: visible;
        display: none;
        min-width: auto;
        margin: 0;
        padding: 0;
        border: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
        border-left: 1px solid #e3e3e3;
    }

    .menu-section .entry-menu.dropdown ul li {
        padding-left: 15px;
    }

    .menu-section .entry-menu.full-width .container-menu {
        width: 100%;
    }

    .menu-section .has-child {
        position: relative;
    }

    .menu-section .has-child>a {
        position: relative;
    }

    .menu-section .has-child>a>span {
        display: none !important;
    }

    .menu-section .has-child>.entry-menu {
        position: static;
        padding: 0;
        border-top: 0;
        min-width: auto;
        width: auto;
        display: none;
        opacity: 1;
        filter: opacity(1);
        visibility: visible;
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    .menu-section .has-child>.entry-menu::before {
        content: none;
    }

    .menu-section .has-child:hover>a {
        color: inherit;
    }

    .menu-section .menu-top {
        display: block;
        position: relative;
        margin-bottom: 15px;
        margin-top: 20px;
    }

    .menu-section .menu-top .menu-close {
        position: absolute;
        top: 5px;
        right: 0;
        font-size: 20px;
    }

    .menu-section .close-sidebar {
        position: absolute;
        font-size: 30px;
        color: #222;
        top: -5px;
        right: 0;
    }

    .btn-menu-mobile {
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        font-size: 35px;
        display: inline-block;
        color: #222;
    }

    .back-drop {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        z-index: 1020;
        opacity: 0;
        filter: opacity(0);
        visibility: hidden;
    }

    .back-drop.open {
        opacity: 1;
        filter: opacity(1);
        visibility: visible;
    }

    .sticky-menu.fix {
        -webkit-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .sticky-menu.fix.scroll-up {
        -webkit-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .sidebar-mini-cart {
        width: 290px;
    }

    .sidebar-mini-cart .content-mini-cart .remove-mini-cart {
        top: 12px;
    }

    .hight-light .inner-icon {
        margin-right: 30px;
    }

    .product-tab .nav .nav-item {
        padding: 0 15px;
    }

    .product-tab .nav .nav-item .nav-link {
        font-size: 14px;
        padding-bottom: 10px;
    }

    .product-detail-head .product-quantity, .product-detail-head .add-to-cart {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .form-billing label {
        margin-bottom: 5px;
    }

    .form-billing .form-group {
        margin-bottom: 15px;
    }
}

@media (min-width: 768px) and (max-width: 1280px) {
    .btn-action-header {
        padding: 5px 10px;
    }

    .menu-section>ul>li {
        margin-right: 20px;
    }
}

@media (max-width: 991px) {
    .product-detail-footer {
        border-top: 1px solid #e3e3e3;
        margin-top: 15px;
        padding-top: 15px;
    }

    .product-detail-footer .nav {
        margin-bottom: 0;
        border-bottom: 0;
    }

    .product-detail-footer .nav li {
        margin-right: 20px;
    }

    .product-detail-footer .nav li a {
        font-size: 14px;
    }

    .product-detail-footer .nav li a::before {
        content: none;
    }

    .product-detail-footer .nav li a.active {
        color: #c33;
    }

    .box-rating {
        flex-direction: column;
    }

    .box-rating .author-info {
        flex: 1 1;
        padding: 0;
        display: flex;
        text-align: left;
    }

    .box-rating .author-info .letter-first {
        margin: 0 8px 0 0;
        height: 36px;
        width: 36px;
        line-height: 34px;
        font-size: 11px;
    }

    .box-rating .author-info .meta {
        text-align: left;
        padding-left: 10px;
        margin-top: 5px;
    }

    .box-rating .rating-content {
        width: 100%;
        padding-left: 0;
    }

    .box-rating .rating-content .entry-reply {
        margin-bottom: 10px;
    }

    .box-rating .child-reply .author-info .meta {
        padding-left: 0;
    }

    .box-rating .child-reply .reviews-form {
        background-color: transparent;
        padding: 0;
    }

    .reviews-form {
        background-color: transparent;
        padding: 0;
    }

    .reviews-form input[type=text], .reviews-form textarea {
        background-color: #f4f4f4;
        border: 2px solid #f4f4f4;
    }

    .entire-address {
        padding: 20px 0;
    }

    .comment-section .list-comment .comment-content {
        margin-left: 0;
    }

    .list-comment .list-reply {
        margin-left: 30px;
    }

    .comment-item .edit-comment {
        margin-left: 30px;
    }

    .edit-comment {
        margin-bottom: 30px;
    }

    .product-detail-footer {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .product-image-detail .slider-thumbs {
        margin: 15px 0;
    }

    .product-image-detail .slider-thumbs .slick-prev {
        top: calc(-50% + 2px);
        left: 0;
        right: auto;
        width: 25px;
        height: calc(100% - 2px);
        margin: 0;
    }

    .product-image-detail .slider-thumbs .slick-prev::before {
        content: "\f104";
    }

    .product-image-detail .slider-thumbs .slick-next {
        top: calc(-50% + 2px);
        left: auto;
        right: 0;
        width: 25px;
        height: calc(100% - 2px);
        margin: 0;
    }

    .product-image-detail .slider-thumbs .slick-next::before {
        content: "\f105";
    }

    .page-title-section.page-categories {
        background: #f3f3f3 !important;
        padding: 20px 0;
    }

    .page-title-section .inner-title {
        font-size: 30px;
    }

    .entry-order-review th, .entry-order-review td {
        font-size: 13px;
        padding: 7px 0;
    }

    .entry-order-review .order-total {
        font-size: 18px;
    }

    .entry-order-review .order-total .price-amount {
        font-size: 14px;
    }

    .entry-order-review .price-amount {
        font-size: 13px;
    }

    .payment-method .tab-content, .payment-method ul {
        padding: 0;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        border-right: 0;
    }

    .payment-method ul {
        border-bottom: 1px solid #e3e3e3;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .payment-method ul li a.active::after {
        content: none;
    }

    .entire-cart-totals .order-total {
        font-size: 16px;
    }

    .entire-cart-totals .order-total td span {
        font-size: 16px;
    }

    .form-contact .title-section {
        padding-top: 30px;
    }
}

@media (max-width: 767px) {
    .article-item .article-info .article-category {
        display: block;
        margin-right: 0;
    }

    .logo-section {
        text-align: center;
    }

    .slider-section .slick-next:hover, .slider-section .slick-prev:hover {
        background-color: rgba(255, 255, 255, 0.75);
    }

    .slider-section .slick-next:hover::before, .slider-section .slick-prev:hover::before {
        color: #222;
    }

    .slider-section .inner-content {
        font-size: 13px;
        line-height: 16px;
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .slider-section .btn-submit {
        font-size: 13px;
        line-height: 35px !important;
        height: 35px;
    }

    .page-title-section .product-categories li {
        display: block;
    }

    .responsive-table.cart-info-section {
        margin-bottom: 15px;
    }

    .responsive-table.cart-info-section .item-quantity::before {
        margin-top: 10px;
    }

    .responsive-table.cart-info-section .item-quantity .product-quantity {
        border: 0;
        padding: 0;
    }

    .entire-cart-totals {
        margin-top: 15px;
        padding: 10px 20px 20px;
    }

    .product-item .inner-image .product-action {
        display: none;
    }

    .product-item .inner-content {
        text-align: center;
    }

    .product-item .inner-content .product-rating-price {
        height: auto;
        line-height: 1.4;
    }

    .product-item .inner-content .product-rating-price .wrp-rating-price {
        height: auto;
    }

    .product-item .inner-content .star-rating {
        margin: 0 auto;
    }

    .product-item .inner-content .price>span {
        display: inline-block;
        padding: 0 3px;
    }

    .product-item .inner-content .price>span.price-amount.old-price {
        margin-left: 0;
    }

    .product-item:hover .inner-content .product-rating-price .wrp-rating-price {
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@media (max-width: 575px) {
    .product-category-section>div {
        height: auto;
    }

    .product-category-section .inner-product-cat {
        height: auto;
        padding-top: 75%;
        margin-bottom: 30px;
    }

    .product-category-section .inner-product-cat.half-height {
        height: auto;
    }

    .hight-light .inner-icon {
        margin-right: 0px;
    }

    .hight-light .entry-content {
        flex-direction: column;
        text-align: center;
        margin-bottom: 30px;
    }

    .checkout-coupon .coupon-info::before, .checkout-coupon .coupon-info::after {
        content: none;
    }

    .product-content-detail .add-to-cart {
        max-width: 180px;
    }

    .sidebar-mini-cart .sidebar-header {
        margin-top: 0;
    }

    .sidebar-mini-cart .content-mini-cart .inner-image img {
        width: 45px;
        max-height: 60px;
        margin-right: 10px;
    }

    .sidebar-mini-cart .content-mini-cart .inner-content {
        margin-left: 55px;
    }

    .sidebar-mini-cart .content-mini-cart .inner-content .product-title {
        font-size: 13px;
    }

    .sidebar-mini-cart .content-mini-cart .inner-content .quantity {
        font-size: 13px;
    }

    .sidebar-mini-cart .content-mini-cart .inner-content .quantity .price-amount {
        font-size: 13px;
    }

    .sidebar-mini-cart .content-mini-cart .box-minicart {
        padding-bottom: 225px;
    }
}

@media (max-width: 420px) {
    .slider-section .inner-content {
        display: none;
    }

    .slider-section .btn-submit {
        font-size: 13px;
        line-height: 35px !important;
        height: 35px;
    }

    .is-mobile .slider-bg {
        height: 180px;
    }
}

@media (min-width: 992px) {
    .contact-info-website {
        position: relative;
        bottom: -140px;
        left: -190px;
    }
}

@media screen and (device-aspect-ratio: 2 / 3) {
    select, textarea, input[type="text"], input[type="password"] {
        font-size: 16px;
    }
}

/* Fix Input Zoom on iPhone 5, 5C, 5S, iPod Touch 5g */
@media screen and (device-aspect-ratio: 40 / 71) {
    select, textarea, input[type="text"], input[type="password"] {
        font-size: 16px;
    }
}

/* Fix Input Zoom on iPhone 6, iPhone 6s, iPhone 7  */
@media screen and (device-aspect-ratio: 375 / 667) {
    select, textarea, input[type="text"], input[type="password"] {
        font-size: 16px;
    }
}

/* Fix Input Zoom on iPhone 6 Plus, iPhone 6s Plus, iPhone 7 Plus, iPhone 8, iPhone X, XS, XS Max  */
@media screen and (device-aspect-ratio: 9 / 16) {
    select, textarea, input[type="text"], input[type="password"] {
        font-size: 16px;
    }
}

.content-sample>a {
    border-bottom: 2px solid red;
}

.logo-section .img-fluid {
    height: 110px;
}
