@import url('feathers.css');
@import url('woodmart.css');

:root {
    --missio-white: #fff;
    --missio-white-rgb: 255, 255, 255;
    --missio-dark: #000;
    --missio-dark-rgb: 0, 0, 0;
    --missio-bdr-color: #c7cfd8;
    --missio-bdr-color2: #90a1b5;
    --missio-link-color: #565a5e;
    --missio-success: #089E76;
    --missio-danger: #C81818;
    --missio-danger-rgb: 200, 24, 24;
    --missio-success-rgb: 8, 158, 118;
    --color-gray-500: #777;
    --color-gray-600: #666;
    --color-gray-800: #888;
    --missio-bdr-radius: 8px;
    --missio-bdr-radius-sm: 4px;
    --missio-bdr-radius-xs: 2px;
    --square-size: 40px;
    --square-size-sm: 24px;
    --body-bg-rgb: 31, 38, 29;
    --bg-opacity: 1;
    --badge-padding-y: 6px;
    --badge-padding-x: 8px;
    --modal-padding: 16px;
    --modal-padding-md: 20px;
    --arrow-size: 32px;
    --que-size: 36px;
    --avatar-size: 60px;
    --missio-ease: all .3s ease-in-out;
    
    --scrollBar: #45454d ;
    --feathers:  'feathers';
    --woodmart:  'woodmart-font';
}

.n {
    background-color: var(--rgba-primary-2);
}

@media screen and (min-width: 768px) {
    @media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
        ::-webkit-scrollbar {
            width: 4px;
            background: transparent !important;
        }
        ::-webkit-scrollbar-thumb {
            border-radius: 8px;
            background: var(--scrollBar);
        }
    }
    * {
        scrollbar-color: var(--scrollBar) transparent;
        scrollbar-width: thin;
        scrollbar-width: 4px;
    }

    body ::-webkit-scrollbar {
        width: 4px;
        height: 6px;
    }
    body ::-webkit-scrollbar-button {
        width: 0;
        height: 0;
    }
    body ::-webkit-scrollbar-thumb {
        background: var(--scrollBar);
        border-radius: 8px;
    }
    @media (hover: hover) {
        body ::-webkit-scrollbar-thumb:hover {
            background: var(--scrollBar);
        }
    }
    body ::-webkit-scrollbar-thumb:active {
        background: var(--scrollBar);
    }
    body ::-webkit-scrollbar-track {
        background: transparent;
    }
    @media (hover: hover) {
        body ::-webkit-scrollbar-track:hover {
            background: transparent;
        }
    }
    body ::-webkit-scrollbar-corner,
    body ::-webkit-scrollbar-track:active {
        background: transparent;
    }
}

.scrollY,
.scrollX {
    scrollbar-color: var(--scrollBar) transparent;
}
.scrollY {
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
    -webkit-overflow-scroll: touch;
    scrollbar-width: thin;
}

/* Line Clamps */
.line-clamp {
    -moz-box-orient: vertical;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
}
.line-clamp-1 {
    -webkit-line-clamp: 1;
}
.line-clamp-2 {
    -webkit-line-clamp: 2;
}
.line-clamp-3 {
    -webkit-line-clamp: 3;
}
.line-clamp-4 {
    -webkit-line-clamp: 4;
}
.line-clamp-5 {
    -webkit-line-clamp: 5;
}

.top-150 {
    top: 150px !important;
}
.position-sticky {
    position: sticky !important;
}
.mb-7 {
    margin-bottom: 1.25rem !important;
}
.overflow-hidden {
    overflow: hidden !important;
}
.hover-zoom-in {
    overflow: hidden;
}
.bg-transparent {
    background-color: transparent !important;
}
.border-0 {
    border: 0 none !important;
}
.hover-zoom-in img {
    transition: .3s ease-in-out;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.product-flash {
    top: 15px;
    left: 15px;
}
.z-index-2 {
    z-index: 2 !important;
}
.bg-primary {
    background-color: var(--rgba-primary-9) !important;
}
.product-actions.vertical {
    top: 10px;
    right: 10px;
}
.vertical {
    flex-direction: column;
}
.fs-6 {
    font-size: 1rem !important;
}
.fs-14px {
    font-size: 14px !important;
}
.product-title {
    font-size: 1.125rem !important;
}
.text-del {
    color: var(--rgba-primary-5) !important;
}
.text-decoration-none {
    text-decoration: none !important;
}
.h-auto {
    height: auto !important;
}
.p-6 {
  padding: 1rem !important;
}
.mt-6 {
    margin-top: 1rem !important;
}

.badge-product-flash {
    display: block;
    min-width: 50px;
    margin-bottom: 5px;
    font-size: 14px;
    padding: var(--badge-padding-y) var(--badge-padding-x);
}
.badge-product-flash.on-new {
    background-color: #d3bf0b !important;
}

.breadcrumb-section {
    z-index: 0;
    padding-top: 160px;
    padding-bottom: 80px;
    background-color: #d2d8e2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    position: relative;
}
.breadcrumb-section h1 {
    width: 100%;
    font-size: 60px;
}
.breadcrumb-section .circles {
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
}
.breadcrumb-section .circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background-color: var(--primary);
    -webkit-animation: animate 25s linear infinite;
    animation: animate 25s linear infinite;
    bottom: -150px;
    opacity: 0.2 !important;
}
.breadcrumb-section .circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
.breadcrumb-section .circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-duration: 12s;
    animation-duration: 12s;
}
.breadcrumb-section .circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}
.breadcrumb-section .circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-duration: 18s;
    animation-duration: 18s;
}
.breadcrumb-section .circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
.breadcrumb-section .circles li:nth-child(6) {
    left: 75%;
    width: 90px;
    height: 90px;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}
.breadcrumb-section .circles li:nth-child(7) {
    left: 19%;
    width: 110px;
    height: 110px;
    -webkit-animation-delay: 7s;
    animation-delay: 7s;
}
.breadcrumb-section .circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    -webkit-animation-delay: 15s;
    animation-delay: 15s;
    -webkit-animation-duration: 45s;
    animation-duration: 45s;
}
.breadcrumb-section .circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-duration: 35s;
    animation-duration: 35s;
}
.breadcrumb-section .circles li:nth-child(10) {
    left: 85%;
    width: 110px;
    height: 110px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-duration: 11s;
    animation-duration: 11s;
}
@-webkit-keyframes animate {
    0% {
        -webkit-transform: translateY(0) rotate(0deg);
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }
    100% {
        -webkit-transform: translateY(-1000px) rotate(720deg);
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}
@keyframes animate {
    0% {
        -webkit-transform: translateY(0) rotate(0deg);
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }
    100% {
        -webkit-transform: translateY(-1000px) rotate(720deg);
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

.section-store {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #fff;
}

.store-fluid,
.widget-store-category,
.widget-store-header {
    width: 100%;
}
.section-store aside .widget {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--missio-bdr-color);
}
.section-store aside .widget:last-of-type,
.section-store aside .widget:only-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0 none;
    
}
.widget-store-category .widget-title,
.widget-price-filter .widget-title,
.widget-color-filter .widget-title {
    margin-bottom: 1.25rem;
    padding-bottom: 0 !important;
    font-size: 1.5rem !important;
}
.widget-store-category .widget-title::after,
.widget-price-filter .widget-title::after,
.widget-color-filter .widget-title::after {
    display: none;
}
.widget-store-header .btn-category-link {
    width: 100%;
    font-size: 16px;
    padding: 8px 0;
    border: 0 none;
    font-weight: 600;
    text-align: left;
    position: relative;
    background-color: transparent;
    transition: all 300ms ease-in;
}
.widget-store-header .btn-category-link::after {
    top: 8px;
    right: 0;
    content: " ";
    width: 20px;
    height: 20px;
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M19 13H5c-.6 0-1-.4-1-1s.4-1 1-1h14c.6 0 1 .4 1 1s-.4 1-1 1Z'/%3E%3C/svg%3E");
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: center;
}
.widget-store-header .btn-category-link.collapsed::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M19 11h-6V5c0-.6-.4-1-1-1s-1 .4-1 1v6H5c-.6 0-1 .4-1 1s.4 1 1 1h6v6c0 .6.4 1 1 1s1-.4 1-1v-6h6c.6 0 1-.4 1-1s-.4-1-1-1Z'/%3E%3C/svg%3E");
}

.widget-store-category .nav-submenu {
    margin: 0;
    padding: 0;
    width: 100%;
    list-style: none;
}
.widget-store-category .nav-submenu .nav-item {
    margin-bottom: 10px;
}
.widget-store-category .nav-submenu .nav-item > a {
    width: 100%;
    display: block;
    font-size: 15px;
    padding-left: 20px;
    position: relative;
    color: var(--missio-link-color);
    transition: all 300ms ease-in;
}
.widget-store-category .nav-submenu .nav-item > a::before {
    left: 0;
    top: 0.25rem;
    content: " ";
    width: 16px;
    height: 16px;
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23565A5E0'%3E%3Cpath d='M13 18c-.3 0-.5 0-.7-.3-.4-.4-.4-1 0-1.4l4.3-4.3-4.3-4.3c-.4-.4-.4-1 0-1.4s1-.4 1.4 0l5 5c.4.4.4 1 0 1.4l-5 5c-.2.2-.5.3-.7.3Z'/%3E%3Cpath d='M6 18c-.3 0-.5 0-.7-.3-.4-.4-.4-1 0-1.4L9.6 12 5.3 7.7c-.4-.4-.4-1 0-1.4s1-.4 1.4 0l5 5c.4.4.4 1 0 1.4l-5 5c-.2.2-.5.3-.7.3Z'/%3E%3C/svg%3E");
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 300ms ease-in;
}
.widget-store-category .nav-submenu .nav-item > a:hover,
.widget-store-category .nav-submenu .nav-item.is-active > a {
    padding-left: 30px;
    color: var(--primary);
}
.widget-store-category .nav-submenu .nav-item > a:hover::before,
.widget-store-category .nav-submenu .nav-item.is-active > a::before {
    left: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E60012'%3E%3Cpath d='M13 18c-.3 0-.5 0-.7-.3-.4-.4-.4-1 0-1.4l4.3-4.3-4.3-4.3c-.4-.4-.4-1 0-1.4s1-.4 1.4 0l5 5c.4.4.4 1 0 1.4l-5 5c-.2.2-.5.3-.7.3Z'/%3E%3Cpath d='M6 18c-.3 0-.5 0-.7-.3-.4-.4-.4-1 0-1.4L9.6 12 5.3 7.7c-.4-.4-.4-1 0-1.4s1-.4 1.4 0l5 5c.4.4.4 1 0 1.4l-5 5c-.2.2-.5.3-.7.3Z'/%3E%3C/svg%3E");
}


.widget-price-filter,
.widget-color-filter,
.widget-price-filter form {
    width: 100%;
}
.widget-price-filter form {
    margin-top: 30px;
}
.widget-price-filter .price_label {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.widget-price-filter .price_label button {
    margin: 0;
    padding: 0;
    border: 0 none;
    font-size: 14px;
    display: inline-block;
    text-transform: uppercase;
    background-color: transparent;
}
.price_label .value-price {
    font-size: 14px;
}
.widget-price-filter .ui-widget-content {
    background-color: var(--missio-bdr-color);
}
.widget-price-filter .ui-slider {
    height: 5px;
    position: relative;
    text-align: left;
}
.widget-price-filter .ui-slider .ui-slider-handle {
    z-index: 2;
    width: 1.2em;
    height: 1.2em;
    position: absolute;
    -ms-touch-action: none;
    touch-action: none;
    cursor: pointer;
    border-radius: 0;
}
.ui-slider-horizontal .ui-slider-range,
.widget-price-filter .ui-slider .ui-slider-handle {
    background-color: var(--primary);
}
.widget-price-filter .ui-state-default {
    width: 15px;
    height: 15px;
    color: #fff;
    cursor: pointer;
    font-weight: normal;
    border: 0 none !important;
    background-color: var(--primary);
}
.widget-price-filter .ui-state-default::after {
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    content: '';
    position: absolute;
    -webkit-transform: translate(-3px, -3px);
    -ms-transform: translate(-3px, -3px);
    -o-transform: translate(-3px, -3px);
    transform: translate(-3px, -3px);
    background: url("../images/bar.svg") no-repeat center center;
}


.widget-color-filter ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: flex-start;
}
.widget-color-filter ul li {
    width: 24px;
    height: 24px;
    display: block;
    margin-right: 6px;
    margin-bottom: 6px;
}
.widget-color-filter ul li button {
    width: 24px;
    height: 24px;
    display: block;
    border: 0 none;
    background-color: #f4f4f4;
    border-radius: 2px;
}

/* Store Products */
.store-main {
    width: 100%;
    padding-top: 5px;
}
@media (min-width: 768px) {
    .store-main {
        padding-left: 1.25rem;   
    }
}

.store-main .product-detail {
    margin-bottom: 3rem;
}
.store-main-header {
    width: 100%;
    display: flex;
    min-height: 42px;
    align-items: center;
}
.store-main-header .tool-bar-lt {
    flex: 1 0 auto;
}
.store-main-header .tool-bar-rt {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.store-main-header .dropdown.bootstrap-select {
    height: auto !important;
    border: 0 none !important;
    display: none !important;
}
.store-main-header .dropdown > .dropdown-toggle {
    display: none;
}
.store-main-header .dropdown.bootstrap-select > select {
    display: none !important;
}
.store-main-header .tool-bar-rt ul.list-unstyled {::after
    padding-top: 0.5rem !important;
}
.store-main-header .tool-bar-rt ul.list-unstyled > li {
    padding: 0 !important;
}
.single-product-meta.list-unstyled.pt-2 {
	padding-block-start: 1rem !important;
}
.single-product-meta.list-unstyled li::before {
	top: 1px !important;
}

.fs-12px {
    font-size: 0.75rem !important;
}
.fs-13px {
    font-size: 0.813rem !important;
}
.fs-18px {
    font-size: 1.125rem !important;
}
.text-body {
    color: var(--missio-link-color);
}
.text-body-emphasis {
    color: #000 !important;
}
.fw-normal {
    font-weight: 400 !important;
}
.fw-semibold {
    font-weight: 600 !important;
}
.fw-bold {
    font-weight: 700 !important;
}

.tool-bar-rt .nice-select {
    padding-left: 10px;
}
.tool-bar-rt .nice-select .current {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: block;
}
.tool-bar-rt .nice-select .option {
    padding-left: 10px;
    padding-right: 10px;
}
.w-180px {
    width: 100%;
    max-width: 180px;
}

.tool-bar-rt .list-unstyled li,
.tool-bar-rt .list-unstyled li button {
    width: 32px;
    height: 32px;
    display: flex;
}
.tool-bar-rt .list-unstyled li button svg {
    width: 24px;
    height: 24px;
    display: flex;
}
.tool-bar-rt .list-unstyled li button {
    border: 0 none;
    color: #888a87;
    background-color: transparent;
}
.tool-bar-rt .list-unstyled li.is-selected button {
    color: var(--primary) !important;
}

.store-fluid {
    margin-top: 2.5rem;
}
.hover-zoom-in:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.image-wrapper {
    height: 0;
    width: 100%;
    position: relative;
    padding-bottom: 135%;
    background-color: #f8f8f8;
}
.image-wrapper > img {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    -webkit-transition: all .4s .001s ease-out;
    transition: all .4s .001s ease-out;
}
.card-img-top .image-wrapper > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.store-fluid .card-product {
    border-radius: 0.5rem !important;
    -webkit-box-shadow: 0 1px 3px 1px rgba(0,0,0,0.05) !important;
    box-shadow: 0 1px 3px 1px rgba(0,0,0,0.05) !important;
}
.btn-add-to-cart {
    font-size: 15px;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    flex-direction: row !important;
}
.card-img-top .btn-add-to-cart {
    left: 50%;
    opacity: 0;
    bottom: 15px;
    max-width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transform: translate(-50%,100%);
    transform: translate(-50%,100%);
    transition: border .4s .001s ease-out,color .4s .001s ease-out,background .4s .001s ease-out,visibility .4s .1s ease-out,opacity .4s .15s ease-out,transform .4s .1s ease-out;
}
.card-product:hover .card-img-top .btn-add-to-cart {
    opacity: 1;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
}
.product-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--square-size);
    height: var(--square-size);
    margin-bottom: 10px;
    border-radius: 50% !important;
    background-color: rgba(var(--body-bg-rgb),var(--bg-opacity)) !important;
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}
.product-action-btn svg {
    width: 1em;
    height: 1em;
    stroke: currentColor;
    display: inline-block;
    color: #fff;
    fill: rgba(255, 255, 255, 0.15);
}

.card-product:hover .product-action-btn {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.product-actions > .product-action-btn:nth-of-type(1) {
    transition: color .4s .001s ease-out,background .4s .001s ease-out,visibility .4s .1s ease-out,opacity .4s .15s ease-out,transform .4s .1s ease-out;
}
.product-actions > .product-action-btn:nth-of-type(2) {
    transition: color .4s .001s ease-out,background .4s .001s ease-out,visibility .4s .15s ease-out,opacity .4s .15s ease-out,transform .4s .15s ease-out;
}
.product-actions > .product-action-btn:nth-of-type(3) {
    transition: color .4s .001s ease-out,background .4s .001s ease-out,visibility .4s .2s ease-out,opacity .4s .2s ease-out,transform .4s .2s ease-out;
}

.store-fluid > .grid-view,
.store-fluid > .list-view {
    gap: 0 20px;
    display: grid;
    transition-delay: 0.5s;
}
.store-fluid > .grid-view {
    grid-template-columns: repeat(3, 1fr);
}
.store-fluid > .list-view {
    grid-template-columns: repeat(1, 1fr);
}

.list-view .card-product {
    display: flex;
    flex-direction: row;
    border-radius: 0.5rem !important;
}
.store-fluid .list-view .card-product {
    -webkit-box-shadow: 0 1px 3px 1px rgba(0,0,0,0.1) !important;
    box-shadow: 0 1px 3px 1px rgba(0,0,0,0.1) !important;
}
.list-view .card-product .card-img-top {
    width: 276px;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
}
.list-view .card-product .card-img-top .image-wrapper {
    padding-bottom: 130%;
}

.list-view .card-product .card-body {
    width: calc(100% - 276px);
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
}

.grid-view .card-product .card-body.p-0 {
    background-color: #fff;
    padding: 15px !important;
    border-bottom-right-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
}
.list-view .card-product .card-body.p-0 {
    padding: 30px !important;
    text-align: left !important;
    align-content: center;
}
.list-view .card-product .card-body .price {
    justify-content: flex-start !important
}
.list-view .card-product .card-body .product-title {
    font-size: 1.5rem !important;
    margin-bottom: 30px !important;
}

.grid-view .card-product .card-body .product-title {
    width: 100%;
	text-align: center;
	margin-inline: auto;
}
.product-title > a {
	min-height: 44px;
	max-height: 44px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;  
	overflow: hidden;
}

.list-view .btn-add-to-cart.vertical,
.list-view .product-actions.vertical,
.list-view-horizontal {
    display: none !important;
}
.list-view .card-product .card-body .list-view-horizontal {
    display: flex !important;
}

.list-view .card-product .card-body .list-view-actions {
    display: flex;
    flex-direction: row;
    margin-left: 20px;
    align-items: center;
}
.list-view-actions .product-action-btn {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    background-color: transparent !important;
    margin-right: 0.5rem;
    box-shadow: none !important;
    margin-bottom: 0 !important;
}
.list-view-actions .product-action-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #000;
    fill: rgba(0, 0, 0, 0.1);
}

/* Slick Slider */
.product-slider .slick-list {
    height: unset !important;
}
.product-slider-dots-inside {
    margin-bottom: 0;
}
.product-slider {
    margin: 0;
    background-color: #f4f4f4;
    border-radius: 0.25rem !important;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
}
.product-slider img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 0.25rem !important;
}
.product-gallery-action {
    transition: all .2s;
    background-color: #fff;
    color: #000;
    width: 48px;
    height: 48px;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
}
.rounded-circle {
    border-radius: 50% !important;
}


.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: var(--modal-padding);
}
.pe-13 {
    padding-right: 3.5rem !important;
}


.product-slider-thumb .slick-arrow {
    top: 50%;
    z-index: 10;
    overflow: hidden;
    border-radius: 50%;
    width: var(--arrow-size);
    height: var(--arrow-size);
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #000;
    border: 0 none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
}

.product-slider-thumb:hover .slick-arrow {
    opacity: 1;
    visibility: visible;
}

.product-slider-thumb .slick-prev {
    left: 0;
}
.product-slider-thumb .slick-next {
    right: 0;
}

.product-slider-thumb .slick-prev::before,
.product-slider-thumb .slick-next::before {
    content: "";
    position: absolute;
    width: var(--modal-padding-md);
    height: var(--modal-padding-md);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFF'%3E%3Cpath d='M9 19c-.3 0-.5 0-.7-.3-.4-.4-.4-1 0-1.4l5.3-5.3-5.3-5.3c-.4-.4-.4-1 0-1.4s1-.4 1.4 0l6 6c.4.4.4 1 0 1.4l-6 6c-.2.2-.5.3-.7.3Z'/%3E%3C/svg%3E");
    background-size: var(--modal-padding-md) var(--modal-padding-md);
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-slider-thumb .slick-prev::before {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}


.product-additional-galleries {
    top: 0;
    gap: 10px;
    padding: 15px;
    z-index: 3;
    display: flex;
    position: absolute;
    inset-inline-start: 0;
    align-items: flex-start;
    flex-direction: column;
    transition: all .3s ease;
}
.wd-action-btn.wd-style-icon-bg-text {
    --icon-bg-size: 50px;
    --action-btn-color: var(--color-gray-600);
    --action-btn-hover-color: var(--color-gray-800);
}
.wd-action-btn {
    display: inline-flex;
    vertical-align: middle;
    --action-btn-color: var(--color-gray-800);
    --action-btn-hover-color: var(--color-gray-500);
}
.wd-action-btn.wd-style-icon-bg-text > div {
    overflow: hidden;
    flex-wrap: nowrap;
    min-width: var(--icon-bg-size);
    height: var(--icon-bg-size);
    border-radius: 30px;
    flex-shrink: 0;
    background-color: var(--missio-white);
    box-shadow: 0 0 5px rgba(0,0,0,.08);
}
.wd-action-btn > div {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--action-btn-color);
    cursor: default;
}
.wd-action-btn.wd-style-icon-bg-text > div > span {
    overflow: hidden;
    max-width: 0;
    white-space: nowrap;
    font-size: 90%;
    font-weight: 600;
    transition: padding 0.4s cubic-bezier(.175,.885,.32,1.15),max-width 0.4s cubic-bezier(.175,.885,.32,1.15);
}
.wd-action-btn.wd-style-icon-bg-text > div::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-bg-size);
    height: var(--icon-bg-size);
    font-size: calc(var(--icon-bg-size) / 2.7);
}
.wd-show-product-gallery-wrap > div::before {
    content: "\f121";
}
.wd-action-btn > div::before {
    transition: opacity .15s ease;
    font-family: var(--woodmart);
}
.wd-action-btn > div:hover {
  color: var(--primary);
}
.wd-action-btn.wd-style-icon-bg-text > div:hover > span {
    padding-inline-end: calc(var(--icon-bg-size) / 2);
    max-width: 280px;
}

/* LightGallery */
.lg-outer,
.lg-backdrop {
    z-index: 9999 !important;
}
.lg-container .lg-next,
.lg-container .lg-prev,
.lg-container .lg-toolbar {
    opacity: 1 !important;
}

.product-slider-thumb .slick-slide {
    font-size: 0;
    opacity: 0.5;
    border: 1px solid #fff !important;
}
.product-slider-thumb .slick-current {
    opacity: 1;
    border: 1px solid var(--primary) !important;
}
.slick-initialized .slick-slide {
    display: block;
}
.cursor-pointer {
    cursor: pointer;
}
.product-carousel .mx-3 {
    margin-left: .25rem !important;
    margin-right: .25rem !important;
}

.text-bg-primary {
    color: #fff;
    background-color: var(--primary);
}
.product-details .rating,
.product-detail-block .rating {
    display: flex;
    align-items: center;
    flex-direction: row;
}
.size-16px, .size-16px svg,
.product-details .rating .star,
.product-details .rating .star svg,
.product-detail-block .rating .star svg {
    width: 1rem;
    height: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.product-details .rating .star,
.product-detail-block .rating .star {
    margin-right: 0.25rem;
}
.product-details .size-16px {
    top: 0.1375rem;
    position: relative;
}
.product-details .rating .star svg {
    fill: var(--primary);
    stroke: var(--primary);
}
.product-detail-block .rating .star svg {
    fill: #646464;
    stroke: #646464;
}
.product-detail-block .rating .star.theme-color svg {
    fill: var(--primary);
    stroke: var(--primary);
}

.ps-6 {
    padding-left: 1rem !important;
}
.product-details .fs-12px {
    font-size: 0.75rem;
}

.product-info-2-minus, .product-info-2-plus {
    z-index: 4;
}
.translate-middle-y {
    transform: translateY(-50%) !important;
}
.start-0 {
    left: 0 !important;
}
.top-50 {
    top: 50% !important;
}

.card.rounded {
    border-radius: 0.25rem !important;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
}

.shop-down, .shop-up {
    width: 30px;
    height: 30px;
    border: 0 none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}
.shop-down svg, .shop-up svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: #000;
    align-content: center;
}
.start-10 {
    left: 10px;
}
.end-10 {
    right: 10px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0;
}
/* Firefox */
input[type="number"] {
    -moz-appearance: textfield !important;
}

.btn-add2bag {
    height: 60px;
    max-height: 60px;
    padding: 14px 40px !important;
    border-color: var(--primary);
    background-color: var(--primary) !important;
}
.btn-add2bag:hover, .btn-add2bag:focus, .btn-add2bag:active {
    height: 60px;
    max-height: 60px;
    padding: 14px 40px !important;
    border-color: var(--primary-hover);
    background-color: var(--primary-hover) !important;
}
.btn-add2bag:active {
    -webkit-transform: scale(0.98) !important;
    transform: scale(0.98) !important;
}
.btn-add2bag:active * {
    -webkit-transform: scale(0.98) !important;
    transform: scale(0.98) !important;
}

.modal-quick-view .modal-body {
    position: relative;
}
.modal-quick-view .modal-body .btn-close {
    top: 20px;
    right: 20px;
    z-index: 2;
    position: absolute;
}

.product-slider.product-slider-dots-inside {
    overflow: hidden;
    max-height: 560px;
}
.product-slider img {
    max-height: 560px;
}

.card-img-top img.lazy {
    opacity: 0;
}
img:not(.initial) {
    -webkit-transition: opacity 1s,  transform .4s .001s ease-out;
    transition: opacity 1s,  transform .4s .001s ease-out;
}
.card-img-top img.initial,
.card-img-top img.loaded,
.card-img-top img.error {
    opacity: 1;
}
.card-img-top img:not([src]) {
    visibility: hidden;
}

.product-carousel {
    width: 100%;
    min-height: 665px;
}

.modal-loader {
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    min-height: 680px;
    position: absolute;
    background-color: #f4f4f4;
    align-content: center;
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
}
.modal-loader .loader {
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    display: block;
    position: absolute;
    align-content: center;
    background-color: #f00;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.modal-body.open .modal-loader,
.product-carousel.open .modal-loader {
    opacity: 0;
    visibility: hidden;
}

/* Spinner */
.spinner,
.spinner2 {
    width: 40px;
    height: 40px;
}
.spinner::before,
.spinner2::before {
    top: 50%;
    left: 50%;
    content: '';
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    position: absolute;
    border-radius: 50%;
    box-sizing: border-box;
}
.spinner::before {
    border: 3px solid #F4F4F4;
    border-top-color: var(--primary);
    animation: spinner 0.6s linear infinite;
}
.spinner2::before {
    border: 3px solid #F4F4F4;
    border-top-color: var(--primary);
    animation: spinner 0.5s linear infinite;
}

@keyframes spinner {
    to {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* Product Detail */
.product-detail-block .tab-pane {
    padding-top: 1.725rem;
}
.product-detail-block .nav-tabs .nav-link {
    color: #000;
    margin-left: 0.25rem;
}
.product-detail-block .nav-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef #fff;
}
.product-detail-block .nav-tabs .nav-link:hover,
.product-detail-block .nav-tabs .nav-link.active {
    color: var(--primary);
    background-color: var(--missio-white);
    border-color: #dee2e6 #dee2e6 var(--missio-white);
}

.question-answer ul li {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--missio-bdr-color);
}
.question-answer ul li:last-of-type,
.question-answer ul li:only-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0 none;
}
.question-answer ul li .que {
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 0;
}
.question-answer ul li .que .fa-question {
    margin-right: 15px;
    font-size: 1.125rem;
    color: var(--primary);
    width: var(--que-size);
    height: var(--que-size);
    flex-shrink: 0;
    border-radius: 100%;
    border: 1px solid #ced4da;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.que-details p:last-of-type,
.que-details p:only-of-type {
    margin-bottom: 0;
}

.customer-rating .rating-progess li {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0.75rem;
}
.customer-rating .rating-progess li h5 {
    margin: 0;
    color: #212529;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    font-family: var(--font-family-base);
}
.customer-rating .rating-progess li .progress {
    width: 100%;
    height: 0.5rem;
    border-radius: 0.5rem;
}
.progress-bar {
    background-color: var(--primary);
}

.customer-review-box {
    width: 100%;
    padding-top: 2.25rem;
}

.customer-review-box .customer-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--missio-bdr-color);
}
.customer-review-box .customer-section:last-of-type,
.customer-review-box .customer-section:only-of-type {
    padding-bottom: 0;
    border-bottom: 0 none;
}
.customer-review-box .customer-section .customer-profile {
    width: var(--avatar-size);
    height: var(--avatar-size);
    overflow: hidden;
    border-radius: 50%;
    flex-shrink: 0;
}
.customer-review-box .customer-section .customer-details {
    width: calc(100% - var(--avatar-size));
    padding-left: 1.5rem;
}
.customer-review-box .font-light {
    color: #7e7e7e !important;
}
.customer-review-box .fs-13 {
    font-size: 13px;
}
.customer-review-box .customer-section p:last-of-type,
.customer-review-box .customer-section p:only-of-type {
    margin-bottom: 0;
}


/* SideCart */
.SidebarCart {
    top: 0;
    right: 0;
    left: auto;
    width: 320px;
    z-index: 9999 !important;
    text-align: left;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    padding: 0rem;
    height: 100vh;
    min-height: 100vh !important;
    position: fixed !important;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translate3d(100%, 0, 0);
    -moz-transform: translate3d(100%, 0, 0);
    -o-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    background: var(--missio-white) none repeat scroll 0 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical;
}
.navigation-active .SidebarCart {
    width: 320px !important;
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.SidebarCart .widget--heading {
    display: none;
    padding: .9375rem;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-box-flex: 0;
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    border-bottom: 1px solid #c6c6c6;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -ms-box-orient: horizontal;
    box-orient: horizontal;
}
.navigation-active .SidebarCart .widget--heading {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
}
.SidebarCart .widget--title {
    color: #000;
    font-size: 1.25rem;
    line-height: 1.5rem;
    line-height: 1.35;
    font-weight: 700;
    text-transform: uppercase;
}
.SidebarCart .widget__shopping_cart {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-box-flex: 1;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    align-items: stretch;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical;
    -webkit-transition: opacity 0.1s ease 0.25s;
    -moz-transition: opacity 0.1s ease 0.25s;
    -ms-transition: opacity 0.1s ease 0.25s;
    -o-transition: opacity 0.1s ease 0.25s;
    transition: opacity 0.1s ease 0.25s;
}
.SidebarCart .widget__shopping_cart__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-box-flex: 1;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    align-items: stretch;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    background: #fff none repeat scroll 0 0;
}
.SidebarCart .widget-scroll {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-box-flex: 1;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
.SidebarCart .widget-scroll-content {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: auto;
    overflow-x: auto;
    overflow-x: hidden;
    position: absolute;
    -webkit-overflow-scrolling: touch;
}
.SidebarCart .widget__shopping_cart .cart_list {
    margin: 0rem;
    text-align: left;
}

.SidebarCart .widget__shopping_cart .cart_list__items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding: .9375rem;
    margin-bottom: 0rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -ms-box-orient: horizontal;
    box-orient: horizontal;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -ms-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid rgba(198,198,198,0.33);
}
.SidebarCart .widget__shopping_cart .cart_list__items:last-of-type,
.SidebarCart .widget__shopping_cart .cart_list__items:only-of-type {
    border-bottom: 0 none;
}
.SidebarCart .widget__shopping_cart .cart_list__items .cart-item-image {
    float: none;
    margin-right: 0;
    max-width: 65px;
    position: relative;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-box-flex: 0;
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: .9375rem;
    -webkit-transition: opacity 0.6s ease;
    -moz-transition: opacity 0.6s ease;
    -ms-transition: opacity 0.6s ease;
    -o-transition: opacity 0.6s ease;
    transition: opacity 0.6s ease;
}
.SidebarCart .widget__shopping_cart .cart_list__items .cart-info {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-box-flex: 1;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding-right: 1.25rem;
}
.SidebarCart .widget__shopping_cart .cart_list__items .product-title {
    color: #000;
    display: block;
    font-size: 1rem;
    line-height: 1.2rem;
    line-height: 1.35;
    font-weight: 500;
    margin-bottom: .75rem;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.SidebarCart .widget__shopping_cart .cart_list__items .product-quantity {
    color: #bbb;
    white-space: nowrap;
    vertical-align: top;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: .8125rem;
    line-height: .975rem;
}
.SidebarCart .widget__shopping_cart .cart_list__items .amount {
    color: var(--missio-success);
    font-size: .875rem;
    line-height: 1.05rem;
    padding-left: .3125rem;
    font-weight: 600;
}

.SidebarCart .widget__shopping_cart .remove {
    top: 15px;
    right: 10px;
    z-index: 2;
    color: #625A5A;
    position: absolute;
    text-align: center;
    font-size: 0rem;
    line-height: 0rem;
    line-height: var(--square-size-sm);
    width: var(--square-size-sm);
    height: var(--square-size-sm);
    margin-bottom: 0;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: 0 none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--missio-white);
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
.SidebarCart .widget__shopping_cart .remove::after {
    content: "\f10f";
    font-family: var(--woodmart);
    font-size: .5rem;
    line-height: .6rem;
    line-height: 20px;
    font-weight: 700;
}
.SidebarCart .widget__shopping_cart .remove:hover {
    color: var(--missio-white);
    background-color: var(--missio-danger);
    -webkit-box-shadow: 0 0 3px rgba(var(--missio-dark-rgb),0.1);
    box-shadow: 0 0 3px rgba(var(--missio-dark-rgb),0.1);
}


.SidebarCart .widget__shopping_cart__content--footer {
    padding: .625rem .9375rem;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-box-flex: 0;
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-bottom: .9375rem;
    border-top: 2px solid rgba(129,129,129,0.2);
}
.SidebarCart .widget__shopping_cart .cart_total {
    color: #000;
    font-size: 1rem;
    line-height: 1.2rem;
    padding-bottom: 1rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
}
.SidebarCart .widget__shopping_cart .cart_buttons .btn + .btn {
    margin-top: .5rem;
}
.button-cart,
.button-checkout,
.button-makepay,
.button-continue,
.button-update,
.button-payment {
    font-size: 16px;
}
.button-cart::after,
.button-continue::after {
    content: "\f11d";
}
.button-checkout::after,
.button-payment::after {
  content: "\f109";
}
.button-makepay::after {
    content: "\f120";
}
.button-update::after {
    content: "\f122";
}
.button-cart::after,
.button-checkout::after,
.button-makepay::after,
.button-continue::after,
.button-update::after,
.button-payment::after {
    font-family: var(--woodmart);
    margin-left: 10px;
}

.cart-actions {
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -ms-box-orient: horizontal;
    box-orient: horizontal;
}
.u-justify-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
}
.cart-actions .btn +  .btn {
    margin-left: 0.75rem;
}



.SidebarCart-Close {
    top: 5px;
    right: 21px;
    z-index: 510;
    cursor: pointer;
    color: #323232;
    position: absolute;
    padding: 0rem;
    opacity: 0;
    filter: alpha(opacity=0);
    font-size: 1.5625rem;
    line-height: 1.875rem;
    line-height: 1.5em;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    transition-property: all;
    transition-timing-function: ease;
    -webkit-transition-property: 0.6s,0.5s,0.5s;
    -moz-transition-property: 0.6s,0.5s,0.5s;
    -ms-transition-property: 0.6s,0.5s,0.5s;
    -o-transition-property: 0.6s,0.5s,0.5s;
    transition-property: 0.6s,0.5s,0.5s;
    -webkit-transition-property: color,opacity,transform;
    -moz-transition-property: color,opacity,transform;
    -ms-transition-property: color,opacity,transform;
    -o-transition-property: color,opacity,transform;
    transition-property: color,opacity,transform;
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.SidebarCart-Close [class^="icon_close"] {
    cursor: pointer;
    margin-top: 0px;
    line-height: 20px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.SidebarCart-Close [class^="icon_close"]::before, .SidebarCart-Close [class^="icon_close"]::after {
    top: 50%;
    left: -15%;
    right: -15%;
    content: ' ';
    height: 1.5px;
    position: absolute;
    background-color: #323232;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.SidebarCart-Close [class^="icon_close"]::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.SidebarCart-Close [class^="icon_close"]::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


.SidebarCart-Overlay {
    top: 0;
    left: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 999 !important;
    min-height: 100vh !important;
    background: rgba(var(--missio-dark-rgb),0.5);
    background-color: rgba(var(--missio-dark-rgb),0.5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
body.navigation-active {
    overflow: hidden !important;
    background-attachment: fixed;
}
.navigation-active .SidebarCart-Overlay {
    display: block;
}
.navigation-active .SidebarCart-Close {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.SidebarCart-Close [class^="icon_close"]:hover {
    -webkit-transform: translateY(0px) rotate(90deg) !important;
    -moz-transform: translateY(0px) rotate(90deg) !important;
    -o-transform: translateY(0px) rotate(90deg) !important;
    -ms-transform: translateY(0px) rotate(90deg) !important;
    transform: translateY(0px) rotate(90deg) !important;
}
.SidebarCart-Close [class^="icon_close"]:hover::before,
.SidebarCart-Close [class^="icon_close"]:hover::after {
    background-color: var(--missio-success);
}


/* Shop Cart */
.subTitle {
    color: #000;
    font-size: 1.725rem;
    font-weight: 700;
    padding-bottom: .625rem;
    margin-bottom: 0.75rem;
}
.subTitle.with-border {
    position: relative;
}
.subTitle.with-border::after {
    left: 0;
    bottom: 0;
    height: 1px;
    content: ' ';
    width: 100%;
    position: absolute;
    background-color: #c6c6c6;
}

.cart-table-section {
    overflow-x: auto;
    margin-bottom: 40px;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
    .form-vertical-sm {
        padding-right: 1.725rem;
    }
}

.shop_table {
    width: 100%;
    border-spacing: 0;
    margin-bottom: 1.875rem;
    border-collapse: collapse;
    font-size: .9375rem;
    line-height: 1.125rem;
    line-height: 1.4;
}
.shop_table thead th,
.shop_table tbody td {
    color: #323232;
    padding: .75rem .5rem;
    vertical-align: middle;
    text-align: left;
    font-size: .9375rem;
    line-height: 1.125rem;
    line-height: 1.2;
}
.shop_table thead th {
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-family-title);
    border-bottom: 2px solid var(--missio-bdr-color);
}
.shop_table tbody td {
    font-size: 15px;
    font-weight: 500;
    vertical-align: top;
    border-bottom: 1px solid var(--missio-bdr-color);
}

.shop_table th.product-thumbnail,
.shop_table td.product-thumbnail {
    width: 62px;
    max-width: 62px !important;
}
.cart-table-section td.product-name,
.cart-table-section th.product-name {
    width: 150px !important;
}
.shop_table tr th:last-of-type,
.shop_table tr td:last-of-type {
    text-align: right;
}

.shop_table tbody td.product-remove {
    max-width: 30px !important;
    padding: 15px 0px !important;
}

.shop_table tbody td .wrap-wishlist-button a {
  display: block;
  color: #323232;
  text-align: center;
  width: 30px;
  height: 30px;
  font-size: 0rem;
  line-height: 0rem;
}
.shop_table tbody td.product-remove .remove {
    position: relative;
    font-size: 0;
    display: inline-block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    vertical-align: middle;
    cursor: pointer;
    padding-right: 19px;
    padding-right: 0;
}
.shop_table tbody td .wrap-wishlist-button a::before {
    content: "\f108";
    font-size: 1.125rem;
    line-height: 1.35rem;
    font-family: var(--woodmart);
}
.widget-clear {
    z-index: 1;
    top: 0.5rem;
    right: 1.5rem;
    position: absolute;
}
.widget-clear .btn-clear {
    padding: 0;
    border: 0 none;
    font-size: 15px;
    position: relative;
    padding-left: 1.25rem;
    background-color: transparent;
}
.widget-clear .btn-clear:hover {
    color: var(--missio-danger);
}
.widget-clear .btn-clear:active, .widget-clear .btn-clear:focus {
    -webkit-transform: scale(0.98) !important;
    transform: scale(0.98) !important;
}

.widget-clear .btn-clear::after,
.widget-clear .btn-clear::before,
.shop_table tbody td.product-remove .remove::after,
.shop_table tbody td.product-remove .remove::before {
    top: 50%;
    right: 8px;
    width: 15px;
    height: 2px;
    content: " ";
    margin-top: -1px;
    position: absolute;
    display: inline-block;
    background-color: #323232;
    -webkit-transition: background-color .2s ease-in-out, transform .2s ease-in-out, width .2s ease-in-out;
    -webkit-transition: background-color .2s ease-in-out, width .2s ease-in-out, -webkit-transform .2s ease-in-out;
    transition: background-color .2s ease-in-out, width .2s ease-in-out, -webkit-transform .2s ease-in-out;
    transition: background-color .2s ease-in-out, transform .2s ease-in-out, width .2s ease-in-out;
    transition: background-color .2s ease-in-out, transform .2s ease-in-out, width .2s ease-in-out, -webkit-transform .2s ease-in-out;
}
.widget-clear .btn-clear::after,
.widget-clear .btn-clear::before {
    right: auto;
    left: 0.125rem;
}
.widget-clear .btn-clear::before,
.shop_table tbody td.product-remove .remove::before {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.widget-clear .btn-clear::after,
.shop_table tbody td.product-remove .remove::after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.widget-clear .btn-clear:hover::before,
.widget-clear .btn-clear:hover::after,
.shop_table tbody td.product-remove .remove:hover::before,
.shop_table tbody td.product-remove .remove:hover::after {
    transform: rotate(0);
    -webkit-transform: rotate(0);
}

.widget-clear .btn-clear:hover::before,
.widget-clear .btn-clear:hover::after,
.shop_table tbody td.product-remove .remove:hover::after,
.shop_table tbody td.product-remove .remove:hover::before {
    background-color: var(--missio-danger);
}
.shop_table tbody td .wrap-wishlist-button a:hover {
    color: var(--missio-success);
}
.cart-table-section td.product-name,
.cart-table-section th.product-name {
    width: 150px !important;
}
.shop_table thead th.product-quantity,
.shop_table tbody td.product-quantity {
    width: 110px !important;
}
.shop_table tbody td.product-quantity .input-group {
    height: 45px;
}
.shop_table tbody td.product-quantity .input-group .form-control {
    height: 45px;
    padding: 0.25rem 0.5rem;
}
.shop_table tbody td.product-quantity .input-group .start-10 {
    left: 0.125rem;
}
.shop_table tbody td.product-quantity .input-group .end-10 {
    right: 0.125rem;
}


.checkout--order__review {
    padding: 1.25rem;
    position: relative;
    margin-bottom: 2.5rem;
    background-color: #f6f6f6;
    position: sticky;
    top: 160px;
}
.checkout--order__review::before,
.checkout--order__review::after {
    left: 0;
    content: " ";
    position: absolute;
    width: 100%;
    height: 10px;
    background-color: transparent;
    background-image: radial-gradient(farthest-side, rgba(0,0,0,0) 6px, #f6f6f6 0);
    background-size: 15px 15px;
}
.checkout--order__review::before {
    top: -10px;
    background-position: -3px -5px,0 0;
}
.checkout--order__review::after {
    bottom: -10px;
    background-position: -3px 2px,0 0;
}

.shop_table tr td:last-of-type {
    text-align: right;
}
.checkout--order__review--table th {
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-family: var(--font-family-title) !important;
}
.checkout--order__review--table .product-total {
    width: 120px;
    max-width: 120px;
    text-align: right;
    padding-right: 0 !important;
}
.checkout--order__review--table .product-name {
    width: calc(100% - 120px);
    max-width: calc(100% - 120px);
    text-align: left;
    font-size: .9375rem;
    line-height: 1.35rem;
    font-weight: 400;
    padding-left: 0 !important;
}

.cart__totals .shipping-totals th, .cart__totals .shipping-totals td,
.cart__totals .order-total th, .cart__totals .order-total td,
.cart__totals .order-subtotal th, .cart__totals .order-subtotal td {
    font-size: 1rem;
    line-height: 1.2rem;
    padding: .625rem .625rem;
}
.checkout--order__review--table tfoot td:first-of-type {
    padding-left: 0 !important;
}
.checkout--order__review--table tfoot td:last-of-type {
    padding-right: 0 !important;
}


/* Checkout */
.checkout-form {
    margin-top: 1.5rem;
}
.checkout-form .form-group {
    margin-bottom: 15px;
}
.checkout-form .form-group label {
    width: 100%;
    cursor: pointer;
    font-size: 15px;
    margin-bottom: 0.25rem;
}
.checkout-form .nice-select,
.checkout-form .form-group label {
    width: 100%;
}
.checkout-form .form-group .form-control {
    height: 50px;
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem !important;
    border: 1px solid var(--missio-bdr-color) !important;
    box-shadow: 2px 2px 4px rgba(214, 218, 225, 0.2) !important;
}
.nice-select::after {
    right: 16px;
    width: 0.5rem;
    height: 0.5rem;
}
.checkout-form .nice-select {
    display: flex;
    border-color: #ccc;
    align-items: center;
}
.nice-select > span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 1.25rem;
}
.checkout-form .nice-select.open,
.checkout-form .form-group .form-control:focus,
.StripeElement--focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 0.15rem var(--rgba-primary-2) !important;
}
.nice-select.open .list {
    overflow-y: auto;
    max-height: 250px;
}
.checkout-form .select-dropdown {
    position: relative;
}
.checkout-form .select-dropdown .form-control {
    padding-left: 0.75rem;
    padding-right: 2.5rem !important;
}
.select-dropdown::after {
    top: calc(50% - 4px);
    z-index: 2;
    right: var(--modal-padding-md);
    width: var(--badge-padding-x);
    height: var(--badge-padding-x);
    color: var(--missio-link-color);
    display: block;
    content: '';
    position: absolute;
    pointer-events :none;
    line-height: 25px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: transparent;
    border-right: 2px solid var(--missio-bdr-color2);
    border-bottom: 2px solid var(--missio-bdr-color2);
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.StripeElement {
    padding: 0 !important;
    height: 54px !important;
    padding-left: 0.75rem !important;
    border-radius: 0.5rem !important;
    border: 2px solid var(--missio-bdr-color) !important;
    box-shadow: 2px 2px 4px rgba(214, 218, 225, 0.2) !important;
    background-color: #fff !important;
    margin-bottom: 20px !important;
}
.StripeElement > * {
    border-radius: 0.5rem !important;
    box-sizing: border-box !important;
    max-width: calc(100% - 4px) !important;
}
.StripeElement--invalid {
    border: 2px solid var(--missio-danger) !important;
    box-shadow: 0 0 0 0.15rem rgba(200, 24, 24, 0.2) !important;
}

.u-mb--5 {
    margin-bottom: .3125rem;
}
.product-specifications {
    width: 100%;
}
.product-specifications .btn-print {
    font-size: 12px !important;
    padding: 0.5rem 0.75rem !important;
    border-radius: 0.25rem !important;
}

.Shipping--Address .button-add-address {
    display: flex;
    position: relative;
    padding: 1.25rem .9375rem;
    border: 2px dashed #c6c6c6;
    font-size: 1.25rem;
    line-height: 1.5rem;
    font-weight: 700;
    height: calc(100% - 20px);
    align-items: center;
    justify-content: center;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical;
    color: var(--missio-link-color);
    border-radius: 0.25rem;
}
.Shipping--Address .button-add-address::before {
    font-size: 1.375rem;
    line-height: 1.65rem;
    margin-right: 0rem;
    margin-bottom: .625rem;
    content: "\f10f";
    font-family: var(--woodmart);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.Shipping--Address .button-add-address:hover {
    color: var(--missio-white);
    border-color: var(--primary-dark);
    background-color: var(--primary-dark);
}

/* Custom Radio and Checkboxes */
.button-set {
    width: 100%;
    position: relative;
    margin-bottom: 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
}
.button-set [class^="column"] {
    margin-right: 50px;
    display: inline-block;
}

@media screen and (max-width: 480px) {
    .button-set [class^="column"] {
        display: block;
        margin-right: 0px;
    }
}
.button-set label {
    width: 100%;
    color: #000000;
    cursor: pointer;
    margin-right: 0px;
    margin-bottom: 0px;
    font-size: 0.938em;
    line-height: 1.5;
    padding-left: 1.875rem;
    font-weight: 400;
}
.button-set input[type="radio"],
.button-set input[type="checkbox"] {
    margin: 0;
    height: 1px;
    padding: 0rem;
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    pointer-events: none;
}
.button-set input[type="radio"] + span {
    width: 20px;
    height: 20px;
    text-align: center;
    display: inline-block;
    background-color: var(--missio-white);
    border: 2px solid var(--missio-bdr-color);
    vertical-align: top;
    position: relative;
    margin-right: 0.625rem;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
.button-set input[type="radio"] + span {
    top: 2px;
}
.button-set input[type="radio"] + span::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: " ";
    position: absolute;
    opacity: 0;
    filter: alpha(opacity=0);
    display: inline-block;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
}
.button-set input[type="radio"]:focus + span,
.button-set input[type="radio"]:active + span {
    border-color: #05c31b;
}
.button-set input[type="radio"]:checked + span::after {
    opacity: 1;
    filter: alpha(opacity=100);
}
.button-set input[type="radio"].error + span {
    border-color: #f23a58;
}
.button-set input[type="radio"] + span {
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
.button-set input[type="radio"] + span::after {
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background-color: #302d75;
    border-color: #302d75;
}
.button-set input[type="radio"]:checked + span {
    border: 2px solid #302d75;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
}
.button-set input[type="radio"]:checked + span::after {
    border: 3px solid #ffffff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.button-set .eds-checked {
    top: 0;
    left: 0;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    position: absolute;
    display: inline-block;
    vertical-align: middle;
    padding-right: 0.3125rem;
}
.button-set .eds-checked::before {
    top: 0;
    left: 0;
    margin: 0;
    z-index: 1;
    content: "";
    display: block;
    position: absolute;
    opacity: 0;
    filter: alpha(opacity=0);
    width: 1.25rem;
    height: 1.25rem;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0);
    -webkit-transform: scale3d(2.3, 2.3, 1);
    /* Chrome, Safari, Opera */
    -moz-transform: scale3d(2.3, 2.3, 1);
    /* Mozilla Firefox */
    -o-transform: scale3d(2.3, 2.3, 1);
    -ms-transform: scale3d(2.3, 2.3, 1);
    /* IE 9 */
    transform: scale3d(2.3, 2.3, 1);
}
.button-set .eds-checked .check {
    z-index: 1;
    overflow: hidden;
    position: relative;
    display: inline-block;
    background-color: var(--missio-white);
    border: 1px solid var(--missio-bdr-color);
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}
.button-set .eds-checked .check::before {
    width: 0;
    height: 0;
    content: "";
    display: block;
    margin-top: -3px;
    margin-left: 8px;
    position: absolute;
    background: var(--primary) !important;
    -webkit-transform: rotate(45deg);
    /* Chrome, Safari, Opera */
    -moz-transform: rotate(45deg);
    /* Mozilla Firefox */
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    /* IE 9 */
    transform: rotate(45deg);
    -webkit-animation: checkbox-off 0.3s forwards;
    -moz-animation: checkbox-off 0.3s forwards;
    -o-animation: checkbox-off 0.3s forwards;
    -ms-animation: checkbox-off 0.3s forwards;
    animation: checkbox-off 0.3s forwards;
}
.button-set input[type="checkbox"]:focus + .eds-checked .check:after {
    opacity: 0.2;
    filter: alpha(opacity=20);
}
.button-set input[type="checkbox"]:checked + .eds-checked .check {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}
.button-set input[type="checkbox"]:checked + .eds-checked .check:before {
    color: var(--missio-white);
    background: var(--primary) !important;
    -webkit-animation: checkbox-on 0.3s forwards;
    -moz-animation: checkbox-on 0.3s forwards;
    -ms-animation: checkbox-on 0.3s forwards;
    -o-animation: checkbox-on 0.3s forwards;
    animation: checkbox-on 0.3s forwards;
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
    -moz-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
    -ms-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
    -o-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
}
.button-set input[type="checkbox"][disabled] ~ .eds-checked .check {
    border-color: #302d75;
    opacity: 0.26;
    filter: alpha(opacity=26);
}
.button-set input[type="checkbox"][disabled] + .eds-checked .check:after {
    -webkit-transform: rotate(-45deg);
    /* Chrome, Safari, Opera */
    -moz-transform: rotate(-45deg);
    /* Mozilla Firefox */
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    /* IE 9 */
    transform: rotate(-45deg);
    background-color: #302d75 !important;
}
.button-set input[type="checkbox"]:checked + .eds-checked:before,
.button-set input[type="radio"]:checked + .eds-checked:before {
    -webkit-animation: rippleOn 500ms;
    -moz-animation: rippleOn 500ms;
    -o-animation: rippleOn 500ms;
    -ms-animation: rippleOn 500ms;
    animation: rippleOn 500ms;
    background-color: rgba(48, 45, 117, 0.3);
}
.button-set input[type="checkbox"]:checked + .eds-checked .check:after,
.button-set input[type="radio"]:checked + .eds-checked span:after {
    -webkit-animation: rippleOn 500ms forwards;
    -moz-animation: rippleOn 500ms forwards;
    -o-animation: rippleOn 500ms forwards;
    -ms-animation: rippleOn 500ms forwards;
    animation: rippleOn 500ms forwards;
}
.button-set input[type="checkbox"]:not(:checked) + .eds-checked:before,
.button-set input[type="radio"]:not(:checked) + .eds-checked:before {
    -webkit-animation: rippleOff 500ms;
    -moz-animation: rippleOff 500ms;
    -o-animation: rippleOff 500ms;
    -ms-animation: rippleOff 500ms;
    animation: rippleOff 500ms;
    background-color: rgba(48, 45, 117, 0.3);
}

@keyframes checkbox-on {
    0% {
        -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px;
        -moz-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px;
        -ms-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px;
        -o-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px;
        box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px;
    }

    50% {
        -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px;
        -moz-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px;
        -ms-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px;
        -o-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px;
        box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px;
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
        -moz-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
        -ms-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
        -o-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
        box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
    }
}

@keyframes rippleOn {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
    }

    50% {
        opacity: 0.2;
        filter: alpha(opacity=20);
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
    }
}

@keyframes rippleOff {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
    }

    50% {
        opacity: 0.2;
        filter: alpha(opacity=20);
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
    }
}

.radio {
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
}
.radio.column {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical;
}
.radio label {
    color: #000000;
    height: auto;
    cursor: pointer;
    font-weight: 400;
    margin-bottom: 0;
    position: relative;
    padding-left: 1.625rem;
    display: inline-block;
    font-size: 1.125rem;
    line-height: 1.35rem;
    line-height: 1.5;
    font-weight: 500;
    text-transform: inherit !important;
    max-width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}
.radio label strong {
    color: #333333;
    padding-left: 0.25rem;
}
.radio label span.text-green,
.radio label a {
    padding-left: 0.25rem;
}
.radio label:before {
    left: 0;
    top: 0.25rem;
    content: " ";
    background-color: var(--missio-white);
    border-radius: 50%;
    border: 2px solid var(--missio-bdr-color);
    display: inline-block;
    margin-left: 0rem;
    position: absolute;
    -webkit-transition: border 0.5s ease-in-out;
    -moz-transition: border 0.5s ease-in-out;
    -ms-transition: border 0.5s ease-in-out;
    -o-transition: border 0.5s ease-in-out;
    transition: border 0.5s ease-in-out;
    width: 20px;
    height: 20px;
    outline: 0 !important;
}
.radio label:after {
    left: 4px;
    /* 4px */
    top: 0.5rem;
    /* 8px */
    -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -webkit-transform: scale(0, 0);
    -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    background-color: #6c757d;
    border-radius: 50%;
    content: " ";
    display: inline-block;
    margin-left: 0rem;
    position: absolute;
    transform: scale(0, 0);
    transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33), -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    width: 12px;
    height: 12px;
}
.radio input[type="radio"] {
    z-index: 1;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
    outline: 0 !important;
    position: absolute;
    width: 1px;
    height: 1px;
}
.radio input[type="radio"]:disabled + label {
    opacity: 0.65;
    filter: alpha(opacity=65);
}
.radio input[type="radio"]:focus + label::before {
    outline-offset: -2px;
    outline: 5px auto -webkit-focus-ring-color;
    outline: thin dotted;
}
.radio input[type="radio"]:checked + label::after {
    -webkit-transform: scale(1, 1);
    /* Chrome, Safari, Opera */
    -moz-transform: scale(1, 1);
    /* Mozilla Firefox */
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    /* IE 9 */
    transform: scale(1, 1);
}
.radio input[type="radio"]:disabled + label::before {
    cursor: not-allowed;
}
.radio-right label {
    padding-left: 0px;
    padding-right: 26px;
}
.radio-right label:before {
    top: 1px;
    right: 0;
    left: auto;
    margin-left: 0;
    margin-right: 0px;
    position: absolute;
    -webkit-transition: border 0.5s ease-in-out;
    -moz-transition: border 0.5s ease-in-out;
    -ms-transition: border 0.5s ease-in-out;
    -o-transition: border 0.5s ease-in-out;
    transition: border 0.5s ease-in-out;
    width: 18px;
    outline: 0 !important;
}
.radio-right label:after {
    top: 5px;
    left: auto;
    right: 4px;
    margin-left: 0px;
    margin-right: 0px;
}
.radio-right input[type="radio"] {
    position: absolute;
}
.radio.radio-inline {
    margin-top: 0;
}
.radio.radio-single label {
    height: 17px;
}
.radio-primary input[type="radio"] + label::before {
    border-color: #c7cfd8;
}
.radio-primary input[type="radio"] + label::after {
    background-color: #302d75;
}
.radio-primary input[type="radio"]:checked + label {
    color: #302d75;
}
.radio-primary input[type="radio"]:checked + label strong {
    color: #302d75;
}
.radio-primary input[type="radio"]:checked + label::before {
    border-color: #302d75;
}
.radio-primary input[type="radio"]:checked + label::after {
    background-color: #302d75;
}

/* Payment Page */
.Thankyou-Message {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    text-align: center;
    -webkit-align-content: center;
    -moz-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical;
    margin-bottom: 3.5rem;
}
.Thankyou-Message .graphic-100 {
    width: 100%;
    max-width: 500px;
    flex-shrink: 0;
    margin: 0px auto;
    margin-bottom: 1.25rem;
}
.Thankyou-Message .message-title {
    color: var(--missio-dark);
    font-size: 2.25rem;
    line-height: 1;
    margin-bottom: .3125rem;
}
.reverse-table {
    width: 100%;
    border: 1px solid rgba(var(--missio-dark-rgb),0.2);
    margin-bottom: 1.875rem;
}
 .reverse-table thead th {
    font-size: 1.25rem;
    line-height: 1.5rem;
    padding: 1.5rem .9375rem .5rem;
    font-weight: 900;
    font-family: var(--font-family-title);
}
.reverse-table tbody td {
    font-size: 1rem;
    line-height: 1.2rem;
    padding: .5rem .9375rem 1.5rem;
    font-weight: 400;
}
 .reverse-table thead th, .reverse-table tbody td {
    width: 20%;
    color: var(--missio-white);
    vertical-align: top;
    border-left: 1px solid rgba(var(--missio-dark-rgb),0.2);
}
.reverse-table tbody td p:last-of-type {
    margin-bottom: 0;
}
.reverse-table thead th:nth-of-type(1), .reverse-table tbody td:nth-of-type(1),
.reverse-table thead th:nth-of-type(5), .reverse-table tbody td:nth-of-type(5) {
    background-color: var(--rgba-primary-6);
}
.reverse-table thead th:nth-of-type(2), .reverse-table tbody td:nth-of-type(2),
.reverse-table thead th:nth-of-type(4), .reverse-table tbody td:nth-of-type(4) {
    background-color: var(--rgba-primary-7);
}
.reverse-table thead th:nth-of-type(3), .reverse-table tbody td:nth-of-type(3) {
    background-color: var(--rgba-primary-8);
}

.ship-details {
    width: 100%;
    padding-right: 1.875rem;
}
.ship-details p {
    display: block;
    color: #323232;
    font-size: 1rem;
    line-height: 1.2rem;
    line-height: 1.5;
    padding-left: 1.875rem;
    margin-bottom: .3125rem;
}
.ship-details p:first-of-type,
.ship-details p .no-padd {
    font-weight: 700;
    padding-left: 0;
}

@media (max-width: 767.98px) {
    .ship-details {
        padding-right: 0;
        margin-bottom: 2.5rem;
    }
    .reverse-table {
        margin-bottom: 0;
    }
    .reverse-table {
        width: 100%;
        margin: 0 auto;
        border-spacing: 0;
        border-top: 1px solid var(--missio-bdr-color);
    }
    .reverse-table thead {
        border: 0;
        width: 1px;
        padding: 0;
        height: 1px;
        overflow: hidden;
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
    }
    .reverse-table tr td,
    .reverse-table tr th {
        width: 100%;
        overflow: hidden;
        position: relative;
        white-space: normal;
        vertical-align: top;
        padding: .625rem;
        vertical-align: middle;
        border: 1px solid var(--missio-bdr-color);
        border-top-width: 1px;
        border-top-style: solid;
        border-top-color: var(--missio-bdr-color);
        border-top: none;
        background-color: var(--missio-white) !important;
    }
    .reverse-table tr td {
        border-left: 0 none;
        border-right: 0 none;
    }
    .reverse-table tr td:last-of-type {
        border-bottom: 0 none;
    }
    .reverse-table td[data-header]::before {
        width: 55%;
        float: left;
        z-index: 1;
        display: block;
        text-align: left;
        font-weight: bold;
        position: absolute;
        content: attr(data-header);
        color: var(--missio-dark) !important;
    }
    .reverse-table td[data-header]::after {
        top: 0;
        left: 0;
        width: 45%;
        content: "";
        display: block;
        position: absolute;
        padding-bottom: 200%;
        background-color: #f4f4f4;
        border-right: 1px solid var(--missio-bdr-color);
    }
    .reverse-table tbody, .reverse-table tr, .reverse-table th, .reverse-table td {
        padding: 0;
        display: block;
        text-align: left;
        white-space: normal;
        color: var(--missio-dark) !important;
    }
    .reverse-table td[data-header] > * {
        margin: 0;
        width: 50%;
        float: right;
        clear: right;
        display: block;
        word-break: break-all;
        padding-left: .625rem;
    }
    .modal-loader {
        min-height: 480px;
    }
}


.mw-200px {
    width: 100%;
    display: block;
    max-width: 200px;
}
.cart_list.cart_list_noproduct {
    height: 100%;
}
.no-product-block {
    height: 100%;
    padding: 40px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.no-product-block h4 {
    color: #a2a2a2;
    font-size: 1.25rem;
}


/* Responsive */
@media (min-width: 1200px) {
    .modal-xl {
        width: 1140px;
    }
}

.store-breadcrumb {
    width: 100%;
    margin-bottom: 40px;
}
.store-breadcrumb,
.store-breadcrumb-list {
    display: inline-flex;
    align-items: center;
}
.store-breadcrumb-list {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: 1.25rem;
}
.store-breadcrumb-list,
.store-breadcrumb-item {
    font-size: 15px;
}
.store-breadcrumb-item::after {
    content: "/";
    margin: 0 0.5rem;
    opacity: 0.5;
}
.store-breadcrumb-item:last-of-type::after {
    margin: 0;
    display: none;
}
.store-breadcrumb-link {
    color: var(--secondary);
}
.store-breadcrumb-link:hover, .store-breadcrumb-link:focus, .store-breadcrumb-link:active {
    color: var(--primary);
}

.store-main .btn-back {
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    opacity: 0.85;
    transition: .3s ease-in-out;
}
.store-main .btn-back .size-16px {
    width: 16px;
    height: 16px;
    display: flex;
    margin-right: 0.5rem;
    align-items: center;
    justify-content: center;
}
.store-main .btn-back:not(data-balloon):hover {
    opacity: 1;
}
.store-main .btn-back:active, .store-main .btn-back:focus {
    -webkit-transform: scale(0.98) !important;
    transform: scale(0.98) !important;
}


.product-description img {
    z-index: 2;
    display: block;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: var(--badge-padding-x);
}
.product-description p,
.product-description h1, .product-description h2, .product-description h3, .product-description h4, .product-description h5, .product-description h6,
.product-description .h1, .product-description .h2, .product-description .h3, .product-description .h4, .product-description .h5, .product-description .h6 {
    text-align: left;
    margin-bottom: 20px;
}

.product-description .shop_attributes {
    width: 100%;
    margin-bottom: 0;
    overflow: hidden;
    --attr-v-gap: 30px;
    --attr-h-gap: 30px;
    --attr-col: 1;
    --attr-brd-width: 1px;
    --attr-brd-style: solid;
    --attr-brd-color: var(--missio-bdr-color);
    --attr-img-width: 24px;
}
.product-description .shop_attributes tbody {
    --attr-col: 1;
    -attr-v-gap: 20px;
    --attr-brd-width: 1px;
    --attr-h-gap: 30px;
    display: grid;
    grid-template-columns: repeat(var(--attr-col),1fr);
    margin-bottom: calc(-1 * (var(--attr-v-gap) + var(--attr-brd-width)));
    column-gap: var(--attr-h-gap);
}
.product-description .shop_attributes tr {
    display: flex;
    align-items: center;
    gap: 10px 20px;
    justify-content: space-between;
    margin-bottom: calc(var(--attr-v-gap) / 2);
    padding-bottom: calc(var(--attr-v-gap) / 2);
    border-bottom: var(--attr-brd-width) var(--attr-brd-style) var(--attr-brd-color);
}
.product-description .shop_attributes th {
    display: flex;
    flex: 0 0 auto;
}
.product-description .shop_attributes :is(th, td) {
    padding: 0;
    border: none;
}
.product-description .shop_attributes td {
    text-align: end;
    color: #242424;
    font-weight: 600;
}
.product-description .shop_attributes td p {
    margin-bottom: 0;
}
.product-description .wd-el-title {
    gap: 10px;
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex !important;
    align-items: center;
}
.product-description .title-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: block;
}
.product-description .title-icon img {
    margin-bottom: 0;
    border-radius: 0;
}


.grow-wrap {
    display: grid;
}
.grow-wrap > textarea {
    resize: none;
    overflow: hidden;
    height: auto;
    min-height: 60px;
    font-size: 14px;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    border: 1px solid var(--missio-bdr-color) !important;
    box-shadow: 2px 2px 4px rgba(214, 218, 225, 0.2) !important;
    transition: var(--missio-ease);
}
.grow-wrap > textarea:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 0.15rem var(--rgba-primary-2) !important;
}


@media (max-width: 767.98px) {
    .section-store {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .store-main {
        margin-top: 1.5rem;
        padding-top: 2rem;
        border-top: 3px double var(--missio-bdr-color);
    }
    .store-fluid > .grid-view {
        grid-template-columns: repeat(2, 1fr);
    }
    .store-main-header {
        flex-direction: column;
    }
    .tool-bar-lt, .product-details {
        padding-top: 1.5rem;
    }
    
    .modal-quick-view.modal-xl {
        width: calc(100% - 1rem) !important;
        max-width: calc(650px - 1rem) !important;
    }
    .product-slider.product-slider-dots-inside,
    .product-slider img {
        max-height: 350px;
    }
    .product-carousel,
    .modal-loader {
        min-height: 470px;
    }
    .modal-quick-view .modal-body .btn-close {
        opacity: 1;
        right: 20px;
        z-index: 20;
        position: fixed;
        background-color: #fff;
        padding: 0.5rem !important;
        box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
    }
    .modal-controls {
        justify-content: flex-start !important;
    }
    
    /* List View */
    .list-view .card-product {
        flex-direction: column;
    }
    .list-view .card-product .card-img-top {
        width: 100%;
    }
    .list-view .card-product .card-body {
        width: 100%;
        padding: 1.25rem !important;
    }
    
    .shop_table th:not(.product-remove),
    .shop_table td:not(.product-remove) {
        width: 100px;
        min-width: 100px;
    }
    .shop_table th.product-thumbnail, .shop_table td.product-thumbnail {
        width: 62px !important;
        min-width: 62px !important;
        max-width: 62px !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .store-fluid > .grid-view {
        grid-template-columns: repeat(2, 1fr);
    }
    .modal-quick-view.modal-xl {
        width: 100% !important;
        max-width: 750px !important;
    }
    .table-ellipsis {
        -moz-box-orient: vertical;
        display: -webkit-box;
        text-overflow: ellipsis;
        overflow: hidden;
        -webkit-line-clamp: 3;
    }
}

/* ekam adding this to add loading class */
/* Loader */
.m-loading {
	position: relative;
}
.m-loading::before {
	content: "";
	position: relative;
	display: inline-block;
	vertical-align: -.125em;
	border: .25em solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	-webkit-animation: .75s linear infinite spinner-border;
	animation: .75s linear infinite spinner-border;
	width: 1rem;
	height: 1rem;
	border-width: .2em;
}
.m-loading::before {
	margin-inline-end: 0.375rem;
}
/*
.m-loading::after {
	margin-inline-start: 0.375rem;
}
*/

@keyframes spinner-border {
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}