@charset "UTF-8";
*, :after, :before {
    box-sizing:inherit
}

:root {
    font-size: 62.5%;
    font-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-weight: 400;
    box-sizing: border-box;
    -webkit-tap-highlight-color:rgba(0, 0, 0, 0)
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior:smooth
    }
}

body {
    overflow-x: hidden;
    max-width: var(--alpha-site-width);
    margin: var(--alpha-site-margin);
    padding: var(--alpha-site-gap);
    background-color: var(--alpha-site-bg-color, #fff);
    background-image: var(--alpha-site-bg-image);
    background-repeat: var(--alpha-site-bg-repeat);
    background-position: var(--alpha-site-bg-position);
    background-size: var(--alpha-site-bg-size);
    background-attachment: var(--alpha-site-bg-attachment)
}

[tabindex="-1"]:focus:not(:focus-visible) {
    outline:0 !important
}

abbr[data-bs-original-title], abbr[title] {
    text-decoration: underline;
    text-decoration: underline dotted;
    cursor: help;
    text-decoration-skip-ink:none
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height:inherit
}

sub, sup {
    position: relative;
    line-height: 0;
    vertical-align:baseline
}

sub {
    bottom:-0.25em
}

sup {
    top:-0.5em
}

code, kbd, pre, samp {
    direction: ltr;
    unicode-bidi:bidi-override
}

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow:auto
}

pre code {
    word-break:normal
}

code {
    word-wrap:break-word
}

main {
    display: block;
    position: relative;
    padding-top: 3rem;
    padding-bottom: 5rem;
    flex:1 1 auto
}

.archive:not(.breadcrumb-divider-active) .breadcrumb-container + main {
    padding-top:4rem
}

.home #main {
    padding-top:0
}

body:not(.loaded) * {
    transition:all 0s !important
}

.page-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: margin 0.4s, opacity 0.5s;
    background-color: var(--alpha-page-wrapper-bg-color, #fff);
    background-image: var(--alpha-page-wrapper-bg-image);
    background-repeat: var(--alpha-page-wrapper-bg-repeat);
    background-position: var(--alpha-page-wrapper-bg-position);
    background-size: var(--alpha-page-wrapper-bg-size);
    background-attachment:var(--alpha-page-wrapper-bg-attachment)
}

.loaded > .page-wrapper {
    opacity:1
}

.main-content:after {
    content: "";
    display: block;
    clear:both
}

.site-boxed .page-wrapper {
    box-shadow:0 3px 6px -4px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23)
}

table {
    margin-bottom: 2rem;
    width: 100%;
    border-collapse: collapse;
    border-spacing:0
}

table td, table th {
    padding: 10px;
    text-align: left;
    vertical-align: top;
    border-bottom:1px solid #e9e9e9
}

dl dt {
    font-weight: 700;
    font-size:1.1em
}

dl dd {
    margin-bottom:0.5rem
}

ul li {
    position:relative
}

@supports (-ms-ime-align: auto) {
    ul {
        padding-left:20px
    }
}

.list-type-o {
    list-style-type: none;
    padding-inline-start:23px
}

.list-type-o li {
    margin-bottom:1.1rem
}

.list-type-o li:before {
    position: absolute;
    content: "";
    top: 45%;
    left: -23px;
    width: 14px;
    height: 14px;
    border: 1px solid #9d9d9d;
    border-radius: 50%;
    transform:translateY(-50%)
}

.list-type-o.list-type-secondary {
    padding-inline-start:28px
}

.list-type-o.list-type-secondary li:before {
    left: -28px;
    border-color:var(--alpha-secondary-color, #54524d)
}

.list-type-o.list-type-primary {
    padding-inline-start:28px
}

.list-type-o.list-type-primary li:before {
    left: -28px;
    border-color:var(--alpha-primary-color, #ff9c28)
}

.list-type-n {
    list-style-type: decimal;
    padding-inline-start:15px
}

.list-type-n li {
    margin-bottom:1.2rem
}

.list-type-number {
    counter-reset:count
}

.list-type-number li {
    display: flex;
    align-items:center
}

.list-type-number li:not(:last-child) {
    margin-bottom:5rem
}

.list-type-number li:after, .list-type-number li:before {
    counter-increment: count;
    content: counter(count);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    width: 8rem;
    height: 8rem;
    color: #fff;
    font-size: 48px;
    background: #d0dcd8;
    border-radius: 50%;
    transition:color 0.5s
}

.list-type-number li:after {
    display:none
}

.list-type-number.list-type-end {
    text-align:right
}

.list-type-number.list-type-end li {
    justify-content:flex-end
}

.list-type-number.list-type-end li:before {
    display:none
}

.list-type-number.list-type-end li:after {
    display: inline-flex;
    margin-right: 0;
    margin-left:2rem
}

@media (max-width: 767px) {
    .list-type-number li:not(:last-child) {
        margin-bottom:3rem
    }

    .list-type-number li:after, .list-type-number li:before {
        margin-right: 1rem;
        width: 5rem;
        height: 5rem;
        font-size:36px
    }

    .list-type-number.list-type-end li:after {
        margin-left:1rem
    }
}

@media (max-width: 767px) {
    .list-type-number.list-type-end {
        text-align:left
    }

    .list-type-number.list-type-end li {
        justify-content:flex-start
    }

    .list-type-number.list-type-end li:after {
        display:none
    }

    .list-type-number.list-type-end li:before {
        display: inline-flex;
        margin-left: 0;
        margin-right:2rem
    }
}

ol, ul {
    margin-bottom:2rem
}

li ol, li ul {
    margin-bottom:0
}

ol ol {
    list-style:upper-alpha
}

ol ol ol {
    list-style:lower-roman
}

.comment-text > ul {
    list-style:disc
}

.comment-text > ul ul {
    list-style:circle
}

.comment-text > ul ul ul {
    list-style:square
}

.comment-text > ol {
    list-style:decimal
}

.comment-text > ol ol {
    list-style:upper-alpha
}

.comment-text > ol ol ol {
    list-style:lower-roman
}

.breadcrumb, .comment > ol, .commentlist, .comments > ol, .dropdown-box, .image-gallery, .image-gallery ul, .list, .menu, .menu ul, .mobile-menu, .mobile-menu ul, .nav, .nav-filters, .nav ul, .pagination, .product-category ul, .product-nav, .product-tabs > div ul, .products, .products ul, .tabs, .widget ul, .woocommerce-error, ol.wp-block-latest-comments {
    list-style-type: none;
    margin: 0;
    padding:0
}

.alpha-price-filter a, .breadcrumb a, .card-header a, .cart_item a, .menu .menu-item > a, .mobile-icon-bar a, .mobile-menu-wrapper a, .nav-filters a, .pagination a, .post-cats a, .post-meta a, .post .post-title a, .product-cat a, .product-category a, .product .woocommerce-loop-product__title a, .product_meta a, .tagcloud a, .widget_product_categories a, .yith-woocommerce-ajax-product-filter a, header a {
    color:inherit
}

a {
    text-decoration: none;
    color: var(--alpha-primary-color, #ff9c28);
    transition:color 0.3s
}

a:focus, a:hover {
    text-decoration:underline
}

a:focus i, a:hover i {
    text-decoration:none
}

.account a:focus, .account a:hover, .brand-name a:focus, .brand-name a:hover, .breadcrumb a:focus, .breadcrumb a:hover, .card-header a:focus, .card-header a:hover, .compare-list a:focus, .compare-list a:hover, .compare-value a:focus, .compare-value a:hover, .contact a:focus, .contact a:hover, .dropdown a:focus, .dropdown a:hover, .elementor-icon-box-title a:focus, .elementor-icon-box-title a:hover, .filter-actions a:focus, .filter-actions a:hover, .menu a:focus, .menu a:hover, .mobile-icon-bar a:focus, .mobile-icon-bar a:hover, .nav-filters a:focus, .nav-filters a:hover, .nav_bar a:focus, .nav_bar a:hover, .nav a:focus, .nav a:hover, .pagination a:focus, .pagination a:hover, .post-cats a:focus, .post-cats a:hover, .post-meta a:focus, .post-meta a:hover, .post-tags a:focus, .post-tags a:hover, .post-title a:focus, .post-title a:hover, .product-category a:focus, .product-category a:hover, .product a:focus, .product a:hover, .social-icons a:focus, .social-icons a:hover, .title-wrapper a:focus, .title-wrapper a:hover, .title a:focus, .title a:hover, .toggle-menu a:focus, .toggle-menu a:hover, .toolbox a:focus, .toolbox a:hover, .tooltip a:focus, .tooltip a:hover, .vendor-widget a:focus, .vendor-widget a:hover, nav a:focus, nav a:hover {
    text-decoration:none
}

.alpha-icon-list-item:focus, .alpha-icon-list-item:hover, .btn-readmore:focus, .btn-readmore:hover, .btn:focus, .btn:hover, .button:focus, .button:hover, .comment-reply-link:focus, .comment-reply-link:hover, .mobile-menu-toggle:focus, .mobile-menu-toggle:hover, .page-numbers:focus, .page-numbers:hover, .remove:focus, .remove:hover, .sidebar-toggle:focus, .sidebar-toggle:hover, a.compare-open, a.wishlist {
    text-decoration:none
}

.brand-name a, .vendor-widget a {
    color:inherit
}

.brand-name a:focus, .brand-name a:hover, .vendor-widget a:focus, .vendor-widget a:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

:focus {
    outline:0
}

figure {
    margin:0
}

img {
    max-width: 100%;
    height: auto;
    vertical-align:middle
}

svg {
    vertical-align:middle
}

hr {
    margin-bottom: 2rem;
    border: 0;
    border-top:1px solid #e0dedf
}

input {
    padding: 0;
    font-family: inherit;
    background:transparent
}

input:focus {
    outline:0
}

button, select {
    text-transform:none
}

select {
    word-wrap:normal
}

::-moz-focus-inner {
    padding: 0;
    border-style:none
}

textarea {
    resize:vertical
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border:0
}

::-webkit-search-decoration {
    -webkit-appearance:none
}

::-webkit-color-swatch-wrapper {
    padding:0
}

::file-selector-button {
    font:inherit
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance:button
}

output {
    display:inline-block
}

iframe {
    border:0
}

summary {
    display: list-item;
    cursor:pointer
}

progress {
    vertical-align:baseline
}

[hidden] {
    display:none
}

i {
    font-style:normal
}

button:focus {
    outline:none
}

blockquote, button, input, optgroup, select, textarea {
    font-family: inherit;
    margin:0
}

blockquote {
    margin: 0 0 20px;
    padding: 15px 20px 10px 40px;
    border-left:2px solid var(--alpha-primary-color, #ff9c28)
}

blockquote > * {
    position:relative
}

input[type=number] {
    -moz-appearance:textfield
}

code {
    display: inline-block;
    border-radius: 4px;
    padding: 2px 5px;
    font-size: 1.4rem;
    color:var(--alpha-primary-color, #ff9c28)
}

pre {
    margin: 20px 0;
    padding: 20px;
    color: var(--alpha-primary-color, #ff9c28);
    background-color: #f2f3f5;
    overflow: auto;
    font-size:1.6rem
}

dd {
    margin-left:1rem
}

.scrollable, .sidebar-content {
    -webkit-overflow-scrolling:touch
}

.scrollable::-webkit-scrollbar, .sidebar-content::-webkit-scrollbar {
    height: 7px;
    width:4px
}

.scrollable::-webkit-scrollbar-thumb, .sidebar-content::-webkit-scrollbar-thumb {
    margin-right: 2px;
    background: rgba(0, 0, 0, 0);
    border-radius: 5px;
    cursor: pointer;
    transition:background 0.3s
}

.scrollable:hover::-webkit-scrollbar-thumb, .sidebar-content:hover::-webkit-scrollbar-thumb {
    background:rgba(0, 0, 0, 0.25)
}

.scrollable-light:hover::-webkit-scrollbar-thumb {
    background:rgba(255, 255, 255, 0.2)
}

.single-attachment .attachment > a {
    display:inline-block
}

.loading-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
    background: #fff;
    opacity: 1;
    visibility: visible;
    z-index:999999
}

.loaded > .loading-overlay {
    opacity: 0;
    visibility:hidden
}

.bounce-loader {
    position: absolute;
    top: 50%;
    left:50%
}

.bounce-loader > div {
    background-color: var(--alpha-primary-color, #ff9c28);
    border-radius: 100%;
    margin: 2px;
    position: absolute;
    left: -50px;
    top: -50px;
    opacity: 0;
    margin: 0;
    width: 100px;
    height: 100px;
    animation:bounce-loader 1.6s linear infinite
}

.bounce-loader > :last-child {
    animation-delay:-0.8s
}

@keyframes bounce-loader {
    0% {
        transform: scale(0);
        opacity:1
    }

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

.appear-animate {
    transform: translate3d(0, 0, 0) scale(1);
    will-change:transform, filter, opacity
}

.d-lazyload {
    height: 0 !important;
    background:var(--alpha-lazy-load-bg, #f4f4f4)
}

[data-lazy]:not(img) {
    background-image:none !important
}

.banner-img .w-lazyload {
    min-height:0
}

.screen-reader-text, script {
    display:none !important
}

@keyframes fixedTop {
    0% {
        transform: translateY(-100%);
        transform-origin:center top 0px
    }

    to {
        transform:translateY(0)
    }
}

@keyframes fixedBottom {
    0% {
        transform: translateY(100%);
        transform-origin:center top 0px
    }

    to {
        transform:translateY(0)
    }
}

.sticky-content {
    transition:opacity 0.5s
}

.sticky-content.fix-top {
    top:0
}

.sticky-content.fix-bottom {
    bottom:0
}

.sticky-content.fixed {
    position: fixed;
    left: 0;
    right: 0;
    opacity: 1;
    transform: none;
    background: #fff;
    z-index: 1051;
    box-shadow:0 0 10px 1px rgba(0, 0, 0, 0.1)
}

.fixed.fix-top {
    animation:fixedTop 0.4s
}

.fixed.fix-bottom {
    animation:fixedBottom 0.4s
}

.fit-video .wp-video {
    width:100% !important
}

form.d-loading {
    opacity:0.3
}

.d-loading {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    z-index:1
}

.d-loading.small i {
    left: calc(50% - 10px);
    top: calc(50% - 10px);
    width: 20px;
    height:20px
}

.d-loading i {
    position: absolute;
    left: calc(50% - 17px);
    top: calc(50% - 17px);
    width: 34px;
    height: 34px;
    border: 2px solid transparent;
    border-top-color: var(--alpha-primary-color, #ff9c28);
    border-radius: 50%;
    animation:spin 0.75s infinite linear
}

.d-loading i:before {
    content: "";
    top: -2px;
    left: -2px;
    position: absolute;
    width: inherit;
    height: inherit;
    border: inherit;
    border-radius: inherit;
    animation:spin 1.5s infinite ease
}

@keyframes spin {
    0% {
        transform:none
    }

    to {
        transform:rotate(360deg)
    }
}

@media (max-width: 767px) {
    .alpha-disable-mobile-animation .appear-animate, .alpha-disable-mobile-animation .elementor-invisible {
        opacity: 1;
        visibility:visible
    }
}

.alpha-disable-animation .appear-animate, .alpha-disable-animation .elementor-invisible {
    opacity: 1;
    visibility:visible
}

#wp-admin-bar-my-account .d-lazyload.avatar {
    padding-top: 0 !important;
    height: auto !important;
    width:auto !important
}

.empty-icon {
    font-size: 100px;
    color:#d3d3d4
}

body {
    font-family: var(--alpha-body-font-family), sans-serif;
    font-weight: var(--alpha-body-font-weight);
    font-size: var(--alpha-body-font-size);
    line-height: var(--alpha-body-line-height);
    letter-spacing: var(--alpha-body-letter-spacing);
    text-transform: var(--alpha-body-text-transform);
    color:var(--alpha-body-color)
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 2rem;
    font-family: var(--alpha-heading-font-family), var(--alpha-body-font-family), sans-serif;
    font-weight: var(--alpha-heading-font-weight, 400);
    font-size: var(--alpha-heading-font-size);
    line-height: var(--alpha-heading-line-height, var(--alpha-body-line-height));
    letter-spacing: var(--alpha-heading-letter-spacing, var(--alpha-body-letter-spacing));
    text-transform: var(--alpha-heading-text-transform, var(--alpha-body-text-transform));
    color: var(--alpha-heading-color, var(--alpha-body-color));
    -ms-word-wrap: break-word;
    word-wrap:break-word
}

p {
    margin:0 0 2rem
}

h1 {
    font-size:4.8rem
}

h2 {
    font-size:3rem
}

h3 {
    font-size:2.4rem
}

h4 {
    font-size:1.8rem
}

h5 {
    font-size:1.6rem
}

h6 {
    font-size:1.4rem
}

.alpha-rounded-skin .vendor-widget-2, .alpha-rounded-skin .vendor-widget-3, .alpha-rounded-skin .vendor-widget:not(.vendor-widget-3) .vendor-banner, .alpha-rounded-skin .vendor-widget:not(.vendor-widget-3) .vendor-logo {
    border-radius: 5px;
    overflow:hidden
}

.alpha-rounded-skin .vendor-widget .product-media img {
    border-radius:3px
}

.alpha-rounded-skin .banner {
    overflow:hidden
}

.alpha-rounded-skin .alpha-banner-container, .alpha-rounded-skin .brand-widget-3, .alpha-rounded-skin .elementor-widget-panda_widget_banner .elementor-widget-container, .alpha-rounded-skin .hotspot-box, .alpha-rounded-skin .post-mask:before, .alpha-rounded-skin .post-media, .alpha-rounded-skin .post-media img, .alpha-rounded-skin .products .banner, .alpha-rounded-skin .testimonial, .alpha-rounded-skin .testimonial .content {
    border-radius:5px
}

.alpha-rounded-skin .alert, .alpha-rounded-skin .alert .btn, .alpha-rounded-skin .alpha-compare-table .compare-value .label-swatch, .alpha-rounded-skin .calendar_wrap caption, .alpha-rounded-skin .cat-type-frame, .alpha-rounded-skin .comment-respond .btn-submit, .alpha-rounded-skin .form-control, .alpha-rounded-skin .instagram figure:before, .alpha-rounded-skin .instagram img, .alpha-rounded-skin .post-tags > a, .alpha-rounded-skin .product-hide-details .btn-product, .alpha-rounded-skin .product-list .btn-product, .alpha-rounded-skin .product .countdown-container, .alpha-rounded-skin .tagcloud > a, .alpha-rounded-skin .wpcf7-form-control {
    border-radius:3px
}

.container, .container-fluid {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right:auto
}

.container-fluid .container-fluid, .container .container-fluid {
    max-width: 100%;
    padding-left: 0;
    padding-right:0
}

.sticky-content > .container {
    padding-left: 20px;
    padding-right:20px
}

@media (max-width: 479px) {
    .container, .container-fluid, .sticky-content > .container {
        padding-left: 15px;
        padding-right:15px
    }
}

.container-fluid {
    max-width:var(--alpha-container-fluid-width)
}

.container-fluid .container {
    max-width:calc(var(--alpha-container-fluid-width, 1220px) - 40px)
}

.container {
    max-width:var(--alpha-container-width)
}

.divider {
    display: inline-block;
    vertical-align: middle;
    height: 1.9rem;
    width: 1px;
    background-color:#e5e5e5
}

.row {
    --alpha-col: 1;
    --alpha-gap: 10px;
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 2 * var(--alpha-gap));
    margin-left: calc(-1 * var(--alpha-gap));
    margin-right:calc(-1 * var(--alpha-gap))
}

.row > * {
    position: relative;
    width: calc(100% / var(--alpha-col));
    padding-left: var(--alpha-gap);
    padding-right: var(--alpha-gap);
    flex:0 0 auto
}

.gutter-xl {
    --alpha-gap:20px
}

.gutter-lg {
    --alpha-gap:15px
}

.gutter-sm {
    --alpha-gap:5px
}

.gutter-xs {
    --alpha-gap:1px
}

.gutter-no {
    --alpha-gap:0px
}

.cols-1 {
    --alpha-col:1
}

.cols-2 {
    --alpha-col:2
}

.cols-3 {
    --alpha-col:3
}

.cols-4 {
    --alpha-col:4
}

.cols-5 {
    --alpha-col:5
}

.cols-6 {
    --alpha-col:6
}

.cols-7 {
    --alpha-col:7
}

.cols-8 {
    --alpha-col:8
}

.order-first {
    order:-1
}

.order-last {
    order:9
}

@media (min-width: 480px) {
    .cols-xs-1 {
        --alpha-col:1
    }

    .cols-xs-2 {
        --alpha-col:2
    }

    .cols-xs-3 {
        --alpha-col:3
    }

    .cols-xs-4 {
        --alpha-col:4
    }

    .cols-xs-5 {
        --alpha-col:5
    }

    .cols-xs-6 {
        --alpha-col:6
    }

    .cols-xs-7 {
        --alpha-col:7
    }

    .cols-xs-8 {
        --alpha-col:8
    }
}

@media (min-width: 576px) {
    .cols-sm-1 {
        --alpha-col:1
    }

    .cols-sm-2 {
        --alpha-col:2
    }

    .cols-sm-3 {
        --alpha-col:3
    }

    .cols-sm-4 {
        --alpha-col:4
    }

    .cols-sm-5 {
        --alpha-col:5
    }

    .cols-sm-6 {
        --alpha-col:6
    }

    .cols-sm-7 {
        --alpha-col:7
    }

    .cols-sm-8 {
        --alpha-col:8
    }

    .order-sm-auto {
        order:0
    }

    .order-sm-first {
        order:-1
    }

    .order-sm-last {
        order:9
    }
}

@media (min-width: 768px) {
    .cols-md-1 {
        --alpha-col:1
    }

    .cols-md-2 {
        --alpha-col:2
    }

    .cols-md-3 {
        --alpha-col:3
    }

    .cols-md-4 {
        --alpha-col:4
    }

    .cols-md-5 {
        --alpha-col:5
    }

    .cols-md-6 {
        --alpha-col:6
    }

    .cols-md-7 {
        --alpha-col:7
    }

    .cols-md-8 {
        --alpha-col:8
    }

    .order-md-auto {
        order:0
    }

    .order-md-first {
        order:-1
    }

    .order-md-last {
        order:9
    }
}

@media (min-width: 992px) {
    .cols-lg-1 {
        --alpha-col:1
    }

    .cols-lg-2 {
        --alpha-col:2
    }

    .cols-lg-3 {
        --alpha-col:3
    }

    .cols-lg-4 {
        --alpha-col:4
    }

    .cols-lg-5 {
        --alpha-col:5
    }

    .cols-lg-6 {
        --alpha-col:6
    }

    .cols-lg-7 {
        --alpha-col:7
    }

    .cols-lg-8 {
        --alpha-col:8
    }

    .order-lg-auto {
        order:0
    }

    .order-lg-first {
        order:-1
    }

    .order-lg-last {
        order:9
    }
}

@media (min-width: 1200px) {
    .cols-xl-1 {
        --alpha-col:1
    }

    .cols-xl-2 {
        --alpha-col:2
    }

    .cols-xl-3 {
        --alpha-col:3
    }

    .cols-xl-4 {
        --alpha-col:4
    }

    .cols-xl-5 {
        --alpha-col:5
    }

    .cols-xl-6 {
        --alpha-col:6
    }

    .cols-xl-7 {
        --alpha-col:7
    }

    .cols-xl-8 {
        --alpha-col:8
    }
}

.col-1 {
    --alpha-col:12
}

.col-2 {
    --alpha-col:6
}

.col-3 {
    --alpha-col:4
}

.col-4 {
    --alpha-col:3
}

.col-5 {
    --alpha-col:2.4
}

.col-6 {
    --alpha-col:2
}

.col-7 {
    --alpha-col:1.714286
}

.col-8 {
    --alpha-col:1.5
}

.col-9 {
    --alpha-col:1.333333
}

.col-10 {
    --alpha-col:1.2
}

.col-11 {
    --alpha-col:1.090909
}

.col-12 {
    --alpha-col:1
}

@media (min-width: 480px) {
    .col-xs-1 {
        --alpha-col:12
    }

    .col-xs-2 {
        --alpha-col:6
    }

    .col-xs-3 {
        --alpha-col:4
    }

    .col-xs-4 {
        --alpha-col:3
    }

    .col-xs-5 {
        --alpha-col:2.4
    }

    .col-xs-6 {
        --alpha-col:2
    }

    .col-xs-7 {
        --alpha-col:1.714286
    }

    .col-xs-8 {
        --alpha-col:1.5
    }

    .col-xs-9 {
        --alpha-col:1.333333
    }

    .col-xs-10 {
        --alpha-col:1.2
    }

    .col-xs-11 {
        --alpha-col:1.090909
    }

    .col-xs-12 {
        --alpha-col:1
    }
}

@media (min-width: 576px) {
    .col-sm-1 {
        --alpha-col:12
    }

    .col-sm-2 {
        --alpha-col:6
    }

    .col-sm-3 {
        --alpha-col:4
    }

    .col-sm-4 {
        --alpha-col:3
    }

    .col-sm-5 {
        --alpha-col:2.4
    }

    .col-sm-6 {
        --alpha-col:2
    }

    .col-sm-7 {
        --alpha-col:1.714286
    }

    .col-sm-8 {
        --alpha-col:1.5
    }

    .col-sm-9 {
        --alpha-col:1.333333
    }

    .col-sm-10 {
        --alpha-col:1.2
    }

    .col-sm-11 {
        --alpha-col:1.090909
    }

    .col-sm-12 {
        --alpha-col:1
    }
}

@media (min-width: 768px) {
    .col-md-1 {
        --alpha-col:12
    }

    .col-md-2 {
        --alpha-col:6
    }

    .col-md-3 {
        --alpha-col:4
    }

    .col-md-4 {
        --alpha-col:3
    }

    .col-md-5 {
        --alpha-col:2.4
    }

    .col-md-6 {
        --alpha-col:2
    }

    .col-md-7 {
        --alpha-col:1.714286
    }

    .col-md-8 {
        --alpha-col:1.5
    }

    .col-md-9 {
        --alpha-col:1.333333
    }

    .col-md-10 {
        --alpha-col:1.2
    }

    .col-md-11 {
        --alpha-col:1.090909
    }

    .col-md-12 {
        --alpha-col:1
    }
}

@media (min-width: 992px) {
    .col-lg-1 {
        --alpha-col:12
    }

    .col-lg-2 {
        --alpha-col:6
    }

    .col-lg-3 {
        --alpha-col:4
    }

    .col-lg-4 {
        --alpha-col:3
    }

    .col-lg-5 {
        --alpha-col:2.4
    }

    .col-lg-6 {
        --alpha-col:2
    }

    .col-lg-7 {
        --alpha-col:1.714286
    }

    .col-lg-8 {
        --alpha-col:1.5
    }

    .col-lg-9 {
        --alpha-col:1.333333
    }

    .col-lg-10 {
        --alpha-col:1.2
    }

    .col-lg-11 {
        --alpha-col:1.090909
    }

    .col-lg-12 {
        --alpha-col:1
    }
}

@media (min-width: 1200px) {
    .col-xl-1 {
        --alpha-col:12
    }

    .col-xl-2 {
        --alpha-col:6
    }

    .col-xl-3 {
        --alpha-col:4
    }

    .col-xl-4 {
        --alpha-col:3
    }

    .col-xl-5 {
        --alpha-col:2.4
    }

    .col-xl-6 {
        --alpha-col:2
    }

    .col-xl-7 {
        --alpha-col:1.714286
    }

    .col-xl-8 {
        --alpha-col:1.5
    }

    .col-xl-9 {
        --alpha-col:1.333333
    }

    .col-xl-10 {
        --alpha-col:1.2
    }

    .col-xl-11 {
        --alpha-col:1.090909
    }

    .col-xl-12 {
        --alpha-col:1
    }
}

@media (min-width: 1600px) {
    .col-xxl-2 {
        flex: 0 0 16.6666%;
        max-width:16.6666%
    }
}

.creative-grid .banner, .creative-grid.banner, .creative-grid .banner-img img, .creative-grid .product-category, .creative-grid .product-category > a, .creative-grid figure, .creative-grid figure img {
    height:100%
}

.creative-grid.products .banner:not(.banner-stretch), .creative-grid.products .banner:not(.banner-stretch) .banner-img {
    height:auto
}

.creative-grid .product-category .d-lazyload, .creative-grid:not(.products) .banner-img .d-lazyload {
    height: 100% !important;
    padding-top:0 !important
}

.creative-grid img {
    object-fit:cover
}

.creative-grid.editor-mode > [class * =grid-item] {
    position: relative;
    overflow: hidden;
    border:1px dashed rgba(34, 34, 34, 0.4)
}

.creative-grid.editor-mode > [class * =grid-item]:before {
    content: attr(data-grid-idx);
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    z-index:99
}

.creative-grid.editor-mode > [class * =grid-item]:after {
    content: "";
    position: absolute;
    right: -4rem;
    top: -4rem;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background-color: #71d7f7;
    opacity: 0.7;
    z-index:98
}

.creative-grid.row > * {
    padding:10px
}

.creative-grid.gutter-no > * {
    padding:0
}

.creative-grid.gutter-xs > * {
    padding:1px
}

.creative-grid.gutter-sm > * {
    padding:5px
}

.creative-grid.gutter-lg > * {
    padding:15px
}

.grid-float {
    display:block !important
}

.grid-float .grid-item {
    float:left
}

.grid-float:after {
    content: "";
    display: block;
    clear:both
}

.grid-gallery figure img {
    width: 100%;
    height: 100%;
    object-fit:cover
}

.grid-gallery figure.grid-item {
    margin-bottom:calc(2 * var(--alpha-gap))
}

.creative-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 25%);
    grid-auto-rows:1fr
}

.creative-grid.preset-grid {
    grid-auto-rows:auto
}

.grid-layout-1 {
    grid-template-columns:repeat(auto-fill, 20%)
}

.grid-layout-1 > li:nth-child(7n + 1) {
    grid-column-end: span 2;
    grid-row-end:span 2
}

.grid-layout-2 {
    grid-template-columns:25% 50% 25%
}

.grid-layout-2 > li:nth-child(5n + 2) {
    grid-row-end:span 2
}

.grid-layout-3 {
    grid-template-columns:repeat(auto-fill, calc(100% / 6))
}

.grid-layout-3 > li:nth-child(9n + 3) {
    grid-column-end: span 2;
    grid-row-end:span 2
}

.grid-layout-4 {
    grid-template-columns:50% 25% 25%
}

.grid-layout-4 > li:nth-child(5n + 1) {
    grid-row-end:span 2
}

.grid-layout-5 {
    grid-template-columns:25% 25% 50%
}

.grid-layout-5 > li:nth-child(5n + 3) {
    grid-row-end:span 2
}

.grid-layout-6 {
    grid-template-columns:50% 25% 25%
}

.grid-layout-6 > li:nth-child(4n + 1) {
    grid-row-end:span 2
}

.grid-layout-6 > li:nth-child(4n + 2) {
    grid-row-end:span 2
}

.grid-layout-7 {
    grid-template-columns:50% 25% 25%
}

.grid-layout-7 > li:nth-child(4n + 1) {
    grid-row-end:span 2
}

.grid-layout-7 > li:nth-child(4n + 3) {
    grid-row-end:span 2
}

.grid-layout-8 {
    grid-template-columns:33.33% 33.33% 33.33%
}

.grid-layout-8 > li:nth-child(4n + 1) {
    grid-column-end:span 2
}

.grid-layout-8 > li:nth-child(4n + 2) {
    grid-row-end:span 2
}

.grid-layout-9 {
    grid-template-columns:33.33% 33.33% 33.33%
}

.grid-layout-9 > li:nth-child(4n + 1) {
    grid-row-end:span 2
}

.grid-layout-9 > li:nth-child(4n + 2) {
    grid-column-end:span 2
}

@media (max-width: 991px) {
    .creative-grid {
        grid-template-columns:repeat(auto-fill, 50%)
    }

    .grid-layout-2 > li:nth-child(5n + 2) {
        grid-row-start: 2;
        grid-row-end: 3;
        grid-column-start: 1;
        grid-column-end:3
    }

    .grid-layout-3 > li:nth-child(9n + 3) {
        grid-row-start: 3;
        grid-row-end: 4;
        grid-column-start: 1;
        grid-column-end:3
    }

    .grid-layout-4 > li:nth-child(5n + 1) {
        grid-column-end:span 2
    }

    .grid-layout-5 > li:nth-child(5n) {
        grid-column-end:span 2
    }

    .grid-layout-6 > li:nth-child(4n + 1) {
        grid-column-end:span 2
    }

    .grid-layout-7 > li:nth-child(4n + 1) {
        grid-column-end:span 2
    }

    .grid-layout-8 > li:nth-child(4n + 1) {
        grid-column-end:span 2
    }

    .grid-layout-9 > li:nth-child(4n + 2) {
        grid-column-end: span 2;
        grid-row-start: 3;
        grid-column-start:1
    }
}

@media (max-width: 991px) and(min-width: 768px) {
    .grid-layout-1 {
        grid-template-columns:repeat(auto-fill, calc(100% / 12))
    }

    .grid-layout-1 > li {
        grid-column-end:span 3
    }

    .grid-layout-1 > li:nth-child(7n + 1) {
        grid-column-end:span 8
    }

    .grid-layout-1 > li:nth-child(7n + 2), .grid-layout-1 > li:nth-child(7n + 3) {
        grid-column-end:span 4
    }
}

@media (max-width: 767px) {
    .grid-layout-1 > li {
        grid-column-end:span 1
    }

    .grid-layout-1 > li:nth-child(7n + 1) {
        grid-column-end:span 2
    }
}

.grid {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 20px);
    margin:-10px
}

.grid .grid-item {
    padding: 10px;
    transform:translate3d(0, 0, 0)
}

.grid.gutter-sm {
    width: calc(100% + 10px);
    margin:-5px
}

.grid.gutter-sm .grid-item {
    padding:5px
}

.grid.gutter-lg {
    width: calc(100% + 30px);
    margin:-15px
}

.grid.gutter-lg .grid-item {
    padding:15px
}

.grid.gutter-xs {
    width: calc(100% + 2px);
    margin:-1px
}

.grid.gutter-xs .grid-item {
    padding:1px
}

.grid.gutter-no {
    margin:0
}

.grid.gutter-no .grid-item {
    padding:0
}

.mt-0 {
    margin-top:0rem !important
}

.mt-1 {
    margin-top:0.5rem !important
}

.mt-2 {
    margin-top:1rem !important
}

.mt-3 {
    margin-top:1.5rem !important
}

.mt-4 {
    margin-top:2rem !important
}

.mt-5 {
    margin-top:2.5rem !important
}

.mt-6 {
    margin-top:3rem !important
}

.mt-7 {
    margin-top:3.5rem !important
}

.mt-8 {
    margin-top:4rem !important
}

.mt-9 {
    margin-top:4.5rem !important
}

.mt-10 {
    margin-top:5rem !important
}

.mb-0 {
    margin-bottom:0rem !important
}

.mb-1 {
    margin-bottom:0.5rem !important
}

.mb-2 {
    margin-bottom:1rem !important
}

.mb-3 {
    margin-bottom:1.5rem !important
}

.mb-4 {
    margin-bottom:2rem !important
}

.mb-5 {
    margin-bottom:2.5rem !important
}

.mb-6 {
    margin-bottom:3rem !important
}

.mb-7 {
    margin-bottom:3.5rem !important
}

.mb-8 {
    margin-bottom:4rem !important
}

.mb-9 {
    margin-bottom:4.5rem !important
}

.mb-10 {
    margin-bottom:5rem !important
}

.ml-0 {
    margin-left:0rem !important
}

.ml-1 {
    margin-left:0.5rem !important
}

.ml-2 {
    margin-left:1rem !important
}

.ml-3 {
    margin-left:1.5rem !important
}

.ml-4 {
    margin-left:2rem !important
}

.ml-5 {
    margin-left:2.5rem !important
}

.ml-6 {
    margin-left:3rem !important
}

.ml-7 {
    margin-left:3.5rem !important
}

.ml-8 {
    margin-left:4rem !important
}

.ml-9 {
    margin-left:4.5rem !important
}

.ml-10 {
    margin-left:5rem !important
}

.mr-0 {
    margin-right:0rem !important
}

.mr-1 {
    margin-right:0.5rem !important
}

.mr-2 {
    margin-right:1rem !important
}

.mr-3 {
    margin-right:1.5rem !important
}

.mr-4 {
    margin-right:2rem !important
}

.mr-5 {
    margin-right:2.5rem !important
}

.mr-6 {
    margin-right:3rem !important
}

.mr-7 {
    margin-right:3.5rem !important
}

.mr-8 {
    margin-right:4rem !important
}

.mr-9 {
    margin-right:4.5rem !important
}

.mr-10 {
    margin-right:5rem !important
}

.pt-0 {
    padding-top:0rem !important
}

.pt-1 {
    padding-top:0.5rem !important
}

.pt-2 {
    padding-top:1rem !important
}

.pt-3 {
    padding-top:1.5rem !important
}

.pt-4 {
    padding-top:2rem !important
}

.pt-5 {
    padding-top:2.5rem !important
}

.pt-6 {
    padding-top:3rem !important
}

.pt-7 {
    padding-top:3.5rem !important
}

.pt-8 {
    padding-top:4rem !important
}

.pt-9 {
    padding-top:4.5rem !important
}

.pt-10 {
    padding-top:5rem !important
}

.pb-0 {
    padding-bottom:0rem !important
}

.pb-1 {
    padding-bottom:0.5rem !important
}

.pb-2 {
    padding-bottom:1rem !important
}

.pb-3 {
    padding-bottom:1.5rem !important
}

.pb-4 {
    padding-bottom:2rem !important
}

.pb-5 {
    padding-bottom:2.5rem !important
}

.pb-6 {
    padding-bottom:3rem !important
}

.pb-7 {
    padding-bottom:3.5rem !important
}

.pb-8 {
    padding-bottom:4rem !important
}

.pb-9 {
    padding-bottom:4.5rem !important
}

.pb-10 {
    padding-bottom:5rem !important
}

.pl-0 {
    padding-left:0rem !important
}

.pl-1 {
    padding-left:0.5rem !important
}

.pl-2 {
    padding-left:1rem !important
}

.pl-3 {
    padding-left:1.5rem !important
}

.pl-4 {
    padding-left:2rem !important
}

.pl-5 {
    padding-left:2.5rem !important
}

.pl-6 {
    padding-left:3rem !important
}

.pl-7 {
    padding-left:3.5rem !important
}

.pl-8 {
    padding-left:4rem !important
}

.pl-9 {
    padding-left:4.5rem !important
}

.pl-10 {
    padding-left:5rem !important
}

.pr-0 {
    padding-right:0rem !important
}

.pr-1 {
    padding-right:0.5rem !important
}

.pr-2 {
    padding-right:1rem !important
}

.pr-3 {
    padding-right:1.5rem !important
}

.pr-4 {
    padding-right:2rem !important
}

.pr-5 {
    padding-right:2.5rem !important
}

.pr-6 {
    padding-right:3rem !important
}

.pr-7 {
    padding-right:3.5rem !important
}

.pr-8 {
    padding-right:4rem !important
}

.pr-9 {
    padding-right:4.5rem !important
}

.pr-10 {
    padding-right:5rem !important
}

.ml-auto {
    margin-left:auto !important
}

.mr-auto {
    margin-right:auto !important
}

.mx-auto {
    margin-left: auto !important;
    margin-right:auto !important
}

@media (min-width: 576px) {
    .mt-sm-0 {
        margin-top:0rem !important
    }

    .mt-sm-1 {
        margin-top:0.5rem !important
    }

    .mt-sm-2 {
        margin-top:1rem !important
    }

    .mt-sm-3 {
        margin-top:1.5rem !important
    }

    .mt-sm-4 {
        margin-top:2rem !important
    }

    .mt-sm-5 {
        margin-top:2.5rem !important
    }

    .mt-sm-6 {
        margin-top:3rem !important
    }

    .mt-sm-7 {
        margin-top:3.5rem !important
    }

    .mt-sm-8 {
        margin-top:4rem !important
    }

    .mt-sm-9 {
        margin-top:4.5rem !important
    }

    .mt-sm-10 {
        margin-top:5rem !important
    }

    .mb-sm-0 {
        margin-bottom:0rem !important
    }

    .mb-sm-1 {
        margin-bottom:0.5rem !important
    }

    .mb-sm-2 {
        margin-bottom:1rem !important
    }

    .mb-sm-3 {
        margin-bottom:1.5rem !important
    }

    .mb-sm-4 {
        margin-bottom:2rem !important
    }

    .mb-sm-5 {
        margin-bottom:2.5rem !important
    }

    .mb-sm-6 {
        margin-bottom:3rem !important
    }

    .mb-sm-7 {
        margin-bottom:3.5rem !important
    }

    .mb-sm-8 {
        margin-bottom:4rem !important
    }

    .mb-sm-9 {
        margin-bottom:4.5rem !important
    }

    .mb-sm-10 {
        margin-bottom:5rem !important
    }

    .ml-sm-0 {
        margin-left:0rem !important
    }

    .ml-sm-1 {
        margin-left:0.5rem !important
    }

    .ml-sm-2 {
        margin-left:1rem !important
    }

    .ml-sm-3 {
        margin-left:1.5rem !important
    }

    .ml-sm-4 {
        margin-left:2rem !important
    }

    .ml-sm-5 {
        margin-left:2.5rem !important
    }

    .ml-sm-6 {
        margin-left:3rem !important
    }

    .ml-sm-7 {
        margin-left:3.5rem !important
    }

    .ml-sm-8 {
        margin-left:4rem !important
    }

    .ml-sm-9 {
        margin-left:4.5rem !important
    }

    .ml-sm-10 {
        margin-left:5rem !important
    }

    .mr-sm-0 {
        margin-right:0rem !important
    }

    .mr-sm-1 {
        margin-right:0.5rem !important
    }

    .mr-sm-2 {
        margin-right:1rem !important
    }

    .mr-sm-3 {
        margin-right:1.5rem !important
    }

    .mr-sm-4 {
        margin-right:2rem !important
    }

    .mr-sm-5 {
        margin-right:2.5rem !important
    }

    .mr-sm-6 {
        margin-right:3rem !important
    }

    .mr-sm-7 {
        margin-right:3.5rem !important
    }

    .mr-sm-8 {
        margin-right:4rem !important
    }

    .mr-sm-9 {
        margin-right:4.5rem !important
    }

    .mr-sm-10 {
        margin-right:5rem !important
    }

    .pt-sm-0 {
        padding-top:0rem !important
    }

    .pt-sm-1 {
        padding-top:0.5rem !important
    }

    .pt-sm-2 {
        padding-top:1rem !important
    }

    .pt-sm-3 {
        padding-top:1.5rem !important
    }

    .pt-sm-4 {
        padding-top:2rem !important
    }

    .pt-sm-5 {
        padding-top:2.5rem !important
    }

    .pt-sm-6 {
        padding-top:3rem !important
    }

    .pt-sm-7 {
        padding-top:3.5rem !important
    }

    .pt-sm-8 {
        padding-top:4rem !important
    }

    .pt-sm-9 {
        padding-top:4.5rem !important
    }

    .pt-sm-10 {
        padding-top:5rem !important
    }

    .pb-sm-0 {
        padding-bottom:0rem !important
    }

    .pb-sm-1 {
        padding-bottom:0.5rem !important
    }

    .pb-sm-2 {
        padding-bottom:1rem !important
    }

    .pb-sm-3 {
        padding-bottom:1.5rem !important
    }

    .pb-sm-4 {
        padding-bottom:2rem !important
    }

    .pb-sm-5 {
        padding-bottom:2.5rem !important
    }

    .pb-sm-6 {
        padding-bottom:3rem !important
    }

    .pb-sm-7 {
        padding-bottom:3.5rem !important
    }

    .pb-sm-8 {
        padding-bottom:4rem !important
    }

    .pb-sm-9 {
        padding-bottom:4.5rem !important
    }

    .pb-sm-10 {
        padding-bottom:5rem !important
    }

    .pl-sm-0 {
        padding-left:0rem !important
    }

    .pl-sm-1 {
        padding-left:0.5rem !important
    }

    .pl-sm-2 {
        padding-left:1rem !important
    }

    .pl-sm-3 {
        padding-left:1.5rem !important
    }

    .pl-sm-4 {
        padding-left:2rem !important
    }

    .pl-sm-5 {
        padding-left:2.5rem !important
    }

    .pl-sm-6 {
        padding-left:3rem !important
    }

    .pl-sm-7 {
        padding-left:3.5rem !important
    }

    .pl-sm-8 {
        padding-left:4rem !important
    }

    .pl-sm-9 {
        padding-left:4.5rem !important
    }

    .pl-sm-10 {
        padding-left:5rem !important
    }

    .pr-sm-0 {
        padding-right:0rem !important
    }

    .pr-sm-1 {
        padding-right:0.5rem !important
    }

    .pr-sm-2 {
        padding-right:1rem !important
    }

    .pr-sm-3 {
        padding-right:1.5rem !important
    }

    .pr-sm-4 {
        padding-right:2rem !important
    }

    .pr-sm-5 {
        padding-right:2.5rem !important
    }

    .pr-sm-6 {
        padding-right:3rem !important
    }

    .pr-sm-7 {
        padding-right:3.5rem !important
    }

    .pr-sm-8 {
        padding-right:4rem !important
    }

    .pr-sm-9 {
        padding-right:4.5rem !important
    }

    .pr-sm-10 {
        padding-right:5rem !important
    }

    .ml-sm-auto {
        margin-left:auto !important
    }

    .mr-sm-auto {
        margin-right:auto !important
    }

    .mx-sm-auto {
        margin-left: auto !important;
        margin-right:auto !important
    }
}

@media (min-width: 768px) {
    .mt-md-0 {
        margin-top:0rem !important
    }

    .mt-md-1 {
        margin-top:0.5rem !important
    }

    .mt-md-2 {
        margin-top:1rem !important
    }

    .mt-md-3 {
        margin-top:1.5rem !important
    }

    .mt-md-4 {
        margin-top:2rem !important
    }

    .mt-md-5 {
        margin-top:2.5rem !important
    }

    .mt-md-6 {
        margin-top:3rem !important
    }

    .mt-md-7 {
        margin-top:3.5rem !important
    }

    .mt-md-8 {
        margin-top:4rem !important
    }

    .mt-md-9 {
        margin-top:4.5rem !important
    }

    .mt-md-10 {
        margin-top:5rem !important
    }

    .mb-md-0 {
        margin-bottom:0rem !important
    }

    .mb-md-1 {
        margin-bottom:0.5rem !important
    }

    .mb-md-2 {
        margin-bottom:1rem !important
    }

    .mb-md-3 {
        margin-bottom:1.5rem !important
    }

    .mb-md-4 {
        margin-bottom:2rem !important
    }

    .mb-md-5 {
        margin-bottom:2.5rem !important
    }

    .mb-md-6 {
        margin-bottom:3rem !important
    }

    .mb-md-7 {
        margin-bottom:3.5rem !important
    }

    .mb-md-8 {
        margin-bottom:4rem !important
    }

    .mb-md-9 {
        margin-bottom:4.5rem !important
    }

    .mb-md-10 {
        margin-bottom:5rem !important
    }

    .ml-md-0 {
        margin-left:0rem !important
    }

    .ml-md-1 {
        margin-left:0.5rem !important
    }

    .ml-md-2 {
        margin-left:1rem !important
    }

    .ml-md-3 {
        margin-left:1.5rem !important
    }

    .ml-md-4 {
        margin-left:2rem !important
    }

    .ml-md-5 {
        margin-left:2.5rem !important
    }

    .ml-md-6 {
        margin-left:3rem !important
    }

    .ml-md-7 {
        margin-left:3.5rem !important
    }

    .ml-md-8 {
        margin-left:4rem !important
    }

    .ml-md-9 {
        margin-left:4.5rem !important
    }

    .ml-md-10 {
        margin-left:5rem !important
    }

    .mr-md-0 {
        margin-right:0rem !important
    }

    .mr-md-1 {
        margin-right:0.5rem !important
    }

    .mr-md-2 {
        margin-right:1rem !important
    }

    .mr-md-3 {
        margin-right:1.5rem !important
    }

    .mr-md-4 {
        margin-right:2rem !important
    }

    .mr-md-5 {
        margin-right:2.5rem !important
    }

    .mr-md-6 {
        margin-right:3rem !important
    }

    .mr-md-7 {
        margin-right:3.5rem !important
    }

    .mr-md-8 {
        margin-right:4rem !important
    }

    .mr-md-9 {
        margin-right:4.5rem !important
    }

    .mr-md-10 {
        margin-right:5rem !important
    }

    .pt-md-0 {
        padding-top:0rem !important
    }

    .pt-md-1 {
        padding-top:0.5rem !important
    }

    .pt-md-2 {
        padding-top:1rem !important
    }

    .pt-md-3 {
        padding-top:1.5rem !important
    }

    .pt-md-4 {
        padding-top:2rem !important
    }

    .pt-md-5 {
        padding-top:2.5rem !important
    }

    .pt-md-6 {
        padding-top:3rem !important
    }

    .pt-md-7 {
        padding-top:3.5rem !important
    }

    .pt-md-8 {
        padding-top:4rem !important
    }

    .pt-md-9 {
        padding-top:4.5rem !important
    }

    .pt-md-10 {
        padding-top:5rem !important
    }

    .pb-md-0 {
        padding-bottom:0rem !important
    }

    .pb-md-1 {
        padding-bottom:0.5rem !important
    }

    .pb-md-2 {
        padding-bottom:1rem !important
    }

    .pb-md-3 {
        padding-bottom:1.5rem !important
    }

    .pb-md-4 {
        padding-bottom:2rem !important
    }

    .pb-md-5 {
        padding-bottom:2.5rem !important
    }

    .pb-md-6 {
        padding-bottom:3rem !important
    }

    .pb-md-7 {
        padding-bottom:3.5rem !important
    }

    .pb-md-8 {
        padding-bottom:4rem !important
    }

    .pb-md-9 {
        padding-bottom:4.5rem !important
    }

    .pb-md-10 {
        padding-bottom:5rem !important
    }

    .pl-md-0 {
        padding-left:0rem !important
    }

    .pl-md-1 {
        padding-left:0.5rem !important
    }

    .pl-md-2 {
        padding-left:1rem !important
    }

    .pl-md-3 {
        padding-left:1.5rem !important
    }

    .pl-md-4 {
        padding-left:2rem !important
    }

    .pl-md-5 {
        padding-left:2.5rem !important
    }

    .pl-md-6 {
        padding-left:3rem !important
    }

    .pl-md-7 {
        padding-left:3.5rem !important
    }

    .pl-md-8 {
        padding-left:4rem !important
    }

    .pl-md-9 {
        padding-left:4.5rem !important
    }

    .pl-md-10 {
        padding-left:5rem !important
    }

    .pr-md-0 {
        padding-right:0rem !important
    }

    .pr-md-1 {
        padding-right:0.5rem !important
    }

    .pr-md-2 {
        padding-right:1rem !important
    }

    .pr-md-3 {
        padding-right:1.5rem !important
    }

    .pr-md-4 {
        padding-right:2rem !important
    }

    .pr-md-5 {
        padding-right:2.5rem !important
    }

    .pr-md-6 {
        padding-right:3rem !important
    }

    .pr-md-7 {
        padding-right:3.5rem !important
    }

    .pr-md-8 {
        padding-right:4rem !important
    }

    .pr-md-9 {
        padding-right:4.5rem !important
    }

    .pr-md-10 {
        padding-right:5rem !important
    }

    .ml-md-auto {
        margin-left:auto !important
    }

    .mr-md-auto {
        margin-right:auto !important
    }

    .mx-md-auto {
        margin-left: auto !important;
        margin-right:auto !important
    }
}

@media (min-width: 992px) {
    .mt-lg-0 {
        margin-top:0rem !important
    }

    .mt-lg-1 {
        margin-top:0.5rem !important
    }

    .mt-lg-2 {
        margin-top:1rem !important
    }

    .mt-lg-3 {
        margin-top:1.5rem !important
    }

    .mt-lg-4 {
        margin-top:2rem !important
    }

    .mt-lg-5 {
        margin-top:2.5rem !important
    }

    .mt-lg-6 {
        margin-top:3rem !important
    }

    .mt-lg-7 {
        margin-top:3.5rem !important
    }

    .mt-lg-8 {
        margin-top:4rem !important
    }

    .mt-lg-9 {
        margin-top:4.5rem !important
    }

    .mt-lg-10 {
        margin-top:5rem !important
    }

    .mb-lg-0 {
        margin-bottom:0rem !important
    }

    .mb-lg-1 {
        margin-bottom:0.5rem !important
    }

    .mb-lg-2 {
        margin-bottom:1rem !important
    }

    .mb-lg-3 {
        margin-bottom:1.5rem !important
    }

    .mb-lg-4 {
        margin-bottom:2rem !important
    }

    .mb-lg-5 {
        margin-bottom:2.5rem !important
    }

    .mb-lg-6 {
        margin-bottom:3rem !important
    }

    .mb-lg-7 {
        margin-bottom:3.5rem !important
    }

    .mb-lg-8 {
        margin-bottom:4rem !important
    }

    .mb-lg-9 {
        margin-bottom:4.5rem !important
    }

    .mb-lg-10 {
        margin-bottom:5rem !important
    }

    .ml-lg-0 {
        margin-left:0rem !important
    }

    .ml-lg-1 {
        margin-left:0.5rem !important
    }

    .ml-lg-2 {
        margin-left:1rem !important
    }

    .ml-lg-3 {
        margin-left:1.5rem !important
    }

    .ml-lg-4 {
        margin-left:2rem !important
    }

    .ml-lg-5 {
        margin-left:2.5rem !important
    }

    .ml-lg-6 {
        margin-left:3rem !important
    }

    .ml-lg-7 {
        margin-left:3.5rem !important
    }

    .ml-lg-8 {
        margin-left:4rem !important
    }

    .ml-lg-9 {
        margin-left:4.5rem !important
    }

    .ml-lg-10 {
        margin-left:5rem !important
    }

    .mr-lg-0 {
        margin-right:0rem !important
    }

    .mr-lg-1 {
        margin-right:0.5rem !important
    }

    .mr-lg-2 {
        margin-right:1rem !important
    }

    .mr-lg-3 {
        margin-right:1.5rem !important
    }

    .mr-lg-4 {
        margin-right:2rem !important
    }

    .mr-lg-5 {
        margin-right:2.5rem !important
    }

    .mr-lg-6 {
        margin-right:3rem !important
    }

    .mr-lg-7 {
        margin-right:3.5rem !important
    }

    .mr-lg-8 {
        margin-right:4rem !important
    }

    .mr-lg-9 {
        margin-right:4.5rem !important
    }

    .mr-lg-10 {
        margin-right:5rem !important
    }

    .pt-lg-0 {
        padding-top:0rem !important
    }

    .pt-lg-1 {
        padding-top:0.5rem !important
    }

    .pt-lg-2 {
        padding-top:1rem !important
    }

    .pt-lg-3 {
        padding-top:1.5rem !important
    }

    .pt-lg-4 {
        padding-top:2rem !important
    }

    .pt-lg-5 {
        padding-top:2.5rem !important
    }

    .pt-lg-6 {
        padding-top:3rem !important
    }

    .pt-lg-7 {
        padding-top:3.5rem !important
    }

    .pt-lg-8 {
        padding-top:4rem !important
    }

    .pt-lg-9 {
        padding-top:4.5rem !important
    }

    .pt-lg-10 {
        padding-top:5rem !important
    }

    .pb-lg-0 {
        padding-bottom:0rem !important
    }

    .pb-lg-1 {
        padding-bottom:0.5rem !important
    }

    .pb-lg-2 {
        padding-bottom:1rem !important
    }

    .pb-lg-3 {
        padding-bottom:1.5rem !important
    }

    .pb-lg-4 {
        padding-bottom:2rem !important
    }

    .pb-lg-5 {
        padding-bottom:2.5rem !important
    }

    .pb-lg-6 {
        padding-bottom:3rem !important
    }

    .pb-lg-7 {
        padding-bottom:3.5rem !important
    }

    .pb-lg-8 {
        padding-bottom:4rem !important
    }

    .pb-lg-9 {
        padding-bottom:4.5rem !important
    }

    .pb-lg-10 {
        padding-bottom:5rem !important
    }

    .pl-lg-0 {
        padding-left:0rem !important
    }

    .pl-lg-1 {
        padding-left:0.5rem !important
    }

    .pl-lg-2 {
        padding-left:1rem !important
    }

    .pl-lg-3 {
        padding-left:1.5rem !important
    }

    .pl-lg-4 {
        padding-left:2rem !important
    }

    .pl-lg-5 {
        padding-left:2.5rem !important
    }

    .pl-lg-6 {
        padding-left:3rem !important
    }

    .pl-lg-7 {
        padding-left:3.5rem !important
    }

    .pl-lg-8 {
        padding-left:4rem !important
    }

    .pl-lg-9 {
        padding-left:4.5rem !important
    }

    .pl-lg-10 {
        padding-left:5rem !important
    }

    .pr-lg-0 {
        padding-right:0rem !important
    }

    .pr-lg-1 {
        padding-right:0.5rem !important
    }

    .pr-lg-2 {
        padding-right:1rem !important
    }

    .pr-lg-3 {
        padding-right:1.5rem !important
    }

    .pr-lg-4 {
        padding-right:2rem !important
    }

    .pr-lg-5 {
        padding-right:2.5rem !important
    }

    .pr-lg-6 {
        padding-right:3rem !important
    }

    .pr-lg-7 {
        padding-right:3.5rem !important
    }

    .pr-lg-8 {
        padding-right:4rem !important
    }

    .pr-lg-9 {
        padding-right:4.5rem !important
    }

    .pr-lg-10 {
        padding-right:5rem !important
    }

    .ml-lg-auto {
        margin-left:auto !important
    }

    .mr-lg-auto {
        margin-right:auto !important
    }

    .mx-lg-auto {
        margin-left: auto !important;
        margin-right:auto !important
    }
}

@media (min-width: 1200px) {
    .mt-xl-0 {
        margin-top:0rem !important
    }

    .mt-xl-1 {
        margin-top:0.5rem !important
    }

    .mt-xl-2 {
        margin-top:1rem !important
    }

    .mt-xl-3 {
        margin-top:1.5rem !important
    }

    .mt-xl-4 {
        margin-top:2rem !important
    }

    .mt-xl-5 {
        margin-top:2.5rem !important
    }

    .mt-xl-6 {
        margin-top:3rem !important
    }

    .mt-xl-7 {
        margin-top:3.5rem !important
    }

    .mt-xl-8 {
        margin-top:4rem !important
    }

    .mt-xl-9 {
        margin-top:4.5rem !important
    }

    .mt-xl-10 {
        margin-top:5rem !important
    }

    .mb-xl-0 {
        margin-bottom:0rem !important
    }

    .mb-xl-1 {
        margin-bottom:0.5rem !important
    }

    .mb-xl-2 {
        margin-bottom:1rem !important
    }

    .mb-xl-3 {
        margin-bottom:1.5rem !important
    }

    .mb-xl-4 {
        margin-bottom:2rem !important
    }

    .mb-xl-5 {
        margin-bottom:2.5rem !important
    }

    .mb-xl-6 {
        margin-bottom:3rem !important
    }

    .mb-xl-7 {
        margin-bottom:3.5rem !important
    }

    .mb-xl-8 {
        margin-bottom:4rem !important
    }

    .mb-xl-9 {
        margin-bottom:4.5rem !important
    }

    .mb-xl-10 {
        margin-bottom:5rem !important
    }

    .ml-xl-0 {
        margin-left:0rem !important
    }

    .ml-xl-1 {
        margin-left:0.5rem !important
    }

    .ml-xl-2 {
        margin-left:1rem !important
    }

    .ml-xl-3 {
        margin-left:1.5rem !important
    }

    .ml-xl-4 {
        margin-left:2rem !important
    }

    .ml-xl-5 {
        margin-left:2.5rem !important
    }

    .ml-xl-6 {
        margin-left:3rem !important
    }

    .ml-xl-7 {
        margin-left:3.5rem !important
    }

    .ml-xl-8 {
        margin-left:4rem !important
    }

    .ml-xl-9 {
        margin-left:4.5rem !important
    }

    .ml-xl-10 {
        margin-left:5rem !important
    }

    .mr-xl-0 {
        margin-right:0rem !important
    }

    .mr-xl-1 {
        margin-right:0.5rem !important
    }

    .mr-xl-2 {
        margin-right:1rem !important
    }

    .mr-xl-3 {
        margin-right:1.5rem !important
    }

    .mr-xl-4 {
        margin-right:2rem !important
    }

    .mr-xl-5 {
        margin-right:2.5rem !important
    }

    .mr-xl-6 {
        margin-right:3rem !important
    }

    .mr-xl-7 {
        margin-right:3.5rem !important
    }

    .mr-xl-8 {
        margin-right:4rem !important
    }

    .mr-xl-9 {
        margin-right:4.5rem !important
    }

    .mr-xl-10 {
        margin-right:5rem !important
    }

    .pt-xl-0 {
        padding-top:0rem !important
    }

    .pt-xl-1 {
        padding-top:0.5rem !important
    }

    .pt-xl-2 {
        padding-top:1rem !important
    }

    .pt-xl-3 {
        padding-top:1.5rem !important
    }

    .pt-xl-4 {
        padding-top:2rem !important
    }

    .pt-xl-5 {
        padding-top:2.5rem !important
    }

    .pt-xl-6 {
        padding-top:3rem !important
    }

    .pt-xl-7 {
        padding-top:3.5rem !important
    }

    .pt-xl-8 {
        padding-top:4rem !important
    }

    .pt-xl-9 {
        padding-top:4.5rem !important
    }

    .pt-xl-10 {
        padding-top:5rem !important
    }

    .pb-xl-0 {
        padding-bottom:0rem !important
    }

    .pb-xl-1 {
        padding-bottom:0.5rem !important
    }

    .pb-xl-2 {
        padding-bottom:1rem !important
    }

    .pb-xl-3 {
        padding-bottom:1.5rem !important
    }

    .pb-xl-4 {
        padding-bottom:2rem !important
    }

    .pb-xl-5 {
        padding-bottom:2.5rem !important
    }

    .pb-xl-6 {
        padding-bottom:3rem !important
    }

    .pb-xl-7 {
        padding-bottom:3.5rem !important
    }

    .pb-xl-8 {
        padding-bottom:4rem !important
    }

    .pb-xl-9 {
        padding-bottom:4.5rem !important
    }

    .pb-xl-10 {
        padding-bottom:5rem !important
    }

    .pl-xl-0 {
        padding-left:0rem !important
    }

    .pl-xl-1 {
        padding-left:0.5rem !important
    }

    .pl-xl-2 {
        padding-left:1rem !important
    }

    .pl-xl-3 {
        padding-left:1.5rem !important
    }

    .pl-xl-4 {
        padding-left:2rem !important
    }

    .pl-xl-5 {
        padding-left:2.5rem !important
    }

    .pl-xl-6 {
        padding-left:3rem !important
    }

    .pl-xl-7 {
        padding-left:3.5rem !important
    }

    .pl-xl-8 {
        padding-left:4rem !important
    }

    .pl-xl-9 {
        padding-left:4.5rem !important
    }

    .pl-xl-10 {
        padding-left:5rem !important
    }

    .pr-xl-0 {
        padding-right:0rem !important
    }

    .pr-xl-1 {
        padding-right:0.5rem !important
    }

    .pr-xl-2 {
        padding-right:1rem !important
    }

    .pr-xl-3 {
        padding-right:1.5rem !important
    }

    .pr-xl-4 {
        padding-right:2rem !important
    }

    .pr-xl-5 {
        padding-right:2.5rem !important
    }

    .pr-xl-6 {
        padding-right:3rem !important
    }

    .pr-xl-7 {
        padding-right:3.5rem !important
    }

    .pr-xl-8 {
        padding-right:4rem !important
    }

    .pr-xl-9 {
        padding-right:4.5rem !important
    }

    .pr-xl-10 {
        padding-right:5rem !important
    }

    .ml-xl-auto {
        margin-left:auto !important
    }

    .mr-xl-auto {
        margin-right:auto !important
    }

    .mx-xl-auto {
        margin-left: auto !important;
        margin-right:auto !important
    }
}

.w-auto {
    width:auto !important
}

.w-25 {
    width:25% !important
}

.w-33 {
    width:33.3333% !important
}

.w-50 {
    width:50% !important
}

.w-75 {
    width:75% !important
}

.w-100 {
    width:100% !important
}

.h-100 {
    height:100% !important
}

.p-relative {
    position:relative !important
}

.p-absolute {
    position:absolute !important
}

.p-static {
    position:static !important
}

.p-sticky {
    position:sticky !important
}

.d-none {
    display:none !important
}

.d-block {
    display:block !important
}

.d-inline-block {
    display:inline-block !important
}

.d-flex {
    display:flex !important
}

.d-inline-flex {
    display:inline-flex !important
}

.justify-content-center {
    justify-content:center !important
}

.justify-content-start {
    justify-content:flex-start !important
}

.justify-content-end {
    justify-content:flex-end !important
}

.justify-content-between {
    justify-content:space-between !important
}

.align-items-start {
    align-items:flex-start !important
}

.align-items-center {
    align-items:center !important
}

.align-items-end {
    align-items:flex-end !important
}

.align-self-start {
    align-self:flex-start !important
}

.align-self-center {
    align-self:center !important
}

.align-self-end {
    align-self:flex-end !important
}

.flex-column {
    flex-direction:column !important
}

.flex-wrap {
    flex-wrap:wrap !important
}

.flex-1 {
    flex:1 !important
}

.overflow-hidden {
    overflow:hidden !important
}

.vertical-top {
    vertical-align:top !important
}

.vertical-middle {
    vertical-align:middle !important
}

.vertical-bottom {
    vertical-align:bottom !important
}

@media (min-width: 576px) {
    .w-sm-33 {
        width:33.3333% !important
    }

    .w-sm-50 {
        width:50% !important
    }

    .w-sm-75 {
        width:75% !important
    }

    .d-sm-none {
        display:none !important
    }

    .d-sm-block {
        display:block !important
    }

    .d-sm-flex {
        display:flex !important
    }
}

@media (min-width: 768px) {
    .w-md-33 {
        width:33.3333% !important
    }

    .w-md-50 {
        width:50% !important
    }

    .w-md-75 {
        width:75% !important
    }

    .float-md-left {
        float:left !important
    }

    .float-md-right {
        float:right !important
    }

    .d-md-none {
        display:none !important
    }

    .d-md-block {
        display:block !important
    }

    .d-md-flex {
        display:flex !important
    }
}

@media (min-width: 992px) {
    .p-lg-absolute {
        position:absolute !important
    }

    .w-lg-33 {
        width:33.3333% !important
    }

    .w-lg-75 {
        width:75% !important
    }

    .w-lg-100 {
        width:100% !important
    }

    .d-lg-none {
        display:none !important
    }

    .d-lg-block {
        display:block !important
    }

    .d-lg-flex {
        display:flex !important
    }

    .col-lg-1-5 {
        max-width: 20%;
        flex-basis:20%
    }

    .col-lg-2-5 {
        max-width: 40%;
        flex-basis:40%
    }

    .col-lg-3-5 {
        max-width: 60%;
        flex-basis:60%
    }

    .col-lg-4-5 {
        max-width: 80%;
        flex-basis:80%
    }
}

@media (min-width: 1200px) {
    .w-xl-33 {
        width:33.3333% !important
    }

    .w-xl-66 {
        width:66.6667% !important
    }

    .order-xl-1 {
        order:1 !important
    }

    .d-xl-none {
        display:none !important
    }

    .d-xl-block {
        display:block !important
    }

    .d-xl-flex {
        display:flex !important
    }
}

.font-weight-bold {
    font-weight:700 !important
}

.font-weight-semi-bold {
    font-weight:600 !important
}

.font-weight-normal {
    font-weight:400 !important
}

.font-weight-light {
    font-weight:300 !important
}

.text-uppercase {
    text-transform:uppercase !important
}

.text-capitalize {
    text-transform:capitalize !important
}

.text-normal {
    text-transform:none !important
}

.font-italic {
    font-style:italic !important
}

.font-normal {
    font-stretch:normal !important
}

.text-left {
    text-align:left !important
}

.text-center {
    text-align:center !important
}

.text-right {
    text-align:right !important
}

.text-white {
    color:#fff !important
}

.text-light {
    color:var(--alpha-light-color, var(--alpha-light-color, #ccc)) !important
}

.text-grey {
    color:#999 !important
}

.text-body {
    color:var(--alpha-body-color) !important
}

.text-dim {
    color:var(--alpha-dim-color, #54524d) !important
}

.text-primary {
    color:var(--alpha-primary-color, #ff9c28) !important
}

.text-hover-primary:hover {
    color:var(--alpha-primary-color, #ff9c28) !important
}

.text-secondary {
    color:var(--alpha-secondary-color, #54524d) !important
}

.text-success {
    color:#b1ca39 !important
}

.text-info {
    color:#369 !important
}

.text-warning {
    color:#ffa800 !important
}

.text-danger {
    color:#f12a57 !important
}

.text-dark {
    color:var(--alpha-dark-color, #333) !important
}

.text-black {
    color:#000 !important
}

.ls-s {
    letter-spacing:-0.01em !important
}

.ls-m {
    letter-spacing:-0.025em !important
}

.ls-l {
    letter-spacing:-0.05em !important
}

.ls-normal {
    letter-spacing:0 !important
}

.lh-1 {
    line-height:1 !important
}

.bg-white {
    background-color:#fff !important
}

.bg-transparent {
    background-color:transparent !important
}

.bg-dark {
    background-color:var(--alpha-dark-color, #333) !important
}

.bg-grey {
    background-color:#999 !important
}

.bg-light {
    background-color:var(--alpha-light-color, var(--alpha-light-color, #ccc)) !important
}

.bg-black {
    background-color:#000 !important
}

.bg-primary {
    background-color:var(--alpha-primary-color, #ff9c28) !important
}

.bg-secondary {
    background-color:var(--alpha-secondary-color, #54524d) !important
}

.border-no {
    border:none !important
}

.border-end-0 {
    border-right:0 !important
}

.br-3 {
    border-radius:3px !important
}

.br-5 {
    border-radius:5px !important
}

.no-transition {
    transition:none !important
}

@media (max-width: 576px) {
    .d-none-sm-max {
        display:none !important
    }
}

@media (min-width: 1200px) {
    .hide-on-xl {
        display:none !important
    }
}

@media (max-width: 1199px) and(min-width: 992px) {
    .hide-on-lg {
        display:none !important
    }
}

@media (max-width: 991px) and(min-width: 768px) {
    .hide-on-md {
        display:none !important
    }
}

@media (max-width: 767px) and(min-width: 576px) {
    .hide-on-sm {
        display:none !important
    }
}

@media (max-width: 575px) {
    .hide-on-xs {
        display:none !important
    }
}

@media (min-width: 992px) {
    .hide-dots-desktop .slider-pagination, .hide-nav-desktop .slider-button {
        display:none !important
    }
}

@media (max-width: 991px) {
    .hide-dots-mobile .slider-pagination, .hide-nav-mobile .slider-button {
        display:none !important
    }

    .flex-none-lg-max {
        flex:none !important
    }
}

@media (max-width: 767px) {
    .flex-none-md-max {
        flex:none !important
    }
}

.customize-partial-edit-shortcut button, .widget .customize-partial-edit-shortcut button {
    display:none
}

.alpha-tooltip {
    padding: 5px 10px;
    max-width: 300px;
    white-space: nowrap;
    border-radius: 20px;
    background-color: rgba(0, 113, 161, 0.7);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow:0 3px 5px rgba(0, 0, 0, 0.2)
}

.alpha-tooltip:hover {
    background-color:#0071a1
}

.alpha-tooltip > a:before {
    content: "";
    margin-right: 8px;
    font-family: "Font Awesome 5 Free";
    font-size: 11px;
    font-weight:600
}

.alpha-tooltip.tooltip-inner {
    padding:0 !important
}

.alpha-tooltip.tooltip-inner > a {
    display: inline-block;
    padding:8px 22px
}

.alpha-tooltip-initialized.alpha-tooltip-active {
    outline: 2px dotted #007cba;
    outline-offset:5px
}

.alpha-mini-logo:before, div.dashicons-alpha-logo:before, span.dashicons-alpha-logo:before {
    content: "";
    display: inline-block;
    background-image: url(../images/logo-white.svg);
    background-size: cover;
    width: 20px;
    height: 20px;
    padding:7px
}

#wp-admin-bar-alpha .custom-mini-logo img {
    width: 20px;
    height: 20px;
    padding:7px
}

#wp-admin-bar-alpha .custom-mini-logo img, #wp-admin-bar-alpha .dashicons-alpha-logo:before {
    margin-top: -4px;
    margin-right: -6px;
    margin-left:-5px
}

#wp-admin-bar-alpha-activate .ab-icon.dashicons-admin-network {
    margin-top:3px
}

#wp-admin-bar-edit-default li .ab-item {
    display: flex;
    width:200px
}

#wp-admin-bar-edit-default .alpha-ab-template-type {
    margin-left: auto;
    background: #55595c;
    font-size: 11px;
    line-height: 9px;
    margin-top: 6px;
    padding: 4px 8px;
    border-radius: 3px;
    text-transform: capitalize;
    letter-spacing:0.05em
}

.comment-form-cookies-consent input[type=checkbox] + label {
    display: inline;
    vertical-align: middle;
    line-height: 24px;
    margin-left:5px
}

.comment-form-cookies-consent input[type=checkbox] + label:before {
    transform: none;
    top:3px
}

.wpcf7-form {
    position: relative;
    margin-bottom:2rem
}

.wpcf7-form .ajax-loader {
    display: none !important;
    background:none
}

.wpcf7-form .wpcf7-form-control-wrap span {
    margin-top:10px
}

.wpcf7-form > p {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 0;
    font-size:1.4rem
}

.wpcf7-form .wpcf7-form-control-wrap {
    flex:1
}

.wpcf7-form .wpcf7-form-control {
    height: 46px;
    font-size:inherit
}

.wpcf7-form input {
    background:var(--alpha-white-color, #fff)
}

.wpcf7-form span .wpcf7-form-control {
    width: 100%;
    padding:1rem 1.5rem
}

.wpcf7-form .btn {
    padding:0 2rem
}

.wpcf7-form input, .wpcf7-form input::placeholder, .wpcf7-form textarea, .wpcf7-form textarea::placeholder {
    color:#666
}

.wpcf7-form textarea.wpcf7-form-control {
    height:auto
}

.wpcf7-form input.wpcf7-form-control::placeholder {
    color: inherit;
    transition:color 0.3s
}

.wpcf7-form input.wpcf7-form-control::-webkit-input-placeholder {
    color: inherit;
    transition:color 0.3s
}

.wpcf7-form input.wpcf7-form-control::-moz-placeholder {
    color: inherit;
    transition:color 0.3s
}

.wpcf7-form input.wpcf7-form-control:focus::placeholder {
    color:transparent
}

.wpcf7-form input.wpcf7-form-control:focus::-webkit-input-placeholder {
    color:transparent
}

.wpcf7-form input.wpcf7-form-control:focus::-moz-placeholder {
    color:transparent
}

.wpcf7 form .wpcf7-response-output {
    margin: 1em 0 0;
    padding: 5px 10px;
    border: 2px solid #dc3232;
    font-size:1.4rem
}

.wpcf7 form.aborted .wpcf7-response-output, .wpcf7 form.failed .wpcf7-response-output {
    margin: 1rem 0;
    padding: 0.8em 1.5em;
    border-radius: 3px;
    color: #fff;
    border: 1px solid #a94442;
    background-color:#a94442
}

.widget-block .alpha-block {
    text-align:initial
}

.widget_media_gallery .gallery {
    display: flex;
    flex-wrap: wrap;
    margin:-5px
}

.widget_media_gallery figure {
    width: 100%;
    padding:5px
}

.gallery-columns-1 > * {
    max-width: 100%;
    flex:0 0 100%
}

.gallery-columns-2 > * {
    max-width: 50%;
    flex:0 0 50%
}

.gallery-columns-3 > * {
    max-width: 33.3333%;
    flex:0 0 33.3333%
}

.gallery-columns-4 > * {
    max-width: 25%;
    flex:0 0 25%
}

.gallery-columns-5 > * {
    max-width: 20%;
    flex:0 0 20%
}

.gallery-columns-6 > * {
    max-width: 16.6667%;
    flex:0 0 16.6667%
}

.gallery-columns-7 > * {
    max-width: 14.2857%;
    flex:0 0 14.2857%
}

.gallery-columns-8 > * {
    max-width: 12.5%;
    flex:0 0 12.5%
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-results-button, input[type=search]::-webkit-search-results-decoration {
    display:none
}

#wp-admin-bar-alpha-layout:hover .ab-sub-wrapper {
    top: 100%;
    opacity: 1;
    visibility:visible
}

#wp-admin-bar-alpha-layout.alpha-layout-menu > .ab-item {
    display: flex;
    align-items:center
}

#wp-admin-bar-alpha-layout .dashicons-alpha-layout:before {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    background-image: url(../images/layout.svg);
    font-size:20px
}

#wp-admin-bar-alpha-layout .ab-sub-wrapper {
    position: absolute;
    top: -9999px;
    left: 0;
    min-width: 280px;
    padding: 0 10px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    background: #2c3338;
    opacity: 0;
    visibility: hidden;
    transition:opacity 0.3s, visibility 0.3s
}

#wp-admin-bar-alpha-layout .layout-part {
    position: relative;
    display: flex;
    align-items: center;
    float: none;
    z-index:0
}

#wp-admin-bar-alpha-layout .layout-part > a {
    color: #ccc;
    white-space:nowrap
}

#wp-admin-bar-alpha-layout .layout-part > a:hover {
    color:#72aee6
}

#wp-admin-bar-alpha-layout .layout-part.child {
    margin-left:15px
}

#wp-admin-bar-alpha-layout .layout-part.child:before {
    content: "";
    position: absolute;
    left: -8px;
    top: -17px;
    width: 7px;
    height: 32px;
    border-left: 1px solid #666;
    border-bottom: 1px solid #666;
    z-index:-1
}

#wp-admin-bar-alpha-layout .layout-part.parent {
    min-height: 32px;
    z-index:1
}

#wp-admin-bar-alpha-layout .layout-part-label {
    padding: 5px 8px;
    background: #55595c;
    font-size: 12px;
    line-height: 1;
    border-radius: 3px;
    white-space:nowrap
}

.editor-styles-wrapper .has-small-font-size, .has-small-font-size {
    font-size:1.5rem
}

.editor-styles-wrapper .has-normal-font-size, .editor-styles-wrapper .has-regular-font-size, .has-normal-font-size, .has-regular-font-size {
    font-size:1.8rem
}

.editor-styles-wrapper .has-medium-font-size, .has-medium-font-size {
    font-size:2.4rem
}

.editor-styles-wrapper .has-large-font-size, .has-large-font-size {
    font-size:3rem
}

.editor-styles-wrapper .has-huge-font-size, .editor-styles-wrapper .has-larger-font-size, .has-huge-font-size, .has-larger-font-size {
    font-size:3.4rem
}

.alignleft {
    float: left;
    clear: both;
    margin-right:1.5em
}

.alignright {
    float: right;
    clear: both;
    margin-left:1.5em
}

.aligncenter {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    clear:both
}

ol.aligncenter, ul.aligncenter {
    list-style-position: inside;
    padding:0
}

.alignfull, .alignwide {
    margin-top: 2rem;
    margin-bottom:2rem
}

.alignwide {
    width: 90%;
    max-width: 90%;
    margin-left: auto;
    margin-right:auto
}

.wp-caption {
    max-width: 100%;
    margin-bottom:24px
}

.wp-caption.aligncenter, img.aligncenter {
    display: block;
    margin:0 auto
}

.alignnone {
    display:block
}

.has-primary-color {
    color:var(--alpha-primary-color, #ff9c28)
}

.has-primary-background-color {
    background-color:var(--alpha-primary-color, #ff9c28)
}

.has-secondary-color {
    color:var(--alpha-secondary-color, #54524d)
}

.has-secondary-background-color {
    background-color:var(--alpha-secondary-color, #54524d)
}

.has-dark-color {
    color:var(--alpha-dark-color, #333)
}

.has-dark-background-color {
    background-color:var(--alpha-dark-color, #333)
}

.has-light-color {
    color:var(--alpha-light-color, #ccc)
}

.has-light-background-color {
    background-color:var(--alpha-light-color, #ccc)
}

.has-success-color {
    color:#b1ca39
}

.has-success-background-color {
    background-color:#b1ca39
}

.has-info-color {
    color:#369
}

.has-info-background-color {
    background-color:#369
}

.has-warning-color {
    color:#ffa800
}

.has-warning-background-color {
    background-color:#ffa800
}

.has-danger-color {
    color:#f12a57
}

.has-danger-background-color {
    background-color:#f12a57
}

.has-white-color {
    color:#fff
}

.has-white-background-color {
    background-color:#fff
}

.has-transparent-color {
    color:transparent
}

.has-transparent-background-color {
    background-color:transparent
}

.wp-block-table {
    display:table
}

.wp-block-cover {
    color:#fff
}

.wp-block-cover a {
    color:inherit
}

.wp-block-cover .wp-block-cover__inner-container p {
    font-size: 2em !important;
    line-height: 1.25;
    z-index: 1;
    margin-bottom:0
}

.wp-block-cover-image .wp-block-cover-image-text, .wp-block-cover .wp-block-cover-text, .wp-block-cover .wp-block-cover__inner-container p, section.wp-block-cover-image > h2 {
    padding: 0;
    max-width:100%
}

.wp-block-cover-image.has-background-dim:not(.has-pale-pink-background-color), .wp-block-cover.has-background-dim:not(.has-pale-pink-background-color) {
    background-color:#000
}

.blocks-gallery-caption, .wp-block-embed figcaption, .wp-block-image figcaption {
    width:100%
}

.wp-block-separator {
    clear:both
}

.wp-block-table table td, .wp-block-table table th {
    padding:0.5em
}

.wp-block-calendar {
    position: relative;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    color: #999;
    margin-top: 3rem;
    font-size: 13px;
    border:1px solid #e0dedf !important
}

.wp-block-calendar .wp-calendar-table {
    position: relative;
    margin-bottom:0
}

.wp-block-calendar .wp-calendar-table th {
    padding: 65px 0 4px 0;
    font-weight: 600;
    color: #333;
    line-height: 1;
    text-align: center;
    border: 0;
    background-color:transparent
}

.wp-block-calendar .wp-calendar-table td {
    position: relative;
    padding: 12px 10px;
    text-align: center;
    border:0
}

.wp-block-calendar .wp-calendar-table td a {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:0.3s
}

.wp-block-calendar .wp-calendar-table td a:hover {
    background-color: var(--alpha-primary-color, #ff9c28);
    color:#fff !important
}

.wp-block-calendar .wp-calendar-table caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin-bottom: 1.3rem;
    font-weight: 400;
    font-size: 18px;
    color: var(--alpha-heading-color);
    text-transform: capitalize;
    line-height: 6rem;
    height:6rem
}

.wp-block-calendar .wp-calendar-nav {
    position: absolute;
    top: 2.9rem;
    width:calc(100% - 4rem)
}

.widget .wp-block-calendar .wp-calendar-nav span a, .widget .wp-block-calendar .wp-calendar-nav span a:focus, .widget .wp-block-calendar .wp-calendar-nav span a:hover {
    color:var(--alpha-heading-color)
}

.wp-block-calendar .wp-calendar-nav span a {
    display: inline-block;
    position: relative;
    text-indent:-9999px
}

.wp-block-calendar .wp-calendar-nav span a:before {
    content: "";
    font-family: "panda";
    position: absolute;
    left: 0;
    text-indent:0
}

.wp-block-calendar .wp-calendar-nav .wp-calendar-nav-prev {
    float:left
}

.wp-block-calendar .wp-calendar-nav .wp-calendar-nav-prev a:before {
    content: "";
    margin-left:0.5rem
}

.wp-block-calendar .wp-calendar-nav .wp-calendar-nav-next {
    float:right
}

.wp-block-calendar .wp-calendar-nav .wp-calendar-nav-next a:before {
    content: "";
    margin-right:0.5rem
}

.wp-block-quote {
    position: relative;
    padding: 0.8em 1em;
    border-left: 2px solid var(--alpha-primary-color, #ff9c28);
    background-color:#f2f3f5
}

.wp-block-quote.has-text-align-right {
    border-right:2px solid var(--alpha-primary-color, #ff9c28)
}

.wp-block-quote.has-text-align-center {
    text-align:center
}

.wp-block-quote.has-text-align-center:before {
    content: "";
    font-size: 32px;
    font-family: "panda";
    line-height: 1;
    color:var(--alpha-primary-color, #ff9c28)
}

.wp-block-quote p {
    margin:0
}

.wp-block-quote.is-large {
    padding: 1em 1.5em;
    border-left: 2px solid var(--alpha-primary-color, #26c);
    background-color:#f2f3f5
}

.wp-block-quote.is-large.has-text-align-right {
    border-right:2px solid var(--alpha-primary-color, #26c)
}

.wp-block-quote cite {
    color: #333;
    font-size:1.2rem
}

.wp-block-quote.is-style-large {
    margin-bottom: 2rem;
    padding: 0 0 0 6rem;
    background: none;
    font-weight:600
}

.wp-block-quote.is-style-large:before {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 900;
    font-size: 2.5rem;
    font-family: "Font Awesome 5 Free";
    color: #333;
    line-height:1
}

@media (max-width: 1199px) {
    .wp-block-quote.is-style-large {
        padding:0 0 0 4rem
    }

    .wp-block-quote.is-style-large p {
        font-size:1.5rem
    }
}

@media (max-width: 479px) {
    .wp-block-quote.is-style-large cite, .wp-block-quote.is-style-large p {
        font-size:1.5rem
    }
}

.wp-block-pullquote blockquote {
    margin-bottom: 0;
    padding: 1em;
    border-left: 2px solid var(--alpha-primary-color, #ff9c28);
    background-color:#f2f3f5
}

.wp-block-button {
    margin-bottom:2rem
}

.wp-block-button .wp-block-button__link {
    background-color: var(--alpha-primary-color, #ff9c28);
    color: #fff;
    transition:color, background-color 0.3s
}

.wp-block-button .wp-block-button__link:hover {
    color: #fff;
    background-color: var(--alpha-primary-color-hover, #2977d8);
    text-decoration:none
}

.wp-block-button.is-style-outline .wp-block-button__link {
    background-color: transparent;
    color:var(--alpha-primary-color, #ff9c28)
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    background-color: var(--alpha-primary-color, #ff9c28);
    color:#fff
}

.wp-block-button.is-style-squared .wp-block-button__link {
    border-radius:0
}

.footer-dark table td, .footer-dark table th {
    border-bottom-color:#333
}

.post-password-form, .wp-block-search {
    margin-bottom:2rem
}

.post-password-form > p {
    display: flex;
    align-items:flex-end
}

.post-password-form input[type=password], .wc-block-product-search .wc-block-product-search__field, .woocommerce-product-search input, .wp-block-search .wp-block-search__input {
    display: block;
    width: 100%;
    min-height: 3.6rem;
    padding: 0.85rem 2rem;
    border: 1px solid #e3e3e3;
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 400;
    color: var(--alpha-body-color, #777);
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    outline:0
}

.post-password-form input[type=password]::placeholder, .wc-block-product-search .wc-block-product-search__field::placeholder, .woocommerce-product-search input::placeholder, .wp-block-search .wp-block-search__input::placeholder {
    color: inherit;
    transition:color 0.3s
}

.post-password-form input[type=password]::-webkit-input-placeholder, .wc-block-product-search .wc-block-product-search__field::-webkit-input-placeholder, .woocommerce-product-search input::-webkit-input-placeholder, .wp-block-search .wp-block-search__input::-webkit-input-placeholder {
    color: inherit;
    transition:color 0.3s
}

.post-password-form input[type=password]::-moz-placeholder, .wc-block-product-search .wc-block-product-search__field::-moz-placeholder, .woocommerce-product-search input::-moz-placeholder, .wp-block-search .wp-block-search__input::-moz-placeholder {
    color: inherit;
    transition:color 0.3s
}

.post-password-form input[type=password]:focus::placeholder, .wc-block-product-search .wc-block-product-search__field:focus::placeholder, .woocommerce-product-search input:focus::placeholder, .wp-block-search .wp-block-search__input:focus::placeholder {
    color:transparent
}

.post-password-form input[type=password]:focus::-webkit-input-placeholder, .wc-block-product-search .wc-block-product-search__field:focus::-webkit-input-placeholder, .woocommerce-product-search input:focus::-webkit-input-placeholder, .wp-block-search .wp-block-search__input:focus::-webkit-input-placeholder {
    color:transparent
}

.post-password-form input[type=password]:focus::-moz-placeholder, .wc-block-product-search .wc-block-product-search__field:focus::-moz-placeholder, .woocommerce-product-search input:focus::-moz-placeholder, .wp-block-search .wp-block-search__input:focus::-moz-placeholder {
    color:transparent
}

.post-password-form input[type=password].form-solid, .wc-block-product-search .wc-block-product-search__field.form-solid, .woocommerce-product-search input.form-solid, .wp-block-search .wp-block-search__input.form-solid {
    background-color: #fff;
    border: 0;
    color:#8d8d8d
}

.post-password-form input[type=submit], .woocommerce-product-search button, .wp-block-search button:not(.has-icon) {
    display: inline-block;
    border: 2px solid var(--alpha-primary-color, #ff9c28);
    background-color: var(--alpha-primary-color, #ff9c28);
    color: #fff;
    outline: 0;
    border-radius: 0;
    min-width: 9rem;
    padding: 0.7em 1em;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
    transition: color 0.3s, border-color 0.3s, background-color 0.3s, box-shadow 0.3s;
    white-space: nowrap;
    cursor:pointer
}

.post-password-form input[type=submit]:hover, .woocommerce-product-search button:hover, .wp-block-search button:not(.has-icon):hover {
    border: 2px solid var(--alpha-primary-color-hover, ligthen(#ff9c28, 10%));
    background-color:var(--alpha-primary-color-hover, ligthen(#ff9c28, 10%))
}

.widget_product_search .woocommerce-product-search {
    display:flex
}

.wc-block-product-search .wc-block-product-search__field {
    border-radius: 3px;
    height:4.7rem
}

.wc-block-product-search__label, .wp-block-search .wp-block-search__label {
    display: block;
    padding: 13px 0;
    color: var(--alpha-heading-color, var(--alpha-body-color));
    font-size: 16px;
    font-weight:600
}

.wp-block-search__inside-wrapper {
    display: flex;
    position: relative;
    max-width:100%
}

.wp-block-search .wp-block-search__input {
    border-radius:3px
}

.wc-block-product-search__button, .wp-block-search button.has-icon {
    width: 4.7rem;
    flex: 0 0 4.7rem;
    background: transparent;
    border: 1px solid #e3e3e3;
    margin-left: 0.5rem;
    border-radius: 3px;
    cursor: pointer;
    transition:color 0.3s
}

.wc-block-product-search__button:focus, .wc-block-product-search__button:hover, .wp-block-search button.has-icon:focus, .wp-block-search button.has-icon:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.wc-block-product-search__button svg, .wp-block-search svg {
    display:none
}

.wc-block-product-search__button:before, .wp-block-search button.has-icon:before {
    content: "";
    font-family: "panda";
    font-size: 18px;
    vertical-align:middle
}

.wc-block-product-search__fields {
    position:relative
}

.wc-block-product-search__button, .wp-block-search__button-inside button {
    position: absolute;
    right: 0;
    top:0
}

.wc-block-product-search__button, .wp-block-search__button-inside button.has-icon {
    height: 100%;
    border: 0;
    margin-left:0
}

.wp-block-search__button-inside button:not(.has-icon) {
    margin: 5px;
    padding:5px
}

.wc-block-product-search .wc-block-product-search__field, .wp-block-search__button-inside.wp-block-search__icon-button .wp-block-search__input {
    padding-right:4.7rem
}

.wp-block-search__icon-button .wp-block-search__input {
    padding:1.2rem 2rem
}

.wp-block-search__text-button .wp-block-search__input {
    border-radius:0
}

.wp-block-latest-comments .avatar, .wp-block-latest-comments__comment-avatar {
    padding-top:0 !important
}

.widget-block .alpha-block {
    text-align:initial
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    margin:-5px
}

.gallery-item {
    margin-bottom: 1.5rem;
    width: 100%;
    padding:5px
}

.gallery-columns-1 > * {
    max-width: 100%;
    flex:0 0 100%
}

.gallery-columns-2 > * {
    max-width: 50%;
    flex:0 0 50%
}

.gallery-columns-3 > * {
    max-width: 33.3333%;
    flex:0 0 33.3333%
}

.gallery-columns-4 > * {
    max-width: 25%;
    flex:0 0 25%
}

.gallery-columns-5 > * {
    max-width: 20%;
    flex:0 0 20%
}

.gallery-columns-6 > * {
    max-width: 16.6667%;
    flex:0 0 16.6667%
}

.gallery-columns-7 > * {
    max-width: 14.2857%;
    flex:0 0 14.2857%
}

.gallery-columns-8 > * {
    max-width: 12.5%;
    flex:0 0 12.5%
}

.gallery-columns-9 > * {
    max-width: 11.1111%;
    flex:0 0 11.1111%
}

.main-content > .wp-block-columns:not(.alignwide):not(.alignfull) {
    max-width:var(--alpha-container-width, 1280px)
}

.main-content > .alignwide {
    max-width: var(--alpha-container-fluid-width, 1820px);
    padding-left: 2rem;
    padding-right: 2rem;
    margin-left: auto;
    margin-right:auto
}

.main-content > .wp-block-columns:not(.alignfull) {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: auto;
    margin-right:auto
}

@media (min-width: 1280px) {
    .main-content > .wp-block-columns:not(.alignwide):not(.alignfull) {
        max-width: 1280px;
        padding-left: 0;
        padding-right: 0;
        margin-left: auto;
        margin-right:auto
    }
}

@media (min-width: 1820px) {
    .main-content > .alignwide.wp-block-columns {
        max-width: 1800px;
        padding-left: 0;
        padding-right: 0;
        margin-left: auto;
        margin-right:auto
    }
}

.container-fluid .wp-block-columns:not(.alignfull), .container .wp-block-columns:not(.alignfull) {
    padding-left: 0;
    padding-right:0
}

.container-fluid .main-content > .wp-block-columns, .container .main-content > .wp-block-columns {
    margin-left: -10px;
    margin-right:-10px
}

.container-fluid .alignwide, .container .alignwide {
    padding-left: 0;
    padding-right:0
}

@media (min-width: 1300px) {
    .container-fluid .main-content > .wp-block-columns:not(.alignwide):not(.alignfull) {
        margin-left: auto;
        margin-right:auto
    }
}

.wp-block-columns:not(.alignwide) {
    margin-left: -10px;
    margin-right:-10px
}

@media (max-width: 479px) {
    .wp-block-columns:not(.alignfull) {
        padding-left: 1.5rem;
        padding-right:1.5rem
    }
}

.wp-block-columns > .wp-block-column {
    padding-left: 10px;
    padding-right: 10px;
    margin-left:0
}

.blocks-gallery-grid[class * =columns-] .blocks-gallery-image, .blocks-gallery-grid[class * =columns-] .blocks-gallery-item, .wp-block-gallery[class * =columns-] .blocks-gallery-image, .wp-block-gallery[class * =columns-] .blocks-gallery-item {
    margin-right: 20px;
    margin-bottom:20px
}

.blocks-gallery-grid[class * =columns-] .blocks-gallery-image:last-child, .blocks-gallery-grid[class * =columns-] .blocks-gallery-item:last-child, .wp-block-gallery[class * =columns-] .blocks-gallery-image:last-child, .wp-block-gallery[class * =columns-] .blocks-gallery-item:last-child {
    margin-right:0
}

.blocks-gallery-grid.columns-2 .blocks-gallery-image, .blocks-gallery-grid.columns-2 .blocks-gallery-item, .wp-block-gallery.columns-2 .blocks-gallery-image, .wp-block-gallery.columns-2 .blocks-gallery-item {
    width:calc((100% - 10px * 2) / 2)
}

.blocks-gallery-grid.columns-3 .blocks-gallery-image, .blocks-gallery-grid.columns-3 .blocks-gallery-item, .wp-block-gallery.columns-3 .blocks-gallery-image, .wp-block-gallery.columns-3 .blocks-gallery-item {
    width:calc((100% - 10px * 4) / 3)
}

.blocks-gallery-grid.columns-4 .blocks-gallery-image, .blocks-gallery-grid.columns-4 .blocks-gallery-item, .wp-block-gallery.columns-4 .blocks-gallery-image, .wp-block-gallery.columns-4 .blocks-gallery-item {
    width:calc((100% - 10px * 6) / 4)
}

.blocks-gallery-grid.columns-5 .blocks-gallery-image, .blocks-gallery-grid.columns-5 .blocks-gallery-item, .wp-block-gallery.columns-5 .blocks-gallery-image, .wp-block-gallery.columns-5 .blocks-gallery-item {
    width:calc((100% - 10px * 8) / 5)
}

.blocks-gallery-grid.columns-6 .blocks-gallery-image, .blocks-gallery-grid.columns-6 .blocks-gallery-item, .wp-block-gallery.columns-6 .blocks-gallery-image, .wp-block-gallery.columns-6 .blocks-gallery-item {
    width:calc((100% - 10px * 10) / 6)
}

.blocks-gallery-grid.columns-7 .blocks-gallery-image, .blocks-gallery-grid.columns-7 .blocks-gallery-item, .wp-block-gallery.columns-7 .blocks-gallery-image, .wp-block-gallery.columns-7 .blocks-gallery-item {
    width:calc((100% - 10px * 12) / 7)
}

.blocks-gallery-grid.columns-8 .blocks-gallery-image, .blocks-gallery-grid.columns-8 .blocks-gallery-item, .wp-block-gallery.columns-8 .blocks-gallery-image, .wp-block-gallery.columns-8 .blocks-gallery-item {
    width:calc((100% - 10px * 14) / 8)
}

.blocks-gallery-grid.columns-9 .blocks-gallery-image, .blocks-gallery-grid.columns-9 .blocks-gallery-item, .wp-block-gallery.columns-9 .blocks-gallery-image, .wp-block-gallery.columns-9 .blocks-gallery-item {
    width:calc((100% - 10px * 16) / 9)
}

.wp-block-columns {
    display: flex;
    flex-wrap:wrap
}

.wp-block-column {
    padding-left: 10px;
    padding-right:10px
}

@media (max-width: 781px) and(min-width: 600px) {
    .wp-block-column {
        flex-basis: 50% !important;
        flex-grow:0
    }
}

.wp-block-code {
    background: #333;
    border-color:#333
}

.wp-block-code code {
    color:#fff
}

.sidebar .widget_block {
    margin-bottom:1rem
}

.sidebar .widget_block h2 {
    font-size: 1.6rem;
    padding: 1.3rem 0;
    margin-bottom:0
}

.sidebar .wp-block-latest-comments {
    padding-left: 0;
    margin:0
}

.gallery-columns-7 .gallery-caption, .gallery-columns-8 .gallery-caption, .gallery-columns-9 .gallery-caption {
    display:none
}

.wp-caption img[class * =wp-image-] {
    display:block
}

.wp-block-button__link {
    padding-top: calc(.667em + 4px);
    padding-bottom:0.667em
}

.is-style-outline > .wp-block-button__link, .wp-block-button__link.is-style-outline {
    padding-top: calc(.667em + 2px);
    padding-bottom:calc(.667em - 2px)
}

.form-row [type=email], .form-row [type=password], .form-row [type=tel], .form-row [type=text], .form-row textarea {
    display: block;
    width: 100%;
    min-height: 4.1rem;
    padding: 0.85rem 2rem;
    border: 1px solid #e0dedf;
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 400;
    color: var(--alpha-body-color, #777);
    background-color: transparent;
    border-radius: 2px;
    box-shadow: none;
    outline:0
}

.woocommerce-form {
    font-size:1.3rem
}

.woocommerce-form .form-row {
    margin-bottom:1.8rem
}

.woocommerce-form label {
    margin-bottom:8px
}

.button {
    display: inline-block;
    border: 2px solid #eee;
    outline: 0;
    border-radius: 0;
    padding: 1.3rem 2.7rem;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
    transition: color 0.3s, border-color 0.3s, background-color 0.3s, box-shadow 0.3s;
    white-space: nowrap;
    cursor: pointer;
    color: #fff;
    border-color: var(--alpha-primary-color, #ff9c28);
    background-color:var(--alpha-primary-color, #ff9c28)
}

.button:active, .button:focus, .button:hover {
    color: #fff;
    border-color: var(--alpha-primary-color-hover, #2977d8);
    background-color:var(--alpha-primary-color-hover, #2977d8)
}

.button.btn-solid {
    color: var(--alpha-primary-color, #ff9c28);
    border-color: #fff;
    background-color:#fff
}

.button.btn-solid:active, .button.btn-solid:focus, .button.btn-solid:hover {
    border-color: var(--alpha-primary-color, #ff9c28);
    background-color: var(--alpha-primary-color, #ff9c28);
    color:#fff
}

.button.btn-outline {
    color: var(--alpha-primary-color, #ff9c28);
    border-color: var(--alpha-primary-color, #ff9c28);
    background-color:transparent
}

.button.btn-outline:active, .button.btn-outline:focus, .button.btn-outline:hover {
    background-color: var(--alpha-primary-color, #ff9c28);
    color:#fff
}

.button.btn-link {
    background-color: transparent;
    color:var(--alpha-primary-color, #ff9c28)
}

.button.btn-link:active, .button.btn-link:focus, .button.btn-link:hover {
    color:var(--alpha-primary-color-hover, #2977d8)
}

.button.btn-underline:active, .button.btn-underline:focus, .button.btn-underline:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.button.loading {
    opacity:0.3
}

.button[disabled] {
    cursor: not-allowed;
    pointer-events:none
}

.form-footer label {
    margin-bottom:0
}

.lost_password {
    margin-bottom:0
}

.lost_password a {
    color:#f12a57
}

.woocommerce-privacy-policy-link {
    color:var(--alpha-primary-color, #ff9c28)
}

.woocommerce-privacy-policy-link:hover {
    text-decoration:underline
}

form .submit-status {
    margin: 2rem 0 0;
    color:var(--alpha-danger-color, #f12a57)
}

form.lost_reset_password {
    width: 450px;
    margin: 0 auto;
    border: 1px solid #ebebeb;
    padding: 5rem;
    box-shadow:0 0 10px rgba(0, 0, 0, 0.1)
}

.woocommerce > .login-popup {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background:#fff
}

.woocommerce-form-row .button, .woocommerce-form .button {
    display: block;
    width:100%
}

.woocommerce-form-login p {
    font-size: inherit;
    line-height:1.84
}

.woocommerce-form-login p:empty:before {
    content:none
}

.woocommerce-form-login .form-row {
    font-size: 1.3rem;
    margin-bottom:2.5rem
}

.woocommerce-form-login .form-row label {
    display: inline-block;
    margin-bottom:8px
}

.woocommerce-form-login .form-row span {
    vertical-align:middle
}

.woocommerce-form-login .form-row .form-control {
    height:3.7rem
}

.woocommerce-form-login .form-row .input-text {
    background:#fff
}

.woocommerce-form-login .form-row input {
    margin-right:0.5rem
}

.woocommerce-form-login .form-row input[type=radio] {
    vertical-align:sub
}

.woocommerce-form-login .form-footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size:1.2rem
}

.woocommerce-form-login .form-footer p {
    margin-bottom: 8px;
    line-height:inherit
}

.woocommerce-form-login .button {
    padding:1rem
}

.woocommerce-form-login .lost-link {
    text-align: right;
    color:#f12a57
}

.woocommerce-form-login .lost-link:hover {
    text-decoration:underline
}

.woocommerce-form-login .social-login {
    margin-bottom: 2.5rem;
    color:#999
}

.woocommerce-form-login .social-login p {
    margin-bottom: 8px;
    font-size:1.2rem
}

.woocommerce-form-login .social-icon {
    color:var(--alpha-body-color, #777)
}

.woocommerce-form-login .social-icon.framed {
    border-color:var(--alpha-light-color, #ccc)
}

.woocommerce-form-login .custom-checkbox {
    margin-bottom: 2.5rem;
    line-height:initial
}

.woocommerce-form-login .woocommerce-password-strength {
    margin: 10px 0;
    padding: 8px;
    color: #fff;
    text-align: center;
    background:var(--alpha-primary-color, #ff9c28)
}

.woocommerce-form-login .woocommerce-password-strength.short {
    background:#ffa800
}

.woocommerce-form-login .woocommerce-password-strength.bad {
    background:#f12a57
}

.woocommerce-form-login .woocommerce-password-strength.good {
    background:#b1ca39
}

.woocommerce-form-login .woocommerce-password-hint {
    font-size: 1.2rem;
    line-height:1.86
}

.woocommerce-form-login .title {
    font-size: 1.3rem;
    font-weight: normal;
    color: var(--alpha-body-color, #777);
    margin-bottom:1.5rem
}

.sidebar .widget .wc-layered-nav-term, .sidebar .widget .with-checkbox li, .sidebar .widget .yith-wcan-list li {
    padding:0
}

.sidebar .widget .wc-layered-nav-term.empty span, .sidebar .widget .wc-layered-nav-term > a, .sidebar .widget .with-checkbox li.empty span, .sidebar .widget .with-checkbox li > a, .sidebar .widget .yith-wcan-list li.empty span, .sidebar .widget .yith-wcan-list li > a {
    position: relative;
    display: block;
    padding:1rem 0 1rem 28px
}

.sidebar .widget .wc-layered-nav-term.empty span:hover, .sidebar .widget .wc-layered-nav-term > a:hover, .sidebar .widget .with-checkbox li.empty span:hover, .sidebar .widget .with-checkbox li > a:hover, .sidebar .widget .yith-wcan-list li.empty span:hover, .sidebar .widget .yith-wcan-list li > a:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.sidebar .widget .wc-layered-nav-term.empty span:before, .sidebar .widget .wc-layered-nav-term > a:before, .sidebar .widget .with-checkbox li.empty span:before, .sidebar .widget .with-checkbox li > a:before, .sidebar .widget .yith-wcan-list li.empty span:before, .sidebar .widget .yith-wcan-list li > a:before {
    content: "";
    position: absolute;
    border: 1px solid;
    width: 18px;
    height: 18px;
    top: 50%;
    transform: translateY(-50%);
    left: 2px;
    color: #999;
    font-size: 0.7em;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height:16px
}

@media (-webkit-min-device-pixel-ratio: 1.5),(min--moz-device-pixel-ratio: 1.5),(min-device-pixel-ratio: 1.5) {
    .sidebar .widget .wc-layered-nav-term.empty span:before, .sidebar .widget .wc-layered-nav-term > a:before, .sidebar .widget .with-checkbox li.empty span:before, .sidebar .widget .with-checkbox li > a:before, .sidebar .widget .yith-wcan-list li.empty span:before, .sidebar .widget .yith-wcan-list li > a:before {
        text-indent:0
    }
}

.sidebar .widget .wc-layered-nav-term.chosen > a:before, .sidebar .widget .with-checkbox li.chosen > a:before, .sidebar .widget .yith-wcan-list li.chosen > a:before {
    content: "";
    color: #fff;
    background-color: var(--alpha-primary-color, #ff9c28);
    border-color:var(--alpha-primary-color, #ff9c28)
}

#yith-wcwl-popup-message {
    display:none !important
}

.woocommerce-message .button {
    width:auto
}

.woocommerce-product-gallery .woocommerce-product-gallery__trigger {
    display:none
}

.wcml-spinner {
    display:none
}

.entry-summary .product_meta .wcml_currency_switcher {
    display:none
}

.main-content > .woocommerce-info {
    padding-top:1.8rem
}

@media (min-width: 992px) {
    .left-sidebar.closed ~ .main-content > .woocommerce-info {
        padding-left:10rem
    }
}

.woocommerce .alert {
    margin-bottom:2rem
}

.woocommerce .alert + .alert {
    margin-top:-1rem
}

.woocommerce .alert-success a:not(.btn), .woocommerce .alert-success i {
    color:#b1ca39
}

.woocommerce .alert-danger a:not(.btn), .woocommerce .alert-danger i {
    color:#f12a57
}

.woocommerce .alert-info a:not(.btn), .woocommerce .alert-info i {
    color:#369
}

.woocommerce .showcoupon + .btn-close, .woocommerce .showlogin + .btn-close {
    display:none
}

.blockOverlay {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff !important;
    opacity:0.6 !important
}

.woocommerce-cart .blockMsg, .woocommerce-checkout .blockMsg {
    opacity:0
}

.woocommerce .add_to_wishlist .blockOverlay {
    background:transparent !important
}

.woocommerce .blockUI.blockOverlay:before {
    background:none
}

.yith_woocompare_colorbox #cboxBottomCenter, .yith_woocompare_colorbox #cboxBottomLeft, .yith_woocompare_colorbox #cboxBottomRight, .yith_woocompare_colorbox #cboxMiddleLeft, .yith_woocompare_colorbox #cboxMiddleRight, .yith_woocompare_colorbox #cboxTopCenter, .yith_woocompare_colorbox #cboxTopLeft, .yith_woocompare_colorbox #cboxTopRight {
    background: transparent;
    width: 0;
    height:0
}

.comment-form-rating {
    color: var(--alpha-dark-color, #333);
    margin-bottom:2.2rem
}

.comment-respond .comment-form-cookies-consent {
    margin-bottom:2rem
}

.stars {
    display: inline-block;
    margin: 0 0 0 1rem;
    line-height:1
}

.comment-respond .stars {
    margin-bottom: 0;
    vertical-align:1px
}

.stars span {
    display: flex;
    position: relative;
    height: 1.2rem;
    font-size:1.2rem
}

.stars a {
    color: var(--alpha-light-color, #ccc);
    text-indent: -9999px;
    width:1.4rem
}

.stars a:before {
    content: "";
    position: absolute;
    left: 0;
    height: 14px;
    line-height: 1;
    font-family: "panda";
    text-indent: 0;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing:0.2em
}

.stars a.active:before, .stars a:hover:before {
    content: "" "" "" "" "";
    color:var(--alpha-secondary-color, #d26e4b)
}

.stars .star-1 {
    z-index:10
}

.stars .star-2 {
    z-index:9
}

.stars .star-3 {
    z-index:8
}

.stars .star-4 {
    z-index:7
}

.stars .start-5 {
    z-index:6
}

.stars .star-1:before {
    width:20%
}

.stars .star-2:before {
    width:40%
}

.stars .star-3:before {
    width:60%
}

.stars .star-4:before {
    width:80%
}

.stars .star-5:before {
    content: "" "" "" "" ""
}

@media (max-width: 320px) {
    .page-content .woocommerce-form-login .lost_password {
        margin-left:0
    }
}

.woocommerce-store-notice.demo_store {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 10;
    width: 300px;
    padding: 15px 10px;
    margin: 0;
    border: 1px solid #e1e1e1;
    border-radius: 2px;
    background: #fff;
    font-size: 13px;
    text-align:center
}

.wp-block-calendar table.wp-calendar-table td a:hover {
    background-color:var(--alpha-dim-color, #54524d)
}

.wp-block-quote cite {
    color: var(--alpha-dim-color, #54524d);
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight:400
}

.post-password-form input[type=password], .wc-block-product-search .wc-block-product-search__field, .woocommerce-product-search input, form.wp-block-search .wp-block-search__input {
    min-height: 3.2rem;
    font-weight:300
}

.post-password-form input[type=password]::placeholder, .wc-block-product-search .wc-block-product-search__field::placeholder, .woocommerce-product-search input::placeholder, form.wp-block-search .wp-block-search__input::placeholder {
    color:#999
}

.post-password-form input[type=password]::-webkit-input-placeholder, .wc-block-product-search .wc-block-product-search__field::-webkit-input-placeholder, .woocommerce-product-search input::-webkit-input-placeholder, form.wp-block-search .wp-block-search__input::-webkit-input-placeholder {
    color:#999
}

.post-password-form input[type=password]::-moz-placeholder, .wc-block-product-search .wc-block-product-search__field::-moz-placeholder, .woocommerce-product-search input::-moz-placeholder, form.wp-block-search .wp-block-search__input::-moz-placeholder {
    color:#999
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
    border-color:#e0dedf
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
    padding-left:10px
}

.wp-block-search .wp-block-search__button {
    color: var(--alpha-heading-color);
    background-color: #fff;
    border:0
}

.wp-block-search .wp-block-search__button.has-icon:before {
    font-size:15px
}

.wp-block-search .wp-block-search__button svg {
    display:none
}

.sidebar .widget_block h2 {
    font-size: 2.4rem;
    padding:1rem 0
}

#blog-sidebar .widget .widget-title .wt-area:before {
    bottom:-1.5rem
}

.button {
    padding: 1.3rem 2.7rem;
    font-weight: 400;
    color: #fff;
    border-color: var(--alpha-dim-color, #54524d);
    background-color:var(--alpha-dim-color, #54524d)
}

.button:active, .button:focus, .button:hover {
    color: #fff;
    border-color: var(--alpha-dim-color-hover, #66645e);
    background-color:var(--alpha-dim-color-hover, #66645e)
}

.button.btn-solid {
    color: var(--alpha-dim-color, #54524d);
    border-color: #fff;
    background-color:#fff
}

.button.btn-solid:active, .button.btn-solid:focus, .button.btn-solid:hover {
    border-color: var(--alpha-dim-color, #54524d);
    background-color: var(--alpha-dim-color, #54524d);
    color:#fff
}

.button.btn-outline {
    color: var(--alpha-dim-color, #54524d);
    border-color: var(--alpha-dim-color, #54524d);
    background-color:transparent
}

.button.btn-outline:active, .button.btn-outline:focus, .button.btn-outline:hover {
    background-color: var(--alpha-dim-color, #54524d);
    color:#fff
}

.button.btn-link {
    background-color: transparent;
    color:var(--alpha-dim-color, #54524d)
}

.button.btn-link:active, .button.btn-link:focus, .button.btn-link:hover {
    color:var(--alpha-dim-color-hover, #66645e)
}

.button.btn-underline:active, .button.btn-underline:focus, .button.btn-underline:hover {
    color:var(--alpha-dim-color, #54524d)
}

.sidebar .widget .alpha-product-prices li {
    padding:0
}

.sidebar .widget .alpha-product-prices li.empty span, .sidebar .widget .alpha-product-prices li > a {
    position: relative;
    display: block;
    padding:1rem 0 1rem 28px
}

.sidebar .widget .alpha-product-prices li.empty span:hover, .sidebar .widget .alpha-product-prices li > a:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.sidebar .widget .alpha-product-prices li.empty span:before, .sidebar .widget .alpha-product-prices li > a:before {
    content: "";
    position: absolute;
    border: 1px solid;
    border-radius: 3px;
    width: 18px;
    height: 18px;
    top: 50%;
    transform: translateY(-50%);
    left: 2px;
    font-size: 0.7em;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height:16px
}

@media (-webkit-min-device-pixel-ratio: 1.5),(min--moz-device-pixel-ratio: 1.5),(min-device-pixel-ratio: 1.5) {
    .sidebar .widget .alpha-product-prices li.empty span:before, .sidebar .widget .alpha-product-prices li > a:before {
        text-indent:0
    }
}

.sidebar .widget .alpha-block {
    padding-top:2rem
}

.sidebar nav.widget .alpha-product-prices li.empty span, .sidebar nav.widget .alpha-product-prices li > a, .sidebar nav.widget .wc-layered-nav-term.empty span, .sidebar nav.widget .wc-layered-nav-term > a, .sidebar nav.widget .with-checkbox li.empty span, .sidebar nav.widget .with-checkbox li > a, .sidebar nav.widget .yith-wcan-list li.empty span, .sidebar nav.widget .yith-wcan-list li > a {
    padding:1rem 0 1rem 27px
}

.sidebar nav.widget .alpha-product-prices li.empty span:before, .sidebar nav.widget .alpha-product-prices li > a:before, .sidebar nav.widget .wc-layered-nav-term.empty span:before, .sidebar nav.widget .wc-layered-nav-term > a:before, .sidebar nav.widget .with-checkbox li.empty span:before, .sidebar nav.widget .with-checkbox li > a:before, .sidebar nav.widget .yith-wcan-list li.empty span:before, .sidebar nav.widget .yith-wcan-list li > a:before {
    left: 0;
    color:#ccc
}

.sidebar nav.widget .alpha-product-prices li.empty span:after, .sidebar nav.widget .alpha-product-prices li > a:after, .sidebar nav.widget .wc-layered-nav-term.empty span:after, .sidebar nav.widget .wc-layered-nav-term > a:after, .sidebar nav.widget .with-checkbox li.empty span:after, .sidebar nav.widget .with-checkbox li > a:after, .sidebar nav.widget .yith-wcan-list li.empty span:after, .sidebar nav.widget .yith-wcan-list li > a:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left:5px
}

.sidebar nav.widget .alpha-product-prices li.chosen > a, .sidebar nav.widget .wc-layered-nav-term.chosen > a, .sidebar nav.widget .with-checkbox li.chosen > a, .sidebar nav.widget .yith-wcan-list li.chosen > a {
    color:var(--alpha-primary-color, #ff9c28)
}

.sidebar nav.widget .alpha-product-prices li.chosen > a:before, .sidebar nav.widget .wc-layered-nav-term.chosen > a:before, .sidebar nav.widget .with-checkbox li.chosen > a:before, .sidebar nav.widget .yith-wcan-list li.chosen > a:before {
    content: "";
    color: #ccc;
    background-color: transparent;
    border-radius: 0;
    border-color:var(--alpha-primary-color, #ff9c28)
}

.sidebar .widget .alpha-product-prices li.chosen > a:after, .sidebar .widget .wc-layered-nav-term.chosen > a:after, .sidebar .widget .with-checkbox li.chosen > a:after, .sidebar .widget .yith-wcan-list li.chosen > a:after {
    width: 8px;
    height: 8px;
    background-color:var(--alpha-primary-color, #ff9c28)
}

.sidebar .widget .wc-layered-nav-rating {
    padding:0.8rem 0
}

.sidebar .widget .wc-layered-nav-rating a {
    padding-left:2px
}

.sidebar .widget .wc-layered-nav-rating.chosen a {
    color:var(--alpha-primary-color, #ff9c28)
}

.stars:hover:before {
    color:var(--alpha-primary-color, #ff9c28)
}

form.wpcf7-form .wpcf7-form-control {
    height:51px
}

form.wpcf7-form input {
    background:#fff
}

form.wpcf7-form input, form.wpcf7-form input::placeholder, form.wpcf7-form textarea, form.wpcf7-form textarea::placeholder {
    color:#999
}

div.wpcf-style1 .wpcf7-submit:hover {
    cursor: pointer;
    color: #ff9c28;
    transition:color 0.3s
}

div.wpcf-style1 .wpcf7-form > p {
    border-bottom:1px solid #e0dede
}

div.wpcf-style1 .form-text-control {
    max-width: 220px;
    min-height: 1px;
    padding: 3px 10px !important;
    background: transparent;
    border-width: 0;
    font-size:12px
}

div.wpcf-style1 .wpcf7-form-control {
    height: auto;
    padding:5px 9px
}

.footer-dark .form-text-control {
    padding:0 !important
}

.footer-dark .wpcf-style1 .wpcf7-form > p {
    border-color:#393939
}

.footer-dark .wpcf7-form input, .footer-dark .wpcf7-form input::placeholder {
    color: #54524d;
    line-height:26px
}

.footer-dark .wpcf7-form button {
    color:#999
}

.footer-dark .wpcf7-form-control {
    padding:5px 0
}

.woocommerce .form-row [type=email], .woocommerce .form-row [type=password], .woocommerce .form-row [type=tel], .woocommerce .form-row [type=text], .woocommerce .form-row textarea {
    border-radius:0
}

.alpha-mini-logo:before, div.dashicons-alpha-logo:before, span.dashicons-alpha-logo:before {
    padding:2px
}

#wp-admin-bar-alpha .custom-mini-logo img, #wp-admin-bar-alpha .dashicons-alpha-logo:before {
    margin-top: 0;
    margin-left: 0;
    margin-right:0
}

.elementor-studio-section-button .alpha-mini-logo:before {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px;
    filter:contrast(0) brightness(2)
}

.shortcode-text {
    display: block;
    opacity: 0;
    padding: 0;
    border: none;
    height:1px
}

.copy-toast {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    top: 50px;
    right: 0;
    transform: translateX(100%);
    transition:transform 0.5s
}

.toast-show {
    transform:translateX(0)
}

.toast-text {
    padding: 15px 15px 11px 15px;
    width: 300px;
    color: #fff;
    background-color:#222
}

.toast-text i:before {
    margin-right:1rem
}

.slider-container {
    overflow: hidden;
    position:static
}

.slider-relative {
    position:relative
}

.slider-relative > .slider-container {
    width:100%
}

.slider-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition-property:transform
}

.slider-wrapper.row {
    width:calc(100% + 2 * var(--alpha-gap))
}

.slider-container-initialized .slider-wrapper {
    overflow:visible
}

.slider-container-android .slider-slide, .slider-wrapper {
    transform:translate3d(0px, 0, 0)
}

.slider-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property:transform
}

.slider-slide-invisible-blank {
    visibility:hidden
}

.slider-container-autoheight, .slider-container-autoheight .slider-slide {
    height:auto
}

.slider-container-autoheight .slider-wrapper {
    align-items: flex-start;
    transition-property:transform, height
}

.slider-button {
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translate(-50%, -50%);
    border: none;
    padding: 0;
    width: 1.2em;
    height: 2em;
    background: none;
    font-size: 3rem;
    line-height: 0;
    cursor: pointer;
    color: var(--alpha-body-color);
    transition:opacity 0.3s, color 0.3s
}

.slider-button:before {
    content: "";
    font-family: "panda"
}

.slider-button.disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events:none
}

.slider-button:not(.disabled):hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.slider-button-prev {
    left:0.7em
}

.slider-button-next {
    transform: translate(50%, -50%);
    right:0.7em
}

.slider-button-next:before {
    content: ""
}

.swiper-button-lock {
    display:none
}

.slider-container-fade.slider-container-free-mode .slider-slide {
    transition-timing-function:ease-out
}

.slider-container-fade .slider-slide {
    pointer-events: none;
    transition-property:opacity
}

.slider-container-fade .slider-slide .slider-slide {
    pointer-events:none
}

.slider-container-fade .slider-slide-active {
    pointer-events:auto
}

.slider-pagination {
    position: absolute;
    left: 50%;
    transition: 0.3s opacity;
    transform: translate3d(-50%, 0, 0);
    bottom: -1rem;
    z-index:10
}

.slider-pagination.swiper-pagination-hidden {
    opacity:0
}

.slider-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 9rem;
    background: #000;
    opacity: 0.2;
    transition:0.3s
}

.swiper-pagination-clickable .slider-pagination-bullet {
    cursor:pointer
}

.slider-pagination-bullet.active {
    width: 18px;
    opacity: 1;
    background:var(--alpha-primary-color, #ff9c28)
}

.slider-pagination-bullet:hover {
    opacity: 1;
    background:var(--alpha-primary-color, #ff9c28)
}

.slider-pagination-bullet:first-child:last-child {
    display:none
}

.slider-container-vertical .slider-wrapper {
    flex-direction:column
}

.slider-container-horizontal > .slider-pagination-bullets .slider-pagination-bullet {
    margin:0 0.5rem
}

@media (max-width: 1199px) {
    .touchable .alpha-disable-mobile-slider :not(.slider-container) > .slider-wrapper.posts, .touchable .alpha-disable-mobile-slider :not(.slider-container) > .slider-wrapper.products {
        overflow-x: auto;
        -webkit-overflow-scrolling:touch
    }

    .touchable .alpha-disable-mobile-slider :not(.slider-container) > .slider-wrapper.posts::-webkit-scrollbar, .touchable .alpha-disable-mobile-slider :not(.slider-container) > .slider-wrapper.products::-webkit-scrollbar {
        height: 7px;
        width:4px
    }

    .touchable .alpha-disable-mobile-slider :not(.slider-container) > .slider-wrapper.posts::-webkit-scrollbar-thumb, .touchable .alpha-disable-mobile-slider :not(.slider-container) > .slider-wrapper.products::-webkit-scrollbar-thumb {
        margin-right: 2px;
        background: rgba(0, 0, 0, 0);
        border-radius: 5px;
        cursor: pointer;
        transition:background 0.3s
    }

    .touchable .alpha-disable-mobile-slider :not(.slider-container) > .slider-wrapper.posts:hover::-webkit-scrollbar-thumb, .touchable .alpha-disable-mobile-slider :not(.slider-container) > .slider-wrapper.products:hover::-webkit-scrollbar-thumb {
        background:rgba(0, 0, 0, 0.25)
    }
}

.image-gallery figure {
    height:100%
}

.slider-image-gallery figure {
    display:flex
}

.slider-image-gallery img {
    width: 100%;
    object-fit:cover
}

.slider-image-org img {
    width:auto
}

.slider-nav-long-arrow .slider-button {
    font-size:4.5rem
}

.slider-nav-long-arrow .slider-button-prev:before {
    content: ""
}

.slider-nav-long-arrow .slider-button-next:before {
    content: ""
}

.slider-nav-outline .slider-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2em;
    height: 2em;
    border:1px solid #e0dedf
}

.slider-nav-full .slider-button {
    margin: 0;
    top: 0;
    height: 100%;
    transform: none;
    border: 0;
    font-weight: 400;
    font-size: 2.4rem;
    color: var(--alpha-dark-color, #333);
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.8);
    transition:0.4s
}

.slider-nav-full .slider-button:not(.disabled):hover {
    color: var(--alpha-primary-color, #ff9c28);
    background-color:rgba(255, 255, 255, 0.8)
}

.slider-nav-full .slider-button.disabled {
    visibility: hidden;
    opacity:0
}

.slider-nav-full .slider-button-prev {
    left: 0;
    box-shadow:4px 0px 7px -5px rgba(0, 0, 0, 0.2)
}

.slider-nav-full .slider-button-next {
    right: 0;
    box-shadow:-4px 0px 7px -5px rgba(0, 0, 0, 0.2)
}

.slider-nav-full:hover .slider-button-prev {
    left:0
}

.slider-nav-full:hover .slider-button-next {
    right:0
}

@media (min-width: 992px) {
    .slider-nav-outer .slider-button-prev {
        left:-0.5em
    }

    .slider-nav-outer .slider-button-next {
        right:-0.5em
    }
}

@media (min-width: 1360px) {
    .slider-nav-outer .slider-button-prev {
        left:-1.2em
    }

    .slider-nav-outer .slider-button-next {
        right:-1.2em
    }
}

@media (min-width: 1500px) {
    .slider-nav-outer .slider-button-prev {
        left:-2.1em
    }

    .slider-nav-outer .slider-button-next {
        right:-2.1em
    }
}

.slider-nav-top .slider-button {
    position: absolute;
    top: -4.7rem;
    left: auto;
    right: 0.5em;
    font-size:1.6rem
}

.slider-nav-bottom .slider-button {
    position: absolute;
    bottom: -2em;
    top: auto;
    left: auto;
    right:0.5em
}

.slider-nav-fade .slider-button {
    opacity: 0;
    transition:opacity 0.3s, margin 0.3s
}

.slider-nav-fade .slider-button-prev {
    margin-left:-2em
}

.slider-nav-fade .slider-button-next {
    margin-right:-2em
}

.slider-nav-fade.slider-nav-outer .slider-button-prev {
    margin-left:2em
}

.slider-nav-fade.slider-nav-outer .slider-button-next {
    margin-right:2em
}

.slider-nav-fade.slider-nav-full .slider-button-prev {
    margin-left:0
}

.slider-nav-fade.slider-nav-full .slider-button-next {
    margin-right:0
}

.slider-nav-fade:hover .slider-button {
    opacity:1
}

.slider-nav-fade:hover .slider-button.disabled {
    opacity:0.35
}

.slider-nav-fade:hover .slider-button-prev {
    margin-left:0
}

.slider-nav-fade:hover .slider-button-next {
    margin-right:0
}

.slider-dots-number .slider-pagination {
    display: flex;
    counter-reset:count
}

.slider-dots-number .slider-pagination .slider-pagination-bullet {
    display: inline-flex;
    align-items: center;
    height: 0;
    font-size: 14px;
    font-weight: 400;
    transition: width 0.3s;
    opacity:1
}

.slider-dots-number .slider-pagination .slider-pagination-bullet:not(:last-child) {
    margin-right:2.5rem
}

.slider-dots-number .slider-pagination .slider-pagination-bullet.active {
    margin-right: 0.5rem;
    width:auto
}

.slider-dots-number .slider-pagination .slider-pagination-bullet:before {
    counter-increment: count;
    content: counters(count, ".", decimal-leading-zero) ".";
    color: var(--alpha-dim-color, #54524d);
    transition:color 0.5s
}

.slider-dots-number .slider-pagination .slider-pagination-bullet:after {
    content: "";
    width: 8rem;
    height: 1px;
    display: block;
    background: var(--alpha-primary-color, #ff9c28);
    transform: scale(0);
    transform-origin: left;
    transition:transform 1s
}

.slider-dots-number .slider-pagination .slider-pagination-bullet.active:before, .slider-dots-number .slider-pagination .slider-pagination-bullet:hover:before {
    color:var(--alpha-primary-color, #ff9c28)
}

.slider-dots-number .slider-pagination .slider-pagination-bullet.active:before {
    margin-right:0.5rem
}

.slider-dots-number .slider-pagination .slider-pagination-bullet.active:after {
    transform:scale(1)
}

.slider-dots-white .slider-pagination-bullet {
    background: #fff;
    border-color: #fff;
    opacity:0.8
}

.slider-dots-white .slider-pagination-bullet.active {
    background: #fff;
    border-color: #fff;
    opacity:1
}

.slider-dots-grey .slider-pagination-bullet {
    background: #efefef;
    border-color:#efefef
}

.slider-dots-grey .slider-pagination-bullet.active {
    background: #999;
    border-color:#999
}

.slider-dots-dark .slider-pagination-bullet {
    background: #a1a1a1;
    border-color:#a1a1a1
}

.slider-dots-dark .slider-pagination-bullet.active {
    background: #333;
    border-color:#333
}

.slider-dots-inner .slider-pagination {
    bottom:2rem
}

.slider-dots-inner.slider-dots-number .slider-pagination {
    bottom:5.5rem
}

.slider-dots-outer .slider-pagination {
    bottom:-3rem
}

.slider-wrapper .slide-animate {
    transform: translate3d(0, 0, 0) scale(1);
    will-change: filter, transform, opacity;
    visibility: hidden;
    opacity:0
}

.slider-wrapper .slide-animate.animated, .slider-wrapper .slide-animate.appear-animation-visible, .slider-wrapper .slide-animate.show-content {
    visibility: visible;
    opacity:1
}

.slider-full-height .slider-slide {
    height:auto
}

.slider-same-height > .slider-wrapper {
    display:flex
}

.slider-same-height > .slider-wrapper > .slider-slide {
    height:auto
}

.slider-same-height > .slider-wrapper > .slider-slide > :first-child {
    height:100%
}

.slider-container.slider-shadow {
    margin: -20px;
    padding: 20px;
    width: calc(100% + 40px);
    height:auto !important
}

@media (max-width: 575px) {
    .slider-shadow .slider-wrapper {
        margin: -15px;
        padding:15px
    }
}

.slider-top > .slider-wrapper {
    align-items:flex-start
}

.slider-middle > .slider-wrapper {
    align-items:center
}

.slider-bottom > .slider-wrapper {
    align-items:flex-end
}

.slider-thumb-dots {
    flex: 0 0 100%;
    text-align: center;
    margin:-4rem auto 1rem
}

.slider-thumb-dots .slider-pagination-bullet {
    position: relative;
    z-index: 1;
    border-radius: 50%;
    background: transparent;
    border: none;
    opacity: 1;
    padding: 0.3rem;
    width: 8rem;
    height: 8rem;
    vertical-align:middle
}

.slider-thumb-dots .slider-pagination-bullet span {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: block;
    background-image:url(../../images/placeholders/thumb-placeholder.jpg)
}

.slider-thumb-dots .slider-pagination-bullet:hover {
    cursor:pointer
}

.slider-thumb-dots .slider-pagination-bullet {
    margin-right:2.5rem
}

.slider-thumb-dots button.slider-pagination-bullet:last-child {
    margin-right:0
}

.slider-thumb-dots img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit:cover
}

.slider-thumb-dots.dots-bordered .slider-pagination-bullet {
    border: 2px solid var(--alpha-light-color, #ccc);
    transition:border 0.3s
}

.slider-thumb-dots.dots-bordered .slider-pagination-bullet.active, .slider-thumb-dots.dots-bordered .slider-pagination-bullet:hover {
    border-color:var(--alpha-primary-color, #ff9c28)
}

.slider-dots-inner ~ .slider-thumb-dots {
    margin-top:-10rem
}

.slider-thumb-dots.disabled {
    display:none
}

.widget_price_filter form {
    position:relative
}

.price_slider_wrapper {
    width:100%
}

.price_slider_amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.9rem;
    padding-bottom:2rem
}

.price_slider_amount .clear, .price_slider_amount input {
    display:none
}

.price_label {
    color:var(--alpha-dim-color, #54524d)
}

.ui-slider-horizontal {
    height:23px
}

.ui-slider-horizontal:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 10px;
    bottom: 11px;
    background:#e0dedf
}

.ui-slider-horizontal .ui-slider-range {
    top: 10px;
    height:2px
}

.ui-slider {
    position: relative;
    margin:0 0.7rem
}

.ui-slider .ui-slider-range {
    display: block;
    position: absolute;
    z-index: 1;
    font-size: 0.7em;
    border: 0;
    border-radius: 1em;
    background:var(--alpha-primary-color, #ff9c28)
}

.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 1.4rem;
    height: 1.4rem;
    background: #fff;
    border: 1px solid var(--alpha-primary-color, #ff9c28);
    border-radius: 50%;
    cursor: pointer;
    outline: 0;
    top: 4px;
    margin-left:-0.7rem
}

.accordion .collapsed, .accordion .expanding {
    display:none
}

.accordion .card .card-body {
    padding:0 0 3.2rem 0
}

.card {
    border-bottom:1px solid #e0dedf
}

.card:last-child {
    border-bottom:0
}

.card-header {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    color:var(--alpha-dark-color, #333)
}

.card-header a {
    display: flex;
    align-items: center;
    position: relative;
    padding: 2.2rem 0;
    transition:color 0.3s, background-color 0.3s, border-color 0.3s
}

.card-header a .title {
    margin-right:2rem
}

.card-header .toggle-icon {
    font-size:1.4rem
}

.card-header .closed, .card-header .opened {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right:0
}

.collapse .closed, .expand .opened {
    display:none
}

.card-body > .elementor-background-overlay {
    display:none
}

.accordion-simple .card {
    border-top: 1px solid #e0dedf;
    border-bottom:0
}

.accordion-simple .card .card-body {
    padding:0 3rem 2.3rem 4.5rem
}

.accordion-simple .card-header a {
    padding:2.3rem 2.5rem
}

.accordion-simple .closed, .accordion-simple .opened {
    right:2.5rem
}

.accordion-simple .card-body > div {
    position:relative
}

.accordion-simple .card-body > div:before {
    content: "";
    position: absolute;
    left: -2rem;
    width: 2px;
    height: 100%;
    background:#464644
}

.accordion-boxed .card-body, .accordion-boxed .card-header a {
    padding-left: 2.5rem;
    padding-right:2.5rem
}

.accordion-boxed .card-header .closed, .accordion-boxed .card-header .opened {
    right:2.5rem
}

.accordion-border .card {
    border: solid #e0dedf;
    border-width:1px 1px 0
}

.accordion-border .card:last-child {
    border-bottom:1px solid #e0dedf
}

.accordion-border .card .card-body {
    padding:0 2.5rem 2rem 2.5rem
}

.accordion-boxed2 .card {
    border: 0;
    background: #fff;
    box-shadow:0 5px 25px 0 rgba(0, 0, 0, 0.05)
}

.accordion-boxed2 .card:not(:last-child) {
    margin-bottom:20px
}

.accordion-boxed2 .card .card-body {
    padding:0 2.5rem 2rem 2.5rem
}

.accordion-gutter-sm .card:not(:last-child) {
    margin-bottom:2px
}

.alert-round {
    border-radius:3px
}

.alert {
    position: relative;
    padding: 1.4rem 4.5rem 1.4rem 2rem;
    border: 1px solid var(--alpha-dark-color, #333);
    font-size: 1.4rem;
    line-height:1.75
}

.alert strong {
    margin-right: 3px;
    text-transform: uppercase;
    font-weight:600
}

.alert .close-icon {
    width: 1.5rem;
    height:1.5rem
}

.alert .close-icon:before {
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
    height: 1px;
    top: calc(50% - .5px);
    background:var(--alpha-dark-color, #333)
}

.alert .close-icon:after {
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
    width: 1px;
    left: calc(50% - .5px);
    background:var(--alpha-dark-color, #333)
}

.alert .btn-close {
    display: inline-block;
    position: absolute;
    top: 50%;
    margin-top: -0.8rem;
    right: 2rem;
    line-height:0
}

.alert p, .alert ul {
    line-height: 1.85;
    font-size:0.93em
}

.alert-close-top .btn-close {
    top:2.8rem
}

.alert-title {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    margin-bottom:0.6rem
}

.alert-title i {
    margin-right: 0.8rem;
    font-size: 1.8rem;
    vertical-align:text-top
}

.alert-info {
    border-color: #d7e8f8;
    color:#369
}

.alert-info .close-icon:after, .alert-info .close-icon:before {
    background-color:#369
}

.alert-success {
    border-color: #c4df9b;
    color:#b1ca39
}

.alert-success .close-icon:after, .alert-success .close-icon:before {
    background-color:#b1ca39
}

.alert-warning {
    border-color: #fff1d7;
    color:#ffa800
}

.alert-warning .close-icon:after, .alert-warning .close-icon:before {
    background-color:#ffa800
}

.alert-danger {
    border-color: #a94442;
    color:#f12a57
}

.alert-danger .close-icon:after, .alert-danger .close-icon:before {
    background-color:#f12a57
}

.btn-close .close-icon:after, .btn-close .close-icon:before {
    transition:background-color 0.3s
}

.btn-close:hover .close-icon:after, .btn-close:hover .close-icon:before {
    background-color:#000
}

.alert-dark {
    background: var(--alpha-dark-color, #333);
    color:#fff
}

.alert-dark .btn-close .close-icon:after, .alert-dark .btn-close .close-icon:before {
    background-color:#fff
}

.alert-light.alert-info {
    background-color: #d7e8f8;
    border-color:#d7e8f8
}

.alert-light.alert-success {
    background-color: #c4df9b;
    border-color:#c4df9b
}

.alert-light.alert-warning {
    background-color: #fff1d7;
    border-color:#fff1d7
}

.alert-light.alert-danger {
    background-color: #a94442;
    border-color:#a94442
}

.alert-simple {
    background-color: transparent;
    border-style: dashed;
    border-color:#cacbcc
}

.alert-simple.alert-info {
    border-color:#d7e8f8
}

.alert-simple.alert-success {
    border-color:#c4df9b
}

.alert-simple.alert-warning {
    border-color:#fff1d7
}

.alert-simple.alert-danger {
    border-color:#a94442
}

.alert-icon {
    padding:1.5rem 4.5rem 1.5rem 1.9rem
}

.alert-icon > i {
    vertical-align: middle;
    margin-right: 1.2rem;
    line-height: 1;
    font-size: 2.4rem;
    font-weight:600
}

.alert-btn {
    padding:1rem 4rem 1rem 1rem
}

.alert-btn .btn:not(.btn-close) {
    margin-right:1.5rem
}

.maskUp {
    animation-name:maskUp
}

.maskRight {
    animation-name:maskRight
}

.maskDown {
    animation-name:maskDown
}

.maskLeft {
    animation-name:maskLeft
}

.fadeInUpShorter {
    animation-name:fadeInUpShorter
}

.fadeInRightShorter {
    animation-name:fadeInRightShorter
}

.fadeInLeftShorter {
    animation-name:fadeInLeftShorter
}

.fadeInDownShorter {
    animation-name:fadeInDownShorter
}

.blurIn {
    animation-name:blurIn
}

.grayOut {
    animation-name:grayOut
}

.dotPulse {
    animation-name: dotPulse;
    animation-iteration-count: infinite;
    animation-duration:4s
}

.brightIn {
    animation-name:brightIn
}

.appear-animate {
    visibility: hidden;
    opacity:0
}

.appear-animation-visible {
    visibility: visible;
    opacity:1
}

.zoomInShorter {
    animation-name:zoomInShorter
}

.slideZoomIn {
    animation-name:slideZoomIn
}

@keyframes maskUp {
    0% {
        transform:translate(0, 100%)
    }

    to {
        transform:translate(0, 0)
    }
}

@keyframes maskRight {
    0% {
        transform:translate(-100%, 0)
    }

    to {
        transform:translate(0, 0)
    }
}

@keyframes maskDown {
    0% {
        transform:translate(0, -100%)
    }

    to {
        transform:translate(0, 0)
    }
}

@keyframes maskLeft {
    0% {
        transform:translate(100%, 0)
    }

    to {
        transform:translate(0, 0)
    }
}

@keyframes fadeInUpShorter {
    0% {
        opacity: 0;
        transform: translate(0, 50px);
        transform-origin:0 0
    }

    to {
        opacity: 1;
        transform:none
    }
}

@keyframes fadeInRightShorter {
    0% {
        opacity: 0;
        transform: translate(50px, 0);
        transform-origin:0 0
    }

    to {
        opacity: 1;
        transform:none
    }
}

@keyframes fadeInLeftShorter {
    0% {
        opacity: 0;
        transform: translate(-50px, 0);
        transform-origin:0 0
    }

    to {
        opacity: 1;
        transform:none
    }
}

@keyframes fadeInDownShorter {
    0% {
        opacity: 0;
        transform: translate(0, -50px);
        transform-origin:0 0
    }

    to {
        opacity: 1;
        transform:none
    }
}

@keyframes blurIn {
    0% {
        opacity: 0;
        filter: blur(20px);
        transform:scale(1.2)
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform:none
    }
}

@keyframes grayOut {
    0% {
        opacity: 1;
        filter:grayscale(0)
    }

    15% {
        filter:grayscale(100%)
    }

    to {
        opacity: 0;
        filter:grayscale(100%)
    }
}

@keyframes dotPulse {
    0% {
        opacity: 1;
        transform:scale(0.2)
    }

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

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

    to {
        transform:translateZ(0)
    }
}

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

    to {
        transform:translateZ(0)
    }
}

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

    to {
        transform:translateZ(0)
    }
}

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

    to {
        transform:translateZ(0)
    }
}

@keyframes flipInX {
    0% {
        animation-timing-function: ease-in;
        opacity: 0;
        transform:perspective(400px) rotateX(90deg)
    }

    to {
        transform:perspective(400px)
    }
}

@keyframes flipInY {
    0% {
        animation-timing-function: ease-in;
        opacity: 0;
        transform:perspective(400px) rotateY(90deg)
    }

    to {
        transform:perspective(400px)
    }
}

@keyframes flipOutX {
    0% {
        animation-timing-function: ease-out;
        transform:perspective(400px)
    }

    to {
        opacity: 0;
        transform:perspective(400px) rotateX(90deg)
    }
}

@keyframes flipOutY {
    0% {
        animation-timing-function: ease-out;
        transform:perspective(400px)
    }

    to {
        opacity: 0;
        transform:perspective(400px) rotateY(90deg)
    }
}

@keyframes brightIn {
    0% {
        animation-timing-function: ease-in;
        filter:brightness(0%)
    }

    to {
        filter:brightness(100%)
    }
}

@-webkit-keyframes zoomInShorter {
    0% {
        -webkit-transform: scale3d(0.8, 0.8, 0.8);
        opacity: 0;
        transform:scale3d(0.8, 0.8, 0.8)
    }

    50% {
        opacity:1
    }
}

@keyframes zoomInShorter {
    0% {
        -webkit-transform: scale3d(0.8, 0.8, 0.8);
        opacity: 0;
        transform:scale3d(0.8, 0.8, 0.8)
    }

    50% {
        opacity:1
    }
}

@keyframes bounceInUp {
    60%, 75%, 90%, 0%, to {
        animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)
    }

    0% {
        opacity: 0;
        transform:translate3d(0, 3000px, 0)
    }

    60% {
        opacity: 1;
        transform:translate3d(0, -20px, 0)
    }

    75% {
        transform:translate3d(0, 10px, 0)
    }

    90% {
        transform:translate3d(0, -5px, 0)
    }

    to {
        transform:translate3d(0, 0, 0)
    }
}

@keyframes slideZoomIn {
    0% {
        transform: scale3d(1, 1, 1);
        opacity:1
    }

    to {
        transform: scale3d(1.1, 1.1, 1);
        opacity:1
    }
}

@-webkit-keyframes kenBurnsToRight {
    0% {
        transform:scale(1.2)
    }

    to {
        transform:scale(1)
    }
}

@keyframes kenBurnsToRight {
    0% {
        transform:scale(1.2)
    }

    to {
        transform:scale(1)
    }
}

.kenBurnsToRight {
    -webkit-animation-name: kenBurnsToRight;
    animation-name: kenBurnsToRight;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    transform-origin:right
}

@-webkit-keyframes kenBurnsToLeft {
    0% {
        transform:scale(1.2)
    }

    to {
        transform:scale(1)
    }
}

@keyframes kenBurnsToLeft {
    0% {
        transform:scale(1.2)
    }

    to {
        transform:scale(1)
    }
}

.kenBurnsToLeft {
    -webkit-animation-name: kenBurnsToLeft;
    animation-name: kenBurnsToLeft;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    transform-origin:left
}

.kenBurnsToLeftTop {
    -webkit-animation-name: kenBurnsToLeft;
    animation-name: kenBurnsToLeft;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    transform-origin:left top
}

.kenBurnsToRightTop {
    -webkit-animation-name: kenBurnsToRight;
    animation-name: kenBurnsToRight;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    transform-origin:right top
}

.particle-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    backface-visibility:hidden
}

.snowfall {
    background-image: url(../../assets/images/effects/s1.png), url(../../assets/images/effects/s2.png), url(../../assets/images/effects/s3.png);
    animation: snow 10s linear infinite;
    z-index:1
}

@keyframes snow {
    0% {
        background-position:0px 0px, 0px 0px, 0px 0px
    }

    50% {
        background-position:500px 500px, 100px 300px, -200px 250px
    }

    to {
        background-position:400px 800px, 300px 600px, -200px 400px
    }
}

.effect-snow {
    background-image: url(../../assets/images/effects/s4.png), url(../../assets/images/effects/s5.png);
    animation:snowsecond 20s linear infinite
}

@keyframes snowsecond {
    0% {
        background-position:0px 0px, 0px 0px, 0px 0px
    }

    to {
        background-position:500px 1000px, 400px 400px, 300px 300px
    }
}

.sparkle {
    background-image: url(../../assets/images/effects/sparkle1.png), url(../../assets/images/effects/sparkle2.png);
    animation:sparkle 60s linear infinite
}

@keyframes sparkle {
    0% {
        background-position:0px 0px, 0px 0px, 0px 0px
    }

    to {
        background-position:-500px -1000px, -400px -400px, 300px 300px
    }
}

.video-banner .banner-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    text-align:center
}

.posts .wp-video-shortcode {
    height:auto
}

.post-meta > span:last-child {
    margin-right:0
}

.post .btn {
    font-size: 1.4rem;
    font-weight: 400;
    text-transform: capitalize;
    color:var(--alpha-dim-color, #54524d)
}

.post .btn i {
    margin-left:5px
}

.post .btn i:before {
    margin:0
}

.post .post-details > :last-child {
    margin-bottom:0
}

.post.sticky .post-title:after {
    content: "Sticky"
}

.post.format-video .post-title:after {
    content: "Video"
}

.post.format-video .post-title:after, .post.sticky .post-title:after {
    position: relative;
    top: -2px;
    padding: 0 4px;
    margin-left: 5px;
    border-radius: 2px;
    color: #fff;
    background-color: var(--alpha-primary-color, #ff9c28);
    font-size: 0.5em;
    font-weight: 400;
    letter-spacing:0
}

.post .btn-readmore {
    position: relative;
    padding-bottom: 3px;
    text-transform: lowercase;
    transition:color 0.3s, box-shadow 0.3s
}

.post-media {
    position:relative
}

.post-media img {
    display: block;
    width: 100%;
    object-fit:cover
}

.post-media .slider-pagination {
    bottom:2.5rem
}

.post-media .slider-pagination .slider-pagination-bullet span {
    border-color: #fff;
    background-color:transparent
}

.post-media .slider-pagination .slider-pagination-bullet:hover span {
    border-color: #fff;
    background-color:#fff
}

.post-details {
    padding:2.4rem 1rem 3.2rem
}

.post-details.text-center .post-cats, .post-details.text-center .post-meta {
    justify-content:center
}

.post-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-bottom: 1.2rem;
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 1.21;
    overflow: hidden;
    word-wrap: break-word;
    -ms-word-wrap:break-word
}

.post-title a:focus, .post-title a:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.post-title.page-title {
    font-size:3rem
}

.post-content {
    color: var(--alpha-body-color, #777);
    font-size: 1.6rem;
    word-wrap: break-word;
    -ms-word-wrap:break-word
}

.post-content p {
    margin-top: 0;
    margin-bottom: 1.6rem;
    line-height:2.4rem
}

.post-content p + .btn-readmore:focus, .post-content p + .btn-readmore:hover {
    box-shadow:0 1px 0
}

.post-meta {
    margin-bottom: 0.9rem;
    font-size: 1.4rem;
    line-height:1.5
}

.post-meta .post-author + :before {
    content: "-";
    margin:0 4px
}

.post-meta .post-author + .post-share-wrapper:before {
    display:none
}

.post-meta mark {
    transition: inherit;
    background-color:transparent
}

.post-meta a, .post-meta mark {
    color:var(--alpha-dim-color, #54524d)
}

.post-meta a:focus, .post-meta a:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.post-meta > * {
    max-width: 100%;
    margin-bottom: 0.7rem;
    word-wrap: break-word;
    -ms-word-wrap:break-word
}

.post-meta .post-author {
    margin-right: 1rem;
    color: #999;
    font-size:1.3rem
}

.post-meta .post-author a {
    font-weight: 400;
    text-transform:uppercase
}

.post-meta .post-date:not(:last-child) {
    margin-right:1rem
}

.post-meta .comments-link {
    color: #999;
    margin-right:1.6rem
}

.post-meta .comments-link:hover mark {
    color:var(--alpha-primary-color, #ff9c28)
}

.post-meta .comments-link:before {
    content: "";
    display: inline-block;
    margin-right: 0.8rem;
    vertical-align: middle;
    font-family: "panda";
    font-size: 1.16em;
    line-height: 1;
    margin-top:-6px
}

.post-share-wrapper {
    position:relative
}

.post-share-wrapper .social-icons {
    position: absolute;
    flex-direction: column;
    bottom: 50%;
    left: -4px;
    padding: 3px;
    background-color: var(--alpha-dim-color, #54524d);
    visibility: hidden;
    opacity: 0;
    transition:0.3s
}

.post-share-wrapper .social-icon {
    width: 2.8rem;
    height: 2.8rem;
    margin: 0;
    color: #fff;
    font-size:0.75em
}

.post-share-wrapper .social-icon:focus, .post-share-wrapper .social-icon:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.post .post-share-wrapper .social-icon:not(:hover) {
    color:#fff
}

.post-share-wrapper .post-share-icon {
    font-size:1.8rem
}

.post-share-wrapper:hover .social-icons {
    box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.08);
    visibility: visible;
    opacity: 1;
    bottom:100%
}

.post-author img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #e0dedf;
    margin-right:1rem
}

.overlay-zoom:hover .post-author img {
    transform:none
}

.post-author img.d-lazyload {
    padding-top:3rem !important
}

.post-cats {
    margin-bottom: 0.9rem;
    font-size:1.4rem
}

.post-cats a:not(:first-child) {
    margin-left:5px
}

.post-cats a:hover {
    color:var(--alpha-primary-color-hover, #3c78b3)
}

.post-sm .post-details {
    padding:2.2rem 0.3rem 1.6rem
}

.post-cats, .post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items:center
}

.post .mejs-overlay-button {
    background: none;
    border: 2px solid #fff;
    border-radius: 50%;
    font-family: "Font Awesome 5 Free";
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    transition:background 0.3s, color 0.3s, box-shadow 0.3s, opacity 0.3s
}

.post .mejs-overlay-button:hover {
    box-shadow: 0px 0px 0px 15px rgba(255, 255, 255, 0.2);
    background: #fff;
    color:var(--alpha-primary-color, #ff9c28)
}

.post .mejs-overlay-button:before {
    content: "";
    margin-left:4px
}

.posts .post .mejs-overlay-button {
    width: 4rem;
    height: 4rem;
    line-height:3.6rem
}

.post .mejs-overlay-button, .post.post-full .mejs-overlay-button {
    width: 6.8rem;
    height: 6.8rem;
    line-height:6.4rem
}

.post-list .post-media img {
    object-fit: cover;
    height: 100%;
    min-height:100%
}

.post-list .post-details {
    padding:0.6rem 0 0
}

.post-list .post-media {
    display: flex;
    align-self:stretch
}

.post-list .post-media > a {
    width:100%
}

.post-list .post-title {
    margin-bottom:1.4rem
}

.post-list .post-meta {
    margin-bottom:1.7rem
}

.post-list .btn-link {
    font-weight:300
}

.post-list .btn-link i {
    font-size: 18px;
    margin-bottom:3px
}

@media (min-width: 576px) {
    .post-list {
        display: flex;
        align-items:center
    }

    .post-list .post-media {
        width: calc(50%);
        max-width:400px
    }

    .post-list .post-details {
        width: calc(50% - 3rem);
        flex:1
    }
}

@media (min-width: 1200px) {
    .post-list .post-details {
        margin-left:1rem
    }
}

.post-widget {
    display: flex;
    align-items:center
}

.post-widget .post-media {
    width: 8.5rem;
    flex:0 0 8.5rem
}

.post-widget .post-details {
    padding:0
}

.post-widget .post-details:not(:first-child) {
    margin-left:2rem
}

.post-widget .post-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 0;
    white-space: normal;
    text-transform: none;
    font-size: 1.6rem;
    font-weight: 300;
    line-height:1.43
}

.post-widget .post-title > a:not(.btn) {
    color:var(--alpha-heading-color)
}

.post-widget .post-meta {
    margin-bottom: -2px;
    font-size: 1.2rem;
    color: #666;
    text-transform:uppercase
}

ul.post-filters {
    text-transform: capitalize;
    font-weight: 600;
    color:var(--alpha-dark-color, #333)
}

ul.post-filters li {
    margin-left: 1.5rem;
    margin-right:1.5rem
}

.post-filters {
    justify-content:center
}

.post-filters span {
    margin-left: 10px;
    color:#aaa
}

.post-filters li {
    padding: 0;
    margin-right: 0.8rem;
    border-bottom: 2px solid transparent;
    line-height:2.143
}

.posts.grid:not(.masonry) .post-wrap {
    margin-bottom:4rem
}

.posts.grid:not(.masonry) .post {
    display: flex;
    flex-direction: column;
    height:100%
}

.posts.grid:not(.masonry) .post-media {
    flex: 1;
    height:0
}

.posts.grid:not(.masonry) .post-media > a {
    display: block;
    height:100%
}

.posts.grid:not(.masonry) .post-media img {
    height:100%
}

.post-media-carousel .slider-pagination {
    bottom:2.5rem
}

.posts-col .post-wrap, .posts .post-wrap {
    margin-bottom:2rem
}

.thumbnail-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1.2rem;
    text-align:center
}

.post-tags > a, .sidebar .sidebar-content .tagcloud > a, .wp-block-tag-cloud > a.tag-cloud-link:not(.btn) {
    display: inline-block;
    margin: 5px 5px 5px 0;
    padding: 8px 12px 8px;
    font-size: 1.2rem !important;
    font-weight: 400;
    border: 1px solid var(--border-color-light, #e0dedf);
    color: var(--alpha-body-color, #777);
    line-height: 1.35;
    transition: 0.3s;
    text-transform:uppercase
}

.post-tags > a:focus, .post-tags > a:hover, .sidebar .sidebar-content .tagcloud > a:focus, .sidebar .sidebar-content .tagcloud > a:hover, .wp-block-tag-cloud > a.tag-cloud-link:not(.btn):focus, .wp-block-tag-cloud > a.tag-cloud-link:not(.btn):hover {
    color: #fff;
    background-color: var(--alpha-dim-color, #54524d);
    border-color:var(--alpha-dim-color, #54524d)
}

.widget-posts.slider-container {
    position:relative
}

.widget-posts-nav .posts-nav li.active a {
    color:var(--alpha-primary-color, #ff9c28)
}

.post-calendar {
    position: absolute;
    top: 2rem;
    left: 0;
    padding: 0.8rem 1.4rem 0.8rem 1.5rem;
    color: #fff;
    background-color: var(--alpha-dark-color, #333);
    font-size: 1.4rem;
    font-weight: 300;
    text-transform: uppercase;
    line-height:1
}

.post-calendar + .post-details .post-meta {
    display:none
}

.post-calendar:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    border-left: 1rem solid var(--alpha-dark-color, #333);
    border-bottom: 3rem solid transparent;
    transform:translateX(100%)
}

.post .btn-wrapper .btn-readmore {
    display: inline-block;
    padding: 8px 28px 8px;
    font-weight: 400;
    border: 1px solid var(--alpha-dim-color, #54524d);
    color: var(--alpha-dim-color, #54524d);
    letter-spacing: -0.1em;
    transition:0.3s
}

.post .btn-wrapper .btn-readmore:hover {
    border-color: var(--alpha-primary-color, #ff9c28);
    color:var(--alpha-primary-color, #ff9c28)
}

.post-default .post-details {
    padding:5rem 3.5rem 3.5rem
}

.post-default .post-title {
    margin-bottom:1rem
}

.post-default .post-content p {
    margin-bottom:2.1rem
}

.post-default .post-calendar {
    top: 0;
    left: -1px;
    transform:translateY(-50%)
}

.post-plain .post-details {
    padding-left: 0;
    padding-right:0
}

.post-frame .post-details, .post-frame .post-footer {
    border:1px solid #e0dedf
}

.post-frame .post-details:not(:first-child), .post-frame .post-footer:not(:first-child) {
    border-top-width:0
}

.post-frame .post-meta {
    margin-bottom:0
}

.post-frame .post-details {
    padding-bottom: 2.3rem;
    border-bottom-width:0
}

.post-frame .post-footer {
    padding: 2rem 1rem;
    background-color:#f8f8f8
}

.post-overlap .post-details {
    position: relative;
    z-index: 1;
    max-width: calc(100% - 4rem);
    margin-left: auto;
    margin-right: auto;
    margin-top: -6rem;
    background-color:#fff
}

.post-frame .post-content, .post-list .post-content, .post-overlap .post-content, .post-plain .post-content, .post-simple .post-content {
    line-height: 24px;
    color:var(--alpha-dim-color, #54524d)
}

.post-frame .post-content p, .post-list .post-content p, .post-overlap .post-content p, .post-plain .post-content p, .post-simple .post-content p {
    display: inline;
    margin-right:1rem
}

.post-default .post-details, .post-simple .post-details {
    border: 1px solid #e0dedf;
    border-top-width:0
}

@media (min-width: 768px) {
    .post-overlap .post-details, .post-simple .post-details {
        padding-left: 12%;
        padding-right:12%
    }

    .post-overlap .post-details {
        max-width:calc(100% - 6rem)
    }
}

@media (min-width: 992px) {
    .post-frame .post-details, .post-frame .post-footer {
        padding-left: 3rem;
        padding-right:3rem
    }
}

.btn {
    display: inline-block;
    border: 1px solid #eee;
    background-color: #eee;
    color: var(--alpha-dark-color, #333);
    outline: 0;
    border-radius: 0;
    padding: 1.7rem 4rem;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    transition: color 0.3s, border-color 0.3s, background-color 0.3s, box-shadow 0.3s;
    white-space: nowrap;
    cursor:pointer
}

.btn:active, .btn:focus, .btn:hover {
    color: var(--alpha-dark-color, #333);
    border-color: gainsboro;
    background-color:gainsboro
}

.btn i {
    display: inline-block;
    margin-left: 0.4rem;
    line-height: 0;
    vertical-align: middle;
    transition:background 0.3s
}

.btn-solid {
    background-color: #fff;
    border-color: #fff;
    color:var(--alpha-dark-color, #333)
}

.btn-solid:active, .btn-solid:focus, .btn-solid:hover {
    border-color: var(--alpha-dark-color, #333);
    background-color: var(--alpha-dark-color, #333);
    color:#fff
}

.btn-outline {
    border: 1px solid #eee;
    color: var(--alpha-body-color, #777);
    background-color:transparent
}

.btn-outline:active, .btn-outline:focus, .btn-outline:hover {
    border-color: var(--alpha-body-color, #777);
    background-color: var(--alpha-body-color, #777);
    color:#fff
}

.btn-outline.btn-outline-light {
    padding: 1.07em 2.21em;
    border-width:1px
}

.btn-outline.btn-bg {
    color:#fff
}

.btn-default {
    color: var(--alpha-dark-color, #333);
    border-color: var(--alpha-light-color, #ccc);
    background-color:var(--alpha-light-color, #ccc)
}

.btn-default.disabled {
    border-color: var(--alpha-light-color, #ccc);
    background-color:var(--alpha-light-color, #ccc)
}

.btn-default.btn-outline {
    background-color:transparent
}

.btn-default:active, .btn-default:focus, .btn-default:hover {
    color: var(--alpha-dark-color, #333);
    border-color: #e1e1e1;
    background-color:#e1e1e1
}

.btn-icon-right > i {
    margin-left:0.7rem
}

.btn-icon-left > i {
    margin-right:0.7rem
}

.btn-icon > i {
    margin: 0;
    line-height:1
}

.btn-reveal-left i {
    opacity: 0;
    margin-left: -1em;
    transform: translateX(0.5em);
    margin-right: 0;
    transition:transform 0.3s, opacity 0.3s, margin 0.3s
}

.btn-reveal-left:active i, .btn-reveal-left:focus i, .btn-reveal-left:hover i {
    opacity: 1;
    margin-left: 0;
    transform: translateX(0);
    margin-right:0.7rem
}

.btn-reveal-right i {
    opacity: 0;
    margin-right: -1em;
    transform: translateX(-0.5em);
    margin-left: 0;
    transition:transform 0.3s, opacity 0.3s, margin 0.3s
}

.btn-reveal-right:active i, .btn-reveal-right:focus i, .btn-reveal-right:hover i {
    opacity: 1;
    margin-left: 0.7rem;
    transform: translateX(0);
    margin-right:0
}

@keyframes slideLeft {
    0% {
        transform:translateX(0)
    }

    50% {
        transform:translateX(-0.5em)
    }

    to {
        transform:translateX(0)
    }
}

.btn-slide-left:active i, .btn-slide-left:focus i, .btn-slide-left:hover i {
    animation:0.5s ease slideLeft
}

@keyframes slideRight {
    0% {
        transform:translateX(0)
    }

    50% {
        transform:translateX(0.5em)
    }

    to {
        transform:translateX(0)
    }
}

.btn-slide-right:active i, .btn-slide-right:focus i, .btn-slide-right:hover i {
    animation:0.5s ease slideRight
}

@keyframes slideUp {
    0% {
        transform:translateY(0)
    }

    50% {
        transform:translateY(-0.5em)
    }

    to {
        transform:translateY(0)
    }
}

.btn-slide-up:active i, .btn-slide-up:focus i, .btn-slide-up:hover i {
    animation:0.5s ease slideUp
}

@keyframes slideDown {
    0% {
        transform:translateY(0)
    }

    50% {
        transform:translateY(0.5em)
    }

    to {
        transform:translateY(0)
    }
}

.btn-slide-down:active i, .btn-slide-down:focus i, .btn-slide-down:hover i {
    animation:0.5s ease slideDown
}

.btn-infinite:hover i {
    animation-iteration-count:infinite
}

.btn.btn-shadow-lg {
    box-shadow:3px 6px 20px 1px #dcff77
}

.btn.btn-shadow-lg:active, .btn.btn-shadow-lg:focus, .btn.btn-shadow-lg:hover {
    box-shadow:0 13px 20px -10px rgba(0, 0, 0, 0.2)
}

.btn.btn-shadow {
    box-shadow:0px 4px 20px 3px rgba(0, 0, 0, 0.1)
}

.btn.btn-shadow:active, .btn.btn-shadow:focus, .btn.btn-shadow:hover {
    box-shadow:0 15px 20px -15px rgba(0, 0, 0, 0.2)
}

.btn.btn-shadow-sm {
    box-shadow:0px 4px 8px 2px rgba(0, 0, 0, 0.1)
}

.btn.btn-shadow-sm:active, .btn.btn-shadow-sm:focus, .btn.btn-shadow-sm:hover {
    box-shadow:0 17px 20px -20px rgba(0, 0, 0, 0.2)
}

.btn-underline.active:after, .btn-underline:focus:after, .btn-underline:hover:after {
    transform:scaleX(1)
}

.btn-underline:after {
    display: block;
    margin-top: 3px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid;
    transform: scaleX(0);
    transition: transform 0.3s;
    content: ""
}

.btn-underline.sm:after {
    width:42%
}

.btn-underline.lg {
    position:relative
}

.btn-underline.lg:after {
    position: absolute;
    bottom: 0;
    height: 10px;
    background-color: var(--alpha-primary-color, #ff9c28);
    opacity: 0.3;
    border-bottom:0
}

.btn-link {
    padding: 0;
    color: var(--alpha-dark-color, #333);
    border:0
}

.btn-link, .btn-link.active, .btn-link:focus, .btn-link:hover {
    background-color:transparent
}

.btn-load {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1rem;
    margin-bottom:2rem
}

.product-archive + .btn-load {
    margin-top:3rem
}

.btn.disabled, .btn[disabled], .button.disabled {
    background-color: #eee;
    color: var(--alpha-body-color, #777);
    border-color: #eee;
    box-shadow: none;
    cursor:not-allowed
}

.btn.disabled.btn-primary, .btn[disabled].btn-primary, .button.disabled.btn-primary {
    background-color:var(--alpha-primary-color-hover, #3c78b3)
}

.btn.disabled.btn-secondary, .btn[disabled].btn-secondary, .button.disabled.btn-secondary {
    border-color: #eee;
    background-color:#eee
}

.btn.disabled.btn-dim, .btn[disabled].btn-dim, .button.disabled.btn-dim {
    border-color: #eee;
    background-color:#eee
}

.btn-rounded, .btn-rounded:after, .btn-rounded:before {
    border-radius:8px
}

.btn-ellipse, .btn-ellipse:after, .btn-ellipse:before {
    border-radius:100px
}

.btn.btn-block {
    display: block;
    padding-left: 5px;
    padding-right: 5px;
    width: 100%;
    overflow: hidden;
    text-overflow:ellipsis
}

.btn.btn-xl {
    padding: 2rem 4.2rem;
    font-size:2rem
}

.btn.btn-lg {
    padding: 1.95rem 4.8rem;
    font-size:2rem
}

.btn.btn-md {
    padding: 1.3rem 3rem;
    font-size:1.3rem
}

.btn.btn-sm {
    padding: 0.95rem 2.1rem;
    font-size:1.2rem
}

.btn.btn-link {
    padding: 0;
    overflow:visible
}

.btn.btn-border-thin {
    border-width:1px
}

.btn-primary {
    color: #fff;
    border-color: var(--alpha-primary-color, #ff9c28);
    background-color:var(--alpha-primary-color, #ff9c28)
}

.btn-primary:active, .btn-primary:focus, .btn-primary:hover {
    color: #fff;
    border-color: var(--alpha-primary-color-hover, #ff9c28);
    background-color:var(--alpha-primary-color-hover, #ff9c28)
}

.btn-primary.btn-solid {
    color: var(--alpha-primary-color, #ff9c28);
    border-color: #fff;
    background-color:#fff
}

.btn-primary.btn-solid:active, .btn-primary.btn-solid:focus, .btn-primary.btn-solid:hover {
    border-color: var(--alpha-primary-color, #ff9c28);
    background-color: var(--alpha-primary-color, #ff9c28);
    color:#fff
}

.btn-primary.btn-outline {
    color: var(--alpha-primary-color, #ff9c28);
    border-color: var(--alpha-primary-color, #ff9c28);
    background-color:transparent
}

.btn-primary.btn-outline:active, .btn-primary.btn-outline:focus, .btn-primary.btn-outline:hover {
    background-color: var(--alpha-primary-color, #ff9c28);
    color:#fff
}

.btn-primary.btn-link {
    background-color: transparent;
    color:var(--alpha-primary-color, #ff9c28)
}

.btn-primary.btn-link:active, .btn-primary.btn-link:focus, .btn-primary.btn-link:hover {
    color:var(--alpha-primary-color-hover, #ff9c28)
}

.btn-primary.btn-underline:active, .btn-primary.btn-underline:focus, .btn-primary.btn-underline:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.btn-secondary {
    color: #fff;
    border-color: var(--alpha-secondary-color, #54524d);
    background-color:var(--alpha-secondary-color, #54524d)
}

.btn-secondary:active, .btn-secondary:focus, .btn-secondary:hover {
    color: #fff;
    border-color: var(--alpha-secondary-color-hover, #54524d);
    background-color:var(--alpha-secondary-color-hover, #54524d)
}

.btn-secondary.btn-solid {
    color: var(--alpha-secondary-color, #54524d);
    border-color: #fff;
    background-color:#fff
}

.btn-secondary.btn-solid:active, .btn-secondary.btn-solid:focus, .btn-secondary.btn-solid:hover {
    border-color: var(--alpha-secondary-color, #54524d);
    background-color: var(--alpha-secondary-color, #54524d);
    color:#fff
}

.btn-secondary.btn-outline {
    color: var(--alpha-secondary-color, #54524d);
    border-color: var(--alpha-secondary-color, #54524d);
    background-color:transparent
}

.btn-secondary.btn-outline:active, .btn-secondary.btn-outline:focus, .btn-secondary.btn-outline:hover {
    background-color: var(--alpha-secondary-color, #54524d);
    color:#fff
}

.btn-secondary.btn-link {
    background-color: transparent;
    color:var(--alpha-secondary-color, #54524d)
}

.btn-secondary.btn-link:active, .btn-secondary.btn-link:focus, .btn-secondary.btn-link:hover {
    color:var(--alpha-secondary-color-hover, #54524d)
}

.btn-secondary.btn-underline:active, .btn-secondary.btn-underline:focus, .btn-secondary.btn-underline:hover {
    color:var(--alpha-secondary-color, #54524d)
}

.btn-dim {
    color: #fff;
    border-color: var(--alpha-dim-color, #54524d);
    background-color:var(--alpha-dim-color, #54524d)
}

.btn-dim:active, .btn-dim:focus, .btn-dim:hover {
    color: #fff;
    border-color: var(--alpha-dim-color-hover, #666);
    background-color:var(--alpha-dim-color-hover, #666)
}

.btn-dim.btn-solid {
    color: var(--alpha-dim-color, #54524d);
    border-color: #fff;
    background-color:#fff
}

.btn-dim.btn-solid:active, .btn-dim.btn-solid:focus, .btn-dim.btn-solid:hover {
    border-color: var(--alpha-dim-color, #54524d);
    background-color: var(--alpha-dim-color, #54524d);
    color:#fff
}

.btn-dim.btn-outline {
    color: var(--alpha-dim-color, #54524d);
    border-color: var(--alpha-dim-color, #54524d);
    background-color:transparent
}

.btn-dim.btn-outline:active, .btn-dim.btn-outline:focus, .btn-dim.btn-outline:hover {
    background-color: var(--alpha-dim-color, #54524d);
    color:#fff
}

.btn-dim.btn-link {
    background-color: transparent;
    color:var(--alpha-dim-color, #54524d)
}

.btn-dim.btn-link:active, .btn-dim.btn-link:focus, .btn-dim.btn-link:hover {
    color:var(--alpha-dim-color-hover, #666)
}

.btn-dim.btn-underline:active, .btn-dim.btn-underline:focus, .btn-dim.btn-underline:hover {
    color:var(--alpha-dim-color, #54524d)
}

.btn-success {
    color: #fff;
    border-color: #b1ca39;
    background-color:#b1ca39
}

.btn-success:active, .btn-success:focus, .btn-success:hover {
    color: #fff;
    border-color: #c1d561;
    background-color:#c1d561
}

.btn-success.btn-solid {
    color: #b1ca39;
    border-color: #fff;
    background-color:#fff
}

.btn-success.btn-solid:active, .btn-success.btn-solid:focus, .btn-success.btn-solid:hover {
    border-color: #b1ca39;
    background-color: #b1ca39;
    color:#fff
}

.btn-success.btn-outline {
    color: #b1ca39;
    border-color: #b1ca39;
    background-color:transparent
}

.btn-success.btn-outline:active, .btn-success.btn-outline:focus, .btn-success.btn-outline:hover {
    background-color: #b1ca39;
    color:#fff
}

.btn-success.btn-link {
    background-color: transparent;
    color:#b1ca39
}

.btn-success.btn-link:active, .btn-success.btn-link:focus, .btn-success.btn-link:hover {
    color:#c1d561
}

.btn-success.btn-underline:active, .btn-success.btn-underline:focus, .btn-success.btn-underline:hover {
    color:#b1ca39
}

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

.btn-warning:active, .btn-warning:focus, .btn-warning:hover {
    color: #fff;
    border-color: #ffb933;
    background-color:#ffb933
}

.btn-warning.btn-solid {
    color: #ffa800;
    border-color: #fff;
    background-color:#fff
}

.btn-warning.btn-solid:active, .btn-warning.btn-solid:focus, .btn-warning.btn-solid:hover {
    border-color: #ffa800;
    background-color: #ffa800;
    color:#fff
}

.btn-warning.btn-outline {
    color: #ffa800;
    border-color: #ffa800;
    background-color:transparent
}

.btn-warning.btn-outline:active, .btn-warning.btn-outline:focus, .btn-warning.btn-outline:hover {
    background-color: #ffa800;
    color:#fff
}

.btn-warning.btn-link {
    background-color: transparent;
    color:#ffa800
}

.btn-warning.btn-link:active, .btn-warning.btn-link:focus, .btn-warning.btn-link:hover {
    color:#ffb933
}

.btn-warning.btn-underline:active, .btn-warning.btn-underline:focus, .btn-warning.btn-underline:hover {
    color:#ffa800
}

.btn-danger {
    color: #fff;
    border-color: #f12a57;
    background-color:#f12a57
}

.btn-danger:active, .btn-danger:focus, .btn-danger:hover {
    color: #fff;
    border-color: #f45a7d;
    background-color:#f45a7d
}

.btn-danger.btn-solid {
    color: #f12a57;
    border-color: #fff;
    background-color:#fff
}

.btn-danger.btn-solid:active, .btn-danger.btn-solid:focus, .btn-danger.btn-solid:hover {
    border-color: #f12a57;
    background-color: #f12a57;
    color:#fff
}

.btn-danger.btn-outline {
    color: #f12a57;
    border-color: #f12a57;
    background-color:transparent
}

.btn-danger.btn-outline:active, .btn-danger.btn-outline:focus, .btn-danger.btn-outline:hover {
    background-color: #f12a57;
    color:#fff
}

.btn-danger.btn-link {
    background-color: transparent;
    color:#f12a57
}

.btn-danger.btn-link:active, .btn-danger.btn-link:focus, .btn-danger.btn-link:hover {
    color:#f45a7d
}

.btn-danger.btn-underline:active, .btn-danger.btn-underline:focus, .btn-danger.btn-underline:hover {
    color:#f12a57
}

.btn-dark {
    color: #fff;
    border-color: var(--alpha-dark-color, #333);
    background-color:var(--alpha-dark-color, #333)
}

.btn-dark:active, .btn-dark:focus, .btn-dark:hover {
    color: #fff;
    border-color: var(--alpha-dark-color-hover, #454545);
    background-color:var(--alpha-dark-color-hover, #454545)
}

.btn-dark.btn-solid {
    color: var(--alpha-dark-color, #333);
    border-color: #fff;
    background-color:#fff
}

.btn-dark.btn-solid:active, .btn-dark.btn-solid:focus, .btn-dark.btn-solid:hover {
    border-color: var(--alpha-dark-color, #333);
    background-color: var(--alpha-dark-color, #333);
    color:#fff
}

.btn-dark.btn-outline {
    color: var(--alpha-dark-color, #333);
    border-color: var(--alpha-dark-color, #333);
    background-color:transparent
}

.btn-dark.btn-outline:active, .btn-dark.btn-outline:focus, .btn-dark.btn-outline:hover {
    background-color: var(--alpha-dark-color, #333);
    color:#fff
}

.btn-dark.btn-link {
    background-color: transparent;
    color:var(--alpha-dark-color, #333)
}

.btn-dark.btn-link:active, .btn-dark.btn-link:focus, .btn-dark.btn-link:hover {
    color:var(--alpha-dark-color-hover, #454545)
}

.btn-dark.btn-underline:active, .btn-dark.btn-underline:focus, .btn-dark.btn-underline:hover {
    color:var(--alpha-dark-color, #333)
}

.btn-white {
    color: var(--alpha-dark-color, #333);
    background-color: #fff;
    border-color:#fff
}

.btn-white:active, .btn-white:focus, .btn-white:hover {
    color: #fff;
    border-color: var(--alpha-primary-color, #ff9c28);
    background-color:var(--alpha-primary-color, #ff9c28)
}

.btn-white.btn-outline {
    color: #fff;
    background-color: transparent;
    border-color:#fff
}

.btn-white.btn-outline:active, .btn-white.btn-outline:focus, .btn-white.btn-outline:hover {
    color: var(--alpha-primary-color, #ff9c28);
    background-color:#fff
}

.btn-white.btn-link {
    color: #fff;
    background-color:transparent
}

.btn-white.btn-link:active, .btn-white.btn-link:focus, .btn-white.btn-link:hover {
    color: #fff;
    background-color:transparent
}

.btn-video, .btn-video-iframe, .btn-video-player {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    color: #fff;
    background: radial-gradient(rgba(255, 255, 255, 0.4), rgba(117, 111, 100, 0.4));
    border: 3px solid rgba(255, 255, 255, 0.3);
    font-size: 31px;
    transition:0.3s
}

.btn-video-iframe i, .btn-video-player i, .btn-video i {
    margin-left:5px
}

.btn-video-iframe:before, .btn-video-player:before, .btn-video:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 6rem;
    height: 6rem;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    overflow: hidden;
    background-color: transparent;
    transition:0.3s
}

.btn-video-iframe:hover:before, .btn-video-player:hover:before, .btn-video:hover:before {
    width: 7.5rem;
    height: 7.5rem;
    background-color:rgba(255, 255, 255, 0.3)
}

.btn-video-iframe:active, .btn-video-iframe:focus, .btn-video-iframe:hover, .btn-video-player:active, .btn-video-player:focus, .btn-video-player:hover, .btn-video:active, .btn-video:focus, .btn-video:hover {
    text-decoration:none
}

.btn-video i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0.9rem;
    height:6rem
}

@media (max-width: 575px) {
    .btn-video, .btn-video-player, .video-popup .btn-video-iframe {
        width: 7rem;
        height:7rem
    }

    .btn-video-player:before, .btn-video:before, .video-popup .btn-video-iframe:before {
        width: 4.5rem;
        height:4.5rem
    }

    .btn-video i {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 0;
        height:5.1rem
    }
}

.btn-gradient {
    position: relative;
    color: #fff;
    background: linear-gradient(135deg, #edf7fa, #cee3ea);
    border: none;
    transition: background 0.25s, color 0.25s, border 0.25s;
    overflow: hidden;
    vertical-align:middle
}

.btn-gradient:focus, .btn-gradient:hover {
    color:#fff
}

.btn-gradient:after {
    content: "";
    position: absolute;
    top: -50%;
    left: 0%;
    right: 0%;
    bottom: -50%;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 80%);
    transform: skewX(-45deg) translateX(-100%);
    transition:transform 0.8s
}

.btn-gradient:hover:after {
    transform:skewX(-45deg) translateX(100%)
}

.btn-gra-default {
    color:#222
}

.btn-gra-default:hover {
    color:#222
}

.btn-gra-blue {
    background:linear-gradient(135deg, #3b8df1, #5449ff)
}

.btn-gra-orange {
    background:linear-gradient(135deg, #ffa35f, #e95454)
}

.btn-gra-pink {
    background:linear-gradient(135deg, #f85283, #b33c9e)
}

.btn-gra-green {
    background:linear-gradient(135deg, #a0ec69, #87cf47)
}

.btn-gra-dark {
    background:linear-gradient(135deg, #555555, #222222)
}

.product-category {
    position:relative
}

.product-category figure {
    max-width: 100%;
    text-align:center
}

.product-category img {
    display: block;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right:auto
}

.product-category mark {
    color: inherit;
    background: transparent;
    font-size: 1.4rem;
    line-height:1.2
}

.product-category .btn {
    color:inherit
}

.product-category i {
    display: inline-block;
    font-size: 4.2rem;
    color: var(--alpha-body-color, #777);
    margin-bottom: 1.5rem;
    transition:transform 0.3s
}

.product-category.content-left .category-content {
    align-items: flex-start;
    text-align:left
}

.product-category.content-center .category-content {
    align-items: center;
    text-align:center
}

.product-category.content-right .category-content {
    align-items: flex-end;
    text-align:right
}

.woocommerce-loop-category__title {
    margin-bottom: 0.2rem;
    font-size: 1.6rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    color:inherit
}

.woocommerce-loop-category__title a {
    color:inherit
}

.category-wrap {
    margin-bottom:2rem
}

.category-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    transition:background 0.3s
}

.cat-type-absolute .category-content {
    cursor: pointer;
    position: absolute;
    bottom: 0;
    left: 0;
    width: auto;
    min-height:70px
}

.cat-type-banner {
    overflow: hidden;
    color:#fff
}

.cat-type-banner:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(to bottom, rgba(125, 185, 232, 0) 0, #000 100%);
    opacity: 0.75;
    transition: all 0.3s;
    pointer-events: none;
    z-index:1
}

.cat-type-banner .category-content {
    top: auto;
    left: 2.8rem;
    bottom: 2.2rem;
    align-items: flex-start;
    z-index: 1;
    transition: top 0.3s, padding 0.3s;
    min-height:0
}

.cat-type-banner .woocommerce-loop-category__title {
    margin-bottom: 0;
    font-size: 2.4rem;
    text-transform: capitalize;
    transition:line-height 0.2s
}

.cat-type-banner mark {
    display: block;
    opacity: 0;
    font-size: 1.2rem;
    line-height: 0;
    visibility: hidden;
    transition:opacity 0.2s, line-height 0.2s, visibility 0.2s, padding 0.2s
}

.cat-type-banner.active .woocommerce-loop-category__title, .cat-type-banner.active mark, .cat-type-banner:hover .woocommerce-loop-category__title, .cat-type-banner:hover mark {
    line-height:1.3
}

.cat-type-banner.active mark, .cat-type-banner:hover mark {
    visibility: visible;
    opacity:0.6
}

.cat-type-simple figure {
    border: 1px solid #e0dedf;
    transition:border-color 0.3s
}

.cat-type-simple .category-content {
    padding:2.3rem 0
}

.cat-type-simple .category-content mark {
    color:var(--alpha-body-color, #777)
}

.cat-type-simple .woocommerce-loop-category__title {
    margin-bottom: 0.5rem;
    color:var(--alpha-dark-color, #333)
}

.cat-type-simple .woocommerce-loop-category__title:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.cat-type-simple:hover figure {
    border-color:var(--alpha-primary-color, #ff9c28)
}

.creative-grid .cat-type-simple {
    display: flex;
    flex-direction:column
}

.creative-grid .cat-type-simple > a {
    flex:1
}

.cat-type-classic.product {
    color:#fff
}

.cat-type-classic.product .category-content {
    border-radius:0
}

.cat-type-classic mark {
    display: block;
    opacity: 0;
    font-size: 1.2rem;
    line-height: 0;
    visibility: hidden;
    transition:opacity 0.2s, line-height 0.2s, visibility 0.2s, padding 0.2s
}

.cat-type-classic .woocommerce-loop-category__title {
    margin-bottom: 0;
    font-size: 1.4rem;
    transition:line-height 0.2s
}

.cat-type-classic .category-content {
    margin: 0 auto;
    transform: translateY(-50%);
    width: 87%;
    min-height: 70px;
    background-color:#333
}

.cat-type-classic.active .woocommerce-loop-category__title, .cat-type-classic.active mark, .cat-type-classic:hover .woocommerce-loop-category__title, .cat-type-classic:hover mark {
    line-height:1.3
}

.cat-type-classic.active mark, .cat-type-classic:hover mark {
    visibility: visible;
    opacity:0.6
}

.cat-type-ellipse2 figure {
    margin: 0 auto !important;
    width: 16rem;
    border-radius: 50%;
    overflow: hidden;
    border: 0px solid #fff;
    transition:border-width 0.1s, box-shadow 0.2s
}

.cat-type-ellipse2 figure:after {
    display:none
}

.cat-type-ellipse2 img {
    border: 0px solid #fff;
    border-radius: 50%;
    transition:border-width 0.3s
}

.cat-type-ellipse2 .category-content {
    margin-top:2rem
}

.cat-type-ellipse2 .woocommerce-loop-category__title {
    color: var(--alpha-dim-color, #54524d);
    font-size: 1.8rem;
    font-weight: 300;
    text-transform:capitalize
}

.cat-type-ellipse2 .woocommerce-loop-category__title:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.cat-type-ellipse2.active figure, .cat-type-ellipse2:hover figure {
    border-width: 1px;
    border-color:var(--alpha-primary-color, #ff9c28)
}

.cat-type-ellipse2.active img:not(.d-lazyload), .cat-type-ellipse2:hover img:not(.d-lazyload) {
    border-width:10px
}

.cat-type-icon {
    color: var(--alpha-dark-color, #333);
    text-align:center
}

.cat-type-icon > a {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin:0 auto 2.5rem auto
}

.cat-type-icon i {
    font-size: 5rem;
    margin: 0;
    transition:color 0.3s
}

.cat-type-icon .woocommerce-loop-category__title {
    margin: 0;
    color:var(--alpha-dark-color, #333)
}

.cat-type-icon.active a > i, .cat-type-icon:hover a > i {
    color:var(--alpha-primary-color, #ff9c28)
}

.cat-type-icon .active + .category-content .woocommerce-loop-category__title a {
    color:var(--alpha-primary-color, #ff9c28)
}

.filter-categories .active {
    color:var(--alpha-primary-color, #ff9c28)
}

.grid-item > .product-category {
    height:100%
}

.comments {
    position: relative;
    margin-bottom: 2rem;
    padding-top:3.8rem
}

.comments .title {
    font-size: 2.4rem;
    line-height: 1.2;
    color: var(--alpha-dark-color, #333);
    text-transform:capitalize
}

.main-content-wrap + .comments {
    margin-top:2rem
}

.comment-text p:last-child {
    margin-bottom:0
}

#respond #cancel-comment-reply-link {
    float:right
}

.commentlist .children {
    padding-top: 3.2rem;
    margin-left:10rem
}

.commentlist li.comment {
    margin-bottom:4rem
}

.commentlist li.comment:last-child {
    border-bottom-width: 0;
    margin-bottom: 0;
    padding-bottom:0
}

@media (max-width: 767px) {
    .commentlist .children {
        margin-left:1rem
    }
}

.comment_container, div.comment {
    display:flex
}

.comment-reply-link {
    color: var(--alpha-body-color, #777);
    font-weight:400
}

.comment-reply-link:after {
    content: "";
    font-family: "panda";
    margin-left:0.7rem
}

.comment-reply-link:focus, .comment-reply-link:hover {
    color: var(--alpha-primary-color, #ff9c28);
    box-shadow:0 1px 0 var(--alpha-primary-color, #ff9c28)
}

.comment-avatar {
    max-width: 10rem;
    flex: 0 0 10rem;
    margin-right:2rem
}

.comment-avatar img {
    width: 100%;
    height: 10rem;
    object-fit: cover;
    background-color:#ebebeb
}

.comment-name {
    margin-right: 0.5rem;
    margin-bottom: 0.9rem;
    width: calc(100% - 8rem);
    font-size: 1.6rem;
    line-height:1
}

.comment-name a {
    color:var(--alpha-dim-color, #54524d)
}

.comment-date {
    margin-bottom: 2.2rem;
    color: var(--alpha-body-color, #777);
    font-weight: 300;
    line-height:1
}

.comment-text {
    flex: 1;
    position: relative;
    padding-top:9px
}

.comment-action {
    position: absolute;
    top: 0;
    right:0
}

.comment-action a {
    text-transform:uppercase
}

.comment-respond {
    margin-bottom:3rem
}

.comment-respond .comment-reply-title {
    margin-bottom: 0;
    font-size: 2.6rem;
    font-weight: 300;
    line-height:1.1
}

.comment-respond .form-control, .comment-respond textarea {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 100%;
    color: #999;
    border-color: #ebebeb;
    background:#fff
}

.comment-respond label {
    display: block;
    color: var(--alpha-dim-color, #54524d);
    margin-bottom:1rem
}

.comment-respond .form-submit {
    margin-bottom:0
}

.comment-respond .btn-submit {
    padding: 1.9rem 4rem 1.6rem;
    font-weight: 400;
    text-transform:uppercase
}

.comment-respond .comment-form-rating label {
    font-size:1.4rem
}

.comment-respond .comment-form-rating .stars {
    margin-bottom:0.3rem
}

@media (max-width: 575px) {
    .comment-action span {
        display:none
    }
}

.cookies-popup {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-radius: 3px;
    top: 100%;
    width: 100%;
    transition: transform 0.4s;
    z-index:2000
}

.cookies-popup .cookies-info {
    color: #fff;
    opacity:0.8
}

.cookies-popup.show {
    box-shadow: 2px 0px 39px rgba(0, 0, 0, 0.1);
    transform:translateY(-99%)
}

.close-cookie-btn:after, .close-cookie-btn:before {
    content: "";
    width: 15px;
    height: 1px;
    transform: rotateX(45deg);
    background-color:#fff
}

.close-cookie-btn:after {
    transform:rotateX(90deg)
}

.decline-cookie-btn {
    margin-right:1rem
}

@media (max-width: 991px) {
    .cookies-buttons {
        margin-left:2rem
    }
}

@media (max-width: 767px) {
    .cookies-popup .container {
        flex-direction:column
    }

    .cookies-popup .container .cookies-buttons {
        margin-left: 0;
        margin-top:2rem
    }
}

.elementor-counter .elementor-counter-number-wrapper {
    font-size: 60px;
    font-weight:300
}

.elementor-counter .elementor-counter-title {
    font-size: 18px;
    line-height: 1.2;
    margin-top:2.4rem
}

.vertical-counter .elementor-counter {
    display: flex;
    align-items:center
}

.vertical-counter .elementor-counter .elementor-counter-number-wrapper {
    margin-right:1.8rem
}

.vertical-counter .elementor-counter .elementor-counter-title {
    text-align: left;
    margin-top:0
}

.countdown-section {
    min-width: 73px;
    min-height: 73px;
    padding:1.5rem 1rem
}

.countdown-section .countdown-period {
    bottom:0.8rem
}

.product-loop .countdown-section {
    min-width: auto;
    min-height:auto
}

.countdown-label:after {
    content: ":"
}

@media (max-width: 575px) {
    .countdown-section {
        margin-bottom: 1.5rem;
        min-width:50px
    }

    .product-loop .countdown-section {
        margin-bottom: 0;
        min-width:auto
    }
}

.dropdown {
    position:relative
}

.dropdown.show .dropdown-box, .dropdown:hover .dropdown-box {
    visibility: visible;
    opacity: 1;
    top:100%
}

.dropdown.show:after, .dropdown:hover:after {
    visibility: visible;
    opacity: 1;
    top: calc(100% - 20px);
    transform:translate3d(-50%, 0, 0)
}

.dropdown.show .dropdown-box, .dropdown:hover .dropdown-box {
    transform:translate3d(0, 0, 0)
}

.dropdown.show > a, .dropdown:hover > a {
    color:var(--alpha-primary-color, #ff9c28)
}

.dropdown:after {
    content: "";
    position: absolute;
    z-index: 1001;
    left: 50%;
    top: -9999px;
    transform: translate3d(-50%, -8px, 0);
    border: 11px solid transparent;
    border-bottom: 11px solid #fff;
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
    visibility: hidden;
    opacity: 0;
    cursor: pointer;
    pointer-events:none
}

.dropdown a {
    display: flex;
    align-items:center
}

.dropdown > a {
    line-height: 1.1;
    padding:9px 0
}

.dropdown > a:after {
    display: inline-block;
    margin-left: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: 9px;
    line-height: 1;
    content: ""
}

.dropdown li.active > a, .dropdown li:hover > a {
    color:var(--alpha-primary-color, #ff9c28)
}

.dropdown-box {
    position: absolute;
    right: 0;
    top: -9999px;
    margin: 0;
    padding: 0.5rem 0;
    color: var(--alpha-body-color, #777);
    background-color: #fff;
    box-shadow: 0 2px 22px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    visibility: hidden;
    opacity: 0;
    width: 100%;
    transition: transform 0.2s ease-out;
    transform:translate3d(0, -10px, 0)
}

.dropdown-box a {
    padding:0.6rem 1rem
}

.dir-up .dropdown-box {
    transform:translate3d(0, 10px, 0)
}

.elements > div {
    margin-bottom:2rem
}

.elements > div > a {
    display:block
}

.elements > div .element-accordian .element-img {
    background-position:calc(-180px *(1 - 1)) 0
}

.elements > div .element-accordian .element-hover-img {
    background-position:calc(-180px * 1 + 90px) 0
}

.elements > div .element-banner .element-img {
    background-position:calc(-180px *(2 - 1)) 0
}

.elements > div .element-banner .element-hover-img {
    background-position:calc(-180px * 2 + 90px) 0
}

.elements > div .element-blog .element-img {
    background-position:calc(-180px *(3 - 1)) 0
}

.elements > div .element-blog .element-hover-img {
    background-position:calc(-180px * 3 + 90px) 0
}

.elements > div .element-button .element-img {
    background-position:calc(-180px *(4 - 1)) 0
}

.elements > div .element-button .element-hover-img {
    background-position:calc(-180px * 4 + 90px) 0
}

.elements > div .element-cta .element-img {
    background-position:calc(-180px *(5 - 1)) 0
}

.elements > div .element-cta .element-hover-img {
    background-position:calc(-180px * 5 + 90px) 0
}

.elements > div .element-icon-box .element-img {
    background-position:calc(-180px *(6 - 1)) 0
}

.elements > div .element-icon-box .element-hover-img {
    background-position:calc(-180px * 6 + 90px) 0
}

.elements > div .element-portfolio .element-img {
    background-position:calc(-180px *(7 - 1)) 0
}

.elements > div .element-portfolio .element-hover-img {
    background-position:calc(-180px * 7 + 90px) 0
}

.elements > div .element-category .element-img {
    background-position:calc(-180px *(8 - 1)) 0
}

.elements > div .element-category .element-hover-img {
    background-position:calc(-180px * 8 + 90px) 0
}

.elements > div .element-product .element-img {
    background-position:calc(-180px *(9 - 1)) 0
}

.elements > div .element-product .element-hover-img {
    background-position:calc(-180px * 9 + 90px) 0
}

.elements > div .element-tab .element-img {
    background-position:calc(-180px *(10 - 1)) 0
}

.elements > div .element-tab .element-hover-img {
    background-position:calc(-180px * 10 + 90px) 0
}

.elements > div .element-testimonial .element-img {
    background-position:calc(-180px *(11 - 1)) 0
}

.elements > div .element-testimonial .element-hover-img {
    background-position:calc(-180px * 11 + 90px) 0
}

.elements > div .element-title .element-img {
    background-position:calc(-180px *(12 - 1)) 0
}

.elements > div .element-title .element-hover-img {
    background-position:calc(-180px * 12 + 90px) 0
}

.elements > div .element-typography .element-img {
    background-position:calc(-180px *(13 - 1)) 0
}

.elements > div .element-typography .element-hover-img {
    background-position:calc(-180px * 13 + 90px) 0
}

.elements > div .element-video .element-img {
    background-position:calc(-180px *(14 - 1)) 0
}

.elements > div .element-video .element-hover-img {
    background-position:calc(-180px * 14 + 90px) 0
}

.element {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 0 2.4rem;
    border:2px solid #eee
}

.element .element-img {
    width: 90px;
    height: 70px;
    transition:opacity 0.3s, visibility 0.3s
}

.element .element-hover-img {
    position: absolute;
    width: 90px;
    height: 70px;
    left: 50%;
    top: 1.2rem;
    transform: translateX(-50%);
    visibility: hidden;
    opacity: 0;
    transition:opacity 0.3s, visibility 0.3s
}

.element p {
    margin: 0;
    text-align: center;
    color: var(--alpha-dark-color, #333);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.2;
    text-transform:uppercase
}

.alpha-filters ul {
    list-style-type: none;
    margin:0
}

.alpha-filters {
    display:flex
}

.alpha-filters > * {
    margin-bottom:1rem
}

.alpha-filters .btn-filter {
    padding: 0 2em;
    display: inline-flex;
    align-items: center;
    border-radius: 2px;
    justify-content:center
}

.alpha-filters .select-ul-toggle {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--alpha-light-color, #ccc);
    padding: 0.65em 3.05em 0.58em 1.07em;
    margin-bottom: 0;
    font-size: 1.3rem;
    line-height: 1.5;
    font-weight: 400;
    height: 100%;
    text-transform: capitalize;
    border-radius: 2px;
    cursor:pointer
}

.alpha-filters .alpha-filter {
    position:relative
}

.alpha-filters .alpha-filter:before {
    content: "";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 50%;
    right: 1.25em;
    margin-top: 1px;
    transform: translateY(-50%);
    font-size: 1.2rem;
    font-weight: 900;
    z-index:1
}

.alpha-filters ul, .alpha-filters ul:before {
    content: "";
    position: absolute;
    border:1px solid #e0dedf
}

.alpha-filters ul:before {
    top: -6px;
    left: 22px;
    width: 11px;
    height: 11px;
    border-width: 1px 0 0 1px;
    background: #fff;
    transform:rotate(45deg)
}

.alpha-filters .select-ul ul {
    top: 100%;
    z-index: 100;
    width: 21rem;
    margin-top: 1rem;
    padding: 1rem 1.4rem 1rem;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition:opacity 0.3s
}

.alpha-filters .opened ul {
    opacity: 1;
    visibility:visible
}

.alpha-filters ul li {
    border-bottom:1px solid #e0dedf
}

.alpha-filters ul li:last-child {
    border-bottom:none
}

.alpha-filters ul a {
    position: relative;
    display: block;
    padding: 1rem 0 1rem 2.8rem;
    color: var(--alpha-dark-color, #333);
    transition:color 0.4s
}

.alpha-filters ul a:hover {
    color: var(--alpha-primary-color, #ff9c28);
    text-decoration:none
}

.alpha-filters ul a:focus {
    text-decoration:none
}

.alpha-filters ul a:before {
    content: "";
    position: absolute;
    border: 1px solid;
    border-radius: 2px;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 2px;
    margin-right: 5px;
    transform: translateY(-50%);
    color: #999;
    font-size: 0.7em;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    text-align: center;
    text-indent: 1px;
    line-height:16px
}

.alpha-filters .chosen a:before {
    content: "";
    color: #fff;
    background-color: var(--alpha-dark-color, #333);
    border-color:var(--alpha-dark-color, #333)
}

.alpha-filters.align-center {
    justify-content:center
}

@media (max-width: 991px) {
    .alpha-filters {
        flex-wrap:wrap
    }
}

.form .form-control {
    margin-bottom:2rem
}

.form-control {
    display: block;
    width: 100%;
    min-height: 4rem;
    padding: 1.5rem 2rem;
    border: 1px solid #e0dedf;
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 300;
    color: var(--alpha-body-color, #777);
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    outline:0
}

.form-control::placeholder {
    opacity: 1;
    transition:color 0.3s
}

.form-control::-webkit-input-placeholder {
    transition:color 0.3s
}

.form-control::-moz-placeholder {
    transition:color 0.3s
}

.form-control:-ms-input-placeholder {
    transition:color 0.3s
}

.form-control:focus::placeholder {
    color:transparent
}

.form-control:focus::-webkit-input-placeholder {
    color:transparent
}

.form-control:focus::-moz-placeholder {
    color:transparent
}

.form-control:focus::-ms-input-placeholder {
    color:transparent
}

.form-control.form-solid {
    background-color: #fff;
    border: 0;
    color:#8d8d8d
}

textarea {
    font-family: inherit;
    min-width: 100%;
    max-width:100%
}

.form-textarea-control {
    max-height:19rem
}

.custom-input input[type=checkbox] {
    position: absolute;
    opacity: 0;
    -webkit-appearance:none
}

.custom-input input[type=checkbox] + label, .custom-input input[type=checkbox] + span {
    position: relative;
    padding-left: 2.6rem;
    cursor:pointer
}

.custom-input input[type=checkbox] + label:before, .custom-input input[type=checkbox] + span:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 18px;
    height: 18px;
    line-height: 16px;
    border:1px solid var(--alpha-light-color, #ccc)
}

@media (-ms-high-contrast: active),(-ms-high-contrast: none) {
    .custom-input input[type=checkbox] + label:before, .custom-input input[type=checkbox] + span:before {
        line-height:14px
    }
}

.custom-input input[type=checkbox]:checked + label:before, .custom-input input[type=checkbox]:checked + span:before {
    content: "";
    border-color: var(--alpha-dark-color, #333);
    background: var(--alpha-dark-color, #333);
    color: #fff;
    font-size: 9px;
    font-weight: 600;
    font-family: "Font Awesome 5 Free";
    text-align:center
}

.custom-input input[type=radio] {
    position: absolute;
    opacity: 0;
    -webkit-appearance: none;
    z-index:-1
}

.custom-input input[type=radio] + label {
    position: relative;
    padding-left: 2.5rem;
    display: block;
    cursor:pointer
}

.custom-input input[type=radio] + label:before {
    content: "";
    position: absolute;
    border: 1px solid #ccc;
    width: 18px;
    height: 18px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    color: #999;
    font-size: 0.7em;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height:16px
}

.custom-input input[type=radio] + label:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left:5px
}

.custom-input input[type=radio]:checked ~ label:before {
    border-color:var(--alpha-primary-color, #ff9c28)
}

.custom-input input[type=radio]:checked ~ label:after {
    width: 8px;
    height: 8px;
    background-color:var(--alpha-primary-color, #ff9c28)
}

input[type=checkbox], input[type=radio] {
    width: 1.8rem;
    height: 1.8rem;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    -moz-appearance: none;
    color-adjust: exact;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid var(--alpha-light-color, #ccc);
    transition: background-color 0.35s, border-color 0.35s;
    cursor:pointer
}

input[type=checkbox] ~ label, input[type=checkbox] ~ span, input[type=radio] ~ label, input[type=radio] ~ span {
    cursor:pointer
}

input[type=checkbox]:checked {
    background-color: var(--alpha-dark-color, #333);
    border-color: var(--alpha-dark-color, #333);
    color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")
}

input[type=radio] {
    border-radius:50%
}

input[type=radio]:checked {
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%2333'/%3e%3c/svg%3e")
}

select {
    width: 100%;
    height: 40px;
    min-height: auto;
    border: 1px solid #d7d7d7;
    background: #fff url(../images/select-bg.svg) calc(100% - 13.5px) 45%/26px 60px no-repeat !important;
    cursor: pointer;
    padding: 0 1.5rem;
    max-width: 28rem;
    margin: 0;
    font-weight: 300;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance:none
}

.select-box {
    position:relative
}

.select-box select {
    position: relative;
    max-width: 14rem;
    min-width: 8.6rem;
    min-height: auto;
    width: auto;
    height: 100%;
    padding: 8px 35px 8px 20px;
    border: 1px solid #e0dedf;
    color: inherit;
    background-color: transparent;
    font-size: 1.6rem;
    font-family: inherit;
    letter-spacing: inherit;
    text-transform: capitalize;
    z-index: 1;
    -moz-appearance: none;
    -webkit-appearance:none
}

.select-box select option {
    font-weight:300
}

.select-box select:focus {
    outline:none
}

@media (-ms-high-contrast: active),(-ms-high-contrast: none) {
    select::-ms-expand {
        display:none
    }

    select:focus::-ms-value {
        background: transparent;
        color:currentColor
    }
}

input::-webkit-inner-spin-button, input::-webkit-outer-spin-button {
    -webkit-appearance:none
}

.quantity {
    position: relative;
    display: inline-block;
    height: 4rem;
    width:11.6rem
}

.quantity .qty {
    -moz-appearance: textfield;
    width: 100%;
    padding: 0 2rem;
    color: var(--alpha-dim-color, #54524d);
    font-size: 1.5rem;
    text-align: center;
    height: inherit;
    border:1px solid #e0dedf
}

.quantity button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    background: transparent;
    border: none;
    color: var(--alpha-dim-color, #54524d);
    font-size: 1.5rem;
    cursor: pointer;
    right:8.8rem
}

.quantity button:last-child {
    right:1.2rem
}

.input-wrapper input.form-control {
    flex: 1;
    min-width: 40px;
    font-size:1.2rem
}

.input-wrapper-inline {
    display: flex;
    position: relative;
    max-width: 61.3rem;
    width: 100%;
    height:40px
}

.input-wrapper-inline .btn {
    line-height:1
}

.dokan-form-control::placeholder, .form-row .input-text::placeholder {
    color: #999;
    transition:color 0.3s
}

.dokan-form-control::-webkit-input-placeholder, .form-row .input-text::-webkit-input-placeholder {
    color: #999;
    transition:color 0.3s
}

.dokan-form-control::-moz-placeholder, .form-row .input-text::-moz-placeholder {
    color: #999;
    transition:color 0.3s
}

.dokan-form-control:focus::placeholder, .form-row .input-text:focus::placeholder {
    color:transparent
}

.dokan-form-control:focus::-webkit-input-placeholder, .form-row .input-text:focus::-webkit-input-placeholder {
    color:transparent
}

.dokan-form-control:focus::-moz-placeholder, .form-row .input-text:focus::-moz-placeholder {
    color:transparent
}

.form-row {
    line-height:1
}

.form-row .input-text {
    padding: 0.8rem 1.6rem;
    min-height: 5.1rem;
    color: var(--alpha-body-color, #777);
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    transition:background-color 0.3s, border-color 0.3s
}

.form-row .input-text::placeholder {
    color:#666
}

.form-row .input-text:focus {
    border:1px solid #999
}

.form-row textarea {
    padding-top:1.5rem
}

.form-row label:not(.checkbox) {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--alpha-dim-color, #54524d);
    font-size: 1.6rem;
    line-height: 1.7;
    text-transform:capitalize
}

.form-row .required {
    text-decoration:none
}

.hotspot-wrapper.type1 .hotspot {
    color: #fff;
    background-color:var(--alpha-dark-color, #333)
}

.hotspot-wrapper.type1 .hotspot-box {
    width:34rem
}

.hotspot-wrapper.type1:hover .hotspot {
    color: var(--alpha-dark-color, #333);
    background-color:#fff
}

.hotspot-wrapper.type1:hover:before {
    transform: scale(1.7);
    background-color:rgba(51, 51, 51, 0.4)
}

.hotspot-wrapper.type1 .hotspot-box-top:before {
    border-top-color:#fff
}

.hotspot-wrapper.type1 .hotspot-box-bottom:before {
    border-bottom-color:#fff
}

.hotspot-wrapper.type1 .hotspot-box-left:before {
    border-left-color:#fff
}

.hotspot-wrapper.type1 .hotspot-box-right:before {
    border-right-color:#fff
}

.hotspot-wrapper.type1 .product-body {
    padding:1.5rem 0
}

.hotspot-wrapper.type2 .hotspot {
    width: 15px;
    height:15px
}

.hotspot-wrapper.type2 .hotspot-box {
    width:30rem
}

.hotspot-wrapper.type2 .hotspot-box {
    background-color:var(--alpha-dark-color, #333)
}

.hotspot-wrapper.type2 .hotspot-box-top:before {
    border-top-color:var(--alpha-dark-color, #333)
}

.hotspot-wrapper.type2 .hotspot-box-bottom:before {
    border-bottom-color:var(--alpha-dark-color, #333)
}

.hotspot-wrapper.type2 .hotspot-box-left:before {
    border-left-color:var(--alpha-dark-color, #333)
}

.hotspot-wrapper.type2 .hotspot-box-right:before {
    border-right-color:var(--alpha-dark-color, #333)
}

.hotspot-wrapper.type2 .product-title, .hotspot-wrapper.type2 .short-desc {
    color:#fff
}

.hotspot-wrapper.type2 .product-title {
    text-transform: uppercase;
    margin-bottom:0
}

.hotspot-wrapper.type2 .product-body {
    width: 100%;
    padding:0.5rem 1rem
}

.hotspot-wrapper.type2 .short-desc {
    opacity:0.6
}

.hotspot-wrapper.type2:hover .hotspot {
    background-color:var(--alpha-primary-color, #ff9c28)
}

.hotspot-wrapper.type2:hover:before {
    background-color: rgba(255, 255, 255, 0.8);
    transform:scale(2.3)
}

.hotspot-wrapper .hotspot {
    position: relative;
    z-index:10
}

.hotspot-wrapper .hotspot:focus, .hotspot-wrapper .hotspot:hover {
    text-decoration:none
}

.hotspot-wrapper:hover:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius:50%
}

.hotspot-wrapper:hover.type2 .hotspot-box-top {
    transform:translate(-50%, -36px)
}

.hotspot-wrapper:hover.type2 .hotspot-box-bottom {
    transform:translate(-50%, 36px)
}

.hotspot-box {
    z-index:9
}

.hotspot-box .product-widget {
    display:flex
}

.hotspot-box .product-media {
    max-width: 13rem;
    margin-right:2rem
}

.hotspot-box .product-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align:left
}

.hotspot-box .product-title, .hotspot-box .short-desc {
    font-size: 1.6rem;
    white-space:normal
}

.hotspot-box .short-desc p {
    margin-bottom:0
}

.hotspot-box .add_to_cart_button {
    color: var(--alpha-heading-color);
    font-size: 1.4rem;
    font-weight: 400;
    text-transform:uppercase
}

.hotspot-box .add_to_cart_button:after {
    content: "";
    font-family: "panda";
    font-size: 18px;
    font-weight: 400;
    position: relative;
    margin-left:1rem
}

.hotspot-box .add_to_cart_button:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.hotspot-box.hotspot-box:after, .hotspot-box.hotspot-box:before {
    content: "";
    position: absolute;
    z-index: 1000;
    left:50%
}

.hotspot-box.hotspot-box:before {
    margin-left: -10px;
    border:10px solid transparent
}

.hotspot-box.hotspot-box:after {
    left: auto;
    right: 50%;
    border: 50px solid transparent;
    transform:translate(-50%)
}

.hotspot-box.hotspot-box-top:before {
    bottom: 0;
    transform:translateY(95%)
}

.hotspot-box.hotspot-box-bottom:before {
    top: 0;
    transform:translateY(-95%)
}

.hotspot-box.hotspot-box-left:before, .hotspot-box.hotspot-box-right:before {
    margin-left: 0;
    top:50%
}

.hotspot-box.hotspot-box-right:before {
    left: 0;
    right: auto;
    transform:translate(-50%, -50%)
}

.hotspot-box.hotspot-box-left:before {
    right: 0;
    left: auto;
    transform:translate(95%, -50%)
}

.hotspot i {
    margin-bottom:2px
}

@media (max-width: 575px) {
    .hotspot-box {
        display:none
    }
}

.menu-icon {
    display: inline-block;
    color: #fff;
    width:1.7rem
}

.menu-icon:after, .menu-icon:before {
    display: block;
    content: "";
    width:100%
}

.menu-icon:before {
    height: 6px;
    border-top: 2px solid;
    border-bottom:2px solid
}

.menu-icon:after {
    height: 4px;
    border-bottom:2px solid
}

.close-icon {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    transform:rotateZ(45deg)
}

.close-icon:after, .close-icon:before {
    display: block;
    position: absolute;
    background-color: var(--alpha-light-color, #ccc);
    content: ""
}

.close-icon:before {
    height: 2px;
    width: 100%;
    left: 0;
    top:calc(50% - 1px)
}

.close-icon:after {
    height: 100%;
    width: 2px;
    top: 0;
    left:calc(50% - 1px)
}

.minicart-icon {
    display: inline-block;
    position: relative;
    width: 2.5em;
    height: 2.5em;
    margin-top: 1px;
    border: solid 2px;
    border-radius: 2px;
    text-align: center;
    transition:background 0.4s
}

.minicart-icon:before {
    content: "";
    position: absolute;
    top: -0.75em;
    left: 0.585em;
    width: 1em;
    height: 0.5em;
    border-radius: 10px 10px 0 0;
    border: inherit;
    border-bottom: none;
    transition:transform 0.4s
}

.minicart-icon.adding:before {
    transform:rotateZ(30deg) translate(3px, -3px)
}

.minicart-icon2 {
    height: 1.83em;
    transition:color 0.4s
}

.minicart-icon2:before {
    content: "";
    display: block;
    position: absolute;
    top: -0.3em;
    left: 50%;
    transform: translateX(-50%) scale(0.7);
    width: 1.29em;
    height: 1.07em;
    border: solid 2px;
    border-radius: 10px 10px 0 0;
    border-bottom:none
}

.minicart-icon2:after {
    content: "";
    display: inline-block;
    width: 2.5em;
    height: 2.1425em;
    border: solid 2px;
    background-color: transparent;
    border-radius: 0 0 3px 3px;
    transform:scale(0.7)
}

.icon-orders:before {
    content: ""
}

.icon-downloads:before {
    content: ""
}

.icon-addresses:before {
    content: ""
}

.icon-account:before {
    content: ""
}

.icon-wishlist:before {
    content: ""
}

.icon-vendor:before {
    content: ""
}

.icon-logout:before {
    content: ""
}

.elementor .elementor-element.elementor-widget-panda_widget_imagebox .elementor-widget-container .image-box figure {
    margin-bottom:0
}

.image-box figure, .image-box img {
    width:100%
}

.image-box .title {
    font-size: 2.4rem;
    line-height: 1.3;
    text-transform:capitalize
}

.image-box .subtitle {
    font-size: 2rem;
    font-weight: 300;
    text-transform:capitalize
}

.image-box.border figure {
    display:block
}

.image-box.border .image-box-content {
    padding: 3rem 2rem;
    border-width: 0 1px 1px 1px;
    border-style: solid;
    border-color:#e0dedf
}

.image-box.round {
    text-align:center
}

.image-box.round img {
    margin: 0 auto 2rem;
    max-width: 261px;
    min-height: 260px;
    border-radius: 50%;
    object-fit:cover
}

.image-box.inner .content {
    margin-top: 0;
    color: #fff;
    opacity:0.4
}

.image-box.inner .overlay {
    padding-left: 1rem;
    padding-right: 1rem;
    background:rgba(51, 51, 51, 0.8)
}

.image-box.aside {
    display: flex;
    align-items:center
}

.image-box.aside .image-box-content {
    padding:0 0.5rem 0 2.5rem
}

.image-box.aside figure, .image-box.aside img {
    width: 130px;
    height: 130px;
    min-width: 130px;
    object-fit: cover;
    border-radius:50%
}

.image-box.aside .content {
    margin-top:0.5rem
}

.image-box.outer .content {
    margin-top:0
}

.image-box.boxed figure {
    display:block
}

.image-box.boxed .image-box-content {
    padding: 3.2rem 2rem;
    margin: 0 auto;
    width: 90%;
    transform: translateY(-25%);
    background: #fff;
    box-shadow:0 5px 25px rgba(0, 0, 0, 0.1)
}

@media (max-width: 575px) {
    .image-box.aside {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align:center
    }

    .image-box.aside .image-box-content {
        margin-top: 2rem;
        padding:0
    }
}

.image-gallery.row > * {
    padding:var(--alpha-gap)
}

.instagram figure {
    display: block;
    position: relative;
    height: 100%;
    overflow: hidden;
    cursor:pointer
}

.instagram figure:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0;
    transition: opacity 0.3s;
    z-index:1
}

.instagram figure:after {
    content: "";
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(90deg) scale(2);
    font-size: 3rem;
    font-family: panda;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    z-index:1
}

.instagram img {
    display: block;
    width: 100%;
    height:auto
}

.instagram figure:hover:before {
    opacity:0.5
}

.instagram figure:hover:after {
    opacity: 1;
    transform:translate(-50%, -50%) rotate(0deg) scale(1)
}

.minipopup-area {
    position: fixed;
    display: flex;
    flex-direction: column-reverse;
    left: 30px;
    bottom: 30px;
    z-index:6000
}

.minipopup-box {
    width: 30rem;
    margin-top: 2rem;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.4s, transform 0.4s ease-out;
    transform: translateX(-200%);
    font-size:14px
}

.minipopup-box.show {
    opacity: 1;
    transform:translateX(0)
}

.minipopup-box .product {
    font-size:1.3rem
}

.minipopup-box figure.product-media {
    flex-basis: 8rem;
    max-width: 8rem;
    margin-right:1.2rem
}

.minipopup-box div.product-details {
    max-width:calc(100% - 9.2rem)
}

.minipopup-box a.product-title {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--alpha-dark-color, #333);
    font-size: 1.4rem;
    line-height: 1.43;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow:hidden
}

.minipopup-box a.product-title:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.minipopup-box figure {
    max-width:9rem
}

.minipopup-box .btn {
    min-width: 12.5rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow:hidden
}

.minipopup-box .btn + .btn {
    margin-left:0.5rem
}

.minipopup-title {
    font-size: 1.5rem;
    font-weight:600
}

.minipopup-footer {
    display: flex;
    justify-content: space-between;
    margin-top:1.5rem
}

.minipopup-footer .btn {
    border-radius:0
}

@media (max-width: 479px) {
    .minipopup-area {
        left:10px
    }
}

.live-search-list {
    position: absolute;
    margin-top: 3px;
    left: 0;
    top: 100%;
    right: 0;
    border-radius: 3px;
    box-shadow: 0 2px 35px rgba(0, 0, 0, 0.1);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0;
    background: #fff;
    z-index:1058
}

.live-search-list .autocomplete-suggestions {
    max-height: 272px;
    margin: 0.5rem 2rem;
    overflow-y:scroll
}

.live-search-list .autocomplete-suggestions::-webkit-scrollbar {
    width:6px
}

.live-search-list .autocomplete-suggestions::-webkit-scrollbar-thumb {
    background: rgba(194, 194, 194, 0.3);
    border-radius:6px
}

.live-search-list .autocomplete-suggestion {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #ebebeb;
    cursor:pointer
}

.live-search-list .autocomplete-suggestion:last-child {
    border-bottom:none
}

.live-search-list .search-name {
    color: var(--alpha-dark-color, #333);
    word-break:break-word
}

.live-search-list .search-info:hover .search-name {
    color:var(--alpha-primary-color, #ff9c28)
}

.live-search-list .search-price {
    color: var(--alpha-dark-color, #333);
    font-size:1.5rem
}

.live-search-list .search-price del {
    margin-left: 5px;
    color:#999
}

.live-search-list .search-price ins {
    font-weight: 600;
    text-decoration:none
}

.live-search-list img {
    max-width: 60px;
    margin-right:10px
}

.search-wrapper .live-search-list .d-loading {
    position: static;
    min-height: 80px;
    background:#fff
}

.live-search-list .autocomplete-suggestion {
    transition:padding-left 0.3s
}

.live-search-list .autocomplete-selected {
    padding-left:15px
}

.live-search-list .autocomplete-selected .search-name {
    color:var(--alpha-primary-color, #ff9c28)
}

.live-search-list .autocomplete-selected storng {
    font-weight:700
}

.search-wrapper {
    position: relative;
    width:100%
}

.search-wrapper .input-wrapper {
    display: flex;
    align-items: center;
    position:relative
}

.search-wrapper input.form-control {
    padding: 1.1rem;
    height: 4.2rem;
    color: inherit;
    line-height: 1.1;
    border-width:1px 0 1px 1px
}

.search-wrapper form:first-child {
    border:2px solid var(--alpha-border-color, #e5e5e5)
}

.search-wrapper .btn-search {
    padding: 0;
    min-width: 40px;
    height: 4.2rem;
    background-color: transparent;
    border:0
}

.search-wrapper .btn-search i {
    display: block;
    margin:0
}

.search-wrapper .select-box select {
    max-width: 100%;
    width: 100%;
    padding: 0 43px 0 15px;
    border: 0;
    z-index: 1;
    background:none !important
}

.search-wrapper .select-box:before {
    content: "";
    font-family: "panda";
    font-size: 0.8em;
    position: absolute;
    right: 10px;
    top: calc(50% + 1px);
    transform:translateY(-50%)
}

.search-wrapper .select-box:after {
    content: "";
    height: calc(100% - 10px);
    width: 1px;
    background: var(--alpha-border-color, #e5e5e5);
    position: absolute;
    right: -2px;
    top:5px
}

.search-wrapper.hs-toggle form .btn-search {
    border: 1px solid #eee;
    border-left-width:0
}

.search-wrapper.hs-toggle form .select-box {
    padding: 7px 0;
    border: 1px solid #eee;
    border-right-width:0
}

.search-wrapper.hs-toggle form .select-box + input.form-control {
    border-left-width:0
}

.search-wrapper.hs-toggle form input.form-control {
    border-style: solid;
    border-width: 1px 0 1px 1px;
    border-color:#eee
}

.hs-round .input-wrapper {
    border-radius: 2rem;
    overflow:hidden
}

.hs-round input.form-control {
    letter-spacing:0.05em
}

.hs-round input.form-control::placeholder {
    color:#999
}

.hs-expanded .input-wrapper {
    width:100%
}

.hs-expanded .select-box, .hs-expanded .select-box select {
    cursor:pointer
}

.hs-expanded .btn-search {
    padding:3px 8px 0 0
}

.hs-expanded .btn-search:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.hs-expanded input.form-control[type=search] {
    border-left-width:0
}

.hs-simple {
    max-width:100%
}

.hs-simple input.form-control {
    padding: 0 4rem 0 1.5rem;
    font-family: inherit;
    background-color: #fff;
    color: #999;
    font-size:1.4rem
}

.hs-simple .btn-search {
    background: transparent;
    color: var(--alpha-dark-color, #333);
    min-width: 43px;
    font-size:2rem
}

.hs-simple .btn-search:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.hs-overlap {
    position:static
}

.hs-overlap .input-wrapper {
    position: absolute;
    align-items: center;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #fff;
    padding: 0 3rem;
    opacity: 0;
    visibility: hidden;
    transition:opacity 0.3s, visibility 0.3s
}

.hs-overlap .input-wrapper:before {
    content: "";
    position: absolute;
    left: 3rem;
    right: 3rem;
    bottom: 0;
    height: 2px;
    background-color: var(--alpha-border-color-light, #eee);
    transform: scale(0, 1);
    transition:transform 0.8s
}

.hs-overlap input[type=search].form-control {
    max-width: calc(100% - 70px);
    border: 1px solid var(--alpha-border-light-color, #eee);
    border-width: 0 0 2px 0;
    background-color: transparent;
    transform: scale(0, 1);
    transition: transform 0.8s;
    font-size:2.2rem
}

.hs-overlap .btn-search {
    display:none
}

.hs-overlap.show form {
    opacity: 1;
    visibility:visible
}

.hs-overlap.show form:before, .hs-overlap.show input[type=search] {
    transform:scale(1, 1)
}

.hs-close {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5rem;
    opacity: 0;
    visibility: hidden;
    transition:opacity 0.8s cubic-bezier(0.2, 1, 0.3, 1)
}

.hs-close a {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    line-height: 22px;
    z-index:10
}

.hs-close a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    transform: scale(0) translateZ(0);
    transition:all 0.6s cubic-bezier(0.15, 0.2, 0.1, 1)
}

.hs-close .close-wrap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) translateZ(0);
    transform-style: preserve-3d;
    transition: margin 0.2s ease, transform 0.2s ease 1s, opacity 0.3s ease;
    width: 20px;
    height: 20px;
    display: block;
    overflow:hidden
}

.hs-close .close-line {
    position: absolute;
    height: 100%;
    width: 1px;
    background: #fff;
    backface-visibility: hidden;
    border-radius: 5px;
    left: 9px;
    background-color: #000;
    transition: opacity 0.2s ease, background-color 0.2s ease;
    animation-duration: 0.4s;
    animation-timing-function: cubic-bezier(0.52, 0.01, 0.16, 1);
    animation-fill-mode:forwards
}

.hs-close .close-line1 {
    transform:translateY(-30px) translateX(30px) rotate(45deg)
}

.hs-close .close-line2 {
    transform:translateY(-30px) translateX(-30px) rotate(-45deg)
}

.search-wrapper.show .hs-close {
    opacity: 1;
    visibility:visible
}

.search-wrapper.show .hs-close a:before {
    transform:scale(1)
}

.search-wrapper.show .hs-close .close-line1 {
    animation-name: crossRight;
    animation-delay:0.49s
}

.search-wrapper.show .hs-close .close-line2 {
    animation-name: crossLeft;
    animation-delay:0.35s
}

.hs-close:hover .close-line {
    background-color:var(--alpha-primary-color, #ff9c28)
}

@keyframes crossLeft {
    to {
        transform:translateY(0px) translateX(0px) rotate(-45deg)
    }
}

@keyframes crossRight {
    to {
        transform:translateY(0px) translateX(0px) rotate(45deg)
    }
}

.search-toggle {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    transition:color 0.3s
}

.search-toggle span {
    cursor: pointer;
    vertical-align:middle
}

.search-toggle i {
    display: inline-block;
    font-size: 2rem;
    font-weight: 400;
    line-height: 0.9;
    vertical-align:middle
}

.search-toggle i:before {
    margin:0
}

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

.hs-dropdown .search-info {
    text-align:left
}

.hs-dropdown .input-wrapper {
    position: absolute;
    right: -1rem;
    top: 3.5rem;
    padding: 0 2rem;
    height: 8.2rem;
    background-color: #fff;
    box-shadow: 0 3px 35px rgba(0, 0, 0, 0.06);
    visibility: hidden;
    opacity: 0;
    transform: translate3d(0, -10px, 0);
    z-index: 1002;
    transition: transform 0.4s 0.2s, visibility 0.4s 0.2s, opacity 0.4s 0.2s;
    min-width:35rem
}

.hs-dropdown.show .input-wrapper, .hs-dropdown:hover .input-wrapper {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    transition: transform 0.4s;
    opacity:1
}

@media (max-width: 575px) {
    .hs-dropdown .input-wrapper {
        height: 6rem;
        min-width:30rem
    }
}

.hs-fullscreen.show .close-overlay, .hs-fullscreen.show .search-form {
    opacity: 1;
    visibility:visible
}

.hs-fullscreen.show .search-form-wrapper {
    visibility:visible
}

.hs-fullscreen.show .search-form-wrapper:before {
    transform:none
}

.hs-fullscreen .search-form-wrapper form {
    border-width:0 0 2px
}

.hs-fullscreen .search-form-wrapper {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    padding: 7rem 0;
    z-index: 1061;
    overflow: hidden;
    visibility: hidden;
    transition:visibility 0.3s
}

.hs-fullscreen .search-form-wrapper:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: scaleY(0);
    transform-origin: top center;
    transition:transform 0.8s cubic-bezier(0.2, 1, 0.3, 1)
}

.hs-fullscreen .search-inner-wrapper {
    position: relative;
    z-index:10
}

.hs-fullscreen .search-form {
    visibility: hidden;
    opacity: 0;
    transition:visibility 0.3s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.3s cubic-bezier(0.2, 1, 0.3, 1)
}

.hs-fullscreen .close-overlay {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1061;
    opacity: 0;
    visibility: hidden;
    transition:opacity 0.3s, visibility 0.3s
}

.hs-fullscreen .hs-close {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform:none
}

.hs-fullscreen .hs-close .close-wrap {
    left: auto;
    right: 0;
    transform:translateY(-50%)
}

.hs-fullscreen .search-container, .hs-fullscreen .search-form {
    padding-left: 4.5rem;
    padding-right:4.5rem
}

.hs-fullscreen .input-wrapper {
    position:static
}

.hs-fullscreen input.form-control {
    padding: 0;
    font-size: 2.4rem;
    color:#999
}

.hs-fullscreen .search-header {
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top:1rem
}

.hs-fullscreen .btn-search {
    min-width: 0;
    font-size: 2rem;
    color: #222;
    background:transparent
}

.hs-fullscreen .btn-search:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.hs-fullscreen .search-container {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition:max-height 0.8s cubic-bezier(0.13, 0.67, 0.9, 0.9)
}

.hs-fullscreen.results-shown .search-container {
    transition:max-height 0.2s cubic-bezier(0.13, 0.67, 0.9, 0.9)
}

.hs-fullscreen .search-results .posts > li {
    list-style:none
}

.hs-fullscreen .search-results .post-wrap, .hs-fullscreen .search-results .product {
    opacity:0
}

.hs-fullscreen .scrollable {
    overflow-y: auto;
    margin-right: 28px;
    width: calc(100% + 28px);
    padding-right:20px
}

.hs-fullscreen .scrollable::-webkit-scrollbar {
    background: #f5f5f5;
    border-radius: 5px;
    width:8px
}

.hs-fullscreen .scrollable::-webkit-scrollbar-thumb {
    background:#ccc
}

.hs-start.hs-dropdown form {
    left: -1.5rem;
    right:auto
}

.hs-center {
    text-align:center
}

.hs-center form {
    margin-left: auto;
    margin-right:auto
}

.hs-center.hs-dropdown .input-wrapper {
    left: 50%;
    right: auto;
    transform:translate3d(-50%, -10px, 0)
}

.hs-center.hs-dropdown:hover .input-wrapper {
    transform:translate3d(-50%, 0, 0)
}

.hs-end {
    text-align:right
}

.hs-end form {
    margin-left:auto
}

.overlay, .overlay-visible {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    transition:padding 0.3s ease-out, background-color 0.3s, opacity 0.3s
}

.overlay {
    padding-top: 10rem;
    background: rgba(0, 0, 0, 0.3);
    opacity:0
}

a > .overlay {
    cursor:pointer
}

figure:hover .overlay {
    padding-top: 0;
    opacity:1
}

figure:hover .overlay-visible {
    background-color: var(--alpha-primary-color-op-90, rgba(255, 156, 40, 0.9));
    padding-bottom:9rem
}

.overlay-transparent {
    background:transparent
}

.overlay-dark .banner, .overlay-dark figure, .overlay-light .banner, .overlay-light figure {
    position:relative
}

.overlay-dark.banner:after, .overlay-dark > a > figure:after, .overlay-dark > figure:after, .overlay-dark > figure > a:after, .overlay-light.banner:after, .overlay-light > a > figure:after, .overlay-light > figure:after, .overlay-light > figure > a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--alpha-dark-color, #333);
    opacity: 0;
    transition:opacity 0.3s, background 0.3s, transform 0.3s
}

.overlay-dark.banner:hover:after, .overlay-dark:hover > a > figure:after, .overlay-dark:hover > figure:after, .overlay-dark:hover > figure > a:after, .overlay-light.banner:hover:after, .overlay-light:hover > a > figure:after, .overlay-light:hover > figure:after, .overlay-light:hover > figure > a:after {
    opacity:0.2
}

.overlay-dark.banner-fixed:after, .overlay-dark.post > figure:after, .overlay-light.banner-fixed:after, .overlay-light.post > figure:after {
    content:none
}

.overlay-dark.post > figure > a:after, .overlay-light.post > figure > a:after {
    z-index:1
}

.overlay-light.banner:after, .overlay-light > a > figure:after, .overlay-light figure:after, .overlay-light figure > a:after {
    background:var(--alpha-light-color, var(--alpha-light-color, #ccc))
}

.overlay-zoom, .overlay-zoom .post-media, .overlay-zoom figure {
    overflow:hidden
}

.overlay-zoom img {
    transition:transform 0.3s
}

.overlay-zoom:hover img {
    transform:scale(1.08)
}

.overlay-effect-1 figure:after, .overlay-effect-1 figure:before, .overlay-effect-1:after, .overlay-effect-1:before {
    content: "";
    position: absolute;
    opacity:1
}

.overlay-effect-1 figure:before, .overlay-effect-1:before {
    background: rgba(255, 255, 255, 0.3);
    bottom: 0;
    left: 50%;
    right: 51%;
    top:0
}

.overlay-effect-1 figure:after, .overlay-effect-1:after {
    bottom: 50%;
    left: 0;
    right: 0;
    top:50%
}

.overlay-effect-1:hover:after, .overlay-effect-1:hover:before, .overlay-effect-1:hover figure:after, .overlay-effect-1:hover figure:before {
    left: 0;
    right: 0;
    opacity: 0;
    transition:0.5s linear
}

.overlay-effect-2, .overlay-effect-2 figure, .overlay-effect-3, .overlay-effect-3 figure {
    overflow: hidden;
    position:relative
}

.overlay-effect-2 figure:after, .overlay-effect-2 figure:before, .overlay-effect-2:after, .overlay-effect-2:before {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    height: 100%;
    left: 0;
    opacity: 0.4;
    top: 0;
    transition: 0.9s;
    width:100%
}

.overlay-effect-2 figure:before, .overlay-effect-2:before {
    transform:translate(105%, 0%)
}

.overlay-effect-2 figure:after, .overlay-effect-2:after {
    transform:translate(-105%, 0%)
}

.overlay-effect-2:hover:after, .overlay-effect-2:hover:before, .overlay-effect-2:hover figure:after, .overlay-effect-2:hover figure:before {
    opacity: 0;
    transform:none
}

.overlay-effect-3 figure:before, .overlay-effect-3:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 120%;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
    transition: 0.5s linear;
    backface-visibility:hidden
}

.overlay-effect-3:hover:before, .overlay-effect-3:hover figure:before {
    top: 100%;
    left: -100%;
    transform:scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 200%, 0)
}

.overlay-effect-4 figure:after, .overlay-effect-4 figure:before, .overlay-effect-4:after, .overlay-effect-4:before {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
    transition:0.5s
}

.overlay-effect-4 figure:before, .overlay-effect-4:before {
    bottom: 0;
    left: 50%;
    right: 51%;
    top:0
}

.overlay-effect-4 figure:after, .overlay-effect-4:after {
    bottom: 50%;
    left: 0;
    right: 0;
    top:50%
}

.overlay-effect-4:hover:after, .overlay-effect-4:hover:before, .overlay-effect-4:hover figure:after, .overlay-effect-4:hover figure:before {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity:0.5
}

.background-effect-wrapper {
    overflow:hidden
}

.background-effect, .background-effect-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom:0
}

.page-header {
    background-color: var(--alpha-ptb-bg-color);
    background-image: var(--alpha-ptb-bg-image);
    background-repeat: var(--alpha-ptb-bg-repeat);
    background-position: var(--alpha-ptb-bg-position);
    background-size: var(--alpha-ptb-bg-size);
    background-attachment:var(--alpha-ptb-bg-attachment)
}

.page-header .page-title {
    font-family: var(--alpha-ptb-title-font-family, var(--alpha-heading-font-family), var(--alpha-body-font-family)), sans-serif;
    font-weight: var(--alpha-ptb-title-font-weight, 300);
    font-size: var(--alpha-ptb-title-font-size);
    line-height: var(--alpha-ptb-title-line-height, var(--alpha-heading-line-height, var(--alpha-heading-line-height)));
    letter-spacing: var(--alpha-ptb-title-letter-spacing, var(--alpha-heading-letter-spacing, var(--alpha-heading-letter-spacing)));
    text-transform: var(--alpha-ptb-title-text-transform, var(--alpha-heading-text-transform, var(--alpha-heading-text-transform)));
    color: var(--alpha-ptb-title-color, var(--alpha-heading-color, var(--alpha-body-color)));
    margin-bottom:0
}

.page-header .page-subtitle {
    font-family: var(--alpha-ptb-subtitle-font-family), var(--alpha-heading-font-family), var(--alpha-body-font-family), sans-serif;
    font-weight: var(--alpha-ptb-subtitle-font-weight, 400);
    font-size: var(--alpha-ptb-subtitle-font-size);
    line-height: var(--alpha-ptb-subtitle-line-height, var(--alpha-heading-line-height, var(--alpha-body-line-height)));
    letter-spacing: var(--alpha-ptb-subtitle-letter-spacing, var(--alpha-heading-letter-spacing, var(--alpha-body-letter-spacing)));
    text-transform: var(--alpha-ptb-subtitle-text-transform, var(--alpha-heading-text-transform, var(--alpha-body-text-transform)));
    color: var(--alpha-ptb-subtitle-color, var(--alpha-heading-color, var(--alpha-body-color)));
    margin-bottom:0
}

.page-title-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height:var(--alpha-ptb-height)
}

.page-title-bar .breadcrumb {
    margin-top: 1em;
    padding:0
}

.page-title-bar .breadcrumb:first-child {
    margin-top:0
}

.page-title-bar.type-left {
    align-items:flex-start
}

.page-title-bar.type-center {
    text-align:center
}

.breadcrumb-container {
    width: 100%;
    margin: 0 auto;
    min-height:4rem
}

.breadcrumb-container .breadcrumb {
    border-bottom:1px solid #e0dedf
}

.breadcrumb-container li:not(:last-child) {
    color:#999
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 1.25rem 0 1.25rem 0;
    font-family: var(--alpha-ptb-breadcrumb-font-family), var(--alpha-body-font-family), sans-serif;
    font-weight: var(--alpha-ptb-breadcrumb-font-weight, var(--alpha-body-font-weight));
    font-size: var(--alpha-ptb-breadcrumb-font-size, var(--alpha-body-font-size));
    line-height: var(--alpha-ptb-breadcrumb-line-height, var(--alpha-body-line-height));
    letter-spacing: var(--alpha-ptb-breadcrumb-letter-spacing, var(--alpha-body-letter-spacing));
    text-transform: var(--alpha-ptb-breadcrumb-text-transform, var(--alpha-body-text-transform));
    color:var(--alpha-ptb-breadcrumb-color, var(--alpha-body-color))
}

.breadcrumb .delimiter {
    opacity: 0.8;
    margin: 0 0.35em;
    font-size:0.9em
}

.breadcrumb .delimiter i {
    position: relative;
    top:1px
}

.breadcrumb a {
    transition:color 0.3s, opacity 0.3s
}

.breadcrumb a:hover {
    color:var(--alpha-primary-color, var(--alpha-primary-color))
}

.breadcrumb.home-icon > li:first-of-type > a:before {
    font-family: "panda";
    content: ""
}

.breadcrumb_wrapper .breadcrumb {
    color:inherit
}

.type-center .breadcrumb {
    justify-content:center
}

.blog .breadcrumb, .error404 .breadcrumb, .single-post .breadcrumb, .single-product .breadcrumb {
    border:none
}

.breadcrumb-divider-active .breadcrumb {
    border-bottom:1px solid #e0dedf
}

.woo-page-header .breadcrumb {
    border-bottom:0
}

@media (min-width: 992px) {
    .page-title-bar.type-inline {
        justify-content: space-between;
        flex-direction:row
    }

    .page-title-bar.type-inline .breadcrumb {
        margin-top:0
    }
}

@media (max-width: 767px) {
    .page-title-bar .page-title {
        font-size:3rem
    }
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-size:1.8rem
}

.pagination .prev i {
    margin-right:0.5rem
}

.pagination .next i {
    margin-left:0.5rem
}

.pagination-footer {
    clear:both
}

.pagination-footer > .links {
    text-align: center;
    margin:15px 0
}

.pagination-footer .name {
    display: inline-block;
    margin-right:1rem
}

.page-numbers.next, .page-numbers.prev {
    color:var(--alpha-dark-color, #333)
}

.page-numbers, .pagination-footer .links .post-page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    height: 4rem;
    padding: 0 0.3rem;
    line-height: 1;
    border: 1px solid transparent;
    transition: border 0.3s;
    border-radius:3px
}

.page-numbers.current, .page-numbers:hover, .pagination-footer .links .post-page-numbers.current, .pagination-footer .links .post-page-numbers:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.page-numbers.disabled, .pagination-footer .links .post-page-numbers.disabled {
    color: #aaa;
    pointer-events:none
}

.page-numbers:not(:first-child), .pagination-footer .links .post-page-numbers:not(:first-child) {
    margin-left:1rem
}

.page-numbers.dots, .pagination-footer .links .post-page-numbers.dots {
    min-width: auto;
    padding: 0 0 0.8rem;
    border:none
}

.pagination .next, .pagination .prev {
    min-width: 1.8rem;
    padding:0
}

.pagination .next i, .pagination .prev i {
    top:-2px
}

.show-info {
    margin:0
}

.show-info span {
    margin:0 5px
}

.mfp-wrap {
    z-index:3000
}

.mfp-bg {
    z-index: 3000;
    background: #000;
    opacity: 0;
    transition:opacity 0.3s ease-out
}

.mfp-bg.mfp-ready {
    opacity:0.65
}

.mfp-container {
    padding:4rem 2rem
}

.mfp-preloader {
    margin-top:0
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity:0.65
}

.mfp-bg.mfp-removing, .mfp-bg.mfp-removing.mfp-fade {
    opacity:0
}

.mfp-product .product {
    box-shadow:0 10px 20px 5px rgba(0, 0, 0, 0.2)
}

.mfp-ready .product.skeleton-body {
    box-shadow:none
}

.mfp-close {
    transform: rotateZ(45deg);
    transition: transform 0.3s;
    opacity: 1;
    width: 28px;
    height: 28px;
    text-indent:-9999px
}

.mfp-wrap .mfp-close {
    top: 20px;
    right:20px
}

.mfp-content .mfp-close {
    top: -55px;
    right:0
}

.mfp-iframe-holder .mfp-close, .mfp-image-holder .mfp-close {
    top: 15px;
    right:0
}

.mfp-close span {
    display:none
}

.mfp-close:after, .mfp-close:before {
    content: "";
    display: block;
    position: absolute;
    background: #fff;
    width: 1px;
    height: 100%;
    top: 0;
    left:calc(50% - 1px)
}

.mfp-close:before {
    width: 100%;
    height: 1px;
    top: calc(50% - 1px);
    left:0
}

.mfp-close:focus, .mfp-close:hover {
    transform:rotateZ(135deg)
}

.mfp-content > * {
    position: relative;
    margin: auto;
    background: #fff;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
    opacity:0
}

.mfp-ready .mfp-content > * {
    opacity:1
}

.mfp-removing .mfp-content > * {
    opacity:0
}

.login-popup {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding:3.5rem 3rem
}

.login-popup .login, .login-popup .register {
    display:block
}

.login-popup .tab-pane {
    padding-top:2.2rem
}

.login-popup .nav-link {
    padding: 0;
    color: var(--alpha-body-color, #777);
    font-size: 2rem;
    font-weight: 300;
    line-height: 2.45;
    text-transform: capitalize;
    border-bottom:1px solid #e0dedf
}

.login-popup .nav-link:after {
    display:none
}

.login-popup .nav > li {
    margin-bottom:-1px
}

.login-popup .nav > li:not(:last-child) {
    margin-right:1px
}

.login-popup .nav > li.show > a, .login-popup .nav > li > .active {
    color: var(--alpha-dark-color, #333);
    border-color:var(--alpha-primary-color, #ff9c28)
}

.login-popup .form-row .input-text {
    padding: 0.8rem 1.8rem;
    min-height: 5rem;
    letter-spacing:0
}

.login-popup .form-row .form-checkbox {
    margin-bottom: 1.1rem;
    font-size: 1.4rem;
    line-height: 1.4;
    text-transform:none
}

.login-popup .lost_password a {
    color:inherit
}

.woocommerce-form-login .form-row {
    margin-bottom:2rem
}

.woocommerce-form-login p {
    font-size: 1.4rem;
    line-height:1.94
}

.woocommerce-form-login .button {
    padding: 1em 5px;
    min-height: 5.1rem;
    border-color: #333;
    background-color:#333
}

.woocommerce-form-login .button.active, .woocommerce-form-login .button:focus, .woocommerce-form-login .button:hover {
    border-color: #444;
    background-color:#444
}

.woocommerce-form-login .submit-status {
    margin-top:1.5rem
}

@media (max-width: 767px) {
    .login-popup {
        padding:3.5rem 2rem
    }
}

.mfp-login .mfp-preloader {
    max-width: 50rem;
    transform: translateY(-50%);
    width: calc(100% - 42px);
    margin-left: auto;
    margin-right:auto
}

.login-popup .d-loading {
    background:transparent
}

.mfp-login.offcanvas-type .mfp-container {
    padding: 0;
    animation:0.4s ease-out slideInRight
}

.mfp-login.offcanvas-type .mfp-content {
    height:100%
}

.mfp-login.offcanvas-type .mfp-preloader {
    overflow: hidden;
    width: 40rem;
    transform: none;
    height: 100%;
    top: 0;
    right: 0;
    margin: 0;
    left:auto
}

.mfp-login.offcanvas-type .login-popup {
    position: relative;
    width: 37rem;
    height: 100%;
    margin: 0 0 0 auto;
    padding-left: 3rem;
    padding-right: 3rem;
    background: #fff;
    overflow:hidden auto
}

@media (max-width: 575px) {
    .mfp-login.offcanvas-type .login-popup {
        width: 29.5rem;
        padding:2rem
    }
}

.social-login > p {
    display: flex;
    position: relative;
    align-items: center;
    margin-top: -1rem;
    margin-bottom: 2.3rem;
    font-size:1.4rem
}

.social-login > p:after, .social-login > p:before {
    content: "";
    flex: 1;
    height: 1px;
    background:#dfdfdf
}

.social-login > p:before {
    margin-right:2rem
}

.social-login > p:after {
    margin-left:2rem
}

.social-login .social-icon {
    margin: 0.3rem 1.2rem 0.3rem 0;
    width: 36px;
    height: 36px;
    color: #fff;
    font-size: 1.4rem;
    border-radius:0
}

.mfp-alpha .mfp-content {
    width: 100%;
    height: 100%;
    display:inline-flex
}

.mfp-alpha .mfp-container {
    animation-duration: 0.55s;
    animation-fill-mode: none;
    padding:0
}

.mfp-alpha .popup {
    max-width: 90%;
    position: relative;
    margin: 0;
    background:transparent
}

.mfp-alpha .alpha-popup-content {
    display: flex;
    background-color: #fff;
    overflow: hidden;
    height:100%
}

.mfp-alpha .alpha-popup-content > * {
    flex:0 0 100%
}

.mfp-popup-template .mfp-preloader {
    max-width: 60rem;
    transform: translateY(-50%);
    margin-left: auto;
    margin-right: auto;
    height: 39rem;
    background: #fff;
    transition:max-width 0.3s
}

.mfp-video-popup .mfp-content {
    max-width:1000px
}

.mfp-video-popup video {
    width:100%
}

.mfp-figure {
    line-height:normal
}

.mfp-ready + .mfp-product .product {
    opacity:1
}

.mfp-product.mfp-zoom {
    cursor:pointer
}

.mfp-product .mfp-container {
    padding:4rem 2rem 2rem
}

.mfp-product .mfp-content, .mfp-product .mfp-preloader {
    max-width: 116rem;
    width: 100%;
    margin:auto
}

.mfp-product .mfp-preloader {
    transform: translateY(-50%);
    width:calc(100% - 6rem)
}

.mfp-product div.woocommerce-product-gallery {
    margin-bottom:0
}

.mfp-product .product {
    opacity: 0;
    transition: opacity 0.3s;
    background: #fff;
    padding: 4rem 3.8rem 4rem 3rem;
    min-height: 40rem;
    margin-bottom:3rem
}

.mfp-product .product.row {
    width: 100%;
    margin-left: 0;
    margin-right:0
}

.mfp-product .product .woocommerce-product-details__short-description .list-type-o {
    display:none
}

.mfp-product .product .summary .product-links-wrapper > :not(:last-child) {
    margin-right:2.5rem
}

.mfp-product .cart label {
    min-width:5.5rem
}

.mfp-product .quantity-wrapper label {
    display:none
}

.mfp-product .quantity-wrapper .quantity {
    margin-right:1rem
}

.mfp-product .mfp-close {
    position: absolute;
    top: -4rem;
    right:0
}

@media (min-width: 768px) {
    .mfp-product .product-gallery {
        margin-bottom:0
    }

    .mfp-product:not(.mfp-offcanvas) .summary {
        position: absolute;
        overflow-y: auto;
        padding-bottom: 0;
        padding-left: 2rem;
        padding-right: 1rem;
        height: 100%;
        min-height: 360px;
        max-height:858px
    }
}

@media (max-width: 767px) {
    .mfp-product .product {
        padding:2rem 0.5rem
    }

    .mfp-product .summary {
        margin-top: 2rem;
        padding-bottom:1rem
    }
}

.mfp-preloader > .product {
    margin-bottom:1rem
}

.mfp-zoom.mfp-bg, .mfp-zoom .mfp-container {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    transition:all 0.3s ease-out
}

.mfp-zoom.mfp-ready .mfp-container {
    opacity:1
}

.mfp-zoom.mfp-ready.mfp-bg {
    opacity:0.65
}

.mfp-zoom.mfp-removing.mfp-bg, .mfp-zoom.mfp-removing .mfp-container {
    opacity:0
}

.mfp-zoom .mfp-content {
    transform: translate(25%);
    transition:transform 0.35s linear
}

.mfp-zoom.zoom-start3 .mfp-content {
    transform:none
}

.mfp-zoom .mfp-figure {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    clip-path:inset(30px 50% 140px 30px)
}

.mfp-zoom .mfp-figure.vertical {
    clip-path:inset(30px 50% 30px 120px)
}

.mfp-zoom .mfp-content .product {
    opacity: 1;
    height:100%
}

.mfp-zoom .d-loading {
    background:none
}

.mfp-figure:after {
    content:none
}

img.mfp-img {
    padding:0
}

@media (min-width: 992px) {
    .mfp-figure.vertical .col-md-6:first-child {
        overflow:hidden
    }

    .mfp-figure.vertical .mfp-img {
        margin-left: 110px;
        width:calc(100% - 110px)
    }

    .mfp-figure.vertical .thumbs {
        position: absolute;
        top: 0;
        left: 10px;
        width:110px
    }
}

.mfp-figure:not(.vertical) .thumbs {
    display:flex
}

.mfp-figure:not(.vertical) .thumbs > img {
    flex: 0 0 25%;
    max-width:25%
}

.mfp-animated-image {
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.15);
    margin:5px
}

.product-quickview-loading.product {
    padding:2.5rem 1.5rem
}

.product-quickview-loading img {
    width: 100%;
    border:5px solid transparent
}

.product-quickview-loading .product {
    padding:2.5rem
}

.product-quickview-loading .thumbs {
    display:none !important
}

.mfp-image-holder .mfp-close {
    width: 28px;
    top: -30px;
    color: transparent;
    cursor:pointer !important
}

.mfp-anim .summary > * {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.55s cubic-bezier(0.2, 0.75, 0.5, 1), opacity 0.55s cubic-bezier(0.2, 0.75, 0.5, 1);
    transition-delay:0.35s
}

.mfp-anim .summary > :first-child {
    transition-delay:0.05s
}

.mfp-anim .summary > :nth-child(2) {
    transition-delay:0.1s
}

.mfp-anim .summary > :nth-child(3) {
    transition-delay:0.15s
}

.mfp-anim .summary > :nth-child(4) {
    transition-delay:0.2s
}

.mfp-anim .summary > :nth-child(5) {
    transition-delay:0.25s
}

.mfp-anim .summary > :nth-child(6) {
    transition-delay:0.3s
}

.mfp-anim.mfp-anim-finish .summary > * {
    opacity: 1;
    transform:none
}

.mfp-ready + .mfp-offcanvas .mfp-container {
    animation:0.4s ease-out slideInRight
}

.mfp-removing + .mfp-offcanvas .mfp-container {
    animation:0.4s ease-in slideOutRight
}

.mfp-removing + .mfp-offcanvas .mfp-container .mfp-content, .mfp-removing + .mfp-offcanvas .mfp-content > * {
    opacity:1
}

.mfp-offcanvas .mfp-bg {
    transition:0.4s
}

.mfp-offcanvas .mfp-container {
    padding: 0;
    text-align:right
}

.mfp-offcanvas .mfp-content {
    width: 100%;
    height: 100vh;
    overflow-y:auto
}

.mfp-offcanvas .mfp-close {
    position: fixed;
    right: 39rem;
    top: 1.2rem;
    width: 58px;
    height:58px
}

.mfp-offcanvas .mfp-close:after, .mfp-offcanvas .mfp-close:before {
    opacity: 0.6;
    transition:transform 0.3s
}

.mfp-offcanvas .mfp-close:before {
    width: 50%;
    left: 50%;
    transform:translateX(-50%)
}

.mfp-offcanvas .mfp-close:after {
    height: 50%;
    top: 50%;
    transform:translateY(-50%)
}

.mfp-offcanvas .mfp-close:focus, .mfp-offcanvas .mfp-close:hover {
    transform:rotateZ(45deg)
}

.mfp-offcanvas .mfp-close:focus:before, .mfp-offcanvas .mfp-close:hover:before {
    transform:translateX(-50%) rotateZ(-45deg)
}

.mfp-offcanvas .mfp-close:focus:after, .mfp-offcanvas .mfp-close:hover:after {
    transform:translateY(-50%) rotateZ(45deg)
}

.mfp-offcanvas div.woocommerce-product-gallery {
    padding: 0;
    margin-bottom:2rem
}

.mfp-offcanvas .product {
    width: 39rem;
    height: 100%;
    padding: 1.5rem;
    margin: 0 0 0 auto;
    overflow-x: hidden;
    overflow-y:auto
}

.mfp-offcanvas .product .summary .product-links-wrapper > :not(:last-child) {
    margin-right:1rem
}

.mfp-offcanvas .mfp-preloader {
    overflow: hidden;
    width: 40rem;
    transform: none;
    height: 100%;
    top: 0;
    right: 0;
    margin: 0;
    left:auto
}

.mfp-offcanvas .product-single-carousel ~ .slider-button {
    font-size:2.4rem
}

.mfp-offcanvas .product-thumbs-wrap .slider-button {
    width: 2rem;
    font-size:2rem
}

.mfp-offcanvas .product-thumbs-wrap .slider-button-next {
    right:1rem
}

.mfp-offcanvas .product-thumbs-wrap .slider-button-prev {
    left:1rem
}

.mfp-offcanvas .product .woocommerce-product-details__short-description .list-type-o {
    display:none
}

@media (max-width: 575px) {
    .mfp-offcanvas .product {
        width:29.5rem
    }

    .mfp-offcanvas .mfp-close {
        right: 0;
        top:0.5rem
    }
}

.product-video-popup .mfp-content {
    max-width:83rem
}

.product-video-popup video {
    width:100%
}

.reviews-popup {
    max-width: 82rem;
    padding:5rem
}

.reviews-popup .comment-respond {
    margin-bottom:0
}

@media (max-width: 479px) {
    .reviews-popup {
        padding:2rem
    }
}

.review-form-section .review-medias {
    margin-top: 3rem;
    margin-bottom:1rem
}

.review-form-section .file-input {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: auto;
    margin-right: 2rem;
    padding: 0;
    line-height: 0;
    background-repeat: no-repeat;
    background-size:cover
}

.review-form-section .file-input-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 0.42rem;
    background-repeat: no-repeat;
    background-size:cover
}

.review-form-section .btn-action {
    position: absolute;
    right: -10px;
    top: -10px;
    height: 22px;
    width: 22px;
    display: flex;
    justify-content: center;
    line-height: 22px;
    font-size: 10px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition:box-shadow 0.3s
}

.review-form-section .btn-action:hover {
    box-shadow:0 0 5px rgba(0, 0, 0, 0.3)
}

.review-form-section .btn-action:before {
    font-family: "Font Awesome 5 Free";
    font-weight:600
}

.review-form-section input[type=file] {
    width: 0 !important;
    height: 0 !important;
    overflow: hidden;
    opacity:0
}

.review-form-section .btn-upload:before {
    content: ""
}

.review-form-section .btn-remove {
    top: auto;
    bottom: -10px;
    margin-bottom:0
}

.review-form-section .btn-remove:before {
    content: "";
    font-size:12px
}

.review-form-section video {
    width: 100%;
    height: 100%;
    object-fit:cover
}

.offcanvas .offcanvas-overlay {
    position: fixed;
    left: 0;
    width: 100vw;
    top: -10vh;
    height: 120vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition:opacity 0.3s, visibility 0.3s
}

.offcanvas .offcanvas-content {
    padding: 3rem;
    width: 34rem;
    max-width: 95vw;
    position: fixed;
    top: 0;
    right: 0;
    height: 110vh;
    min-width: auto;
    opacity: 1;
    visibility: visible;
    transition: transform 0.6s;
    transform: translateX(100%);
    z-index: 9999;
    background:#fff
}

.offcanvas.opened .offcanvas-overlay {
    visibility: visible;
    opacity:1
}

.offcanvas.opened .offcanvas-content {
    transform:translateX(0)
}

.equal-height .product {
    height:100%
}

.product-shadow {
    transition:box-shadow 0.3s
}

.product-shadow .product-details, .product-shadow .product-details .product-action {
    padding-left: 1.8rem;
    padding-right:1.8rem
}

.product-shadow:hover {
    box-shadow:0px 0px 20px 0px rgba(100, 100, 100, 0.1)
}

.product-label-round .product-label {
    padding: 0.5rem 1.1rem;
    border-radius:1rem
}

.text-center .product-details {
    padding-left: 0.5rem;
    padding-right:0.5rem
}

.products .short-desc {
    font-size: 1.3rem;
    line-height: 1.625;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow:hidden
}

.product-wrap {
    font-size: 1rem;
    margin-bottom:2rem
}

.product-wrap.grid-item {
    margin-bottom:0
}

.load-more-products .product-wrap {
    margin-bottom:0.5rem
}

li > .product {
    position: relative;
    transition:0.3s
}

li > .product:hover .product-action, li > .product:hover .product-action-vertical {
    visibility: visible;
    opacity:1
}

.product-media:hover img:last-of-type {
    opacity:1
}

.products .product {
    text-align:left
}

.product.content-center {
    text-align:center
}

.product.content-right {
    text-align:right
}

.product-media {
    position: relative;
    margin-bottom: 0;
    transition:box-shadow 0.3s
}

.product-media img {
    display: block;
    width: 100%;
    height: auto;
    transition:opacity 0.5s
}

.product-media img:last-of-type {
    position: absolute;
    opacity: 0;
    left: 0;
    right: 0;
    top: 0;
    object-fit: cover;
    will-change:opacity
}

.product-media img:first-child {
    position: relative;
    opacity:1
}

.product-label-group {
    position: absolute;
    left: 2rem;
    top: 2rem;
    max-width: 11rem;
    display: flex;
    flex-direction: column;
    align-items:flex-start
}

.product-label {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    text-transform: capitalize;
    text-align:center
}

.product-label.label-featured {
    color:var(--alpha-success-color, #b1ca39)
}

.product-label.label-new {
    color:var(--alpha-secondary-color, #54524d)
}

.product-label.label-sale {
    color:var(--alpha-dim-color, #54524d)
}

.product-label.label-stock {
    color:var(--alpha-light-color, #ccc)
}

.product-label.label-img {
    padding:0
}

.btn-quickview:not(.btn-outline) {
    border: 0;
    cursor:pointer
}

.product-action-vertical .btn-product-icon {
    background-color:transparent
}

.product-loop .btn-product-icon {
    position: relative;
    display: block;
    width: 2.0625em;
    height: 2.0625em;
    line-height: 2em;
    margin-bottom: 0.5rem;
    color: var(--alpha-dim-color, #54524d);
    font-size: 1.8em;
    transition: border-color 0.3s, color 0.3s, background-color 0.3s;
    overflow:hidden
}

.product-loop .btn-product-icon.yith-wcwl-add-to-wishlist a:before, .product-loop .btn-product-icon:before {
    float: left;
    width: 100%;
    text-indent: 0;
    text-align:center
}

.product-loop .btn-product-icon.yith-wcwl-add-to-wishlist a {
    font-size: 1.13em;
    color: inherit;
    transition:none
}

.product-loop .btn-product-icon:hover {
    border-color: #9a9a9a;
    color: #ededed;
    background-color:#9a9a9a
}

.product-loop .product-cat + .btn-product-icon.yith-wcwl-add-to-wishlist a {
    font-size:1em
}

.product-loop.content-right .btn-product-icon:before {
    float:right
}

.product-media .btn-product-icon {
    border-radius:50%
}

.btn-product-icon.btn-quickview:before {
    content: "";
    font-family: "panda";
    font-weight: 400;
    position: relative;
    top:-1px
}

.btn-product-icon.add_to_cart_button:before {
    content: "";
    font-family: "panda";
    font-weight: 400;
    position: relative;
    top:0
}

.btn-product-icon.product_read_more:before, .btn-product-icon.product_type_variable:before {
    content: "";
    font-family: "panda";
    font-weight: 400;
    position: relative;
    top:1px
}

.outofstock a.btn-product-icon {
    text-indent:-9999px
}

.outofstock a.btn-product-icon:before {
    content: "";
    font-family: "panda";
    font-weight: 400;
    position: relative;
    top:-1px
}

.btn-product {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 1.05em 0 1.05em;
    background-color: var(--alpha-dim-color, #54524d);
    color: #fff;
    font-family: inherit;
    font-size: 1.6em;
    font-weight: 300;
    line-height: 1.2;
    text-align: center;
    transition:opacity 0.3s
}

.product-media .btn-product {
    opacity: 0.8;
    transition:opacity 0.3s
}

.product-media .btn-product:hover {
    opacity:1
}

.product-action-vertical {
    position: absolute;
    top: 15px;
    right: 15px;
    transition: opacity 0.3s, visibility 0.3s;
    opacity: 0;
    visibility:hidden
}

.product-action {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background-color: transparent;
    z-index: 1;
    transition: opacity 0.3s, visibility 0.3s;
    opacity: 0;
    visibility:hidden
}

.product .action-panel {
    background-color: #fff;
    box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.08);
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    min-width: 150px;
    padding: 7px 5px 12px;
    transition:opacity 0.3s, visibility 0.3s, bottom 0.3s
}

.product .action-panel .btn-product-icon {
    margin: 0;
    width: 2.3em;
    border: none;
    color: var(--alpha-dim-color, #54524d);
    background-color:transparent
}

.product .action-panel .btn-product-icon.yith-wcwl-add-to-wishlist a:before, .product .action-panel .btn-product-icon:before {
    top: 0;
    line-height:2.25em
}

.product .action-panel .btn-product-icon.add_to_cart_button:not(.product_type_variable):before {
    top:1px
}

.product .action-panel .btn-product-icon.product_read_more:before, .product .action-panel .btn-product-icon.product_type_variable:before {
    font-size:1.1em
}

.product .action-panel .btn-product-icon.yith-wcwl-add-to-wishlist a, .product .action-panel a.btn-product-icon.compare:before {
    position: relative;
    top:1px
}

.product .action-panel a.btn-product-icon.compare:before {
    font-size: 1.2em;
    line-height:2em
}

.product .action-panel .btn-product-icon.yith-wcwl-add-to-wishlist a {
    font-size:1.05em
}

.product .action-panel .btn-product-icon:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.product .action-panel .d-loading.small i {
    top:calc(50% - 6px)
}

.products .product:hover .action-panel {
    bottom:20px
}

.product-cat {
    overflow: hidden;
    padding-right: 4rem;
    margin-bottom: 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    color:#999
}

.product-cat a:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.products .woocommerce-loop-product__title {
    padding-right:4rem
}

.products .content-center .woocommerce-loop-product__title {
    padding-left: 2rem;
    padding-right:2rem
}

.products .content-right .woocommerce-loop-product__title {
    padding-left: 4rem;
    padding-right:0
}

.woocommerce-loop-product__title {
    margin-bottom: 0;
    color: var(--alpha-dim-color, #54524d);
    font-family: inherit;
    font-size: 1.6em;
    font-weight: 300;
    line-height:1.4
}

.woocommerce-loop-product__title a {
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    max-width:100%
}

.woocommerce-loop-product__title a:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.price {
    display: inline-flex;
    flex-wrap: wrap;
    margin-bottom: 0.6rem;
    font-size: 2.2em;
    font-weight: 400;
    color:var(--alpha-dim-color, #54524d)
}

.price del {
    margin-right: 8px;
    font-size: 1.6rem;
    font-weight:300
}

.price ins {
    text-decoration:none
}

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

.product-attr {
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
    font-size: 1.4rem;
    text-transform:lowercase
}

.product-attr span {
    display: block;
    margin-bottom:0.6rem
}

.woocommerce-product-rating {
    display: flex;
    align-items: center;
    margin-left: 1px;
    line-height: 1.1;
    margin-bottom: 0.9rem;
    font-size: 1.2rem;
    white-space: nowrap;
    text-overflow:ellipsis
}

.woocommerce-product-rating .star-rating {
    margin-left: -0.5em;
    letter-spacing: 0.27em;
    text-indent:0.5em
}

.woocommerce-product-rating .star-rating span:after {
    text-indent:0.5em
}

.woocommerce-product-rating:hover a {
    color:var(--alpha-primary-color, #ff9c28)
}

.products .woocommerce-product-rating {
    justify-content:flex-start
}

.content-center .woocommerce-product-rating {
    justify-content:center
}

.content-right .woocommerce-product-rating {
    justify-content:flex-end
}

.star-rating {
    display: inline-block;
    position: relative;
    margin-right: 0.2rem;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
    margin-left: -0.2em;
    cursor:pointer
}

.star-rating:before {
    font-family: "panda";
    content: "" "" "" "" "";
    color:#ccc
}

.star-rating:hover .tooltiptext {
    visibility: visible;
    opacity:1
}

.star-rating span {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    text-align: left;
    text-indent:-9999rem
}

.star-rating span:after {
    font-family: "panda";
    content: "" "" "" "" "";
    text-indent: 0.2em;
    position: absolute;
    left: 0;
    color:var(--alpha-primary-color, #ff9c28)
}

.avg-rating-container .star-rating span:after {
    text-indent:0.2em
}

.star-rating .tooltiptext {
    left: 50%;
    top: auto;
    bottom: 150%;
    text-indent: 0;
    overflow: initial;
    letter-spacing:0
}

.star-rating .tooltiptext:after {
    float: none;
    content: "";
    left:inherit
}

.star-rating + a {
    margin: 2px 0 0;
    font-size: 1.2em;
    line-height: 1.1;
    color: #999;
    text-transform: capitalize;
    overflow: hidden;
    text-overflow:ellipsis
}

.star-rating + a:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.ratings-container + .product-variations {
    margin-top:-5px
}

.product-variations > * {
    margin: 3px 10px 7px 0;
    padding: 0 1.75rem;
    background-color: transparent;
    font-size: 1.2rem;
    font-weight: 400;
    font-family: inherit;
    text-transform: uppercase;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    min-width: 3.4rem;
    height: 3.4rem;
    color: var(--alpha-dim-color, #54524d);
    border: 1px solid #e0dedf;
    transition:0.3s
}

.product-variations > :last-child {
    margin-right:0
}

.product-variations .color {
    border:0
}

.product-variations > :hover, .product-variations > .active {
    color: #fff;
    background-color: var(--alpha-dim-color, #54524d);
    border:1px solid var(--alpha-dim-color, #54524d)
}

.product-variations .color, .product-variations .image {
    position: relative;
    font-size:0
}

.product-variations .color:before, .product-variations .image:before {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    bottom: 0;
    top:0
}

.product-loop .product-variations {
    display:block
}

.product-loop .product-variations + .short-desc {
    margin-top:1rem
}

.product-details .product-action, .product-hide-details .product-action {
    position: relative;
    visibility: visible;
    opacity:1
}

.product-details .btn-product-icon, .product-hide-details .btn-product-icon {
    width: 3rem;
    height: 3.5rem;
    line-height: 3.5rem;
    margin: 0 0 0 1.5rem;
    color: var(--alpha-dim-color, #54524d);
    background-color: transparent;
    transition:color 0.3s, background-color 0.3s, visibility 0.3s
}

.product-details .btn-product-icon + .btn-product-icon, .product-hide-details .btn-product-icon + .btn-product-icon {
    margin-left:0.8rem
}

.product-details .btn-product-icon i, .product-hide-details .btn-product-icon i {
    font-size:1.2em
}

.product-details .btn-product-icon:hover, .product-hide-details .btn-product-icon:hover {
    color: var(--alpha-primary-color, #ff9c28);
    background-color:transparent
}

.product-details .btn-product, .product-hide-details .btn-product {
    flex: 1;
    min-width: 9.5rem;
    max-width: 14.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 4.2rem;
    line-height: 4.2rem;
    font-size: 1.3em;
    font-weight: 400;
    text-transform: uppercase;
    transition: color 0.3s, background-color 0.3s, border-color 0.3s;
    z-index: 1;
    color: #fff;
    background-color:#444
}

.product-details {
    position: relative;
    padding-top: 2.4rem;
    padding-bottom:2rem
}

.product-details > .yith-wcwl-add-to-wishlist.btn-product-icon {
    overflow: visible;
    position: absolute;
    top: 2.5rem;
    right: 0;
    z-index: 1;
    width: auto;
    height: auto;
    color: #999;
    background: none;
    font-size: 1.6em;
    line-height:1
}

.content-right .product-details > .yith-wcwl-add-to-wishlist.btn-product-icon {
    right: auto;
    left: 0;
    margin:0 0.8rem 0 0
}

.product-details > .yith-wcwl-add-to-wishlist a:before {
    display: block;
    transition:transform 0.3s
}

.product-details > .yith-wcwl-add-to-wishlist a:hover {
    color: var(--alpha-primary-color, #ff9c28);
    background:none
}

.product-details > .yith-wcwl-add-to-wishlist a:hover:before {
    transform:rotateY(180deg)
}

.product-shadow .product-details > .yith-wcwl-add-to-wishlist.btn-product-icon {
    right:1.8rem
}

.product-details > :last-child {
    margin-bottom:0
}

.scheduled-product .product .product-details {
    padding-top: 3.2rem;
    padding-bottom: 1.2rem;
    background:#f8f8f8
}

.scheduled-product .product .product-details .woocommerce-loop-product__title {
    font-size:1.8rem
}

.scheduled-product .product .product-details .price {
    font-size:2.6rem
}

.scheduled-product .product .product-details .price del {
    font-size:2rem
}

.product-loop .yith-wcwl-add-to-wishlist a span, .product-loop .yith-wcwl-icon {
    display:none
}

a.btn-product-icon.compare:before {
    font-family: "panda";
    content: "";
    font-size: 1.25em;
    color:inherit
}

.summary .btn-product-icon.compare:before {
    font-size:1.8em
}

.product .compare.added:before {
    content: ""
}

@media (-ms-high-contrast: active),(-ms-high-contrast: none) {
    .product-details .add_to_cart_button, .product-hide-details .add_to_cart_button {
        flex:0 0 12.3rem
    }
}

@media (-ms-high-contrast: active) and(max-width: 575px),(-ms-high-contrast: none) and(max-width: 575px) {
    .product-details .add_to_cart_button, .product-hide-details .add_to_cart_button {
        flex:0 0 9.5rem
    }
}

.product-default:not(.product-with-qty) .product-details .btn-product {
    max-width:100%
}

.product-with-qty .price {
    margin-bottom:1.5rem
}

.product-with-qty .product-media .product-action {
    padding: 1.4rem 0.5rem;
    background-color:#fff
}

li > .product-with-qty:hover .product-media .product-action {
    opacity:0.6
}

li > .product-with-qty:hover .product-media .product-action:hover {
    opacity:1
}

.product-with-qty .btn-quickview, .product-with-qty .yith-wcwl-add-to-wishlist {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 50%;
    height: auto;
    font-size: 1.4em;
    font-weight: 300;
    line-height: 2rem;
    background: transparent;
    border-radius:0
}

.product-with-qty .btn-quickview:hover, .product-with-qty .yith-wcwl-add-to-wishlist:hover {
    color: var(--alpha-primary-color, #ff9c28);
    border-color: transparent;
    background-color:transparent
}

.product-with-qty .yith-wcwl-add-to-wishlist a span {
    position: relative;
    display: inline-block;
    top: 2px;
    max-width: 87px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow:hidden
}

.product-with-qty .btn-quickview:before, .product-with-qty .yith-wcwl-add-to-wishlist a:before {
    margin-right:0.7rem
}

.product-with-qty .yith-wcwl-add-to-wishlist a {
    display: flex;
    color:var(--alpha-dim-color, #54524d)
}

.product-with-qty .yith-wcwl-add-to-wishlist a:before {
    font-size:1.3em
}

.product-with-qty .yith-wcwl-add-to-wishlist a.active, .product-with-qty .yith-wcwl-add-to-wishlist a:focus, .product-with-qty .yith-wcwl-add-to-wishlist a:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.product-with-qty .yith-wcwl-add-to-wishlist.btn-product-icon a {
    font-size:1em
}

.product-with-qty .yith-wcwl-add-to-wishlist.btn-product-icon a:before {
    width:auto
}

.product-with-qty .btn-quickview {
    top:2px
}

.product-with-qty .btn-quickview:before {
    width: auto;
    font-size:1.1em
}

.product-with-qty .product-media .product-action .btn-quickview {
    border-left:1px solid #ebebeb
}

.product-with-qty .quantity {
    margin-right: 2rem;
    align-items: center;
    line-height: 1;
    width: 7.8rem;
    height:auto
}

.product-with-qty .quantity .qty {
    padding: 0;
    width: 3.2rem;
    font-size: 1.2rem;
    border:none
}

.product-with-qty .quantity-minus, .product-with-qty .quantity-plus {
    display: flex;
    align-items: center;
    justify-content: center;
    right: 5.5rem;
    width: 23px;
    height: 23px;
    background: #f8f8f8;
    transition:background 0.3s, color 0.3s
}

.product-with-qty .product-details .quantity-plus {
    right:0
}

.product-with-qty .quantity-minus:hover, .product-with-qty .quantity-plus:hover {
    background: var(--alpha-primary-color, #ff9c28);
    color:#fff
}

.product-cart-popup .price {
    margin-bottom: 0;
    opacity: 1;
    transition:opacity 0.3s
}

.product-cart-popup .product-details .product-action .btn-product {
    display: block;
    flex: none;
    min-width: 0;
    height: auto;
    padding: 0;
    color: var(--alpha-primary-color, #ff9c28);
    line-height: 1.6;
    background:transparent
}

.product-cart-popup .product-details .product-action .btn-product:after {
    content: "";
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 3px;
    border-top: 1px solid;
    border-bottom: 2px solid;
    transform: scaleX(0);
    transition:transform 0.3s
}

.product-cart-popup .product-details .product-action .btn-product:hover:after {
    transform:scaleX(1)
}

.product-cart-popup .product-hide-details {
    position: absolute;
    opacity: 0;
    bottom: -1rem;
    padding: 0;
    transition:opacity 0.3s, bottom 0.3s, background-color 0.3s
}

.product-cart-popup.product-boxed .price + .product-hide-details {
    bottom:0
}

.product-cart-popup.content-center .product-hide-details {
    left: 0;
    right:0
}

.product-cart-popup:hover .product-details .price + .product-hide-details {
    bottom: 0;
    opacity:1
}

.product-cart-popup:hover .product-details .woocommerce-product-rating + .product-hide-details {
    bottom: 0.5rem;
    left: 1rem;
    right: 1rem;
    opacity: 1;
    background-color:#fff
}

.product-cart-popup:hover .product-details .woocommerce-loop-product__title + .product-hide-details {
    position: relative;
    bottom: 0;
    opacity:1
}

.product-cart-popup:hover.product-boxed .price + .product-hide-details {
    bottom:1rem
}

.product-cart-popup:hover .price {
    opacity:0
}

.product-cart-popup:hover .product-details .alpha-sold-by-container + .product-hide-details {
    bottom: 1.8rem;
    opacity:1
}

.product-cart-popup.product-catalog.no-hide-price:hover .price {
    opacity:1
}

@media (max-width: 479px) {
    .product-with-qty .quantity {
        margin-right:0.5rem
    }

    .product-with-qty .quantity button {
        padding:8px 6px
    }

    .product-with-qty .quantity input {
        width:36px
    }

    .quantity {
        width:9rem
    }

    .quantity button {
        right:6.8rem
    }

    .quantity button:last-child {
        right:0.8rem
    }
}

.product-classic .btn-product {
    display: block;
    padding: 0 0.5em;
    color: var(--alpha-dim-color, #54524d);
    background-color: transparent;
    border:1px solid var(--alpha-dim-color, #54524d)
}

.product-classic .btn-product-icon {
    transform: translateX(-200%);
    opacity: 0;
    visibility: hidden;
    transition:transform 0.3s, opacity 0.3s, visibility 0.3s, color 0.3s, background-color 0.3s, border-color 0.3s
}

.product-classic .compare {
    transition:transform 0.5s, opacity 0.5s, visibility 0.5s, color 0.3s, background-color 0.3s, border-color 0.3s
}

.product-classic.content-center .btn-product-icon {
    transform: translateX(200%);
    transition:transform 0.4s, opacity 0.3s, visibility 0.3s, color 0.3s, background-color 0.3s, border-color 0.3s
}

.product-classic.content-center .btn-quickview {
    transform:translateX(-200%)
}

.product-classic.content-right .btn-product-icon {
    transform: translateX(200%);
    transition:transform 0.5s, opacity 0.5s, visibility 0.5s, color 0.3s, background-color 0.3s, border-color 0.3s
}

.product-classic.content-right .compare {
    transition:transform 0.3s, opacity 0.3s, visibility 0.3s, color 0.3s, background-color 0.3s, border-color 0.3s
}

.product-classic.content-center .yith-wcwl-add-to-wishlist, .product-classic.content-right .btn-product-icon {
    margin:0 1.3rem 0 0
}

.product-classic .product-action-vertical .btn-product-icon {
    transform:none
}

.product-classic:hover .btn-product-icon {
    transform: none;
    opacity: 1;
    visibility:visible
}

.product .btn-product:hover {
    color: #fff;
    background-color:var(--alpha-dim-color, #54524d)
}

.product-slideup {
    z-index:1
}

.product-slideup .product-details {
    padding-bottom: 1rem;
    background-color: #fff;
    transition:transform 0.3s
}

.product-slideup .product-action {
    position: absolute;
    top: 100%;
    bottom: auto;
    background-color: #fff;
    visibility: hidden;
    opacity: 0;
    transition:transform 0.3s, visibility 0.3s, opacity 0.3s
}

.product-slideup:hover .product-action, .product-slideup:hover .product-details {
    transform:translateY(-60px)
}

.product-boxed {
    padding: 0.9rem;
    border: 1px solid #e0dedf;
    background-color:#fff
}

.product-boxed .product-details {
    padding:1.8rem 1rem 1rem
}

.product-boxed.product-slideup .product-hide-details .product-action {
    padding:0 2rem 2rem
}

.product-boxed:hover {
    box-shadow:0 5px 30px rgba(0, 0, 0, 0.05)
}

.alpha-sold-by-container {
    font-size:1.2rem
}

.alpha-sold-by-container > * :not(a) {
    color:var(--alpha-body-color, #777)
}

.product-overlay .product-media:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 34, 34, 0.6);
    opacity: 0;
    z-index: 1;
    transition:opacity 0.3s
}

.product-overlay .product-details {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    opacity: 0;
    z-index: 1;
    transform: translateY(-50%);
    margin-top:10px
}

.product-overlay .product-action-vertical {
    z-index:2
}

.product-overlay .product-action-vertical, .product-overlay .product-details {
    transition:opacity 0.3s, margin 0.3s
}

.product-overlay .product-action-vertical .btn-product-icon {
    color: #fff;
    background-color: transparent;
    border:none
}

.product-overlay .product-details .woocommerce-loop-product__title {
    white-space: normal;
    padding-left: 1rem;
    padding-right:1rem
}

.product-overlay .price, .product-overlay .woocommerce-loop-product__title {
    color:#fff
}

.product-overlay .woocommerce-loop-product__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break:break-word
}

.product-overlay .product-cat, .product-overlay .star-rating + a, .product-overlay .star-rating:before {
    color:var(--alpha-light-color, #ccc)
}

.product-overlay .product-hide-details {
    padding:0 2rem 2rem
}

.product-overlay .product-details .btn-product, .product-overlay .product-hide-details .btn-product {
    background-color: transparent;
    color: #fff;
    border:1px solid
}

.product-overlay .product-details .btn-product:hover, .product-overlay .product-hide-details .btn-product:hover {
    color: var(--alpha-dark-color, #333);
    background-color: #fff;
    border-color:#fff
}

.product-overlay .product-cat a:hover, .product-overlay .woocommerce-loop-product__title a:hover {
    color: #fff;
    text-decoration:underline
}

.product-overlay:hover .product-media:before {
    opacity:1
}

.product-overlay:hover .product-details {
    opacity:1
}

.product-overlay:hover .product-action-vertical, .product-overlay:hover .product-details {
    margin:0
}

.product-overlay .alpha-sold-by-container span {
    color:#fff
}

.product-overlay .alpha-sold-by-container a {
    color:#fff
}

.product-overlay .alpha-sold-by-container a:hover {
    text-decoration:underline
}

.product-details-popup .product-label-group {
    left: auto;
    right:2rem
}

.product-list .star-rating + a {
    font-size:1em
}

.product-list .quantity-wrapper {
    margin-right:1rem
}

.product-list .btn-product-icon {
    transform: translateX(-200%);
    opacity: 0;
    visibility: hidden;
    transition:transform 0.3s, opacity 0.3s, visibility 0.3s
}

.product-list .btn-product-icon.btn-quickview {
    transition:transform 0.5s, opacity 0.5s, visibility 0.5s
}

.product-list .btn-product-icon.compare {
    transition:transform 0.7s, opacity 0.7s, visibility 0.7s
}

.product-list:hover .btn-product-icon {
    transform: none;
    opacity: 1;
    visibility:visible
}

.product-list .btn-product, .product-with-qty .btn-product {
    display: block;
    padding: 0 0.5em;
    max-width: 15.2rem;
    height: 4.2rem;
    color: var(--alpha-dim-color, #54524d);
    background-color: transparent;
    border:1px solid var(--alpha-dim-color, #54524d)
}

.product-list .btn-product:hover, .product-with-qty .btn-product:hover {
    color: #fff;
    background-color: var(--alpha-dim-color, #54524d);
    border-color:var(--alpha-dim-color, #54524d)
}

.product-list .btn-product.product_type_simple, .product-with-qty .btn-product.product_type_simple {
    line-height:4rem
}

.product-list .add_to_cart_button:before, .product-with-qty .add_to_cart_button:before {
    content: "";
    position: relative;
    margin-right: 0.8rem;
    font-family: "panda";
    font-weight: 400;
    font-size: 1.4em;
    line-height:2.1
}

.product-list .product_type_variable:before, .product-with-qty .product_type_variable:before {
    content:none
}

.product-list, .product-list-sm {
    display: flex;
    align-items:center
}

.product-list-sm .woocommerce-loop-product__title, .product-list .woocommerce-loop-product__title {
    padding-right:0
}

@media (min-width: 576px) {
    .product-list .product-media {
        flex: 0 0 25rem;
        max-width: 25rem;
        margin:0 2.5rem 0 0
    }

    .product-list .woocommerce-loop-product__title {
        margin-bottom: 0.5rem;
        font-size:1.8em
    }

    .product-list .price {
        font-size:2.4em
    }

    .product-list .product-attr {
        font-size:1.6rem
    }

    .product-list .star-rating + a {
        margin-top: 0.1rem;
        line-height:1.44
    }

    .product-list .woocommerce-product-rating {
        margin-bottom:1.5rem
    }

    .product-list .short-desc {
        font-size:1.6rem
    }

    .product-list .product-details {
        padding: 0;
        flex: 1;
        max-width:calc(100% - 28rem)
    }
}

@media (min-width: 768px) {
    .product-list .product-media {
        flex: 0 0 29.5rem;
        max-width:29.5rem
    }
}

.product-list-sm {
    line-height: var(--alpha-body-line-height, "26px")
}

.product-list-sm .product-media {
    line-height: 1.6;
    flex: 0 0 15rem;
    max-width: 15rem;
    margin-right:1rem
}

.sidebar .product-list-sm .product-media {
    flex: 12.4rem;
    max-width:12.4rem
}

.product-list-sm .woocommerce-loop-product__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 0.6rem;
    white-space:normal
}

.product-list-sm .price {
    font-size:2.2em
}

.product-list-sm .btn-product {
    display: inline-flex;
    margin-top: 1rem;
    height: 3.3rem;
    font-size: 1.2em;
    min-width:11rem
}

.product-list-sm.content-right {
    justify-content:flex-end
}

.product-list-sm.content-right figure {
    order: 1;
    margin:0 0 0 1rem
}

.product-list-sm .product-details {
    padding: 0;
    flex: 1;
    max-width:calc(100% - 16rem)
}

.product-list-sm .woocommerce-product-rating {
    margin-bottom:1.5rem
}

.content-left .product-action {
    justify-content:flex-start
}

.content-center .product-cat {
    padding:0
}

.content-center .product-action {
    justify-content:center
}

.content-center .product-variations {
    justify-content:center
}

.content-right .product-cat {
    padding: 0;
    padding-left:4rem
}

.content-right .product-action {
    justify-content:flex-end
}

.content-right .product-variations {
    justify-content:flex-end
}

.shadow-media:hover .product-media {
    box-shadow:0 2rem 1.6rem -1.6rem rgba(0, 0, 0, 0.5)
}

.products.grid:not(.masonry) .product-wrap {
    margin-bottom:0
}

.products.grid:not(.masonry) .product {
    display: flex;
    flex-direction: column;
    height:100%
}

.products.grid:not(.masonry) .product-media {
    flex: 1;
    height:0
}

.products.grid:not(.masonry) .product-media > a {
    display: block;
    height:100%
}

.products.grid:not(.masonry) .product-media img {
    height:100%
}

.products-col .product-list-sm {
    flex-flow:row
}

.products-col .product-list-sm .product-media {
    margin:0 1rem 0 0
}

.slider-nav-full .product-wrap {
    margin-bottom:0
}

.yith-wcwl-add-to-wishlist a:before {
    content: "";
    font-family: "panda";
    font-weight:400
}

.product-action-vertical .yith-wcwl-add-to-wishlist a:before {
    margin-top:2px
}

.yith-wcwl-add-to-wishlist a i {
    display:none
}

.products .yith-wcwl-add-to-wishlist a:after {
    content: "";
    clear: both;
    display:block
}

.yith-wcwl-wishlistaddedbrowse a:before, .yith-wcwl-wishlistexistsbrowse a:before {
    content: ""
}

.product-details .yith-wcwl-wishlistaddedbrowse a:hover:before, .product-details .yith-wcwl-wishlistexistsbrowse a:hover:before {
    transform:rotateY(180deg)
}

.count-progress {
    height: 1rem;
    margin: 1rem 0;
    border-radius: 1rem;
    background: #e0dedf;
    overflow:hidden
}

.count-now {
    background: #999;
    border-radius: inherit;
    height:100%
}

.count-text {
    font-size: 1.3em;
    line-height:1
}

.product .countdown-container {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    white-space: nowrap;
    overflow-x: auto;
    background-color: rgba(34, 34, 34, 0.8);
    color: #fff;
    letter-spacing: -0.025em;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    transition:opacity 0.3s, visibility 0.3s
}

.product .countdown-container::-webkit-scrollbar {
    height:5px
}

.product .countdown-container::-webkit-scrollbar-thumb {
    background:rgba(191, 191, 191, 0.2)
}

.product .countdown-container::-webkit-scrollbar-track {
    background:transparent
}

.product .countdown-container .countdown {
    width:100%
}

.product .countdown-container .countdown-amount {
    font-size: 1.4rem;
    font-weight: 400;
    color: inherit;
    letter-spacing:inherit
}

.product .countdown-container .countdown-period {
    font-size: 1rem;
    color: inherit;
    letter-spacing: inherit;
    text-transform: capitalize;
    bottom:0.8rem
}

.product .countdown-container .countdown-section {
    padding:0.7rem 1rem 2.2rem
}

.product .countdown-container .countdown-section:not(:last-child) {
    margin-right:1rem
}

.product .countdown-container .countdown-section:not(:last-child):after {
    content:none
}

.product-loop .product .countdown-container .countdown-section {
    min-width: auto;
    min-height:auto
}

.product .countdown-container.inline-type {
    display: block;
    padding: 0.9rem 1rem;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform:uppercase
}

.product .countdown-container.inline-type .countdown {
    display: inline-block;
    width:auto
}

.product > .countdown-container {
    justify-content: center;
    position: static;
    margin-top: 2rem;
    background:transparent
}

.product > .countdown-container + .product-details {
    background:#f8f8f8
}

.product > .countdown-container .countdown {
    width:auto
}

.product > .countdown-container .countdown-heading {
    margin-bottom: 0;
    margin-right: 2rem;
    font-weight:400
}

.product > .countdown-container .countdown-heading span {
    font-size: 1.4rem;
    font-weight:300
}

.product > .countdown-container .countdown-section {
    padding: 0.7rem 1rem 1.5rem;
    min-width: 5rem;
    min-height: 5rem;
    background:var(--alpha-dim-color, #54524d)
}

.product > .countdown-container .countdown-section:not(:last-child) {
    margin-right:0.8rem
}

.product > .countdown-container .countdown-period {
    bottom: 0;
    opacity: 0.6;
    font-size:1.2rem
}

.product > .countdown-container .countdown-amount {
    font-size: 2rem;
    font-weight:400
}

.product-archive-page .product > .countdown-container, .single-product-page .product > .countdown-container {
    flex-direction: column;
    margin-top: -2rem;
    margin-bottom:1.5rem
}

.product-archive-page .product > .countdown-container .countdown-heading, .single-product-page .product > .countdown-container .countdown-heading {
    margin-bottom:1rem
}

.products .product:hover .countdown-container {
    opacity: 0;
    visibility:hidden
}

.products .product:hover > .countdown-container {
    opacity: 1;
    visibility:visible
}

@media (min-width: 992px) and(max-width: 1200px) {
    .product > .countdown-container {
        flex-direction:column
    }

    .product > .countdown-container .countdown-heading {
        margin-bottom:2rem
    }
}

@media (max-width: 767px) {
    .product-details .add_to_cart_button, .product-details .btn-product, .product-hide-details .add_to_cart_button, .product-hide-details .btn-product {
        min-width: 3.5rem;
        max-width: 3.5rem;
        padding:0
    }

    .product-details .add_to_cart_button, .product-hide-details .add_to_cart_button {
        display: block;
        overflow: hidden;
        text-indent:-9999rem
    }

    .product-details .add_to_cart_button:before, .product-hide-details .add_to_cart_button:before {
        width: 100%;
        float: left;
        text-indent: 0;
        line-height: 4rem;
        font-family: "panda"
    }

    .product-details .product_type_simple:before, .product-hide-details .product_type_simple:before {
        content: "";
        font-size:1.4em
    }

    .product-details .product_type_variable:before, .product-hide-details .product_type_variable:before {
        content: ""
    }
}

@media (max-width: 575px) {
    .product-list {
        display:block
    }

    .product-list .product-details, .product-list .product-media {
        margin: 0;
        max-width:100%
    }

    .product-list .product-media {
        width:100%
    }

    .product-list .product-details {
        padding:1.8rem 0 2rem
    }

    .product-action-vertical {
        top: 10px;
        right:10px
    }

    .product-label-group {
        top: 15px;
        left:15px
    }

    .product-with-qty .btn-quickview span, .product-with-qty .yith-wcwl-add-to-wishlist a span {
        text-indent:-9999px
    }

    .product-with-qty .btn-quickview:before, .product-with-qty .yith-wcwl-add-to-wishlist a:before {
        margin:0
    }

    .product-list-sm .product-media {
        flex: 0 0 10rem;
        max-width:10rem
    }

    .product > .countdown-container .countdown-section {
        min-width: 4rem;
        min-height:4rem
    }
}

@media (max-width: 479px) {
    .product-default:not(.product-with-qty) .product-details .btn-product {
        height: auto;
        padding: 0.8em 0;
        text-indent:0
    }

    .product-default:not(.product-with-qty) .product-details .btn-product:before {
        display:none
    }

    .product-default .product-hide-details .product-action .btn-product {
        padding:0
    }

    .product-list .short-desc {
        margin-bottom:2rem
    }

    .outofstock a.btn-product {
        text-indent:-9999px
    }

    .outofstock a.btn-product:before {
        content: "";
        width: 100%;
        float: left;
        line-height: 4rem;
        text-indent: 0;
        text-align: center;
        font-family: "panda";
        font-size: 18px;
        font-weight:400
    }

    .product .action-panel {
        min-width:120px
    }

    .product > .countdown-container {
        display:none
    }
}

.product-filtering + .d-loading {
    position: relative;
    min-height: 100px;
    margin-bottom:2rem
}

.products-banner {
    display:flex
}

.products-banner > .products-banner-inner, .products-banner > .woocommerce {
    flex: 1;
    padding:0 10px
}

.products-banner > .nav-filters {
    display:block
}

.creative-grid > .product-wrap {
    margin-bottom:0
}

.creative-grid .product-loop {
    height: 100%;
    display: flex;
    flex-direction:column
}

.creative-grid .product-media {
    flex:1
}

.creative-grid .product-list, .creative-grid .product-list-sm, .creative-grid .product-single {
    flex-direction:row
}

.creative-grid .product-list .product-media {
    flex: 0 0 28.8rem;
    max-width:28.8rem
}

@media (max-width: 359px) {
    .product-wrap .product-default .product-action .btn-quickview:first-child {
        padding:0.8em 0
    }

    .products .product {
        font-size:0.9rem
    }
}

.products.row, .products ul.row {
    margin-left: -10px;
    margin-right:-10px
}

.products.gutter-no {
    margin-left: 0;
    margin-right:0
}

.woocommerce .products .product-list figure.product-media {
    margin-right:2rem
}

.woocommerce .products .product-list-sm figure.product-media {
    margin-right:2rem
}

.woocommerce .products .product-list-sm.content-center figure, .woocommerce .products .product-list-sm.content-right figure {
    margin:0 0 0 2rem
}

.products + .btn-load {
    color: #fff;
    border-color: var(--alpha-dark-color, #333);
    background:var(--alpha-dark-color, #333)
}

.products + .btn-load:hover {
    border-color: #444;
    background:#444
}

.product-extra-info {
    font-size:1.4rem
}

.price + .product-extra-info {
    margin-left:6px
}

.woocommerce-product-gallery {
    position:relative
}

.woocommerce-product-gallery__image a, .woocommerce-product-gallery__image img {
    width: 100%;
    display:block
}

.product-thumbs-wrap {
    flex-basis: 100%;
    max-width:100%
}

.product-single .col-md-6 .woocommerce-product-gallery {
    position: sticky;
    top:0
}

.product-single-carousel-wrap {
    width:100%
}

.product-single-carousel ~ .slider-button {
    font-size:3.6rem
}

.product-single-carousel ~ .slider-button-prev {
    left:1.3em
}

.product-single-carousel ~ .slider-button-next {
    right:1.3em
}

.product-gallery {
    position: relative;
    display: flex;
    flex-wrap:wrap
}

.product-gallery > .slider-container {
    position: relative;
    width:100%
}

.product-thumbs-wrap {
    position: relative;
    margin-top: 2rem;
    overflow:hidden
}

.product-thumbs-wrap img {
    display: block;
    width:100%
}

.product-thumbs-wrap .slider-button {
    background: #fff;
    opacity: 0.9;
    border-radius: 0;
    height: 101%;
    width: 4rem;
    transition:opacity 0.3s
}

.product-thumbs-wrap > .disabled {
    visibility: hidden;
    opacity: 0;
    transition:opacity 0.3s, visibility 0.3s
}

.product-thumbs-wrap .slider-button-prev {
    left:2rem
}

.product-thumbs-wrap .slider-button-next {
    right:2rem
}

.product-thumbs-wrap > button:not(.disabled):hover {
    opacity:1
}

.product-thumb:after {
    position: absolute;
    left: 0.5px;
    right: 0.5px;
    top: 0.5px;
    bottom:0.5px
}

:not(.slider-container-initialized) > .product-thumbs {
    width:100%
}

.product-thumb {
    position: relative;
    margin: 0 20px 0 0;
    cursor: pointer;
    backface-visibility:hidden
}

.product-thumbs.active .product-thumb {
    margin-left:0
}

.product-quickview .product-thumb {
    width:auto
}

.row > .product-thumb {
    max-width: calc(25% - 15px);
    flex:0 0 25%
}

.product-thumb:after {
    content: "";
    transition: border-color 0.3s;
    border:1px solid transparent
}

.product-thumb.active:after {
    border-color:var(--alpha-primary-color, #ff9c28)
}

.slider-container-initialized div.product-thumb {
    margin:0
}

.product-single {
    position:relative
}

.product-single .summary > hr {
    margin-bottom:1.5rem
}

.product-single .variations {
    margin-bottom:1.5rem
}

.product-single .select-type {
    display: flex;
    align-items:center
}

.product-single .product-soac-wrapper {
    align-items:center
}

.product-single .product-soac-wrapper .btn-product-icon {
    margin:0 2rem 1rem 0
}

.product-single .product-soac-wrapper .btn-product-icon span {
    display:none
}

.product-single .product-soac-wrapper .btn-product-icon.compare {
    color:var(--alpha-body-color, #777)
}

.woocommerce-product-details__short-description {
    margin-bottom: 2.5rem;
    line-height:1.625
}

.woocommerce-product-details__short-description p, .woocommerce-product-details__short-description ul {
    margin-bottom:1rem
}

.woocommerce-product-gallery .product-label-group {
    z-index: 2;
    left:2rem
}

.summary {
    padding:0.2rem 0 3rem
}

.container-fluid .summary {
    padding-top:4px
}

.summary .woocommerce-review-link {
    margin: 5px 0 1px;
    color: #999;
    font-size:1.4rem
}

.summary .woocommerce-product-rating {
    margin-bottom: 1.5rem;
    font-size:1.5rem
}

.summary .star-rating {
    letter-spacing: 0.3em;
    text-indent: 0.3em;
    margin-left:-0.3em
}

.summary .star-rating span:after {
    text-indent:0.3em
}

.summary .yith-wcwl-add-to-wishlist {
    display:inline-block
}

.summary .product-links-wrapper {
    margin-bottom: 1.7rem;
    padding: 2rem 0 2.5rem;
    border-bottom:1px solid #e0dedf
}

.summary .product-links-wrapper > :not(:last-child) {
    margin-right:2.5rem
}

.summary .compare, .summary .yith-wcwl-add-to-wishlist a {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    font-size: 1.4rem;
    font-weight: 400;
    text-transform: uppercase;
    color:var(--alpha-dim-color, #54524d)
}

.summary .compare:before, .summary .yith-wcwl-add-to-wishlist a:before {
    position: relative;
    top: -1.5px;
    margin-right: 1rem;
    font-size:1.6em
}

.summary .compare:hover, .summary .yith-wcwl-add-to-wishlist a:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.summary .yith-wcwl-wishlistaddedbrowse a:before {
    float: none;
    width:auto
}

.summary .product-variations > .color {
    border-radius:50%
}

.summary .product-variations > .color:before {
    content: "";
    position: relative;
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color:#fff
}

.summary .product-variations > .color.active, .summary .product-variations > .color:hover {
    border: none;
    box-shadow:none
}

.summary .product-variations > .color.active:before {
    content: ""
}

.summary .social-icons label {
    position: relative;
    top:2px
}

.summary .social-icons .social-icon {
    margin-right:0.6rem
}

.product-countdown-container {
    position: relative;
    margin: -0.6rem 0 1.2rem;
    font-size:1.5rem
}

.product-list-sm .product-countdown-container {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    margin-bottom: 0;
    font-size: 9px;
    justify-content:center
}

.product-list-sm .product-countdown-container .countdown-amount {
    margin-left:0
}

.product-countdown-container:before {
    content: "";
    position: absolute;
    height: 2.4rem;
    left: -1.7rem;
    top: 50%;
    transform: translateY(-50%);
    border-right: 1px solid #fff;
    opacity:0.2
}

.product-countdown-container label {
    margin-right: 0.5rem;
    text-transform: none;
    font-weight: 400;
    color:#fff
}

.product-countdown-container .countdown-amount {
    color: inherit;
    font-size:inherit
}

.countdown-variations {
    display:none
}

.product-countdown {
    display: inline;
    margin-left: 0.5rem;
    color: var(--alpha-primary-color, #ff9c28);
    font-weight:700
}

.product-gallery + .product-countdown-container {
    position: absolute;
    bottom: 20px;
    margin: 0 -50% 0 50%;
    transform:translateX(-50%)
}

.product-variations > .disabled {
    cursor: not-allowed;
    opacity:0.3
}

.product_title {
    margin-bottom: 1.8rem;
    padding: 1rem 0;
    width: 100%;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.5;
    text-indent: -2px;
    border-bottom:1px solid #e0dedf
}

.product_title a {
    color:inherit
}

p.price {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 4rem;
    font-weight: 400;
    line-height:1.4
}

p.price del {
    margin-right: 0;
    font-size:2.4rem
}

form.cart:not(.variations_form) {
    padding-top:3px
}

.woocommerce-variation-add-to-cart, form.cart {
    display: flex;
    align-items: center;
    flex-wrap:wrap
}

form.cart .quantity-wrapper {
    margin-bottom:1.4rem
}

form.cart .quantity-wrapper label {
    margin-right:0.1rem
}

form.cart .quantity {
    margin-right: 1rem;
    width: 13rem;
    height:5rem
}

form.cart .quantity button {
    right:10rem
}

form.cart .quantity button:last-child {
    right:1.5rem
}

form.cart label {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.6rem;
    text-transform: uppercase;
    color:var(--alpha-dim-color, #54524d)
}

form.cart .select-type label {
    margin-right:1rem
}

form.cart .select-type .select-box {
    margin-bottom:1rem
}

form.variations_form {
    display:block
}

.variations > :not(:last-child) {
    margin-right: 4rem;
    margin-bottom:2.1rem
}

.variations .select-box:before {
    right: 1.4rem;
    font-size: 1.2rem;
    color:var(--alpha-dark-color, #333)
}

.variations select {
    max-width: none;
    padding: 0.8rem 3rem 0.8rem 1.4rem;
    color: var(--alpha-dark-color, #333);
    border-color:var(--alpha-light-color, #ccc)
}

.variations .reset-variation-cont {
    display:block
}

.variations .reset_variations {
    color: var(--alpha-dark-color, #333);
    padding: 0.3em 1em;
    background: #f4f4f4;
    font-size: 1.2rem;
    margin-bottom:2.5rem
}

.variations .product-variations + select, .variations .reset-variation-tr {
    display:none
}

hr.product-divider {
    margin-top: 0;
    margin-bottom: 2rem;
    width:100%
}

.woocommerce-variation p, p.alpha-pre-order-date, p.out-of-stock, p.stock.available-on-backorder {
    display: inline-block;
    padding: 4px 2rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    border-radius: 2px;
    color: #fff;
    background:#d26e4b
}

p.out-of-stock {
    background:var(--alpha-light-color, #ccc)
}

.woocommerce-variation {
    display:none
}

.woocommerce-variation .price {
    margin-bottom:-10px
}

.woocommerce-variation {
    margin-bottom:2rem
}

.action-group {
    display: flex;
    align-items: center;
    flex: 1;
    margin-bottom:2rem
}

.action-group span {
    display:none
}

.action-group .btn-product-icon {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    font-size: 1.6rem;
    color: var(--alpha-body-color, #777);
    width: 4.5rem;
    height: 4.5rem;
    min-width: 4.5rem;
    margin: 0 0 0 1rem;
    border: 1px solid var(--alpha-light-color, #ccc);
    border-radius:2px
}

.action-group .btn-product-icon:hover {
    background-color: var(--alpha-primary-color, #ff9c28);
    border-color: var(--alpha-primary-color, #ff9c28);
    color:#fff
}

.action-group .btn-product-icon:before {
    line-height: 4.5rem;
    margin: 0;
    padding:0
}

.single_add_to_cart_button, .single_buy_now_button {
    display: block;
    flex: 1;
    margin-bottom: 1.4rem;
    padding: 0.5em 1em;
    font-size: 1.3rem;
    line-height: 1.53;
    height:5rem
}

.single_add_to_cart_button:before {
    content: "";
    font-family: "panda";
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    margin-right: 8px;
    position: relative;
    bottom:-1px
}

.single_buy_now_button {
    background-color: var(--alpha-dim-color, #54524d);
    border-color: var(--alpha-dim-color, #54524d);
    color:#fff
}

.single_buy_now_button.active:not(.disabled), .single_buy_now_button:focus:not(.disabled), .single_buy_now_button:hover:not(.disabled) {
    color: #fff;
    background-color: #41403c;
    border-color:#41403c
}

.product_meta {
    display: flex;
    flex-wrap: wrap;
    align-items:center
}

.product_meta img {
    border-radius:inherit
}

.product_meta.no-brand-image {
    display:block
}

.product_meta .brand {
    border: 1px solid #e0dedf;
    border-radius: 0.5rem;
    margin:0 1.7rem 1rem 0
}

.product_meta .brand img {
    height: 4.8rem;
    width:auto
}

.product_meta .sku, .product_meta a {
    font-weight:300
}

.product_meta a:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.product-single-gallery .product_meta, .product-single-gallery .woocommerce-product-details__short-description {
    border-bottom: 0;
    margin-bottom:0
}

.product-single-gallery .variations {
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #e0dedf;
    margin-bottom:2.5rem
}

.product-meta-inner, .social-icons-label {
    color: var(--alpha-dim-color, #54524d);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.95;
    text-transform:uppercase
}

.product-meta-inner > span, .social-icons-label > span {
    display:block
}

.product-meta-inner > span:not(:last-child), .social-icons-label > span:not(:last-child) {
    margin-right:1rem
}

.size-guide {
    line-height: 30px;
    font-weight:300
}

.size-guide i {
    margin-right: 0.5rem;
    font-size:1.5rem
}

.woocommerce-variation-price .price {
    font-size: 2.4rem;
    font-weight:600
}

.woocommerce-variation-price del {
    font-weight:600
}

.product-widget .variations {
    margin-bottom:1.7rem
}

.product-widget .woocommerce-variation-add-to-cart, .product-widget form.cart:not(.variations_form) {
    border-top: 1px solid #e0dedf;
    padding-top:2rem
}

.product-widget.product-single div.summary {
    padding:2.5rem 0 3rem
}

.product-widget .star-rating span:after {
    color:var(--alpha-dim-color, #54524d)
}

.product-widget div.woocommerce-product-gallery {
    margin-bottom:0.4rem
}

.product-widget form.cart label {
    min-width: auto;
    margin-right:1rem
}

.product-widget .quantity-wrapper label {
    display:none
}

.product-widget .summary {
    -webkit-mask-image: linear-gradient(to top, transparent 5px, #000 25px);
    mask-image: linear-gradient(to top, transparent 5px, #000 25px);
    -webkit-overflow-scrolling:touch
}

.product-widget .summary::-webkit-scrollbar {
    width:0
}

.product-widget .yith-wcwl-add-to-wishlist a {
    padding:0.3rem 0.8rem
}

.product-widget .product_title:hover a {
    color:var(--alpha-primary-color, #ff9c28)
}

.product-widget button.slider-button {
    top: 50%;
    font-size:2.4rem
}

.product-widget .product-thumbs-wrap .slider-button:not(:disabled):hover {
    background:#fff
}

@media (min-width: 768px) {
    .row > .product-single.row {
        width: 100%;
        margin-left: 0;
        margin-right:0
    }

    .row > .product-single.row > :first-child {
        padding-left:0
    }

    .row > .product-single.row > :last-child {
        padding-right:0
    }

    .product-widget .summary {
        height:100%
    }
}

@media (max-width: 991px) {
    .summary .product-links-wrapper > * {
        margin-top: 0.5rem;
        margin-bottom:0.5rem
    }
}

@media (max-width: 767px) {
    .product-single.product-widget.row div.summary {
        padding-bottom: 1rem;
        max-height: none;
        overflow-y:visible
    }
}

@media (max-width: 575px) {
    .product-thumbs-wrap {
        margin-top:1.5rem
    }

    .product-single-carousel ~ .slider-button {
        font-size:2.4rem
    }

    .product-thumbs-wrap .slider-button {
        width: 2rem;
        font-size:2rem
    }

    .product-thumbs-wrap .slider-button-next {
        right:1rem
    }

    .product-thumbs-wrap .slider-button-prev {
        left:1rem
    }
}

@media (min-width: 992px) {
    .product-label-group.pg-vertical-label {
        left:120px
    }

    .pg-vertical .product-single-carousel-wrap {
        max-width:calc(100% - 100px)
    }

    .pg-vertical .product-thumbs-wrap {
        order: -1;
        max-width: 90px;
        margin:0 10px 0 0
    }

    .pg-vertical .product-thumbs-wrap > button {
        border-radius: 0;
        width: 101%;
        height: 2.5rem;
        transform:none
    }

    .pg-vertical .product-thumbs-wrap > button:before {
        margin: 0;
        font-size: 2rem;
        vertical-align:4px
    }

    .pg-vertical .product-thumbs-wrap > .slider-button-prev {
        top: 0;
        left:0
    }

    .pg-vertical .product-thumbs-wrap > .slider-button-prev:before {
        content: ""
    }

    .pg-vertical .product-thumbs-wrap > .slider-button-next {
        top: auto;
        bottom: 0;
        right:0
    }

    .pg-vertical .product-thumbs-wrap > .slider-button-next:before {
        content: ""
    }

    .pg-vertical .product-thumbs {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0;
        width:100%
    }

    .pg-vertical .product-thumb {
        height: auto;
        margin:0 0 10px
    }

    .pg-vertical .row > .product-thumb {
        flex: 0;
        max-width:none
    }

    .variations select {
        width:20rem
    }

    .product-widget .pg-vertical .product-thumbs-wrap {
        max-width:60px
    }

    .product-widget .pg-vertical .product-single-carousel-wrap {
        max-width:calc(100% - 70px)
    }

    .product-widget .pg-vertical-label {
        left:90px
    }
}

.product-single.product-widget .quantity {
    width: 15.2rem;
    margin-right:1rem
}

.products .product-single .quantity {
    width:13.2rem
}

.social-icons {
    display: inline-flex;
    align-items: center;
    flex-wrap:wrap
}

.social-facebook, .social-facebook.use-hover:hover {
    color:#1b4f9b
}

.social-facebook.stacked {
    background-color: #1b4f9b;
    color:#fff
}

.social-facebook.framed:not(.social-custom):hover, .social-facebook.stacked:not(.social-custom):hover {
    opacity:0.8
}

.social-facebook.framed:hover, .social-facebook.stacked:hover {
    border-color: #1b4f9b;
    background-color: #1b4f9b;
    color:#fff
}

.social-twitter, .social-twitter.use-hover:hover {
    color:#00adef
}

.social-twitter.stacked {
    background-color: #00adef;
    color:#fff
}

.social-twitter.framed:not(.social-custom):hover, .social-twitter.stacked:not(.social-custom):hover {
    opacity:0.8
}

.social-twitter.framed:hover, .social-twitter.stacked:hover {
    border-color: #00adef;
    background-color: #00adef;
    color:#fff
}

.social-linkedin, .social-linkedin.use-hover:hover {
    color:#C8222C
}

.social-linkedin.stacked {
    background-color: #C8222C;
    color:#fff
}

.social-linkedin.framed:not(.social-custom):hover, .social-linkedin.stacked:not(.social-custom):hover {
    opacity:0.8
}

.social-linkedin.framed:hover, .social-linkedin.stacked:hover {
    border-color: #C8222C;
    background-color: #C8222C;
    color:#fff
}

.social-email, .social-email.use-hover:hover {
    color:#dd4b39
}

.social-email.stacked {
    background-color: #dd4b39;
    color:#fff
}

.social-email.framed:not(.social-custom):hover, .social-email.stacked:not(.social-custom):hover {
    opacity:0.8
}

.social-email.framed:hover, .social-email.stacked:hover {
    border-color: #dd4b39;
    background-color: #dd4b39;
    color:#fff
}

.social-youtube, .social-youtube.use-hover:hover {
    color:#2c567e
}

.social-youtube.stacked {
    background-color: #2c567e;
    color:#fff
}

.social-youtube.framed:not(.social-custom):hover, .social-youtube.stacked:not(.social-custom):hover {
    opacity:0.8
}

.social-youtube.framed:hover, .social-youtube.stacked:hover {
    border-color: #2c567e;
    background-color: #2c567e;
    color:#fff
}

.social-google, .social-google.use-hover:hover {
    color:#dd4b39
}

.social-google.stacked {
    background-color: #dd4b39;
    color:#fff
}

.social-google.framed:not(.social-custom):hover, .social-google.stacked:not(.social-custom):hover {
    opacity:0.8
}

.social-google.framed:hover, .social-google.stacked:hover {
    border-color: #dd4b39;
    background-color: #dd4b39;
    color:#fff
}

.social-pinterest, .social-pinterest.use-hover:hover {
    color:#6668A5
}

.social-pinterest.stacked {
    background-color: #6668A5;
    color:#fff
}

.social-pinterest.framed:not(.social-custom):hover, .social-pinterest.stacked:not(.social-custom):hover {
    opacity:0.8
}

.social-pinterest.framed:hover, .social-pinterest.stacked:hover {
    border-color: #6668A5;
    background-color: #6668A5;
    color:#fff
}

.social-reddit, .social-reddit.use-hover:hover {
    color:#EA4C89
}

.social-reddit.stacked {
    background-color: #EA4C89;
    color:#fff
}

.social-reddit.framed:not(.social-custom):hover, .social-reddit.stacked:not(.social-custom):hover {
    opacity:0.8
}

.social-reddit.framed:hover, .social-reddit.stacked:hover {
    border-color: #EA4C89;
    background-color: #EA4C89;
    color:#fff
}

.social-tumblr, .social-tumblr.use-hover:hover {
    color:#007BB6
}

.social-tumblr.stacked {
    background-color: #007BB6;
    color:#fff
}

.social-tumblr.framed:not(.social-custom):hover, .social-tumblr.stacked:not(.social-custom):hover {
    opacity:0.8
}

.social-tumblr.framed:hover, .social-tumblr.stacked:hover {
    border-color: #007BB6;
    background-color: #007BB6;
    color:#fff
}

.social-vk, .social-vk.use-hover:hover {
    color:#1869FF
}

.social-vk.stacked {
    background-color: #1869FF;
    color:#fff
}

.social-vk.framed:not(.social-custom):hover, .social-vk.stacked:not(.social-custom):hover {
    opacity:0.8
}

.social-vk.framed:hover, .social-vk.stacked:hover {
    border-color: #1869FF;
    background-color: #1869FF;
    color:#fff
}

.social-whatsapp, .social-whatsapp.use-hover:hover {
    color:#3c8a38
}

.social-whatsapp.stacked {
    background-color: #3c8a38;
    color:#fff
}

.social-whatsapp.framed:not(.social-custom):hover, .social-whatsapp.stacked:not(.social-custom):hover {
    opacity:0.8
}

.social-whatsapp.framed:hover, .social-whatsapp.stacked:hover {
    border-color: #3c8a38;
    background-color: #3c8a38;
    color:#fff
}

.social-xing, .social-xing.use-hover:hover {
    color:#116466
}

.social-xing.stacked {
    background-color: #116466;
    color:#fff
}

.social-xing.framed:not(.social-custom):hover, .social-xing.stacked:not(.social-custom):hover {
    opacity:0.8
}

.social-xing.framed:hover, .social-xing.stacked:hover {
    border-color: #116466;
    background-color: #116466;
    color:#fff
}

.social-instagram, .social-instagram.use-hover:hover {
    color:#C8222C
}

.social-instagram.stacked {
    background-color: #C8222C;
    color:#fff
}

.social-instagram.framed:not(.social-custom):hover, .social-instagram.stacked:not(.social-custom):hover {
    opacity:0.8
}

.social-instagram.framed:hover, .social-instagram.stacked:hover {
    border-color: #C8222C;
    background-color: #C8222C;
    color:#fff
}

.use-hover.social-icon:not(:hover) {
    color: var(--alpha-dim-color, #54524d);
    border-color:var(--alpha-light-color, #ccc)
}

.use-hover.stacked:not(:hover) {
    color: #fff;
    background-color:#999
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0.3rem 0.8rem 0.3rem 0;
    border-radius: 50%;
    font-size: 24px;
    transition:color 0.3s, background 0.3s, border 0.3s, opacity 0.3s
}

.social-icon.framed {
    border:1px solid
}

.social-icon:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.footer .social-icon, .header .social-icon, .popup .social-icon, .post-single .social-icon, .product-single .social-icon, .yith-wcwl-share .social-icon {
    width: 32px;
    height: 32px;
    font-size:14px
}

.left-sidebar-active .left-sidebar .sidebar-close, .left-sidebar-active .left-sidebar .sidebar-overlay, .right-sidebar-active .right-sidebar .sidebar-close, .right-sidebar-active .right-sidebar .sidebar-overlay, .top-sidebar-active .top-sidebar .sidebar-close, .top-sidebar-active .top-sidebar .sidebar-overlay {
    visibility: visible;
    opacity:1
}

.left-sidebar-active .left-sidebar .sidebar-content, .right-sidebar-active .right-sidebar .sidebar-content, .top-sidebar-active .top-sidebar .sidebar-content {
    transform: translateX(0);
    opacity:1
}

.sidebar-close {
    position: fixed;
    top: 25px;
    left: calc(100vw - 50px);
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    z-index:1069
}

.sidebar-content, .sidebar-overlay, .sidebar-toggle {
    position: fixed;
    top: 0;
    left:0
}

.sidebar-overlay {
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.4s, opacity 0.4s;
    z-index:1069
}

.sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    top: 160px;
    width: 40px;
    height: 40px;
    border-radius: 0 3px 3px 0;
    font-size: 1.4rem;
    color: #fff;
    background-color: #222;
    opacity: 0.6;
    z-index:1060
}

.sidebar-toggle:hover {
    opacity: 0.8;
    color:#fff
}

.sidebar-fixed.left-sidebar {
    max-width: var(--alpha-left-sidebar-width, 33.5rem);
    flex:0 0 var(--alpha-left-sidebar-width, 33.5rem)
}

.sidebar-fixed.right-sidebar {
    max-width: var(--alpha-right-sidebar-width, 33.5rem);
    flex:0 0 var(--alpha-right-sidebar-width, 33.5rem)
}

.sidebar-content {
    bottom: 0;
    padding: 2rem;
    transform: translateX(-100%);
    overflow: auto;
    opacity: 0;
    line-height: 1.3;
    transition: transform 0.4s, opacity 0.4s;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    color:#999
}

.left-sidebar .sidebar-content {
    width:var(--alpha-left-sidebar-width, 33.5rem)
}

.right-sidebar .sidebar-content {
    width:var(--alpha-right-sidebar-width, 33.5rem)
}

.sidebar-offcanvas .sidebar-content {
    z-index: 1070;
    background:#fff
}

.sidebar-overlay ~ .sidebar-content {
    box-shadow:none
}

.sidebar-content .sidebar-close {
    display: flex;
    position: static;
    align-items: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    line-height:1
}

.sidebar-content .close-icon {
    width: 1.6rem;
    height: 1.6rem;
    margin-right:0.6rem
}

.sidebar-content .close-icon:after, .sidebar-content .close-icon:before {
    background:var(--alpha-body-color, #777)
}

.sidebar-content p {
    line-height: 1.6;
    color:var(--alpha-body-color, #777)
}

@media (max-width: 991px) {
    .sidebar-content {
        background:#fff
    }
}

.rtl .left-sidebar {
    order:2
}

.rtl .right-sidebar {
    order:initial
}

.right-sidebar {
    margin-left: auto;
    order:2
}

.right-sidebar .sidebar-toggle {
    left: auto;
    right:0
}

.right-sidebar .sidebar-close {
    left:3rem
}

.right-sidebar .sidebar-content {
    transform: translateX(100%);
    left: auto;
    right:0
}

@media (min-width: 992px) {
    .sidebar-fixed .sidebar-toggle {
        display:none
    }

    .sidebar-fixed .sidebar-overlay {
        display:none
    }

    .sidebar-fixed .sidebar-content {
        position: relative;
        overflow: visible;
        padding: 0;
        opacity:1
    }

    .sidebar-fixed .sidebar-content {
        width: auto;
        transform:none
    }
}

@media (max-width: 991px) {
    .sidebar-content {
        z-index:1070
    }
}

.sidebar-content a:not(.btn) {
    color:var(--alpha-dim-color, #54524d)
}

.sidebar-content a:not(.btn):focus, .sidebar-content a:not(.btn):hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.sidebar-content .btn-product-icon a, .sidebar-content a.btn-product-icon {
    color:var(--alpha-dim-color, #54524d)
}

.sidebar-content .btn-product-icon a:hover, .sidebar-content a.btn-product-icon:hover {
    color:#ededed
}

.sidebar .widget_search:not(.widget-collapsible) {
    margin-bottom:2.5rem
}

.sidebar .widget_search:not(.widget-collapsible) .search-wrapper {
    width:100%
}

.sidebar .search-wrapper .form-control {
    min-height:4.7rem
}

.sidebar .widget-title.collapsed {
    margin-bottom:0
}

.sidebar .widget > :not(.widget-title) {
    transition:opacity 0.3s
}

.sidebar .widget > .slider-wrapper {
    transition-property:transform
}

.sidebar .widget form {
    margin-bottom:2.3rem
}

.sidebar .widget > select {
    margin-bottom:2rem
}

.sidebar .widget .current-cat > a {
    color:var(--alpha-primary-color, #ff9c28)
}

.sidebar .widget .children {
    position: relative;
    width: 100%;
    margin: 1rem 0 -0.5rem;
    padding-left:2rem
}

.sidebar .widget .count {
    color: #aaa;
    line-height:1
}

.sidebar .widget li {
    padding:10px 0
}

.sidebar .children a {
    color:var(--alpha-body-color, #777)
}

.sidebar .widget_categories > form {
    margin-bottom:2rem
}

.sidebar .widget_categories ul.children {
    font-size:1.3rem
}

.sidebar .collapsed ~ * {
    opacity:0.1
}

.sidebar .cat-item {
    position: relative;
    flex-wrap: wrap;
    padding:1rem 0
}

.sidebar .cat-item > a {
    flex:none
}

.sidebar .cat-item > .count {
    flex: 1;
    margin-left:5px
}

.sidebar .cat-item > ul {
    position: relative;
    width: 100%;
    margin: 1rem 0 0;
    padding-left:2rem
}

.sidebar .cat-item li {
    padding:5.5px 0
}

.sidebar .cat-item > a > i {
    content: "";
    position: absolute;
    top: 9px;
    right: 0;
    line-height: 0;
    margin-right: -3px;
    padding: 1rem 5px;
    font-size: 1.1rem;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    transition:transform 0.3s
}

.sidebar .cat-item.show > a {
    color:var(--alpha-primary-color, #ff9c28)
}

.sidebar .cat-item.show > a i {
    transform:rotate(-180deg)
}

.sidebar .menu li {
    padding:0
}

.sidebar .menu li a {
    padding:0.7rem 0
}

.sidebar .menu ul {
    padding: 0;
    margin:0
}

.widget-collapsible > .widget-title {
    position: relative;
    cursor: pointer;
    padding: 0.8rem 0 1.2rem 0;
    margin:0
}

.widget-collapsible .dokan-store-open-close {
    margin:1.3rem 0
}

.widget-collapsible .product-cat-stack-dokan#cat-drop-stack, .widget-collapsible .store-cat-stack-dokan#cat-drop-stack, .widget-collapsible > ul {
    padding: 0.7rem 0;
    margin-top: 0;
    margin-bottom:1.3rem
}

.widget-collapsible .dokan-bestselling-product-widget {
    margin-bottom:2.3rem
}

.widget-collapsible > *, .widget-collapsible > ul {
    border-top:none
}

.widget-collapsible .toggle-btn {
    top: 13px;
    right: 4px;
    padding: 0;
    width: 12px;
    opacity:1
}

.widget-collapsible .toggle-btn:before {
    font-family: "panda";
    content: "";
    position: absolute;
    font-size: 1.7rem;
    font-weight: 400;
    transition:transform 0.3s
}

.widget-collapsible > .collapsed .toggle-btn:before {
    transform:rotate(180deg)
}

.widget.widget-collapsible > select {
    border:1px solid #eee
}

.widget.widget-collapsible.dropdown_product_cat, .widget.widget-collapsible > span.select2 {
    margin:2rem 0
}

.widget span.select2-selection--single {
    border-color: #eee;
    height:4rem
}

.widget span.select2-selection--single > .select2-selection__rendered {
    line-height:3.8rem
}

.widget span.select2-selection--single .select2-selection__arrow {
    top:6px
}

span.select2-container--default .select2-search--dropdown .select2-search__field, span.select2-dropdown {
    padding: 6px 18px;
    min-height: 4rem;
    font-size: 1.6rem;
    font-weight: 300;
    border-color:#e0dedf
}

.collapsed + ul {
    display:none
}

.widget > .slider-wrapper:first-child ~ .slider-button {
    display:none
}

.widget > .slider-wrapper:nth-child(2) ~ .slider-button {
    top:2.4rem
}

.widget-products > .slider-wrapper .slider-slide {
    border-top: 1px solid #e0dedf;
    padding-top:1rem
}

@media (max-width: 359px) {
    .sidebar .sidebar-content {
        width:28rem
    }

    .right-sidebar .sidebar-close {
        left:1rem
    }

    .left-sidebar .sidebar-close {
        right:1rem
    }
}

#blog-sidebar .widget-title {
    border-bottom:1px solid #e0dedf
}

#blog-sidebar .widget-title .wt-area {
    position:relative
}

#blog-sidebar .widget-title .wt-area:before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    bottom: -1.6rem;
    height: 1px;
    background-color:var(--alpha-primary-color, #ff9c28)
}

#blog-sidebar .wp-block-group__inner-container > :not(.widget-title) {
    padding: 0.9rem 0;
    margin-bottom:2.2rem
}

#blog-sidebar .widget_search {
    margin-bottom:4.9rem
}

#blog-sidebar .widget .widget-title {
    margin-bottom:1.2rem
}

#blog-sidebar .wp-block-latest-comments__comment {
    padding-top: 0.8rem;
    padding-bottom: 0.9rem;
    margin-bottom:0
}

#blog-sidebar .wp-block-latest-comments__comment a, #blog-sidebar .wp-block-latest-comments__comment span {
    font-weight:400
}

#blog-sidebar .wp-block-latest-comments__comment span {
    color:var(--alpha-dim-color, #54524d)
}

#blog-sidebar .wp-block-latest-comments__comment-date {
    display: inline-block;
    position: relative;
    font-size: inherit;
    vertical-align:middle
}

#blog-sidebar .wp-block-latest-comments__comment-date:before {
    display: inline-block;
    content: "/";
    margin-right: 0.5rem;
    margin-left: 0.5rem;
    vertical-align:middle
}

#blog-sidebar .widget-posts .widget-title {
    padding:0.8rem 0 1.2rem
}

#blog-sidebar .widget-posts .posts {
    padding:1.8rem 0 3.2rem
}

#blog-sidebar .slider-nav-top .slider-button {
    font-size: 2rem;
    top:-3.7rem
}

.product-categories > li.cat-item {
    padding:0
}

.product-categories > li.cat-item li {
    padding:4px 0
}

.product-categories > li.cat-item > a {
    display: inline-block;
    padding:11px 0
}

.product-categories > li.cat-item > a > i {
    top:9px
}

.product-categories .cat-item a {
    color:var(--alpha-heading-color, #333)
}

.product-categories .cat-item a:hover {
    color: var(--alpha-primary-color, #ff9c28);
    text-decoration:none
}

.sidebar .widget.widget_product_categories .children {
    margin: 0;
    padding-left:1.3rem
}

.sidebar .widget.widget_product_categories .children:before {
    position: absolute;
    content: "";
    height: calc(100% - 16px);
    left: 0;
    top: 50%;
    border-right: 1px solid #e0dede;
    transform:translateY(-50%)
}

.widget_search .form-control {
    border:none
}

.sidebar.shop-sidebar {
    position:relative
}

.sidebar.shop-sidebar .sidebar-content {
    padding:2rem
}

.sidebar.shop-sidebar .filter-actions {
    padding:0 0 0.8rem
}

.sidebar.shop-sidebar .filter-actions label {
    font-size: 1.6rem;
    color:var(--alpha-dark-color, #333)
}

.sidebar.shop-sidebar .filter-clean {
    color:var(--alpha-body-color, #777)
}

.sidebar.shop-sidebar .widget {
    margin-bottom:3rem
}

.sidebar.shop-sidebar .widget-title {
    padding: 0.8rem 0 1.2rem 0;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #e0dedf;
    cursor: pointer;
    text-indent:-2px
}

.sidebar.shop-sidebar .widget_price_filter .widget-title {
    margin-bottom:2.6rem
}

.sidebar.shop-sidebar .btn-outline:not(:hover) {
    color: var(--alpha-primary-color, #ff9c28);
    background:#fff
}

.sidebar.shop-sidebar .sidebar-toggle-btn {
    padding: 0.8em 1.04em;
    min-width:87px
}

.sidebar.shop-sidebar .sidebar-toggle-btn i {
    font-size:13px
}

.sidebar.shop-sidebar .widget-price-filter li, .sidebar.shop-sidebar .widget .wc-layered-nav-term, .sidebar.shop-sidebar .widget_product_categories .cat-item, .sidebar.shop-sidebar .yith-woo-ajax-navigation li {
    display: flex;
    align-items: center;
    justify-content:space-between
}

.sidebar.shop-sidebar .yith-wcan-list .empty {
    text-decoration:line-through
}

.sidebar.shop-sidebar .wc-layered-nav-rating > a {
    display: flex;
    justify-content:space-between
}

.sidebar.shop-sidebar .star-rating {
    font-size: 1.2rem;
    letter-spacing:0.3em
}

.shop-sidebar.sidebar-side .wt-area {
    position:relative
}

.shop-sidebar.sidebar-side .wt-area:before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    bottom: -1.5rem;
    height: 1px;
    background-color:var(--alpha-primary-color, #ff9c28)
}

.sidebar .widget.widget-price-filter .alpha-price-range-wrapper {
    margin-top:1rem
}

.sidebar .alpha-product-prices .chosen a {
    color:var(--alpha-primary-color, #ff9c28)
}

.sidebar .button {
    line-height: 1;
    padding: 0.9rem 2.1rem 0.9rem 2.1rem;
    font-size: 1.2rem;
    font-weight: 400;
    vertical-align: middle;
    color: #fff;
    border-color: var(--alpha-dim-color, #54524d);
    background-color:var(--alpha-dim-color, #54524d)
}

.sidebar .button:active, .sidebar .button:focus, .sidebar .button:hover {
    color: #fff;
    border-color: var(--alpha-dim-color-hover, #666);
    background-color:var(--alpha-dim-color-hover, #666)
}

.sidebar .button.btn-solid {
    color: var(--alpha-dim-color, #54524d);
    border-color: #fff;
    background-color:#fff
}

.sidebar .button.btn-solid:active, .sidebar .button.btn-solid:focus, .sidebar .button.btn-solid:hover {
    border-color: var(--alpha-dim-color, #54524d);
    background-color: var(--alpha-dim-color, #54524d);
    color:#fff
}

.sidebar .button.btn-outline {
    color: var(--alpha-dim-color, #54524d);
    border-color: var(--alpha-dim-color, #54524d);
    background-color:transparent
}

.sidebar .button.btn-outline:active, .sidebar .button.btn-outline:focus, .sidebar .button.btn-outline:hover {
    background-color: var(--alpha-dim-color, #54524d);
    color:#fff
}

.sidebar .button.btn-link {
    background-color: transparent;
    color:var(--alpha-dim-color, #54524d)
}

.sidebar .button.btn-link:active, .sidebar .button.btn-link:focus, .sidebar .button.btn-link:hover {
    color:var(--alpha-dim-color-hover, #666)
}

.sidebar .button.btn-underline:active, .sidebar .button.btn-underline:focus, .sidebar .button.btn-underline:hover {
    color:var(--alpha-dim-color, #54524d)
}

.sidebar .alpha-price-range input {
    color: #999;
    border: 1px solid var(--alpha-light-color, #ccc);
    border-radius: 3px;
    width: 62px;
    height: 37px;
    padding: 3px 6px;
    line-height: 37px;
    text-align: center;
    vertical-align:middle
}

.sidebar .alpha-price-range button {
    margin-left:1rem
}

.sidebar .alpha-price-range .delimiter {
    width: 24px;
    display: inline-block;
    vertical-align: middle;
    position:relative
}

.sidebar .alpha-price-range .delimiter:before {
    content: "";
    display: block;
    width: 8px;
    height: 2px;
    margin: 0 auto;
    background-color:#999
}

.sidebar-fixed .yith-wcan-reset-navigation {
    padding: 1rem;
    font-size: 1.1rem;
    margin-top:12px
}

.shop-sidebar .yith-woo-ajax-reset-navigation {
    display:none !important
}

.sidebar .tag-cloud-link {
    font-size:1.2rem !important
}

.toolbox .btn-link {
    padding:0
}

.filter-clean {
    font-size: 1.4rem;
    margin-left:auto
}

.widget-products .widget-title {
    display: inline-block;
    position: relative;
    z-index: 3;
    border-bottom:2px solid var(--alpha-body-color, #777)
}

.sidebar .widget-products.widget .widget-title {
    margin-bottom:-1px
}

.widget-products .slider-arrows i {
    font-size:1.7rem
}

.widget-products .slider-arrows {
    top:-5.5rem
}

.widget-products.slider-container {
    position:relative
}

.widget-products .product-wrap {
    margin-bottom:0
}

.widget_price_filter .widget-title, .widget_rating_filter .widget-title {
    text-transform:none
}

@media (min-width: 992px) {
    .sticky-sidebar-fixed > .filter-actions {
        visibility:hidden
    }

    .sidebar-fixed.shop-sidebar {
        transition:margin 0.4s
    }

    .sidebar-fixed.shop-sidebar .sidebar-content {
        padding:0 0 2rem
    }

    .sidebar-fixed.shop-sidebar + .main-content {
        transition:flex 0.3s, max-width 0.3s
    }

    .sticky-sidebar-wrapper.closed {
        height:0
    }

    .closed.left-sidebar {
        margin-left:-25%
    }

    .closed.right-sidebar {
        margin-right:-25%
    }

    .main-content-wrap .sidebar + .main-content {
        flex: 1;
        overflow:hidden
    }
}

.elementor-section > div.elementor-container.tab {
    width:calc(100% - var(--alpha-gap) * 4)
}

.nav-tabs {
    display: flex;
    flex-wrap:wrap
}

.nav-tabs :hover > .nav-link, .nav-tabs .active > a, .nav-tabs .nav-link.active {
    color:var(--alpha-dark-color, #333)
}

.nav-item.nav-icon-down i, .nav-item.nav-icon-up i {
    display:block
}

.nav-icon-left > .nav-link, .nav-icon-right > .nav-link {
    display: flex;
    align-items: center;
    justify-content:center
}

.nav-link {
    display: block;
    margin-bottom: 0;
    padding: 1.6rem 0.2rem;
    color: var(--alpha-dark-color, #333);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    border-radius: 0;
    border: 0;
    white-space: nowrap;
    transition:border 0.35s, color 0.35s, background-color 0.35s
}

.nav-fill > li {
    flex:1
}

.nav-filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    color:var(--alpha-body-color, #777)
}

.nav-filters li:not(:last-child) {
    margin-right:1.5rem
}

.nav-filter {
    display: inline-block;
    position: relative;
    padding: 0.5rem 0;
    font-size: 1.4rem;
    line-height: 1;
    transition:color 0.3s, background 0.3s, border 0.3s
}

.active > .nav-filter, .nav-filter.active {
    color:var(--alpha-primary-color, #ff9c28)
}

.filter-underline .nav-filter {
    transition:color 0.3s
}

.filter-underline .nav-filter.active:after, .filter-underline .nav-filter:hover:after {
    background-color: var(--alpha-primary-color, #ff9c28);
    transform:scaleX(1)
}

.filter-underline .nav-filter:after {
    content: "";
    display: block;
    height: 2px;
    border-bottom: 3px solid;
    margin-top: 2px;
    transform: scaleX(0);
    transition:transform 0.4s
}

.tab-content {
    position: relative;
    width:100%
}

.tab-content > .tab-pane {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 0 !important;
    opacity: 0;
    z-index: -1;
    visibility:hidden
}

.tab-content > .active {
    position: relative;
    visibility: visible;
    height: auto !important;
    opacity: 1;
    z-index: auto;
    transition:visibility 0.3s, opacity 0.3s
}

.tab-pane {
    padding: 2.3rem 0;
    color:var(--alpha-body-color, #777)
}

.tab-nav-simple .category-content, .tab-nav-simple .nav-link {
    position:relative
}

.tab-nav-simple .category-content:after, .tab-nav-simple .nav-link:after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    border-radius: 50%;
    transition:background 0.3s
}

.tab-nav-simple .nav-link i {
    color:var(--alpha-primary-color, #ff9c28)
}

.tab-nav-simple .nav-link:after {
    bottom:0
}

.tab-nav-simple .category-content:after {
    bottom:-10px
}

.tab-nav-simple :hover > .nav-link:after, .tab-nav-simple .active > a:after, .tab-nav-simple .nav-link.active:after {
    background:var(--alpha-primary-color, #ff9c28)
}

.tab-nav-simple .product-category.active .category-content:after, .tab-nav-simple .product-category:hover .category-content:after {
    background-color:var(--alpha-primary-color, #ff9c28)
}

.mobile-menu-container .tab-nav-simple .nav-link:after, .tab-nav-simple.form-tab .nav-link:after {
    max-width: 100%;
    width: 100%;
    height: 2px;
    background: var(--alpha-primary-color, #ff9c28);
    border-radius: 0;
    transform: scaleX(0) translateX(-50%);
    transform-origin: left;
    transition:transform 0.3s
}

.mobile-menu-container .tab-nav-simple :hover > .nav-link:after, .mobile-menu-container .tab-nav-simple .active > a:after, .mobile-menu-container .tab-nav-simple .nav-link.active:after, .tab-nav-simple.form-tab :hover > .nav-link:after, .tab-nav-simple.form-tab .active > a:after, .tab-nav-simple.form-tab .nav-link.active:after {
    transform:scaleX(1) translateX(-50%)
}

.tab-nav-center .nav {
    justify-content:center
}

.tab-nav-right .nav {
    justify-content:flex-end
}

@media (max-width: 1199px) {
    .tab-nav-lg-left .nav {
        justify-content:flex-start
    }

    .tab-nav-lg-center .nav {
        justify-content:center
    }

    .tab-nav-lg-right .nav {
        justify-content:flex-end
    }
}

@media (max-width: 991px) {
    .tab-nav-md-left .nav {
        justify-content:flex-start
    }

    .tab-nav-md-center .nav {
        justify-content:center
    }

    .tab-nav-md-right .nav {
        justify-content:flex-end
    }
}

@media (max-width: 767px) {
    .tab-nav-sm-left .nav {
        justify-content:flex-start
    }

    .tab-nav-sm-center .nav {
        justify-content:center
    }

    .tab-nav-sm-right .nav {
        justify-content:flex-end
    }
}

@media (max-width: 575px) {
    .tab-nav-xs-left .nav {
        justify-content:flex-start
    }

    .tab-nav-xs-center .nav {
        justify-content:center
    }

    .tab-nav-xs-right .nav {
        justify-content:flex-end
    }

    .nav .nav-item {
        width:50%
    }
}

.tab-nav-boxed > ul a {
    padding-left: 2.4rem;
    padding-right:2.4rem
}

.tab-boxed .tab-pane {
    padding-left: 2rem;
    padding-right:2rem
}

.tab-outline .nav-tabs {
    border-bottom:0
}

.tab-outline .nav-link {
    padding-top: 1.4rem;
    padding-bottom: 1.5rem;
    border: 1px solid transparent;
    border-top-width:2px
}

.tab-outline :hover > .nav-link, .tab-outline .active > a, .tab-outline .nav-link.active {
    border-color: #ebebeb;
    border-top-color:var(--alpha-primary-color, #ff9c28)
}

.tab-outline2 .nav {
    position: relative;
    z-index:1
}

.tab-outline2 .tab-content {
    background: #fff;
    border:1px solid #e0dedf
}

.tab-outline2 .nav-tabs {
    justify-content: space-between;
    border-bottom: 0;
    border-left:1px solid #e0dedf
}

.tab-outline2 .nav-item {
    flex:1
}

.tab-outline2 .nav-link {
    color: var(--alpha-dim-color, #54524d);
    border-style: solid;
    border-color: #e0dedf;
    border-width:1px 1px 0 0 !important
}

.tab-outline2 .nav-link:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    top: 1px;
    transform: translateY(-50%) scale(0);
    background-color: transparent;
    transition: 0.3s;
    z-index:1
}

.tab-outline2 :hover > .nav .nav-link, .tab-outline2 .active > a, .tab-outline2 .nav-link.active {
    color: var(--alpha-primary-color, #ff9c28);
    background: #fff;
    border-top-color: transparent;
    border-bottom-color:#fff
}

.tab-outline2 :hover > .nav .nav-link:after, .tab-outline2 .active > a:after, .tab-outline2 .nav-link.active:after {
    background-color: var(--alpha-primary-color, #ff9c28);
    transform:translateY(-50%) scale(1)
}

.tab-outline2 .nav-link:hover {
    color: var(--alpha-primary-color, #ff9c28);
    border-top-color:transparent
}

.tab-outline2 .nav-link:hover:after {
    background-color: var(--alpha-primary-color, #ff9c28);
    transform:translateY(-50%) scale(1)
}

@media (max-width: 575px) {
    .tab-outline2 .nav-item {
        flex:none
    }
}

.tab-nav-underline .nav-tabs {
    border-bottom:1px solid #e0dedf
}

.tab-nav-underline .nav-tabs :hover > .nav-link, .tab-nav-underline .nav-tabs .active > a, .tab-nav-underline .nav-tabs .nav-link.active {
    color:var(--alpha-primary-color, #ff9c28)
}

.tab-nav-underline .nav-link, .tab-nav-underline .woocommerce-loop-category__title {
    position:relative
}

.tab-nav-underline .nav-link {
    margin-bottom:-1px
}

.tab-nav-underline .nav-link:after, .tab-nav-underline .woocommerce-loop-category__title:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    border-bottom: 1px solid transparent;
    transform: scaleX(0);
    transition:transform 0.3s, border-color 0.3s
}

.tab-nav-underline .nav-link:after {
    bottom:0
}

.tab-nav-underline .woocommerce-loop-category__title:after {
    bottom:-5px
}

.tab-nav-underline .nav-item:hover .nav-link:after, .tab-nav-underline .nav-link.active:after {
    border-color: var(--alpha-primary-color, #ff9c28);
    transform:scaleX(1)
}

.tab-nav-underline .product-category.active .woocommerce-loop-category__title:after, .tab-nav-underline .product-category:hover .woocommerce-loop-category__title:after {
    border-color: var(--alpha-primary-color, #ff9c28);
    transform:scaleX(1)
}

.tab-nav-underline .cat-type-ellipse2.active img, .tab-nav-underline .cat-type-ellipse2:hover img {
    border-width:0
}

.tab-vertical {
    display:flex
}

.tab-vertical .nav-tabs {
    flex-flow: column nowrap;
    width: 19rem;
    border-right:1px solid #e0dedf
}

.tab-vertical .tab-content {
    flex: 1;
    padding-left:2rem
}

.tab-vertical > .nav > li {
    margin-right:0
}

.tab-vertical .nav-item:not(:last-child) {
    margin-bottom:1rem
}

.tab-vertical .nav-icon-left > .nav-link, .tab-vertical .nav-icon-right > .nav-link {
    justify-content:flex-start
}

.tab-vertical .nav-link {
    position: relative;
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
    border: 1px solid transparent;
    border-right: 0;
    text-align:left
}

.tab-vertical .nav-link:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    width: 3px;
    height: calc(100% - 6px);
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    z-index:1
}

.tab-vertical .tab-pane {
    padding-top: 1.7rem;
    padding-bottom:1.7rem
}

.tab-vertical.tab-simple .nav-link {
    border-color: #e0dedf;
    background: #f8f8f8;
    margin-right:-2px
}

.tab-vertical.tab-simple .nav-link:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 3px;
    height: 100%;
    top: 50%;
    transform: translateY(-50%) scale(0);
    background-color: transparent;
    transition: 0.3s;
    z-index:1
}

.tab-vertical.tab-simple :hover > .nav-link, .tab-vertical.tab-simple .active > a, .tab-vertical.tab-simple .nav-link.active {
    border-left-color: transparent;
    background:#fff
}

.tab-vertical.tab-simple :hover > .nav-link:after, .tab-vertical.tab-simple .active > a:after, .tab-vertical.tab-simple .nav-link.active:after {
    background-color: var(--alpha-primary-color, #ff9c28);
    transform:translateY(-50%) scale(1)
}

@media (max-width: 575px) {
    .tab-vertical .nav-item {
        width:auto
    }
}

.tab-inverse .tab-content {
    border-color: #fff;
    background:#fff
}

.tab-inverse .nav-tabs {
    border:0
}

.tab-inverse .nav-link {
    margin: 0;
    width:100%
}

.tab-inverse :hover > .nav-link, .tab-inverse .active > a, .tab-inverse .nav-link.active {
    background-color: #fff;
    border-color:#fff
}

.tab-inverse.tab-simple .nav-link {
    padding-top: 1.4rem;
    border-top:2px solid transparent
}

.tab-inverse.tab-simple :hover > .nav-link, .tab-inverse.tab-simple .active > a, .tab-inverse.tab-simple .nav-link.active {
    border-top-color:var(--alpha-primary-color, #ff9c28)
}

.tab-nav-solid .nav-tabs {
    border-bottom:1px solid #e0dedf
}

.tab-nav-solid .nav-link {
    position: relative;
    top: 1px;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    padding-bottom: 1.6rem;
    border: 1px solid #e0dedf;
    background:#fff
}

.tab-nav-solid :hover > .nav-link, .tab-nav-solid .active > a, .tab-nav-solid .nav-link.active {
    color: #fff;
    background-color: var(--alpha-primary-color, #ff9c28);
    border-color:var(--alpha-primary-color, #ff9c28)
}

@media (max-width: 575px) {
    .tab-nav-solid .nav-tabs {
        border-bottom:0
    }

    .tab-nav-solid .nav-item {
        margin-bottom:1rem
    }

    .tab-nav-solid .nav-link {
        border-bottom:1px solid #e0dedf
    }
}

@media (max-width: 767px) {
    .nav-link {
        font-size:1.4rem
    }

    .tab-vertical {
        flex-flow:column nowrap
    }

    .tab-vertical .nav-tabs, .tab-vertical .tab-content {
        width:100%
    }

    .tab-vertical .nav-tabs {
        margin-bottom:2rem
    }

    .tab-vertical .tab-content {
        padding-left:0
    }

    .tab-nav-boxed .nav-link {
        padding-left: 1rem;
        padding-right:1rem
    }
}

.testimonial-group .testimonial {
    margin-bottom:2rem
}

.testimonial {
    position: relative;
    padding: 0;
    margin-bottom: 0;
    width: 100%;
    color: var(--alpha-body-color, #777);
    font-size: 1.4rem;
    background-color: transparent;
    border-left: 0;
    transition:background-color 0.4s, box-shadow 0.4s
}

.testimonial > * {
    position:relative
}

.slider-wrapper .testimonial img, .testimonial img {
    width: 100px;
    height: 100px;
    border-radius:50%
}

.elementor .testimonial .avatar img, .slider-wrapper .elementor .testimonial .avatar img {
    width: 100px;
    height:100px
}

.testimonial cite {
    display: block;
    font-style: normal;
    color:var(--alpha-body-color, #777)
}

.testimonial .name {
    margin-bottom: 1.1rem;
    color: var(--alpha-dark-color, #333);
    font-weight: 400;
    line-height: 1;
    text-transform:uppercase
}

.testimonial .role {
    text-transform: none;
    line-height:1
}

.testimonial .comment {
    margin-bottom:2.2rem
}

.testimonial .content {
    flex: 1;
    overflow:hidden
}

.testimonial .comment-title {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space:nowrap
}

.testimonial .comment {
    font-size: 1.6rem;
    line-height: 1.625;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow:hidden
}

.testimonial .ratings-container {
    margin-bottom: 1rem;
    line-height: 1;
    font-size:1.1rem
}

.testimonial .ratings, .testimonial .ratings-full {
    display: inline-block;
    position: relative;
    font-family: "panda";
    letter-spacing:0.2em
}

.testimonial .ratings-full {
    cursor:pointer
}

.testimonial .ratings-full:before {
    content: "" "" "" "" "";
    color: rgba(0, 0, 0, 0.16);
    white-space:nowrap
}

.testimonial .ratings-full:hover .tooltiptext {
    visibility: visible;
    opacity:1
}

.testimonial .ratings {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow:hidden
}

.testimonial .ratings:before {
    content: "" "" "" "" "";
    color:var(--alpha-primary-color, #ff9c28)
}

.testimonial .tooltiptext {
    letter-spacing:0
}

.testimonial.aside, .testimonial.aside_info .commenter, .testimonial .avatar {
    display:inline-flex
}

.testimonial.aside .avatar, .testimonial.aside_info .avatar {
    margin-right:1.5rem
}

.testimonial.top_info cite, .testimonial cite span {
    display:block
}

.testimonial .fa-icon .ratings:before, .testimonial .fa-icon:before {
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    content: "" "" "" "" ""
}

.testimonial .fa-icon.outline:before {
    font-weight: 400;
    content: "" "" "" "" ""
}

.testimonial:before {
    position: absolute;
    top: 54%;
    right: 10%;
    content: "";
    color: #f8f8f8;
    font-family: "panda";
    font-size: 120px;
    font-weight: 600;
    transform:translateY(-50%)
}

.testimonial-1 {
    padding: 4.5rem 7rem 5rem 5rem;
    background:#f8f8f8
}

.testimonial-1 .commenter {
    display: flex;
    align-items:center
}

.testimonial-1 .commenter .avatar {
    margin-right:2rem
}

.slider-wrapper .testimonial-1 img, .testimonial-1 img {
    width: 80px;
    height: 81px;
    border-radius:50%
}

.elementor .testimonial-1 .avatar img, .slider-wrapper .elementor .testimonial-1 .avatar img {
    width: 80px;
    height:81px
}

.testimonial-1:before {
    top: 42%;
    right: 14%;
    color:#fff
}

.testimonial-1.inversed .comment-title, .testimonial-1.inversed .content, .testimonial-1.inversed cite {
    text-align:right
}

.testimonial-1.inversed:before {
    right:auto
}

.testimonial-1.inversed .avatar {
    order: 2;
    margin-left: 1.5rem;
    margin-right:0
}

.testimonial-1.inversed .commenter {
    justify-content:flex-end
}

@media (max-width: 575px) {
    .testimonial-1 {
        padding:4.5rem 2rem 5rem
    }
}

.testimonial-2 {
    padding: 7.7rem 2.5rem 2.5rem 3rem;
    background:#f8f8f8
}

.testimonial-2 .media {
    display: flex;
    position: absolute;
    align-items: flex-end;
    top: 0;
    transform:translateY(-50%)
}

.testimonial-2 .avatar {
    position: relative;
    margin-right:2.8rem
}

.testimonial-2 .avatar:after {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: -0.3rem;
    right: -1.2rem;
    content: "";
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    color: #fff;
    background-color: var(--alpha-primary-color, #ff9c28);
    font-family: "panda";
    font-size: 2rem;
    font-weight:600
}

.testimonial-2 .ratings, .testimonial-2 .ratings-full {
    letter-spacing:0.05em
}

.testimonial-2 .commenter {
    display:flex
}

.testimonial-2:before {
    display:none
}

.testimonial-2.inversed .top {
    right:3rem
}

.testimonial-2.inversed .comment-title, .testimonial-2.inversed .content, .testimonial-2.inversed cite {
    text-align:right
}

.testimonial-2.inversed .avatar {
    order: 2;
    margin-left: 1.5rem;
    margin-right:0
}

.testimonial-2.inversed .avatar:after {
    right:auto
}

.testimonial-2.inversed .commenter {
    justify-content:flex-end
}

.testimonial-3 {
    padding: 7.5rem 5rem 2.5rem 0;
    background:transparent
}

.testimonial-3:before {
    display:block
}

.testimonial-3 .avatar {
    margin-right:3.7rem
}

.testimonial-3 .avatar:after {
    right: -1.7rem;
    bottom:0
}

.testimonial-3:before {
    font-size: 130px;
    right:18%
}

.testimonial-3.inversed:before {
    right:auto
}

@media (max-width: 575px) {
    .testimonial-3 {
        padding:7.5rem 0 2.5rem 0
    }
}

.testimonial-4 {
    display: flex;
    align-items: center;
    padding: 2rem 3.5rem 2rem 2rem;
    border:1px solid #e0dedf
}

.testimonial-4 .avatar {
    margin-right:3rem
}

.testimonial-4 .commentor {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:center
}

.testimonial-4 .commentor cite {
    margin-right: 0;
    margin-left: 0;
    text-align:center
}

.testimonial-4 cite {
    display: flex;
    align-items:center
}

.testimonial-4 .name {
    margin-bottom: 0;
    margin-right:1.8rem
}

.testimonial-4:before {
    display:none
}

.testimonial-4.inversed .commentor {
    order:2
}

.testimonial-4.inversed .commentor cite {
    margin-left:0
}

.testimonial-4.inversed .comment, .testimonial-4.inversed .comment-title, .testimonial-4.inversed .ratings-container, .testimonial-4.inversed cite {
    margin-left: 2rem;
    margin-right: 0;
    padding-right:0
}

@media (max-width: 575px) {
    .testimonial-4 {
        padding: 2rem;
        flex-direction: column;
        text-align:center
    }

    .testimonial-4 .avatar {
        margin-right: 0;
        margin-bottom:1rem
    }

    .testimonial-4 cite {
        flex-direction:column
    }

    .testimonial-4 cite .name {
        margin-bottom: 1.1rem;
        margin-right:0
    }
}

.testimonial-5 {
    text-align:center
}

.testimonial-5 .avatar {
    margin:0 auto 3.5rem auto
}

.slider-wrapper .testimonial-5 img, .testimonial-5 img {
    width: 120px;
    height: 120px;
    border-radius:50%
}

.elementor .testimonial-5 .avatar img, .slider-wrapper .elementor .testimonial-5 .avatar img {
    width: 120px;
    height:120px
}

.testimonial-5 .ratings-container {
    margin-bottom:1rem
}

.testimonial-5 .content {
    position: relative;
    overflow:visible
}

.testimonial-5 .content:after, .testimonial-5 .content:before {
    position: absolute;
    color: var(--alpha-primary-color, #ff9c28);
    font-family: "panda";
    font-size: 3rem;
    font-weight:600
}

.testimonial-5 .content:before {
    content: "";
    top: -6rem;
    left:1.5rem
}

.testimonial-5 .content:after {
    content: "";
    transform: rotate(180deg);
    bottom: -4rem;
    right:0.5rem
}

.testimonial-5:before {
    display:none
}

.tooltiptext {
    position: absolute;
    padding: 1rem 0.7rem;
    bottom: 125%;
    left: 50%;
    background-color: var(--alpha-dark-color, #333);
    color: #fff;
    font-weight: 400;
    font-size: 1.3rem;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-50%);
    z-index: 1;
    transition:opacity 0.3s
}

.tooltip-top:after {
    content: "";
    position: absolute;
    top: 96%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color:var(--alpha-dark-color, #333) transparent transparent transparent
}

.title-wrapper {
    display: flex;
    align-items:center
}

.title-wrapper .link {
    display: inline-flex;
    align-items: center;
    color:var(--alpha-dark-color, #333)
}

.title-wrapper .link:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.title-wrapper .divider {
    margin:0 1.5rem
}

.title {
    margin-bottom: 0;
    max-width: 100%;
    font-weight:300
}

.title:after, .title:before {
    height: 1px;
    background:#edeef0
}

.title-left .title {
    margin-right:auto
}

.title-right .title {
    margin-left: auto;
    text-align:right
}

.title-center .title {
    margin-left: auto;
    margin-right: auto;
    text-align:center
}

.rtl .title-left .p-icon-long-arrow-right:before {
    content: ""
}

.link-left .title {
    margin-left: 0;
    margin-right:0
}

.link-left.title-left {
    justify-content: flex-start;
    text-align:left
}

.link-left.title-center {
    justify-content:center
}

.link-left.title-right {
    justify-content: flex-end;
    text-align:right
}

.title-cross .title {
    display: flex;
    position: relative;
    align-items: center;
    flex:1
}

.title-cross .title:before {
    margin-right:3rem
}

.title-cross .title:after {
    margin-left:3rem
}

.title-cross .title:after, .title-cross .title:before {
    flex: 1;
    content: ""
}

.title-cross.title-left .title:before, .title-cross.title-right .title:after {
    content:none
}

.title-underline {
    position: relative;
    text-align:left
}

.title-underline:after {
    content: "";
    margin: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 1px;
    background:#edeef0
}

.title-underline .title {
    display: inline-block;
    flex: 0 0 auto;
    position: relative;
    z-index:2
}

.title-underline .title:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    background:var(--alpha-primary-color, #ff9c28)
}

.title-underline2 {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom:1px solid #e0dedf
}

.title-underline2 .title {
    font-weight: 700;
    font-size: 2rem;
    text-transform:capitalize
}

.title-underline2 .btn-link {
    padding: 0.5rem 0;
    text-transform:capitalize
}

.title-underline3 {
    position: relative;
    display: inline-block !important;
    width:auto
}

.title-underline3:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 98%;
    height: 13px;
    background-color: var(--alpha-primary-color, #ff9c28);
    opacity: 0.3;
    border-bottom: 0;
    z-index:-1
}

.title-underline4:after {
    content: "";
    display: block;
    margin-top: 1.3rem;
    width: 6rem;
    height: 1px;
    background-color:var(--alpha-primary-color, #ff9c28)
}

.title-underline-center:after, .title-underline-center:before {
    margin:auto
}

.title-underline-end:after, .title-underline-end:before {
    margin-left:auto
}

.title-underline-md:after, .title-underline-md:before {
    width:8rem
}

.title-underline-thick:after, .title-underline-thick:before {
    height:2px
}

.title-underline-secondary:after, .title-underline-secondary:before {
    background-color:var(--alpha-secondary-color, #54524d)
}

@media (max-width: 575px) {
    .title-wrapper {
        flex-wrap:wrap
    }
}

.vendor-widget {
    margin-bottom:2rem
}

.vendor-widget .vendor-details {
    display: flex;
    align-items:center
}

.vendor-widget .vendor-logo {
    max-width: 7rem;
    width: 100%;
    height: 7rem;
    background-color:#e1e1e1
}

.vendor-widget .vendor-logo img {
    width: 100%;
    height: auto;
    object-fit:cover
}

.vendor-widget .vendor-personal {
    margin-left:1rem
}

.vendor-widget .vendor-name {
    display: inline-block;
    font-size: 1.5rem;
    text-transform: capitalize;
    letter-spacing: -0.025em;
    line-height: 1.4;
    margin-bottom: 0;
    max-width: 100%;
    vertical-align: middle;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow:hidden
}

.vendor-widget .vendor-products-count {
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: 0;
    color: var(--alpha-body-color, #777);
    white-space: nowrap;
    vertical-align:middle
}

.vendor-widget .vendor-sale {
    margin-bottom:0
}

.vendor-widget .ratings-container {
    line-height: 1;
    margin-top:0.4rem
}

.vendor-widget .ratings-container .star-rating {
    font-size:12px
}

.vendor-widget .ratings-container + .vendor-sale {
    margin-top:0.4rem
}

.vendor-widget-1 .vendor-details {
    margin-top: 2rem;
    margin-bottom:2rem
}

.vendor-widget-1 .product-media img {
    border: 1px solid transparent;
    transition:border-color 0.35s
}

.vendor-widget-1 .product-media img:hover {
    border-color:var(--alpha-primary-color, #ff9c28)
}

.vendor-widget-1 .vendor-personal {
    max-width:calc(100% - 8rem)
}

.vendor-widget-1 .vendor-name {
    display: inline-block;
    max-width:100%
}

.vendor-widget-2 {
    padding: 2rem;
    border: 1px solid #e0dedf;
    transition:border-color 0.3s
}

.vendor-widget-2 .vendor-logo {
    margin-right: 1rem !important;
    max-width: 7rem;
    height:7rem
}

.vendor-widget-2 .vendor-logo img {
    width:100%
}

.vendor-widget-2 .vendor-details {
    display: flex;
    align-items:center
}

.vendor-widget-2 .vendor-personal {
    margin-left: 0;
    max-width:calc(100% - 9rem)
}

.vendor-widget-2 .vendor-products {
    margin-top:2rem
}

.vendor-widget-2:hover {
    border-color:var(--alpha-primary-color, #ff9c28)
}

.vendor-widget-3 {
    border: 1px solid #e0dedf;
    transition:box-shadow 0.45s, border-color 0.45s
}

.vendor-widget-3 .vendor-details {
    padding: 0 2rem 2rem;
    margin-top: -45px;
    flex-direction:column
}

.vendor-widget-3 .vendor-info {
    text-align: right;
    flex:1
}

.vendor-widget-3 .vendor-name {
    display: block;
    margin-top: 1.7rem;
    margin-bottom: 1.3rem;
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    letter-spacing:0
}

.vendor-widget-3 .ratings-container {
    margin-bottom:1.3rem
}

.vendor-widget-3 .vendor-products-count {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--alpha-body-color, #777);
    line-height:1
}

.vendor-widget-3 .visit-vendor-btn {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--alpha-secondary-color, #54524d);
    text-transform: uppercase;
    transition:color 0.4s
}

.vendor-widget-3 .visit-vendor-btn.active, .vendor-widget-3 .visit-vendor-btn:focus, .vendor-widget-3 .visit-vendor-btn:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.vendor-widget-3 .vendor-banner {
    min-height:18rem
}

.vendor-widget-3 .vendor-banner img {
    min-height: inherit;
    object-fit:cover
}

.vendor-widget-3 .vendor-logo {
    max-width: 9rem;
    height: 9rem;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
    background-color: #e5e5e5;
    transition:background-color 0.45s, border-color 0.45s
}

.vendor-widget-3 .vendor-logo img {
    border-radius: 50%;
    transition:transform 0.45s
}

.vendor-widget-3:hover {
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.08);
    border-color:transparent
}

.vendor-widget-3:hover .vendor-logo {
    background-color: var(--alpha-primary-color, #ff9c28);
    border-color:var(--alpha-primary-color, #ff9c28)
}

.vendor-widget-3:hover .vendor-logo img {
    transform:translateY(-10px)
}

.vendor-widget-3 .star-rating {
    margin-right:0
}

.vendor-widget-3 .product-media {
    border: 1px solid transparent;
    transition:border-color 0.4s
}

.vendor-products.grid-type {
    display: grid;
    grid-template-columns: repeat(auto-fill, calc(100% / 3));
    margin: -2.5px;
    width: calc(100% + 5px);
    grid-auto-rows:1fr
}

.vendor-products.grid-type .product-media {
    padding: 2.5px;
    grid-column-end: span 1;
    grid-row-end:span 1
}

.vendor-products.grid-type .product-media:first-child {
    grid-column-end: span 2;
    grid-row-end:span 2
}

.vendor-products.grid-type .product-media, .vendor-products.grid-type a, .vendor-products.grid-type img {
    height: 100%;
    object-fit:cover
}

.widget-title, .widgettitle {
    margin-bottom: 2rem;
    padding: 1.3rem 0;
    font-size: 2.4rem;
    font-weight: 300;
    text-transform: capitalize;
    line-height: 1.2;
    letter-spacing:0
}

.widget .contact-info label {
    margin-right:3px
}

.widget .contact-info .work label {
    display: block;
    margin-bottom:15px
}

.widget .current-cat > a {
    color:var(--alpha-primary-color, #ff9c28)
}

.widget .children {
    padding-left:1.3rem
}

.widget_search .search-wrapper.hs-simple .btn-search:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.compare-popup {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    padding: 2rem 0;
    background: #fff;
    transition: transform 0.3s;
    z-index:3001
}

.compare-popup.show {
    transform:translateY(-99%)
}

.compare-popup.show + .compare-popup-overlay {
    opacity: 0.7;
    visibility: visible;
    transition:opacity 0.3s
}

.compare-popup .container {
    display: flex;
    align-items:center
}

.compare-popup h3 {
    margin: 1rem 0 0.2rem;
    font-size: 2.4rem;
    font-weight:700
}

.compare-popup .btn-dark {
    --alpha-dark-color: #454545;
    --alpha-dark-color-hover:#565656
}

@media (min-height: 600px) and(min-width: 1200px) {
    .compare-popup {
        padding:3rem 0
    }
}

.compare-clean {
    margin: 1.4rem 2rem 1rem;
    color:var(--alpha-body-color, #777)
}

.compare-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    z-index:3000
}

.compare-list {
    margin: 1rem auto 0 2.6vw;
    max-width: 52%;
    padding:2rem
}

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

.compare-list figure {
    display: flex;
    align-items: center;
    justify-content:center
}

.compare-list li {
    position: relative;
    width: 8vw;
    width: 138px;
    min-height: 138px;
    height:auto
}

.compare-list li img {
    width: 100%;
    height: 100%;
    object-fit:cover
}

.compare-list li:empty:before {
    content: "+";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 5rem;
    font-size: 3rem;
    color: #eee;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    box-shadow:2px 4px 15px rgba(0, 0, 0, 0.12)
}

.compare-list li:empty:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    border:1px solid #e0dedf
}

.compare-list .btn-remove {
    position: absolute;
    right: -1rem;
    top: -1rem;
    width: 1.9rem;
    line-height: 1.9rem;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
    background-color: #fff;
    color: #666;
    font-size:1.2rem
}

.compare-heading {
    text-align:center
}

.compare-heading p {
    margin-bottom: 0;
    color:#999
}

.compare-heading mark {
    color: inherit;
    background:transparent
}

.alpha-compare-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    color:var(--alpha-body-color, #777)
}

.alpha-compare-table .compare-row {
    display: flex;
    flex-wrap:nowrap
}

.alpha-compare-table .compare-col {
    padding: 35px 0 30px;
    word-break:break-word
}

.alpha-compare-table .compare-col > :last-child {
    margin-bottom:0
}

.alpha-compare-table .compare-col ul {
    margin-top:0
}

.alpha-compare-table .compare-col + .compare-col {
    padding-left:2rem
}

.alpha-compare-table .compare-basic .compare-col {
    padding:25px 0
}

.alpha-compare-table .compare-basic .compare-col + .compare-col {
    padding-left:2rem
}

.alpha-compare-table .compare-basic .compare-col.compare-field {
    padding-right:6rem
}

.alpha-compare-table .compare-field {
    flex: 0 0 23.8%;
    padding-right: 6rem;
    text-align: right;
    color: #999;
    font-size:16px
}

.alpha-compare-table .compare-sku {
    text-transform:uppercase
}

.alpha-compare-table .compare-value {
    flex:0 0 25.4%
}

.alpha-compare-table .compare-value .swatch {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 8px;
    border-radius: 50%;
    vertical-align:middle
}

.alpha-compare-table .compare-value .label-swatch {
    width: auto;
    height: auto;
    color:var(--alpha-dark-color, #333)
}

.alpha-compare-table .product-action {
    position: static;
    opacity: 1;
    visibility: visible;
    justify-content: center;
    min-height:9rem
}

.alpha-compare-table .product-action > a {
    margin-top: 1rem;
    color: var(--alpha-dim-color, #54524d);
    font-size: 1.8rem;
    transition:color 0.3s
}

.alpha-compare-table .product-action > a i {
    display: block;
    font-weight:600
}

.alpha-compare-table .product-action > a.to-left, .alpha-compare-table .product-action > a.to-right {
    opacity: 0;
    transition:transform 0.4s, opacity 0.4s
}

.alpha-compare-table .product-action > a.to-left {
    transform:translateX(40px)
}

.alpha-compare-table .product-action > a.to-right {
    transform:translateX(-40px)
}

.alpha-compare-table .product-action > a:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.alpha-compare-table .product-action:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.alpha-compare-table .product-action:hover .to-left, .alpha-compare-table .product-action:hover .to-right {
    opacity:1
}

.alpha-compare-table .product-action:hover .to-left {
    transform:translateX(-25px)
}

.alpha-compare-table .product-action:hover .to-right {
    transform:translateX(25px)
}

.alpha-compare-table .action-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    padding: 7px 5px;
    min-width: 150px;
    background-color: #fff;
    box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.08);
    transition:opacity 0.3s, visibility 0.3s, bottom 0.3s
}

.alpha-compare-table .btn-product-icon, .alpha-compare-table .remove_from_compare {
    margin-bottom: 0;
    color: #999;
    font-size:1.8rem
}

.alpha-compare-table .btn-product-icon:hover, .alpha-compare-table .remove_from_compare:hover {
    border-color: transparent;
    background-color: transparent;
    color:var(--alpha-primary-color, #ff9c28)
}

.alpha-compare-table .btn-product-icon:before {
    top:-1px
}

.alpha-compare-table .remove_from_compare {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.55em;
    height: 1.55em;
    font-size: 2.4rem;
    line-height:2em
}

.alpha-compare-table .remove_from_compare i {
    top:1px
}

.alpha-compare-table .compare-row:nth-child(2n) .compare-col {
    background-color:#f8f8f8
}

.alpha-compare-table .compare-basic {
    font-size: 1rem;
    text-align:center
}

.alpha-compare-table .compare-basic .compare-field {
    display: flex;
    align-items: center;
    justify-content:flex-end
}

.alpha-compare-table figure:hover .product-action-vertical {
    opacity: 1;
    visibility:visible
}

.alpha-compare-table .product-title {
    display: block;
    color: var(--alpha-dark-color, #333);
    font-size:1.6rem
}

.alpha-compare-table .stock {
    margin: 0;
    background: transparent;
    color: inherit;
    font-weight: inherit;
    padding:0
}

.alpha-compare-table .woocommerce-Price-amount {
    color: var(--alpha-dark-color, #333);
    font-weight:400
}

.alpha-compare-table .compare-type {
    color: var(--alpha-dark-color, #333);
    text-transform:capitalize
}

.alpha-compare-table del {
    color:#999
}

.alpha-compare-table del .woocommerce-Price-amount {
    color:inherit
}

.alpha-compare-table .compare-value[data-title=Availability] {
    color: #ffa800;
    text-transform:capitalize
}

.alpha-compare-table .compare-value[data-title=Availability] .stock {
    color:#f12a57
}

.alpha-compare-table .compare-description .compare-value {
    color:var(--alpha-dim-color, #54524d)
}

.alpha-compare-table .star-rating {
    font-size: 1.1rem;
    letter-spacing:0.35em
}

.alpha-compare-table .star-rating + a {
    font-size:1.2rem
}

.alpha-compare-table.empty {
    color: inherit;
    text-align:center
}

.alpha-compare-table.empty h2 {
    font-size: inherit;
    color: inherit;
    margin:22px 0
}

.alpha-compare-table.empty .button {
    margin-top: 1rem;
    width:20rem
}

.compare-basic-info .product-title:not(:hover) {
    color:var(--alpha-dark-color, #333)
}

.compare-col {
    position:relative
}

.compare-col:nth-child(2) .to-left {
    cursor: not-allowed;
    color:var(--alpha-light-color, #ccc)
}

.compare-col:nth-child(2) .to-left:hover {
    color:var(--alpha-light-color, #ccc)
}

.compare-col.last-col .to-right {
    cursor: not-allowed;
    color:var(--alpha-light-color, #ccc)
}

.compare-col.last-col .to-right:hover {
    color:var(--alpha-light-color, #ccc)
}

@media (max-width: 991px) {
    .compare-popup .container {
        flex-wrap: wrap;
        justify-content:center
    }

    .compare-list {
        margin: 2rem 0 1rem;
        padding: 2rem 1rem;
        flex: 0 0 100%;
        justify-content: center;
        max-width:100%
    }

    .compare-list > li {
        width:20vw
    }

    .compare-heading > * {
        display:inline
    }

    .alpha-compare-table .compare-field, .alpha-compare-table .compare-value {
        flex:0 0 33.33%
    }
}

@media (max-width: 767px) {
    .alpha-compare-table .compare-field, .alpha-compare-table .compare-value {
        flex: 0 0 50%;
        max-width:50%
    }
}

@media (max-width: 575px) {
    .alpha-compare-table .product-action:hover .to-left {
        transform:translateX(-5px)
    }

    .alpha-compare-table .product-action:hover .to-right {
        transform:translateX(5px)
    }
}

@media (max-width: 479px) {
    .compare-list > li {
        min-height:40px
    }

    .compare-heading {
        flex: 0 0 100%;
        margin:0 0 1rem
    }

    .compare-heading > * {
        display:block
    }

    .alpha-compare-table .action-panel {
        min-width:100px
    }
}

.error404 .main {
    padding-top: 0;
    padding-bottom: 0;
    border:none
}

.area_404 {
    display: flex;
    align-items: center;
    background-color: #e8e4e1;
    background-position: center;
    background-image: url(../../assets/images/error-404.jpg);
    background-size: cover;
    height: 100%;
    min-height:700px
}

.area_404 h1 {
    font-family: "Mukta";
    font-size: 10rem;
    font-weight: 600;
    line-height:0.7
}

.area_404 h2 {
    font-size: 5.8rem;
    line-height:1
}

.area_404 h3 {
    font-size: 2rem;
    line-height:1.2
}

@media (min-width: 768px) {
    .area_404 {
        min-height:800px
    }

    .area_404 .row {
        padding-left:10rem
    }

    .area_404 h1 {
        font-size:12rem
    }

    .area_404 h2 {
        font-size:7rem
    }

    .area_404 h3 {
        font-size:2.5rem
    }
}

@media (min-width: 992px) {
    .area_404 {
        min-height:916px
    }

    .area_404 h1 {
        font-size:15.4rem
    }

    .area_404 h2 {
        font-size:8rem
    }

    .area_404 h3 {
        font-size:3rem
    }
}

.logo {
    display:block
}

.default-header .logo {
    width:171px
}

.account, .compare-open, .contact, .login, .register, .wishlist {
    display: flex;
    align-items:center
}

.account .links {
    display: flex;
    align-items:center
}

.account.block-type .links {
    margin-top:10px
}

.account-dropdown:after, .account-dropdown > a:after {
    content:none
}

.account-dropdown a {
    line-height:1.2
}

.account-dropdown .menu > ul > li > a {
    padding: 6px 15px;
    font-weight: 300;
    text-transform:capitalize
}

.account-dropdown .menu ul {
    padding:0
}

.account-dropdown .dropdown-box {
    padding: 1rem 0 0.5rem;
    width:auto
}

.account-dropdown .dropdown-box ul.menu > li {
    padding:0
}

.account-dropdown a.block-type:after {
    display:none
}

.account-avatar {
    width: 40px;
    height: 40px;
    background: #ebebeb;
    border-radius: 50%;
    overflow:hidden
}

.block-type .account-avatar {
    margin-bottom:1rem
}

.inline-type .account-avatar {
    margin-right:1rem
}

.account .delimiter {
    color: #aaa;
    margin:0 3px
}

.contact .telephone {
    display:block
}

.contact .contact-delimiter {
    text-transform:lowercase
}

.contact i {
    padding-right: 10px;
    transition:color 0.3s
}

.compare-open i + span, .login i + span, .wishlist i + span {
    margin-left:9px
}

.account .login:hover, .account .register:hover, .compare-open:hover, .wishlist:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.badge-type i + span {
    margin-left: 0;
    margin-top:10px
}

header .block-type {
    flex-direction:column
}

header .block-type i + span {
    margin:3px 0 0
}

i {
    position:relative
}

.compare-dropdown:after, .wishlist-dropdown:after {
    display:none
}

.widget_wishlist_content > .d-loading {
    display:none
}

.cart-dropdown.badge-type .cart-count, .header .compare-count, .header .wish-count {
    position: absolute;
    right: -21px;
    top: 6px;
    width: 1.55em;
    height: 1.55em;
    line-height: 1.55em;
    font-size: 1.2rem;
    border-radius: 50%;
    background-color: var(--alpha-primary-color, #ff9c28);
    color: #fff;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;
    font-family: "Josefin Sans", sans-serif
}

header .cart-toggle > i, header .compare-open i, header .contact i, header .login > i, header .wishlist > i {
    font-size: 2.3rem;
    margin-bottom:-4px
}

@media (max-width: 575px) {
    .welcome-msg {
        white-space: nowrap;
        transform: translateX(0);
        animation:6s linear 2s 1 show_msg_first, 12s linear 8s infinite show_msg
    }
}

@keyframes show_msg_first {
    0% {
        transform:translateX(0%)
    }

    to {
        transform:translateX(-100%)
    }
}

@keyframes show_msg {
    0% {
        transform:translateX(100%)
    }

    to {
        transform:translateX(-100%)
    }
}

.menu.switcher {
    font-size:1.2rem
}

.menu.switcher a {
    white-space:nowrap
}

.menu.switcher i, .menu.switcher img {
    margin-right: 0.5rem;
    margin-bottom:0.2rem
}

.menu.switcher img {
    max-width: 14px;
    margin-top: -2px;
    vertical-align:middle
}

.menu.switcher li.active > a, .menu.switcher li:hover > a {
    color:var(--alpha-primary-color, #ff9c28)
}

.menu.switcher li a {
    padding: 6px 10px;
    line-height:1.1
}

.menu.switcher > li > a {
    padding: 9px 0;
    top: 1px;
    font-size: 12px;
    font-weight:300
}

.menu.switcher > li > a:after {
    margin-top: -1px;
    right:-1.8em
}

.menu.switcher ul {
    left: auto;
    right: 0;
    min-width: 0;
    padding:5px 0
}

.menu.switcher ul li {
    padding:0
}

.menu.switcher ul a {
    color:var(--alpha-body-color, #777)
}

.absolute-header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index:1040
}

@media (max-width: 991px) {
    .header .logo {
        margin-right:var(--alpha-logo-mobile-space)
    }

    .header .account > span, .header .cart-dropdown.block-type > span, .header .cart-toggle > span, .header .compare-open > span, .header .wishlist > span {
        display:none
    }

    .header .account i, .header .cart-dropdown.block-type i, .header .cart-toggle i, .header .compare-open i, .header .wishlist i {
        margin-bottom: 0;
        line-height:1
    }

    .header .account span {
        display:none
    }

    .sticky-wrapper {
        height:auto !important
    }

    .contact .contact-content {
        display:none
    }

    body .dropdown.mobile-links li {
        margin-right:0
    }

    body .dropdown.mobile-links li > a {
        display: block;
        padding:0.6rem 1rem
    }

    body .dropdown.mobile-links .menu {
        display:block
    }

    body .dropdown.mobile-links li:hover > a {
        color:var(--alpha-primary-color, #ff9c28)
    }

    .has-mob-center .header-left, .has-mob-center .header-right {
        flex:1
    }

    .header .search-toggle i {
        font-size:2rem
    }
}

@media (min-width: 992px) {
    .dropdown.mobile-links:after {
        content:none
    }

    .dropdown.mobile-links > a {
        display:none
    }

    .dropdown.mobile-links .dropdown-box {
        position: static;
        visibility: visible;
        opacity: 1;
        background-color: transparent;
        box-shadow: none;
        border: 0;
        padding: 9px 0;
        transform: none;
        color:inherit
    }

    .dropdown.mobile-links .dropdown-box > li {
        margin-right:1.95rem
    }

    .dropdown.mobile-links .dropdown-box > li:last-child {
        margin-right:0
    }

    .dropdown.mobile-links .dropdown-box a {
        padding:0
    }

    .has-desk-center .header-left, .has-desk-center .header-right {
        flex:1
    }
}

.mini-basket-dropdown > a:after {
    content:none
}

.mini-basket-dropdown .dropdown-box {
    padding: 2rem 3rem 3rem;
    min-width:34rem
}

.mini-basket-dropdown .mini-list {
    max-height: 25rem;
    margin: 0;
    padding-left: 0;
    padding-right: 5px;
    list-style: none;
    overflow-y: scroll;
    overflow-x: hidden;
    text-transform:capitalize
}

.mini-basket-dropdown .mini-list + .buttons {
    margin-top: 1rem;
    margin-bottom: 0;
    border-top: 1px solid #eee;
    padding-top:20px
}

.mini-basket-dropdown .mini-item {
    display: flex;
    position: relative;
    align-items: center;
    font-size: 1.4rem;
    padding:1rem 0
}

.mini-basket-dropdown .mini-item a {
    padding:0
}

.mini-basket-dropdown .mini-item > a:nth-child(2) {
    flex: 0 0 8.4rem;
    max-width: 8.4rem;
    padding:0
}

.mini-basket-dropdown .mini-item > a:nth-child(2) img {
    width: 100%;
    object-fit:cover
}

.mini-basket-dropdown .mini-item .remove {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    font-size: 1.4rem;
    color: #aeaeae;
    background: #fff;
    border: 1px solid #e0dedf;
    transition: color 0.4s, border 0.4s;
    z-index:3
}

.mini-basket-dropdown .mini-item .remove i {
    display:none
}

.mini-basket-dropdown .mini-item .remove:hover {
    color: var(--alpha-primary-color, #ff9c28);
    border-color:var(--alpha-primary-color, #ff9c28)
}

.mini-basket-dropdown .mini-item .remove:before {
    content: "";
    font-family: "panda"
}

.mini-basket-dropdown .mini-item .quantity {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: auto;
    line-height: 1;
    font-size: 1.8rem;
    height: auto;
    color:var(--alpha-body-color, #777)
}

.mini-basket-dropdown .mini-item .quantity .times {
    position: relative;
    top: -5px;
    margin-left: 0.5rem;
    font-size: 3.5rem;
    font-weight:100
}

.mini-basket-dropdown .mini-item .quantity ins {
    color:var(--alpha-dim-color, #54524d)
}

.mini-basket-dropdown .mini-item .quantity del {
    color: var(--alpha-body-color, #777);
    font-size: 1.4rem;
    margin-left:0.5rem
}

.mini-basket-dropdown .mini-item .amount {
    color: inherit;
    font-weight:400
}

.mini-basket-dropdown .mini-item-meta {
    flex: 1;
    order: 1;
    margin:auto 0 auto 2rem
}

.mini-basket-dropdown .mini-item-meta a {
    margin-bottom:1.5rem
}

.mini-basket-dropdown .mini-item-meta a:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.mini-basket-dropdown .mini-item-meta input.qty {
    width:70px
}

.mini-basket-dropdown .empty-msg {
    font-size: 1.4rem;
    line-height: 1;
    margin: 1rem 0 0;
    text-align:center
}

.mini-basket-dropdown.offcanvas-type:after {
    content:none
}

.mini-basket-dropdown.offcanvas-type .popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1.4rem;
    border-bottom:1px solid #e1e1e1
}

.mini-basket-dropdown.offcanvas-type h3 {
    margin-bottom: 0;
    font-size: 2rem;
    line-height:22px
}

.mini-basket-dropdown.offcanvas-type .btn-close {
    font-size: 1.6rem;
    text-transform: capitalize;
    font-weight: 300;
    color:var(--alpha-body-color, #777)
}

.mini-basket-dropdown.offcanvas-type .btn-close:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.mini-basket-dropdown.offcanvas-type .btn-close i {
    margin-left: 5px;
    top:0
}

.mini-basket-dropdown.offcanvas-type .dropdown-box {
    position: fixed;
    top: 0;
    right: -37rem;
    padding: 2.9rem 3rem;
    height: 100vh;
    min-width: auto;
    width: 37rem;
    opacity: 1;
    visibility: hidden;
    transition: right 0.3s, visibility 0.3s;
    transform:none
}

.mini-basket-dropdown.offcanvas-type .offcanvas-overlay {
    position: fixed;
    left: 0;
    width: 100vw;
    top: -10vh;
    height: 120vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition:opacity 0.3s, visibility 0.3s
}

.mini-basket-dropdown.offcanvas-type .dropdown-box {
    z-index:9999
}

.mini-basket-dropdown.offcanvas-type .mini-list {
    max-height:calc(100vh - 18.5rem)
}

.mini-basket-dropdown.offcanvas-type.opened .dropdown-box {
    visibility: visible;
    top: 0;
    right:0
}

.mini-basket-dropdown.offcanvas-type.opened .offcanvas-overlay {
    opacity: 1;
    visibility:visible
}

.mini-basket-dropdown.offcanvas-type .empty-msg {
    margin:2rem 0 0
}

.compare-dropdown .compare-list {
    flex-direction: column;
    margin-right: -15px;
    margin-bottom: 0;
    padding-right: 1.5rem;
    padding-top: 0;
    padding-bottom: 0;
    max-width:none
}

.compare-dropdown .compare-item {
    min-height: auto;
    width: 100%;
    max-width:100%
}

.compare-dropdown .compare-item + .compare-item {
    margin-left:0
}

.compare-dropdown .compare-buttons .btn {
    color:#fff
}

.cart-dropdown .cart-toggle {
    padding:0.6rem 0
}

.cart-dropdown .cart-toggle:after {
    content:none
}

.cart-dropdown .cart-label {
    display: block;
    cursor:pointer
}

.cart-dropdown .cart-label span {
    display:inline-block
}

.cart-dropdown .cart-name-delimiter {
    margin:0 5px 0 3px
}

.cart-dropdown .cart-label + .cart-count-wrap, .cart-dropdown .cart-label + i, .cart-dropdown .cart-name + .cart-price {
    margin-left:7px
}

.cart-dropdown .cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e0dedf;
    padding-bottom: 1.4rem;
    margin-bottom:1rem
}

.cart-dropdown .cart-title {
    margin-bottom: 0;
    font-size: 2rem;
    line-height:22px
}

.cart-dropdown .minicart-icon {
    display:inline-block
}

.cart-dropdown .cart-count {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 400;
    line-height:25px
}

.cart-dropdown .cart-count i {
    vertical-align:middle
}

.cart-dropdown .minicart-icon .cart-count {
    transition:color 0.4s
}

.cart-dropdown:hover .minicart-icon {
    color: #fff;
    background:var(--alpha-primary-color, #ff9c28)
}

.cart-dropdown:hover .minicart-icon:before {
    transform:rotateY(180deg)
}

.cart-dropdown:hover .minicart-icon .cart-count {
    color:#fff
}

.cart-dropdown.badge-type .cart-toggle > i {
    text-align:center
}

.cart-dropdown.badge-type .cart-toggle .fa {
    padding-right: 5px;
    font-size: 1.7em;
    font-family:inherit
}

.cart-dropdown.badge-type .cart-toggle .fa:before {
    font-family: "Font Awesome 5 Free"
}

.cart-dropdown.badge-type:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.cart-dropdown.label-type .cart-count {
    color:inherit
}

.cart-dropdown .cart_list {
    max-height: 330px;
    padding-right: 1.5rem;
    margin-right:-1.9rem
}

.cart-dropdown .cart-item-meta a:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.cart-dropdown .total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1rem 0 0;
    padding: 0.6rem 0 0.2rem;
    font-size: 1.6rem;
    text-transform: capitalize;
    line-height: 3;
    color: var(--alpha-dark-color, #333);
    border-top:1px solid #e0dedf
}

.cart-dropdown .total strong {
    font-weight: 300;
    color:var(--alpha-dim-color, #54524d)
}

.cart-dropdown .total .amount {
    font-size: 1.8rem;
    font-weight: 400;
    color:var(--alpha-primary-color, #ff9c28)
}

.cart-dropdown .buttons {
    display: block;
    margin-bottom:0
}

.cart-dropdown .buttons a {
    justify-content: center;
    margin-bottom: 1rem;
    padding: 1.65rem 0.6rem;
    font-size: 1.4rem;
    border-width: 1px;
    color: var(--alpha-dark-color, #333);
    background-color: transparent;
    border-color:var(--alpha-dim-color, #54524d)
}

.cart-dropdown .buttons a:active, .cart-dropdown .buttons a:focus, .cart-dropdown .buttons a:hover {
    border-color: var(--alpha-primary-color, #ff9c28);
    background-color: var(--alpha-primary-color, #ff9c28);
    color:#fff
}

.cart-dropdown .buttons .checkout {
    color: #fff;
    border-color: var(--alpha-dim-color, #54524d);
    background-color:var(--alpha-dim-color, #54524d)
}

.cart-dropdown .buttons .checkout:active, .cart-dropdown .buttons .checkout:focus, .cart-dropdown .buttons .checkout:hover {
    color: #fff;
    border-color: var(--alpha-dim-color-hover, #666);
    background-color:var(--alpha-dim-color-hover, #666)
}

.cart-dropdown .buttons .checkout.btn-solid {
    color: var(--alpha-dim-color, #54524d);
    border-color: #fff;
    background-color:#fff
}

.cart-dropdown .buttons .checkout.btn-solid:active, .cart-dropdown .buttons .checkout.btn-solid:focus, .cart-dropdown .buttons .checkout.btn-solid:hover {
    border-color: var(--alpha-dim-color, #54524d);
    background-color: var(--alpha-dim-color, #54524d);
    color:#fff
}

.cart-dropdown .buttons .checkout.btn-outline {
    color: var(--alpha-dim-color, #54524d);
    border-color: var(--alpha-dim-color, #54524d);
    background-color:transparent
}

.cart-dropdown .buttons .checkout.btn-outline:active, .cart-dropdown .buttons .checkout.btn-outline:focus, .cart-dropdown .buttons .checkout.btn-outline:hover {
    background-color: var(--alpha-dim-color, #54524d);
    color:#fff
}

.cart-dropdown .buttons .checkout.btn-link {
    background-color: transparent;
    color:var(--alpha-dim-color, #54524d)
}

.cart-dropdown .buttons .checkout.btn-link:active, .cart-dropdown .buttons .checkout.btn-link:focus, .cart-dropdown .buttons .checkout.btn-link:hover {
    color:var(--alpha-dim-color-hover, #666)
}

.cart-dropdown .buttons .checkout.btn-underline:active, .cart-dropdown .buttons .checkout.btn-underline:focus, .cart-dropdown .buttons .checkout.btn-underline:hover {
    color:var(--alpha-dim-color, #54524d)
}

.cart-dropdown .empty-msg {
    margin: 1rem 0 0;
    line-height: 1;
    font-size: 1.4rem;
    text-align:center
}

.cart-dropdown.cart-offcanvas .empty-msg {
    margin:2rem 0 0
}

.cart-dropdown.block-type .cart-toggle {
    flex-direction:column-reverse
}

.cart-dropdown.block-type .cart-count-wrap, .cart-dropdown.block-type .cart-toggle > i {
    margin-left:0
}

.cart-dropdown.block-type .cart-label {
    text-align:center
}

.cart-dropdown.compact-type.inline-type .cart-label {
    margin-left:1rem
}

.cart-dropdown.compact-type .cart-toggle > i {
    margin-left:0
}

.cart-dropdown.compact-type:not(.block-type) .cart-toggle {
    flex-direction:row-reverse
}

.cart-dropdown:not(.cart-offcanvas) .cart-header {
    display:none
}

body.admin-bar .cart-dropdown.cart-offcanvas .dropdown-box {
    margin-top:3.2rem
}

.cart-dropdown.cart-offcanvas:after {
    content:none
}

.cart-dropdown.cart-offcanvas .cart-overlay {
    position: fixed;
    left: 0;
    width: 100vw;
    top: 0;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition:opacity 0.3s, visibility 0.3s
}

.cart-dropdown.cart-offcanvas .cart_list {
    max-height:calc(100vh - 30rem)
}

@media (max-width: 575px) {
    .cart-dropdown.cart-offcanvas .dropdown-box {
        width:296px
    }
}

.cart-dropdown.opened .cart-overlay {
    opacity: 1;
    visibility:visible
}

.cart-dropdown .total-count {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid #edeef0;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.018em;
    line-height: 1;
    color:var(--alpha-dark-color, #333)
}

.cart-dropdown .pull-right {
    padding:0
}

.cart-dropdown .pull-right:focus, .cart-dropdown .pull-right:hover {
    color: inherit;
    text-decoration:underline
}

.cart-dropdown .pull-right i {
    margin: 0 0 0 5px;
    font-size:1.9rem
}

.cart-dropdown .cart-item-meta a {
    font-size:1.4rem
}

.cart-dropdown .w-loading.small i {
    top:calc(50% - 3px)
}

@media (max-width: 600px) {
    body.admin-bar .sticky-content.fixed .cart-dropdown.cart-offcanvas .dropdown-box {
        margin-top:0
    }
}

@media (max-width: 360px) {
    .cart-dropdown .dropdown-box {
        padding: 1.5rem;
        min-width:27rem
    }

    .cart-dropdown .empty-msg {
        margin-top:1rem
    }
}

.cart-popup {
    z-index:1102
}

.mini_cart_item {
    color:var(--alpha-dark-color, #333)
}

.mini_cart_item .cart-item-meta a {
    margin-bottom: 0.5rem;
    letter-spacing: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow:hidden
}

.mini_cart_item .cart-item-meta .variation {
    display:none
}

.mini_cart_item .cart-item-meta .quantity {
    color:var(--alpha-grey-color, #999)
}

.mini_cart_item .cart-item-meta .amount {
    margin-left: 0.5rem;
    color: var(--alpha-dim-color, #54524d);
    font-weight:400
}

.mini_cart_item a {
    padding:0
}

.mini_cart_item > a:first-child {
    margin-right:1.5rem
}

.mini_cart_item img {
    display: block;
    width: 8rem;
    object-fit:cover
}

.custom-header .mobile-menu-toggle, .custom-header .mobile-menu-toggle i {
    display: block;
    font-size: 2.3rem;
    line-height:0
}

.custom-header a.logo {
    margin:0
}

.header-contact a:focus, .header-contact a:hover {
    text-decoration:none
}

.header-contact i {
    margin: 0 6px 0 0;
    font-size: 18px;
    position: relative;
    top:2px
}

.header-category-menu .menu {
    justify-content:space-between
}

.header-category-menu .menu > li {
    margin:0
}

.header .header-category-menu .menu > li:last-child {
    margin:0
}

.header-category-menu .menu > li:hover i {
    transform:translateY(-4px)
}

.header-category-menu .menu > li > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 12.4rem;
    text-transform: capitalize;
    letter-spacing:0.1em
}

.header-category-menu .menu > li > a i {
    font-size: 3.3rem;
    margin: 0 auto 0.5rem auto;
    transition: transform 0.3s;
    line-height:1
}

.custom-header-bottom .header-category-menu nav {
    width: 100%;
    overflow-x:auto
}

.custom-header-bottom .header-category-menu nav::-webkit-scrollbar {
    height: 7px;
    width:7px
}

.custom-header-bottom .header-category-menu nav::-webkit-scrollbar-thumb {
    margin-right: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    border-radius: 7px;
    cursor:pointer
}

@media (max-width: 991px) {
    .dropdown.mobile-links {
        display:inline-block
    }

    .mobile-links .dp-left {
        left: 0;
        right:auto
    }
}

@media (max-width: 575px) {
    .welcome-msg {
        white-space: nowrap;
        transform: translateX(0);
        animation:6s linear 2s 1 show_msg_first, 12s linear 8s infinite show_msg
    }
}

@keyframes show_msg_first {
    0% {
        transform:translateX(0%)
    }

    to {
        transform:translateX(-100%)
    }
}

@keyframes show_msg {
    0% {
        transform:translateX(100%)
    }

    to {
        transform:translateX(-100%)
    }
}

.header .menu {
    display: flex;
    flex-wrap: wrap;
    align-items:center
}

.menu ul {
    padding: 2.5rem 0;
    background:#fff
}

.menu ul .menu-item:not(.menu-item-has-children):hover > a {
    color:var(--alpha-primary-color, #ff9c28)
}

.menu li > a {
    transition:color 0.3s, background 0.3s, border 0.3s
}

.menu li a {
    display: inline-block;
    position: relative;
    padding: 0.5rem 2rem;
    white-space:nowrap
}

.menu li a i {
    display: inline-block;
    margin: -1px 7px 0 0;
    line-height: 0;
    font-size: 23px;
    vertical-align:middle
}

.menu li > ul {
    position: absolute;
    top: -9999px;
    left: 100%;
    min-width: 21.5rem;
    margin: 0;
    box-shadow: 0 4px 20px -8px rgba(0, 0, 0, 0.2);
    z-index: 1002;
    background-color: #fff;
    visibility: hidden;
    opacity: 0;
    transition: transform 0.2s ease-out;
    transform:translate3d(0, -10px, 0)
}

.menu li > ul li {
    padding:0 1.5rem
}

.menu .show > ul, .menu li:hover > ul {
    visibility: visible;
    opacity: 1;
    top: -2rem;
    transform:translate3d(0, 0, 0)
}

.header .menu > li:last-child {
    margin:0
}

.menu > li > a {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    position:relative
}

.menu > li > a:after {
    margin-left:0.6rem
}

.menu > li > ul {
    left:-1rem
}

.menu > li.show > ul, .menu > li:hover > ul {
    top:100%
}

.menu > li.show:after, .menu > li:hover:after {
    visibility: visible;
    opacity: 1;
    top: calc(100% - 20px);
    transform:translate3d(-50%, 0, 0)
}

nav .menu > li.show > a, nav .menu > li:hover > a {
    color:var(--alpha-primary-color, #ff9c28)
}

.menu .menu-item-has-children > a {
    display:block
}

.menu > .menu-item-has-children {
    padding-right:1.5rem
}

.menu > .menu-item-has-children > a:after {
    content: "";
    right: -0.5em;
    margin-top:-2px
}

.menu > .menu-item-has-children:after {
    content: "";
    position: absolute;
    z-index: 1002;
    left: 50%;
    top: -9999px;
    transform: translate3d(-50%, -8px, 0);
    border: 11px solid transparent;
    border-bottom: 11px solid #fff;
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
    visibility: hidden;
    opacity: 0;
    cursor: pointer;
    pointer-events:none
}

.menu-item-has-children > a:after {
    display: inline-block;
    position: absolute;
    right: 2rem;
    top: 50%;
    line-height: 0;
    vertical-align: middle;
    font-family: "panda";
    font-weight: 700;
    font-size: 0.7em;
    color: inherit;
    transform: translateY(-50%);
    content: ""
}

.horizontal-menu > li {
    margin:0 1.5rem
}

.header .horizontal-menu > li:last-child {
    margin:0 1.5rem
}

.horizontal-menu > li > a {
    padding:1.8rem 0
}

.horizontal-menu > .menu-item-has-children > a:after {
    right: -1.8em;
    margin-top:1px
}

.horizontal-menu > li.show:not(.loaded) .megamenu, .horizontal-menu > li.show:not(.loaded):after, .horizontal-menu > li:not(.loaded):hover .megamenu, .horizontal-menu > li:not(.loaded):hover:after, .horizontal-menu li.show:not(.loaded) .megamenu, .horizontal-menu li.show:not(.loaded):after, .horizontal-menu li:not(.loaded):hover .megamenu, .horizontal-menu li:not(.loaded):hover:after {
    visibility: hidden;
    opacity:0
}

.menu.horizontal-menu {
    display: flex;
    align-items: center;
    flex-wrap:nowrap
}

.menu.vertical-menu {
    display: block;
    max-width:100%
}

.menu.vertical-menu li > a {
    display:block
}

.menu.vertical-menu > li {
    margin-right:0
}

.menu.vertical-menu > li > ul {
    transform:translate3d(-15px, 0, 0)
}

.menu.vertical-menu > li > a:after {
    content:none
}

.menu.vertical-menu > li.show > ul, .menu.vertical-menu > li:hover > ul {
    left: 100%;
    top: 0;
    transform:translate3d(0, 0, 0)
}

.menu.vertical-menu > li:first-child.show > ul, .menu.vertical-menu > li:first-child:hover > ul {
    top:-1rem
}

.menu.vertical-menu > .menu-item-has-children:after {
    border: 11px solid transparent;
    border-right:11px solid #fff
}

.menu.vertical-menu > .menu-item-has-children.show:after, .menu.vertical-menu > .menu-item-has-children:hover:after {
    top: 50%;
    left: calc(100% - 20px);
    transform:translate3d(0, -50%, 0)
}

.menu.vertical-menu > .menu-item-has-children.show > a:after, .menu.vertical-menu > .menu-item-has-children:hover > a:after {
    right:0.5rem
}

.menu.vertical-menu > .menu-item-has-children > a:after {
    line-height: 0;
    right: 1rem;
    content: "";
    font-size: 0.7em;
    transition:right 0.3s ease
}

.menu.vertical-menu.no-arrow > li {
    display:flex
}

.menu.vertical-menu.no-arrow > li > a:after {
    content:none
}

.vertical-menu.dropdown-menu > li {
    padding:0 1rem
}

.menu.collapsible-menu {
    display:block
}

.menu.collapsible-menu > .menu-item {
    margin-right:0
}

.menu.collapsible-menu .menu-item-has-children:after, .menu.collapsible-menu .menu-item-has-children > a:after {
    content:none
}

.menu.collapsible-menu .menu-item-has-children li {
    padding:0 0 0 0.7rem
}

.menu.collapsible-menu li > ul {
    display: none;
    position: static;
    visibility: visible;
    opacity: 1;
    min-width: 0;
    transform: none;
    background: transparent;
    box-shadow:none
}

.menu.collapsible-menu ul {
    padding:0
}

.menu .toggle-btn, .mobile-menu .toggle-btn, .toggle-btn {
    display: block;
    position: absolute;
    padding: 6px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity:0.6
}

.toggle-btn:before {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    transition:transform 0.5s
}

.menu .toggle-btn:before, .mobile-menu .toggle-btn:before {
    font-family: "Font Awesome 5 Free";
    content: "";
    position: static;
    border: none;
    width:auto
}

.menu .toggle-btn, .mobile-menu .toggle-btn {
    width:auto
}

.menu .toggle-btn:after, .mobile-menu .toggle-btn:after {
    content:none
}

.show > .toggle-btn:before, .show > a .toggle-btn:before {
    transform:rotate(270deg)
}

.menu-active-underline > li > a:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--alpha-primary-color, #ff9c28);
    opacity: 0.3;
    transform-origin: right center;
    transform: scale(0, 1);
    transition:transform 0.3s
}

.menu-active-underline > li.current-menu-ancestor > a, .menu-active-underline > li.current-menu-item > a, .menu-active-underline > li:hover > a, .menu-active-underline > li > a:hover {
    color:inherit
}

.menu-active-underline > li.current-menu-ancestor > a:before, .menu-active-underline > li.current-menu-item > a:before, .menu-active-underline > li:hover > a:before, .menu-active-underline > li > a:hover:before {
    transform-origin: left center;
    transform:scale(1, 1)
}

.menu .megamenu {
    display: flex;
    padding: 1.5rem;
    background: #fff;
    max-width:calc(100vw - 4 * var(--alpha-gap))
}

.menu .megamenu a {
    white-space:normal
}

.menu .megamenu li {
    background-size: cover;
    padding:0
}

.menu .megamenu > li {
    flex:1
}

.menu .megamenu > li > a:after {
    content:none
}

.menu .megamenu > .menu-item > a {
    position: relative;
    pointer-events: none;
    padding-top: 1.5rem;
    padding-bottom: 1.4rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    color:var(--alpha-heading-color, #222)
}

.menu .megamenu > .menu-item > a:before {
    content: "";
    position: absolute;
    left: 2rem;
    width: 5rem;
    bottom: 0;
    height: 1px;
    background-color:var(--alpha-primary-color, #ff9c28)
}

.menu .megamenu ul {
    position: static;
    min-width: 0;
    padding: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform:none
}

.menu .megamenu.full-megamenu {
    width:calc(var(--alpha-container-width, 1280px) - 4 * var(--alpha-gap))
}

.menu .megamenu.mp-left {
    left: -1rem;
    right:auto
}

.menu .megamenu.mp-right {
    left: auto;
    right:-1.5rem
}

.menu .megamenu.mp-center {
    right:auto
}

.tip {
    display: inline-block;
    position: relative;
    top: -1px;
    left: 7px;
    border-radius: 2px;
    padding: 0.3rem 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    text-transform:uppercase
}

.tip.tip-hot {
    color:var(--alpha-secondary-color, #54524d)
}

.tip.tip-new {
    color:var(--alpha-primary-color, #ff9c28)
}

.mobile-menu-wrapper {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2999;
    transition:visibility 0.4s
}

.mobile-menu-wrapper .loading1:after, .mobile-menu-wrapper .loading1:before, .mobile-menu-wrapper .loading2:after, .mobile-menu-wrapper .loading2:before {
    background:#fff
}

.mobile-menu-wrapper .loading1:before {
    box-shadow:inset 0 0 0 2px #fff
}

.mobile-menu-container {
    max-width: 296px;
    padding: 2rem 1.5rem;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: #222;
    box-shadow: 1px 0 5px rgba(0, 0, 0, 0.5);
    transform: translateX(-296px);
    transition:transform 0.4s
}

.mobile-menu-container .d-loading {
    background:transparent
}

.mobile-menu-container .hs-simple .input-wrapper {
    display: flex;
    margin-bottom: 0.6rem;
    height: 4rem;
    border:0
}

.mobile-menu-container .hs-simple .input-wrapper .form-control {
    color: #999;
    border: 1px solid #333;
    background-color:transparent
}

.mobile-menu-container .hs-simple .input-wrapper .btn-search {
    color: #fff;
    background-color: var(--alpha-primary-color, #ff9c28);
    border-color:var(--alpha-primary-color, #ff9c28)
}

.mobile-menu-container .hs-simple .input-wrapper i {
    vertical-align: initial;
    margin:0
}

.mobile-menu-container .mobile-menu {
    margin-bottom:0.5rem
}

.mobile-menu-container .mobile-menu .menu-item > a > i {
    display:none
}

.mobile-menu-container .search-wrapper {
    margin-bottom:3rem
}

.mobile-menu-container .tab-content {
    background-color:transparent
}

.mobile-menu-container .tab-pane {
    padding-top:1rem
}

.mobile-menu-container .nav {
    border-width:1px
}

.mobile-menu-container .nav-link {
    margin-bottom: -1px;
    padding: 10px 0;
    font-size: 13px;
    color:#fff
}

.mobile-menu-container .nav-item:hover .nav-link {
    color: #fff;
    border-color:transparent
}

.mobile-menu-container .nav-item .nav-link.active, .mobile-menu-container .nav-item.show .nav-link {
    color: var(--alpha-primary-color, #ff9c28);
    border-color:var(--alpha-primary-color, #ff9c28)
}

.mobile-menu-container .nav-item + .nav-item {
    margin-left:1px
}

.alpha-adminbar .mobile-menu-container {
    padding-top:5.4rem
}

.mobile-menu {
    color: #e1e1e1;
    font-size: 1.2rem;
    font-weight: 400;
    line-height:1.5
}

.mobile-menu ul {
    display: none;
    width:100% !important
}

.mobile-menu > li:first-child {
    padding-top:0.5rem
}

.mobile-menu > li:last-child {
    padding-bottom:0.5rem
}

.mobile-menu > li:not(:last-child) {
    border-bottom:1px solid #333
}

.mobile-menu li a {
    display: block;
    position: relative;
    padding: 1.3rem 0.6rem 1.3rem 1rem;
    text-transform:uppercase
}

.mobile-menu li a:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.mobile-menu li li a {
    padding-left:2.4rem
}

.mobile-menu li li li a {
    padding-left:3.6rem
}

.mobile-menu .active > a, .mobile-menu .expanded {
    background:#333
}

.mobile-menu .menu-item-has-children > a:after {
    content:none
}

.mobile-menu-title {
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform:uppercase
}

.mobile-menu-overlay {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: #000;
    opacity: 0;
    transition:opacity 0.4s
}

.mobile-menu-close {
    position: fixed;
    left: calc(100vw - 50px);
    top: 25px;
    transition: opacity 0.3s;
    opacity:0
}

.mobile-menu-close i {
    font-size: 2.8rem;
    color:#e1e1e1
}

.mmenu-active {
    overflow:hidden
}

.mmenu-active .page-wrapper {
    margin-left: 296px;
    margin-right:-296px
}

.mmenu-active .mobile-menu-wrapper {
    visibility:visible
}

.mmenu-active .mobile-menu-container {
    transform:translateX(0)
}

.mmenu-active .mobile-menu-overlay {
    opacity:0.8
}

.mmenu-active .mobile-menu-close {
    opacity:1
}

@media (max-width: 400px) {
    .mobile-menu-close {
        left: calc(100vw - 40px);
        top:10px
    }
}

.dropdown-menu, .toggle-menu, nav .menu {
    display:inline-block
}

.toggle-menu {
    width:280px
}

.toggle-menu > a {
    position: relative;
    padding: 1.8rem 2rem;
    transition:background 0.3s, color 0.3s
}

.toggle-menu > a:after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    right: 18px;
    font-family: "panda";
    color:inherit
}

.toggle-menu > a i {
    margin-top: -1px;
    font-size:1.2em
}

.toggle-menu > a i + span {
    margin-left:7px
}

.toggle-menu > a .hover {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity:0
}

.toggle-menu:hover > a i:not(:first-child) {
    opacity:0
}

.toggle-menu:hover > a .hover {
    opacity:1
}

.toggle-menu .menu {
    padding:2rem 0
}

.toggle-menu .menu > li {
    margin-right:0
}

.toggle-menu .dropdown-box {
    padding: 0;
    right:auto
}

.toggle-menu:after, .toggle-menu:before {
    left:25px
}

.home .toggle-menu.show-home .dropdown-box, .toggle-menu.show .dropdown-box {
    box-shadow:0 2px 10px rgba(0, 0, 0, 0.1)
}

.toggle-menu.has-border:before {
    content: "";
    position: absolute;
    z-index: 1000;
    top: -9999px;
    transform: translateX(-50%);
    border: 11px solid transparent;
    border-bottom: 11px solid #e1e1e1;
    transition: opacity 0.4s ease;
    visibility: hidden;
    opacity: 0;
    cursor:pointer
}

.toggle-menu.has-border.show:before {
    visibility: visible;
    opacity: 1;
    top: calc(100% - 21px);
    transform:translate3d(-50%, 0, 0)
}

.toggle-menu.has-border .menu {
    border:1px solid #e1e1e1
}

.sticky-content:not(.fixed) .show-home:after {
    top:100%
}

.sticky-content:not(.fixed) .show-home .dropdown-box {
    top:calc(100% + 20px)
}

.sticky-content:not(.fixed) .show-home .dropdown-box, .sticky-content:not(.fixed) .show-home:after {
    visibility: visible;
    opacity:1
}

.sticky-content:not(.fixed) .show-home .dropdown-box {
    transform:translate3d(0, 0, 0)
}

.sticky-content:not(.fixed) .show-home:after {
    transform:translate3d(-50%, 0, 0)
}

.sticky-content:not(.fixed) .show-home.has-border:before {
    top: calc(100% - 1px);
    visibility: visible;
    opacity:1
}

@media (-webkit-min-device-pixel-ratio: 1.5),(min--moz-device-pixel-ratio: 1.5),(min-device-pixel-ratio: 1.5) {
    .sticky-content:not(.fixed) .show-home.has-border:before {
        top:calc(100% - 2px)
    }
}

@media (max-width: 991px) {
    .menu.switcher > li > a:after {
        margin-top:-2px
    }
}

@media (max-width: 1199px) {
    .toggle-menu {
        width:240px
    }
}

.lazy-menu > li:hover > ul {
    height: 32rem;
    min-width:21.5rem
}

.lazy-menu .d-loading li {
    height:100%
}

.footer-bottom-border .elementor-container {
    border-top:1px solid #e0dede
}

.footer-copyright {
    padding: 3.3rem 0 1rem;
    color: var(--alpha-dim-color, #54524d);
    text-align:center
}

.footer-copyright .title-wrapper {
    justify-content:center
}

footer .menu-center .menu {
    flex-wrap: wrap;
    justify-content:center
}

footer .menu li a {
    padding:0.5rem 1.45rem
}

footer .menu > li {
    margin:0
}

.footer-dark .footer-copyright {
    padding: 3rem 0 1rem;
    color:#777
}

.footer-dark .footer-links a {
    color:#999
}

.footer-dark .footer-links a:hover {
    text-decoration: none;
    color:var(--alpha-primary-color, #ff9c28)
}

.footer-dark2 .footer-copyright {
    padding:2.5rem 0 0.5rem
}

.footer-dark2.footer-bottom-border .elementor-container, .footer-dark.footer-bottom-border .elementor-container {
    border-color:#393939
}

@media (min-width: 768px) {
    .addtocart-fixed .footer {
        padding-bottom:125px
    }

    .footer-copyright {
        padding-bottom:3rem
    }

    .footer-copyright .title-wrapper {
        justify-content:flex-start
    }

    .footer-dark .footer-copyright {
        padding-bottom: 2.5rem;
        text-align:left
    }

    .footer-dark2 .footer-copyright {
        padding-bottom: 2rem;
        text-align:left
    }
}

@media (min-width: 768px) {
    #scroll-top {
        position: fixed;
        display: flex;
        align-items: center;
        justify-content: center;
        bottom: -4rem;
        right: 1.5rem;
        z-index: 9999;
        width: 4.6rem;
        height: 4.6rem;
        font-size: 1.4rem;
        font-weight: 700;
        color: #222;
        opacity: 0;
        transition:bottom 0.3s, opacity 0.3s
    }

    #scroll-top.show {
        opacity: 1;
        bottom:98px
    }

    #scroll-top:focus, #scroll-top:hover {
        text-decoration:none
    }

    #scroll-top:hover {
        opacity:0.8
    }

    #scroll-top i {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 3.6rem;
        height: 3.6rem;
        color: #fff;
        background-color: #333;
        border: 2px solid #333;
        border-radius: 50%;
        z-index:1
    }

    #scroll-top svg {
        position: absolute;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        top: 1px;
        left: 1px;
        z-index:-1
    }

    #scroll-top svg circle {
        stroke: var(--alpha-primary-color, #ff9c28);
        stroke-width: 4px;
        stroke-linecap: round;
        stroke-dasharray:1, 400
    }
}

@media (max-width: 767px) {
    #scroll-top {
        display:none
    }
}

.mobile-icon-bar {
    display: flex;
    transition:margin 0.4s
}

.mobile-icon-bar > * {
    flex:1
}

.mobile-icon-bar .cart-toggle, .mobile-icon-bar .search-toggle {
    padding: 0;
    color:inherit
}

.mobile-icon-bar .dropdown:hover .cart-toggle {
    color:var(--alpha-dark-color, #333)
}

.mobile-icon-bar .hs-toggle .input-wrapper {
    position: absolute;
    right: -1.5rem;
    top: 100%;
    padding: 1.5rem;
    height: 8rem;
    background-color: #fff;
    box-shadow: 0 3px 35px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    transform: translate3d(0, -10px, 0);
    z-index: 1002;
    transition: transform 0.4s 0.2s, visibility 0.4s 0.2s, opacity 0.4s 0.2s;
    min-width:54rem
}

.mobile-icon-bar .hs-toggle .form-control {
    border: 0;
    background: #f4f4f4;
    padding: 1.4rem 2rem;
    font-size: 13px;
    color:#666
}

.mobile-icon-bar .hs-toggle .btn-search {
    background: #f4f4f4;
    min-width: 50px;
    font-size: 1.8rem;
    color: var(--alpha-dark-color, #333);
    border:0
}

.mobile-icon-bar .hs-toggle.show .input-wrapper, .untouchable .mobile-icon-bar .hs-toggle:hover .input-wrapper {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    transition: transform 0.4s;
    opacity:1
}

.mobile-icon-bar .hs-toggle:hover {
    color:var(--alpha-primary-color, #ff9c28)
}

.mobile-icon-bar .hs-toggle .search-right + .input-wrapper {
    right:auto
}

.mobile-icon-bar .hs-toggle .input-wrapper {
    top: initial;
    bottom: 100%;
    right: 1.5rem;
    margin-bottom: 2rem;
    transform: translate3d(0, 10px, 0);
    min-width:29rem
}

.mobile-icon-bar .search-toggle:after {
    content: "";
    position: absolute;
    z-index: 1005;
    left: 50%;
    transform: translate(-50%, -5px);
    bottom: 100%;
    border: 11px solid transparent;
    border-top: 11px solid #fff;
    visibility: hidden;
    opacity: 0;
    transition:transform 0.4s 0.2s, visibility 0.4s 0.2s, opacity 0.4s 0.2s
}

.mobile-icon-bar .show > .search-toggle:after, .untouchable .mobile-icon-bar .search-wrapper:hover > .search-toggle:after {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -15px);
    transition:transform 0.4s
}

.mobile-icon-bar .live-search-list {
    margin-bottom: 3px;
    top: initial;
    bottom:100%
}

.mobile-icon-bar .hs-toggle .input-wrapper:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height:20px
}

.mmenu-active .mobile-icon-bar {
    transition: margin 0.4s !important;
    margin-left: 296px;
    margin-right:-296px
}

.mobile-icon-bar #scroll-top {
    position: static;
    display: flex;
    background: none;
    color:inherit
}

.mobile-icon-bar:not(.fixed) .input-wrapper, .mobile-icon-bar:not(.fixed) .search-toggle:after {
    display:none
}

.mobile-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin:1.5rem 0 1.3rem
}

.mobile-item span {
    margin-top: 0.8rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.025em;
    text-transform:uppercase
}

.mobile-item.compare-open span {
    margin-left:0
}

.mobile-icon-bar .mobile-item i {
    width: 23px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    font-size: 23px;
    line-height:1
}

.mobile-item.active, .mobile-item:hover {
    color:var(--alpha-dark-color, #333)
}

@media (max-width: 479px) {
    .items-6 span, .items-7 span {
        display:none
    }
}

@media (min-width: 576px) {
    .mobile-icon-bar {
        padding:0 4rem
    }
}

@media (min-width: 768px) {
    .mobile-icon-bar {
        display: none
    }
}
