/*========== PLUGIN:COOKIE LAW INFO ==========*/
.cky-consent-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    position: fixed !important;
    z-index: 10000 !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background-color: rgba(0,0,0,0.5);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.cky-consent-container .cky-consent-bar {
    width: 100% !important;
    max-width: calc(100% - var(--spacing-container)*2) !important;
    margin: 0 auto !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: var(--color-white) !important;
    color: var(--color-black) !important;
    font-family: var(--font-body) !important;
    font-weight: var(--font-weight-body) !important;
    font-size: var(--font-size-body) !important;
    line-height: var(--line-height-body) !important;
    padding: var(--spacing-sm) !important;
    transition: var(--duration) var(--timing-function) !important;
}
.cky-notice .cky-title,
.cky-notice-group,
.cky-notice-des,
.cky-notice-des * {
    font-weight: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
    color: inherit !important;
}
.cky-notice .cky-title {
    margin: 0 0 var(--spacing-md) !important;
    font-size: var(--font-size-title) !important;
    line-height: var(--line-height-body) !important;
    text-transform: uppercase !important;
    letter-spacing: var(--letter-spacing) !important;
}
.cky-notice .cky-title:empty {
    display: none !important;
}
.cky-notice-group {
    display: block !important;
}
.cky-notice-group > * {
    width: 100% !important;
}
.cky-notice-des > *:not(:first-child) {
    margin-top: var(--spacing-xs);
}
.cky-notice-des .ic {
    font-size: 1.5em !important;
    line-height: normal !important;
}
.cky-notice-des a.cky-policy,
.cky-notice-des button.cky-policy {
    outline: 0 !important;
    padding: 0 !important;
    font-size: inherit !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    color: rgb(var(--rgb)) !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: var(--cta-shadow) !important;
    transition: var(--duration) var(--timing-function) !important;
}
.cky-notice-des a.cky-policy:hover,
.cky-notice-des button.cky-policy:hover {
    color: var(--color-body) !important;
}
.cky-notice-btn-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: var(--spacing-md) auto 0 !important;
    display: grid !important;
    grid-template-columns: 100% !important;
    grid-gap: var(--spacing-2xs) var(--spacing-sm) !important;
    align-items: center !important;
    justify-items: flex-start !important;
}
.cky-notice-btn-wrapper .cky-btn {
    text-decoration: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    position: relative !important;
    z-index: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: top !important;
    white-space: normal !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: none !important;
    color: inherit !important;
    font-family: var(--font-body) !important;
    font-weight: var(--font-weight-body) !important;
    font-size: var(--font-size-body-sub) !important;
    line-height: normal !important;
    letter-spacing: var(--letter-spacing) !important;
    text-indent: 0 !important;
    text-transform: uppercase !important;
    text-align: center !important;
    overflow: visible !important;
    opacity: 1 !important;
    transition: var(--duration) var(--timing-function) !important;
}
.cky-notice-btn-wrapper .cky-btn:hover {
    color: inherit !important;
    box-shadow: var(--cta-shadow) !important;
}
.cky-notice-btn-wrapper .cky-btn:not(.cky-btn-customize) {
    min-width: 0 !important;
    width: 100% !important;
    height: var(--button-height) !important;
    line-height: normal !important;
    padding: 0 var(--button-spacing-x) !important;
    color: inherit !important;
    border: 1px solid var(--button-border-color) !important;
    border-radius: 0 !important;
    background-color: transparent !important;
    box-shadow: none !important;
}
.cky-notice-btn-wrapper .cky-btn:not(.cky-btn-customize):hover,
.cky-notice-btn-wrapper .cky-btn:not(.cky-btn-customize):active {
    --button-border-color: var(--color-black);
}
.cky-notice-btn-wrapper .cky-btn:not(.cky-btn-customize):active {
    background: var(--color-black) !important;
    color: var(--color-white) !important;
}
.cky-notice-btn-wrapper .cky-btn-accept {
    order: 0;
}
.cky-notice-btn-wrapper .cky-btn-reject {
    order: 1;
}
.cky-notice-btn-wrapper .cky-btn-customize {
    order: 2;
    margin-top: calc(var(--spacing-md) - var(--spacing-2xs)) !important;
}

@media (min-width:520px) { 

    .cky-consent-container .cky-consent-bar {
        width: 476px !important;
    }

    .cky-notice-btn-wrapper {
        grid-template-columns: -webkit-max-content auto !important;
        grid-template-columns: max-content auto !important;
    }
    .cky-notice-btn-wrapper .cky-btn-customize {
        grid-column: span 2;
    }
    .cky-notice-btn-wrapper .cky-btn:not(.cky-btn-customize) {
        min-width: 175px !important;
        width: auto !important;
    }

}

/*========== PLUGIN:INSTAGRAM ==========*/
#sb_instagram,
#sb_instagram #sbi_images,
#sb_instagram #sbi_images .sbi_item {
    padding: 0 !important;
}
#sb_instagram #sbi_images {
    float: none;
    padding: 0 !important;
}
#sb_instagram #sbi_images > * {
    margin: 0 !important;
}
#sb_instagram #sbi_images .sbi_item {
    float: none;
    display: block;
    max-height: none;
    overflow: visible;
    transition: none;
    width: 100% !important;
    padding: 0 !important;
}
#sb_instagram #sbi_images .sbi_photo_wrap {
    width: 100%;
    overflow: hidden;
}
#sb_instagram #sbi_images .sbi_photo {
    background: none !important;
    opacity: 1 !important;
    transition: none !important;
    text-decoration: none !important;
    box-shadow: none !important;
    height: auto !important;
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}
#sb_instagram #sbi_images .sbi_photo > svg {
    display: none !important;
}
#sb_instagram #sbi_images .sbi_photo > * {
    position: absolute;
    top: 0; 
    left: 0;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    transition: var(--duration) var(--timing-function);
}
#sb_instagram #sbi_images .sbi_photo:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 100%;
}
#sb_instagram #sbi_images .sbi_photo > svg,
#sb_instagram #sbi_images .sbi_photo > .sbi-screenreader {
    display: none !important;
}
#sb_instagram #sbi_images:not(.swiper-wrapper) {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-gap: var(--spacing-3xs);
}
#sb_instagram #sbi_images:not(.swiper-wrapper) > *:not(:nth-child(-n+5)) {
    display: none !important;
}
#sb_instagram #sbi_images.swiper-wrapper .swiper-slide {
    width: calc(100%/5) !important;
}

@media (min-width:992px) {
    #sb_instagram #sbi_images.swiper-wrapper {
        transform: none !important;
    }
}

@media (max-width:991px) {

    #sb_instagram #sbi_images.swiper-wrapper .swiper-slide {
        width: calc(100%/3) !important;
    }
    
}

@media (max-width:767px) {

    #sb_instagram #sbi_images.swiper-wrapper .swiper-slide {
        width: calc(100%/2) !important;
    }
    #sb_instagram #sbi_images.swiper-wrapper.morethan .swiper-slide {
        width: 38.4615384615vw !important;
    }

}


/*========== WPCF7 ==========*/
.wpcf7-form .wpcf7-form-control-wrap {
    position: relative;
    display: block;
    width: 100%;
}
.wpcf7-form .wpcf7-not-valid-tip {
    display: block;
    font-weight: inherit;
    font-size: var(--font-size-2xs);
    color: var(--color-error);
}
.wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    margin-top: var(--spacing-3xs);
}
.wpcf7-form .wpcf7-response-output {
    margin: var(--spacing-xs) 0 0 !important;
    padding: 0 !important;
    border: 0 !important;
}
.wpcf7-form .ajax-loader {
    display: block;
    margin: 0 auto;
    left: 0;
    right: auto;
    top: calc(100% + var(--spacing-3xs));
}
.wpcf7-form .a-center .ajax-loader {
    left: 0;
    right: 0;
}
.wpcf7-form .wpcf7-list-item {
    margin-left: 0 !important;
}

@media (max-width:991px) {

    .wpcf7-form .a-center-device-sm .ajax-loader {
        left: 0;
        right: 0;
    }

}

/*====================*/

/*========== PLUGIN:MULTI CURRENCY ==========*/
.currency-style .wmc-shortcode.plain-vertical {
    font: inherit;
    line-height: inherit;
    color: inherit;
    white-space: nowrap;
}
.currency-style .wmc-shortcode.plain-vertical,
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper,
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper span.wmc-current-currency {
    height: 100%;
    display: inline-flex;
    vertical-align: top;
    align-items: center;
}
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper span.wmc-current-currency,
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper .wmc-sub-currency .wmc-currency,
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper .wmc-sub-currency .wmc-currency a,
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper .wmc-sub-currency .wmc-currency span {
    padding: 0;
    border: 0;
    background: none;
    font: inherit;
    line-height: inherit;
    color: inherit;
}
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper {
    padding: var(--spacing-3xs) 0;
    margin: var(--spacing-3xs-minus) 0;
}
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper i {
    margin: 0 !important;
    transform: none !important;
}
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper i.flag-th,
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper i.flag-us,
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper i.flag-eu,
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper i.flag-gb {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper i.flag-th {
    background-image: url(../img/design/_thb.png) !important;
}
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper i.flag-us {
    background-image: url(../img/design/_usd.png) !important;
}
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper i.flag-eu {
    background-image: url(../img/design/_eur.png) !important;
}
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper i.flag-gb {
    background-image: url(../img/design/_gbp.png) !important;
}
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper i,
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper i > img {
    display: block;
    width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    overflow: hidden;
}
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper span.wmc-current-currency {
    margin: 0;
    padding: 0;
    font-weight: inherit !important;
    line-height: inherit !important;
    display: inline-flex !important;
    vertical-align: top !important;
}
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper span.wmc-current-currency span {
    padding: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper .wmc-sub-currency {
    box-sizing: border-box;
    margin: 0;
    transform: none;
    text-align: left !important;
    padding: var(--spacing-2xs) var(--spacing-xs);
    width: calc(100% + var(--spacing-xs)*2) !important;
    left: var(--spacing-xs-minus);
    color: #000;
    background: #fff;
    border: 1px solid rgba(var(--color-body-rgb),0.1);
    border-radius: var(--radius);
    overflow: hidden;
}
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper .wmc-sub-currency > *:not(:first-child) {
    margin-top: var(--spacing-2xs);
}
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper .wmc-sub-currency > .wmc-hidden:first-child + * {
    margin-top: 0;
}
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper .wmc-sub-currency,
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper .wmc-sub-currency .wmc-currency a {
    transition: var(--duration);
}
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper span.wmc-current-currency,
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper .wmc-sub-currency .wmc-currency a {
    box-shadow: none !important;
    transition: none !important;
    font-weight: inherit !important;
    display: flex;
    align-items: center;
}
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper span.wmc-current-currency > *:not(:first-child), 
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper .wmc-sub-currency .wmc-currency a > *:not(:first-child) {
    margin-left: var(--spacing-3xs) !important;
}
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper span.wmc-current-currency span,
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper .wmc-sub-currency .wmc-currency a span {
    padding: 0 !important;
    display: inline;
    vertical-align: baseline;
    font: inherit;
    line-height: normal;
    color: inherit;
    transition: var(--duration);
}
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper .wmc-sub-currency .wmc-currency a:hover span {
    box-shadow: var(--cta-shadow);
}
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper .wmc-current-currency-arrow,
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper .wmc-open-dropdown-currencies {
    display: none !important;
}
.currency-style .wmc-shortcode.plain-vertical .wmc-currency-wrapper span.wmc-current-currency:after {
    font-family: 'iconfont';
    content: "\e90c";
    font-size: var(--font-size-2xs);
    font-weight: normal;
    line-height: inherit;
    display: block;
    margin: 0 0 0 var(--spacing-xs);
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: none;
    width: auto;
    height: auto;
}

/*========== PLUGIN:REGISTRATION ==========*/
#user-registration {
    box-shadow: none;
    background: none;
    padding: 0;
    margin: 0;
}
#user-registration p {
    color: inherit;
}
.user-registration-error, 
.user-registration-info, 
.user-registration-message {
    list-style: none;
    font-size: var(--font-size-xs);
    line-height: normal;
    text-transform: none;
    border: 0 !important;
    background: var(--color-gray-bright) !important;
    padding: var(--spacing-xs) !important;
    color: var(--color-gray);
    margin: 0 0 var(--spacing-sm) !important;    
}
.user-registration-error:before, 
.user-registration-info:before, 
.user-registration-message:before {
    display: none;
}
.ur-frontend-form {
    margin: 0 !important;
    padding: 0 !important;
    border: 0;
    text-align: left;
}
.ur-frontend-form button, 
.ur-frontend-form button[type=submit], 
.ur-frontend-form input[type=submit] {
    box-shadow: none !important;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    float: none;
    clear: both;
    padding: 0;
    width: auto;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-transform: none;
    line-height: normal;
    transition: var(--duration);
}
.ur-frontend-form .form-row {
    text-align: inherit;
}
.ur-frontend-form .form-row .password-input-group {
    display: block;
}
.ur-frontend-form .form-row .password-input-group + .rememberme {
    margin-top: var(--spacing-xs) !important;
}
.ur-frontend-form .form-row .choice input + span, 
.ur-frontend-form .form-row .woocommerce-form__label-for-checkbox > .woocommerce-form__input-checkbox + span {
    text-align: inherit;
}
.ur-frontend-form .ur-form-row .ur-form-grid {
    padding: 0;
    width: 100% !important;
}
.ur-frontend-form .ur-form-row .ur-form-grid > *:not(:last-child) {
    margin-bottom: var(--spacing-md) !important;
}
.ur-frontend-form .ur-form-row .ur-form-grid > .user-registration-password-strength:not(:last-child) {
    margin-bottom: 0 !important;

}
.ur-frontend-form .ur-form-row .ur-form-grid > .clear {
    margin: 0 !important;
}
.ur-frontend-form .ur-form-row .ur-form-grid label, 
.ur-frontend-form .ur-form-row .ur-form-grid label.ur-label {
    margin: 0;
    padding: 0;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    text-align: left;
    color: inherit;
}
.ur-frontend-form .ur-form-row .ur-form-grid label.label {
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-body-sub);
    letter-spacing: var(--letter-spacing);
    text-transform: uppercase;
}
.ur-frontend-form .ur-form-row .ur-form-grid label.choice {
    display: flex;
}
.ur-frontend-form .ur-form-row .ur-form-grid label .required {
    text-decoration: none;
    color: var(--color-error);
    display: none;
}
.ur-frontend-form .ur-form-row .ur-form-grid .user-registration-error {
    position: static !important;
    background: none !important;
    padding: 0 !important;
    margin: var(--spacing-3xs) 0 !important;
    color: var(--color-error) !important;
    font-size: var(--font-size-2xs) !important;
    text-transform: none !important;
}
.ur-frontend-form .ur-form-row .ur-form-grid input[type=date], 
.ur-frontend-form .ur-form-row .ur-form-grid input[type=email], 
.ur-frontend-form .ur-form-row .ur-form-grid input[type=number], 
.ur-frontend-form .ur-form-row .ur-form-grid input[type=password], 
.ur-frontend-form .ur-form-row .ur-form-grid input[type=phone], 
.ur-frontend-form .ur-form-row .ur-form-grid input[type=text], 
.ur-frontend-form .ur-form-row .ur-form-grid input[type=timepicker], 
.ur-frontend-form .ur-form-row .ur-form-grid input[type=url], 
.ur-frontend-form .ur-form-row .ur-form-grid select, 
.ur-frontend-form .ur-form-row .ur-form-grid textarea {
    margin: 0;
    min-height: 0;
    display: block;
    line-height: normal;
    text-align: left;
    width: 100%;
    height: var(--input-height);
    padding: var(--input-spacing-y) var(--input-spacing-x);
    border: 0;
    border-bottom: 1px solid var(--input-border-color);
    border-radius: 0;
    background: none;
}
.ur-frontend-form .ur-form-row .ur-field-item {
    margin: 0;
    position: relative;
}
.ur-frontend-form .ur-button-container {
    padding: 0;
    margin: 0;
}
.ur-frontend-form .ur-button-container .ur-submit-button {
    margin-left: auto;
    margin-right: auto;
}
.ur-frontend-form .rememberme,
.ur-frontend-form .ur-form-row .ur-field-item.field-privacy_policy,
.ur-frontend-form .user-registration-LostPassword {
    float: none;
    clear: both;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0 !important;
    font-weight: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
    text-transform: none !important;
    text-align: inherit !important;
    color: inherit !important;
}
.ur-frontend-form .user-registration-LostPassword {
    position: static;
    z-index: 1;
    right: auto;
    top: auto;
}
.ur-frontend-form .ur-form-row .ur-field-item.field-privacy_policy .ur-label {
    font-size: inherit !important;
    font-weight: inherit;
    font-style: inherit;
    color: inherit;
}
.ur-frontend-form .user-registration-LostPassword a,
.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-privacy_policy a {
    text-decoration: none !important;
    box-shadow: var(--cta-shadow) !important;
    color: inherit !important;
    opacity: 1;
}
.ur-frontend-form .user-registration-LostPassword a:not(:hover) {
    color: inherit !important;
}
.ur-frontend-form .user-registration-LostPassword a:hover,
.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-privacy_policy a:hover {
    color: var(--color-body) !important;
    box-shadow: var(--cta-shadow) !important;
    opacity: 1;
}
/* .ur-frontend-form .rememberme,
.ur-frontend-form .ur-form-row .ur-field-item.field-privacy_policy,
.ur-frontend-form .user-registration-LostPassword,
.ur-frontend-form .choice {
    font-size: var(--font-size-body-sub) !important;
} */

.ur-frontend-form .action {
    clear: both;
    position: relative;
    line-height: inherit;
    text-align: center;
    display: grid;
    grid-template-columns: 100%;
    grid-gap: var(--spacing-md) 0;
    justify-content: space-between;
}
.ur-frontend-form .action:before,
.ur-frontend-form .action:after {
    display: none;
}
.ur-frontend-form .action > * {
    margin: 0 !important;
}
.ur-frontend-form .action .rememberme {
    grid-row: 1;
}
.ur-frontend-form .action .user-registration-LostPassword {
    grid-row: 2;
}
.ur-frontend-form .action .submit-wrapper {
    width: 100%;
    order: -1;
}
.ur-frontend-form .action .submit-wrapper:first-child {
    margin-top: var(--spacing-md) !important;
}
.ur-frontend-form .action .submit-wrapper .button {
    margin: 0 !important;
}
.ur-frontend-form .action .submit-wrapper .button:not(:first-child) {
    margin-top: var(--spacing-2xs) !important;
}
.ur-frontend-form.login .user-registration-ResetPassword .action {
    margin-bottom: 0 !important;
}

.ur-frontend-form .ur-form-row .ur-form-grid .hide_show_password .password-input-group .password_preview.dashicons.dashicons-hidden {
    opacity: var(--opacity-light);
    color: inherit;
    right: 0;
    box-shadow: none;
    transition: var(--duration);
}

.ur-frontend-form .choice .description {
    display: inline;
    font-size: inherit;
    line-height: inherit;
}

#user-registration + .button {
    margin-top: var(--spacing-2xs-minus);
    position: relative;
}

@media (min-width:576px) {
    
    .ur-frontend-form .register .ur-form-row .ur-form-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .ur-frontend-form .register .ur-form-row .ur-form-grid > * {
        width: 100%;
    }
    .ur-frontend-form .register .ur-form-row .ur-form-grid > .ur-field-item.half {
        width: calc(50% - var(--spacing-sm)/2);
    }
    
}

/*========== PLUGIN:NSL ==========*/
div.nsl-container.nsl-container-block .nsl-container-buttons {
    --button-height: 30px;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    grid-gap: var(--spacing-2xs) var(--spacing-sm);
}
div.nsl-container.nsl-container-block .nsl-container-buttons > * {
    margin: 0;
    width: auto;
}
div.nsl-container.nsl-container-block .nsl-container-buttons a {
    flex: none;
    width: auto;
    max-width: 100%;
    margin: 0;
    background: none;
}
div.nsl-container.nsl-container-block svg {
    width: 14px !important;
    height: 14px !important;
    transition: var(--duration);
    -webkit-filter: brightness(0);
    filter: brightness(0);
}
div.nsl-container.nsl-container-block .nsl-button-google svg {
    width: 18px !important;
    height: 18px !important;
    transform: translateX(2px);
}
div.nsl-container.nsl-container-block .nsl-button {
    height: var(--button-height);
    padding: 0 var(--button-spacing-x);
    border: 0;
    border-radius: 0;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    transition: var(--duration) var(--timing-function);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
div.nsl-container.nsl-container-block .nsl-button-default {
    width: 100%;
    max-width: 100%;
    min-width: 175px;
    position: relative;
    background: none !important;
    border: 1px solid var(--button-border-color) !important;
    color: inherit !important;
}
div.nsl-container.nsl-container-block .nsl-button-default:hover {
    border-color: inherit !important;
}
div.nsl-container.nsl-container-block .nsl-button-default:active {
    background: var(--color-black) !important;
    border-color: var(--color-black) !important;
    color: var(--color-white) !important;
}
div.nsl-container.nsl-container-block .nsl-button-default:active svg {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
div.nsl-container.nsl-container-block .nsl-button-default div.nsl-button-label-container {
    flex: none;
    display: block;
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-body-sub);
    line-height: normal;
    letter-spacing: var(--letter-spacing);
    text-transform: uppercase;
    text-align: center;
}
div.nsl-container.nsl-container-block .nsl-button-default div.nsl-button-label-container > * {
    font-weight: inherit;
}
div.nsl-container.nsl-container-block .nsl-button-svg-container {
    padding: 0;
    margin-right: var(--spacing-2xs);
}
/* div.nsl-container.nsl-container-block .nsl-button-facebook {
    background: #1877F2 !important;
    border: 0 !important;
    color: #fff !important;
}
div.nsl-container.nsl-container-block .nsl-button-google {
    background: #fff !important;
    border: 1px solid #e7e7e7 !important;
    color: rgba(0,0,0,0.54) !important;
} */

/*========== PLUGIN:WISHLIST:START ==========*/
.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt, 
.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt {
    position: relative;
    width: auto;
    height: auto;
    vertical-align: top;
}
.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt:before, 
.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt:before {
    position: static;
    top: auto;
    left: auto;
    margin-right: 0;
}
.tinv-wishlist .tinvwl-buttons-group button i.ftinvwl-heart-o::before, 
.tinv-wishlist .tinvwl-buttons-group button i.ftinvwl-key::before, 
.tinv-wishlist .tinvwl-buttons-group button i.ftinvwl-times::before {
    top: 0;
}
.tinv-wishlist .tinv-modal .icon_big_heart_check, 
.tinv-wishlist .tinv-modal .icon_big_times, 
.tinv-wishlist .tinv-modal img,
.tinv-wishlist .tinvwl-buttons-group button i {
    display: none !important;
}
.tinv-wishlist.tinv-wraper {
    font-size: inherit;
    line-height: normal;
}
.tinv-wishlist.tinv-wraper .tinvwl_add_to_wishlist_button {
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    height: auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    background: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible;
    display: block;
    font: inherit;
    line-height: 1;
    text-transform: none;
    color: inherit;
}
.tinv-wishlist.tinv-wraper .tinvwl_add_to_wishlist_button,
.tinv-wishlist.tinv-wraper .tinvwl_add_to_wishlist_button.tinvwl-product-in-list {
    color: var(--color-theme) !important;
}
.tinv-wishlist.tinv-wraper .tinvwl_add_to_wishlist_button:before {
    margin: 0 !important;
    font-family: 'iconfont' !important;
    content: "\e91d" !important;
    font-size: var(--icon-size-lg) !important;
    font-weight: normal !important;
    line-height: 1 !important;
    color: inherit;
    opacity: 1;
}
.tinv-wishlist.tinv-wraper .tinvwl_add_to_wishlist_button.tinvwl-product-in-list:before {
    content: "\e91c" !important;
    opacity: 1;
}
.tinv-wishlist.tinv-wraper .tinvwl_add_to_wishlist_button.tinvwl-button.disabled-add-wishlist, 
.tinv-wishlist.tinv-wraper .tinvwl_add_to_wishlist_button.disabled-add-wishlist {
    opacity: 0.1 !important;
}
.tinv-wishlist.tinv-wraper .tinvwl_add_to_wishlist_button .tinvwl_add_to_wishlist-text,
.tinv-wishlist.tinv-wraper .tinvwl-tooltip {
    display: none !important;
}
.tinv-wishlist .tinv-header,
.tinv-wishlist table.tinvwl-table-manage-list thead,
.tinv-wishlist table.tinvwl-table-manage-list tfoot,
.tinv-wishlist table.tinvwl-table-manage-list .product-cb,
.tinv-wishlist table.tinvwl-table-manage-list .product-date,
.tinv-wishlist table.tinvwl-table-manage-list .product-stock {
    display: none !important;
}
.tinv-wishlist table.tinvwl-table-manage-list {
    margin: 0;
}
.tinv-wishlist table.tinvwl-table-manage-list tr {
    border-bottom: 0;
}
.tinv-wishlist table.tinvwl-table-manage-list td, 
.tinv-wishlist table.tinvwl-table-manage-list th {
    padding: 0;
    border: 0;
}
.tinv-wishlist table.tinvwl-table-manage-list .product-thumbnail img {
    display: block;
}
.tinv-wishlist table.tinvwl-table-manage-list .product-remove {
    padding: 0;
}
.tinv-wishlist table.tinvwl-table-manage-list .product-remove button {
    padding: 0;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    color: inherit;
    font: inherit;
    line-height: inherit;
    opacity: 1;
}
.tinv-wishlist table.tinvwl-table-manage-list .product-remove button:before {
    font-family: 'iconfont';
    content: "\e900";
    font-size: var(--font-size-xs);
    font-weight: bold;
}
.tinv-wishlist table.tinvwl-table-manage-list .product-remove button:hover {
    background: none;
    color: inherit;
    opacity: 1;
    text-decoration: none;
}
.tinv-wishlist table.tinvwl-table-manage-list .product-remove .ftinvwl {
    display: none !important;
}
.tinv-wishlist table.tinvwl-table-manage-list .product-name a {
    box-shadow: none;
}
.tinv-wishlist table.tinvwl-table-manage-list .product-name a:hover {
    box-shadow: var(--cta-shadow);
}
.tinv-wishlist table.tinvwl-table-manage-list .product-action {
    width: 1%;
    text-align: center;
}
.tinv-wishlist table.tinvwl-table-manage-list .product-action .button {
    width: auto !important;
}
.tinv-wishlist table.tinvwl-table-manage-list .product-action .button:after {
    display: none !important;
}
.tinv-wishlist table.tinvwl-table-manage-list .product-action .button > i {
    display: none;
}
.tinv-wishlist table.tinvwl-table-manage-list .product-action .button .tinvwl-txt {
    display: inline !important;
}
.tinv-wishlist table.tinvwl-table-manage-list .product-name,
.tinv-wishlist table.tinvwl-table-manage-list .product-price {
    font-weight: var(--weight-medium);
}

.tinvwl-input-group {
    border-collapse: collapse;
}
.tinvwl-input-group .select:after {
    width: 20px;
    height: 20px;
    padding-right: 10px;
}
.tinvwl-input-group .form-control {
    height: 20px;
    border-radius: 0;
    padding: 5px 15px;
}
.tinv-wishlist .tinvwl-to-left .tinvwl-input-group .form-control+.tinvwl-input-group-btn {
    padding-left: 0;
}

.tinv-wishlist .tinv-modal .tinv-modal-inner {
    color: #000;
    background: #fff;
}

.tinv-wishlist .tinv-modal .tinvwl-buttons-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.tinv-wishlist .tinv-modal .tinvwl-buttons-group > button {
    width: auto !important;
}
.tinv-wishlist .tinvwl-buttons-group button {
    background-image: linear-gradient(120deg, var(--color-theme) 0%, var(--color-theme) 100%);
}


@media (min-width:769px) {

    .tinv-wishlist table.tinvwl-table-manage-list tr > * {
        padding-top: var(--spacing-sm);
        padding-bottom: var(--spacing-sm);
        border-bottom: 1px solid;
    }
    .tinv-wishlist table.tinvwl-table-manage-list tr > *:not(:last-child) {
        padding-right: var(--spacing-sm);
    }
    .tinv-wishlist table.tinvwl-table-manage-list .product-remove {
        width: 1%;
    }

}

@media (max-width:768px) {

    .tinv-wishlist table.tinvwl-table-manage-list,
    .tinv-wishlist table.tinvwl-table-manage-list tbody,
    .tinv-wishlist table.tinvwl-table-manage-list tr,
    .tinv-wishlist table.tinvwl-table-manage-list td {
        display: block;
    }
    .tinv-wishlist table.tinvwl-table-manage-list tbody td:not(:last-child) {
        margin-bottom: 0;
    }
    .tinv-wishlist table.tinvwl-table-manage-list tbody td.product-remove,
    .tinv-wishlist table.tinvwl-table-manage-list tbody td.product-thumbnail {
        margin-bottom: var(--spacing-sm);
    }
    .tinv-wishlist table.tinvwl-table-manage-list tbody td.product-remove {
        text-align: center;
        padding: 0;        
    }
    .tinv-wishlist table.tinvwl-table-manage-list tbody td.product-remove > * {
        display: inline-block;
        vertical-align: top;
    }
    .tinv-wishlist table.tinvwl-table-manage-list tbody td.product-action {
        margin-top: var(--spacing-sm);
    }
    .tinv-wishlist table.tinvwl-table-manage-list tbody tr:not(:last-child) {
        margin-bottom: var(--spacing-lg);
        padding-bottom: var(--spacing-lg);
        border-bottom: 1px solid;
    }

}
/*========== PLUGIN:WISHLIST:END ==========*/


/*========== WOOFC-COUNT ==========*/
#woofc-count {
	position: relative !important;
	top: auto !important;
	bottom: auto !important;
	left: auto !important;
	right: auto !important;
	z-index: 99 !important;
	padding: 0 !important;
	width: auto !important;
	height: auto !important;
    border: 0 !important;
    border-radius: 0 !important;
	box-shadow: none !important;
	background: none !important;
    color: inherit !important;
	line-height: inherit !important;
    transition: none !important;
    -webkit-animation: none !important;
    animation: none !important;
    display: flex !important;
    align-items: center;
    cursor: pointer;
}
#woofc-count i {
    display: none !important;
    vertical-align: top !important;
	font-family: 'iconfont' !important;
    font-style: normal !important;
    font-size: var(--icon-size) !important;
	line-height: 1 !important;
    color: inherit !important;
    margin: 0 !important;
}
#woofc-count i:before {
	content: "\e91e" !important;
}
#woofc-count #woofc-count-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background: none;
    color: inherit;
    overflow: hidden;
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    transform: none;
    margin: 0;
    padding: 0;
    font: inherit;
    line-height: inherit;
}
#woofc-count #woofc-count-number:before {
    content: "CART (";
}
#woofc-count #woofc-count-number:after {
    content: ")";
}
#woofc-count #woofc-count-number.empty {
    opacity: 1;
}
#woofc-count.woofc-count-loading:before,
#woofc-count.woofc-count-loading:after {
    display: none;
}

/*========== WOOFC-AREA ==========*/
#woofc-area {
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    border: 0;
}
#woofc-area .woofc-inner.woofc-cart-area,
#woofc-area .woofc-area-top {
    background: var(--color-body-bg);
    color: var(--color-body);
}
#woofc-area .woofc-area-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-2xs);
    height: auto;
    font-weight: var(--font-weight-body);
    font-size: var(--font-size-h2);
    line-height: var(--line-height-xs);
}
#woofc-area .woofc-area-top > * {
    height: auto;
}
#woofc-area .woofc-area-top .woofc-close {
    line-height: 0;
    position: relative;
    top: auto;
    right: auto;
    display: block;
    cursor: pointer;
    font-size: var(--icon-size);
    color: inherit;
    text-align: center;
    transform: none;
}
#woofc-area .woofc-area-top .woofc-close:before,
#woofc-area .woofc-area-top .woofc-close:after {
    display: none !important;
}
#woofc-area .woofc-area-top .woofc-close i:before {
    font-family: 'iconfont';
    content: "\e900";
    color: inherit;
}

#woofc-area .woofc-area-mid {
    padding: 0;
    margin: 0;
    flex-grow: unset;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
#woofc-area .woofc-area-mid .woofc-item {
    padding: var(--spacing-md);
}
#woofc-area .woofc-area-mid .woofc-item:not(:first-child) {
    border-top: 1px solid rgba(0,0,0,0.1);

}
#woofc-area .woofc-area-mid .woofc-item:last-child {
    padding-bottom: 0;
}
#woofc-area .woofc-area-mid .woofc-item .woofc-item-inner {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-gap: 0 var(--spacing-2xs);
    grid-auto-flow: dense;
    transition: var(--duration);
    transform: none !important;
}
#woofc-area .woofc-area-mid .woofc-item .woofc-item-inner > * {
    margin: 0;
    width: 100%;
    flex: unset;
}
#woofc-area .woofc-area-mid .woofc-item .woofc-item-inner > *:not(.woofc-item-thumb) {
    grid-column: 2;
    text-align: right;
}
#woofc-area .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-thumb {
    grid-row: 1 / span 3;
    grid-column: 1;
}
#woofc-area .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-thumb > a {
    display: block;
    width: 100%;
    position: relative;
    border: 1px solid #f5f5f5;
    box-shadow: none !important;
}
#woofc-area .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-thumb > a:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 100%;
}
#woofc-area .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-thumb > a > img {
    display: block;
    width: calc(100% - 5px);
    height: calc(100% - 5px);
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
#woofc-area .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-info .woofc-item-title {
    display: block;
    font-size: inherit;
    font-weight: inherit;
    margin-bottom: 0;
    line-height: inherit;
    color: inherit;
}
#woofc-area .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-info .woofc-item-title a {
    color: inherit;
}
#woofc-area .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-info .woofc-item-title .img {
    display: none !important;
}
#woofc-area .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-info .woofc-item-price {
    display: block;
    font-size: inherit;
    font-weight: var(--font-weight-bold);
    line-height: inherit;
}
#woofc-area .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-info  .woofc-item-price span {
    font-size: inherit !important;
    font-weight: inherit !important;
}
#woofc-area .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-qty:not(:first-child) {
    margin-top: var(--spacing-2xs);
}
#woofc-area .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-qty:not(:last-child) {
    margin-bottom: var(--spacing-2xs);
}
#woofc-area .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-qty .woofc-item-qty-inner {
    justify-content: flex-end;
}
#woofc-area .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-qty .woofc-item-qty-inner .qty-action {
    display: none !important;
}
#woofc-area .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-remove {
    opacity: 1;
    visibility: visible;
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    display: block;
    width: auto;
    height: auto;
    color: inherit;
    font-weight: inherit;
    font-size: var(--font-size-xs);
    line-height: inherit;
    text-align: right;
    outline: none;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: var(--duration);
}
#woofc-area .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-remove > span {
    width: auto;
    height: auto;
    display: inline;
    line-height: inherit;
    text-align: inherit;
}
#woofc-area .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-remove > span:before {
    border: 0;
    margin: 0;
    visibility: visible;
    opacity: 1;
    content: attr(aria-label);
    position: static;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    height: auto;
    font: inherit;
    line-height: inherit;
    text-transform: uppercase;
    color: var(--color-gray);
    box-shadow: var(--cta-shadow);
}
#woofc-area .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-remove > span:after,
#woofc-area .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-remove > span > i {
    display: none !important;
}

#woofc-area .woofc-area-bot {
    padding: var(--spacing-md);
}
#woofc-area .woofc-area-bot > * {
    padding: 0;
    margin: 0;
    color: inherit;
    text-transform: uppercase;
}
#woofc-area .woofc-area-bot > *:not(:first-child) {
    margin-top: var(--spacing-3xs);
}
#woofc-area .woofc-area-bot .woofc-data .woofc-data-right, 
#woofc-area .woofc-area-bot .woofc-total .woofc-total-right {
    font-weight: inherit;
}

#woofc-area .woofc-area-bot .woofc-action:not(:first-child) {
    margin-top: var(--spacing-md);
}
#woofc-area .woofc-area-bot .woofc-action .woofc-action-inner {
    display: block;
}
#woofc-area .woofc-area-bot .woofc-action .woofc-action-inner > div {
    width: 100%;
    margin: 0;
}
#woofc-area .woofc-area-bot .woofc-action .woofc-action-inner > div:not(:first-child) {
    margin-top: var(--spacing-2xs);
}
#woofc-area .woofc-area-bot .woofc-action a {
    text-decoration: none !important;
	box-shadow: none !important;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    vertical-align: top;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: var(--button-height);
    min-height: 0;
    max-height: none;
    padding: 0 calc(var(--button-height)/2);
    font-family: inherit;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    background: var(--color-theme);
    border: 1px solid var(--color-theme);
    border-radius: 50vw;
    overflow: hidden;
}
#woofc-area .woofc-area-bot .woofc-action a:hover {
    color: #fff;
    background: var(--color-gray);
    border-color: var(--color-gray);
}
#woofc-area .woofc-area-bot .woofc-continue:not(:first-child) {
    margin-top: var(--spacing-xs);
}
#woofc-area .woofc-continue-url {
    font-family: inherit;
    font-size: inherit;
    font-weight: var(--font-weight-bold);
    color: #000;
    border-bottom: 1px solid;
}
#woofc-area.woofc-area-loading:before,
#woofc-area.woofc-area-loading:after {
    display: none;
}

@media (max-width:767px) {
    
    #woofc-area .woofc-area-top {
        height: 57px;
    }
    
}

/*========== WOOF ==========*/
.woof, 
.woof .woof_container_inner h4,
.woof .woof_block_html_items,
.woof .woof_checkbox_label,
.woof .woof_radio_label,
.woof .woof_list_checkbox > li,
.woof .woof_list_checkbox > li .woof_checkbox_label,
.woof .woof_list_radio > li,
.woof .woof_list_radio > li .woof_radio_label {
    margin: 0;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    text-transform: inherit;
}
.woof .woof_checkbox_label,
.woof .woof_radio_label {
    margin-left: 0 !important;
}
.woof .woof_childs_list_li,
.woof .woof_price_filter,
.woof .woof_submit_search_form_container {
    padding: 0;
}
.woof .woof_container {
    float: none;
    position: relative;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--color-border);
}
.woof .woof_container a {
    text-decoration: none !important;
    box-shadow: none !important;
}
.woof .woof_container_inner {
    margin: 0;
    padding: 0;
    border: 0;
}
.woof .woof_container_inner h4 {
    position: relative;
    cursor: pointer;
    border: 0;
    margin: 0;
    padding-right: calc(var(--font-size-xs) + var(--spacing-2xs));
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
}
.woof .woof_container_inner h4,
.woof .woof_container_inner h4 a.woof_front_toggle {
    padding: var(--spacing-sm) 0;
}
.woof .woof_container_inner h4 a.woof_front_toggle {
    box-shadow: none !important;
    position: absolute !important;
    left: 0 !important; 
    top: 0 !important;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: none;
    font-size: 0;
}
.woof .woof_container_inner h4 a.woof_front_toggle:after {
    font-family: 'iconfont';
    font-weight: normal;
    font-size: var(--font-size-xs);
    line-height: 1;
    transform: translateX(1px);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
}
.woof .woof_container_inner h4 a.woof_front_toggle_closed:after {
    content: "\e90a";
}
.woof .woof_container_inner h4 a.woof_front_toggle_opened:after {
    content: "\e90c";
}
.woof .woof_block_html_items {
    width: 100% !important;
    padding: 0 0 var(--spacing-sm);
    font-size: var(--font-size-body-sub);
    letter-spacing: var(--letter-spacing);
    text-transform: uppercase;
}
.woof .woof_list li {
    margin: 0 !important;
    padding: 0 !important;
}
.woof .woof_list label {
    padding: 0;   
}
.woof .woof_childs_list_li:not(:last-child) {
    border-bottom: 0;
}
.woof .woof_childs_list_li > .woof_checkbox_label,
.woof .woof_childs_list_li > .woof_radio_label {
    display: block;
    line-height: normal;
}
.woof .woof_childs_list {
    display: flex;
    flex-direction: column;
    width: 100% !important;
    margin: 10px 0 10px 22px !important;
}
.woof .woof_childs_list > li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.woof .woof_list_checkbox > li,
.woof .woof_list_radio > li {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    line-height: inherit;
}
.woof .woof_childs_list > li:not(:last-child),
.woof .woof_list_checkbox > li:not(:last-child),
.woof .woof_list_radio > li:not(:last-child) {
    margin-bottom: var(--spacing-2xs) !important;
}
.woof .woof_list_checkbox > li .woof_checkbox_term,
.woof .woof_list_radio > li .woof_radio_term {
    position: absolute;
    z-index: -1000;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    background: none;
}
.woof .woof_list_checkbox > li .woof_checkbox_label,
.woof .woof_list_radio > li .woof_radio_label {
    position: relative;
    display: inline-block;
    vertical-align: baseline;
    text-align: left;
    line-height: inherit;
    height: auto;
    min-height: var(--font-size-body);
    min-width: var(--font-size-body);
    max-width: 100%;
    padding-left: calc(var(--font-size-body) + var(--font-size-body-sub));
    cursor: pointer;
    transition: var(--duration);
}
.woof .woof_list_checkbox > li .woof_checkbox_label:before,
.woof .woof_list_checkbox > li .woof_checkbox_label:after,
.woof .woof_list_radio > li .woof_radio_label:before,
.woof .woof_list_radio > li .woof_radio_label:after {
    content: "";
    border-radius: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: var(--font-size-body);
    height: var(--font-size-body);
    margin: 0;
    position: absolute;
    left: 0; 
    top: 0;
}
.woof .woof_list_checkbox > li .woof_checkbox_label:before,
.woof .woof_list_radio > li .woof_radio_label:before {
    background: none;
    border: 1px solid var(--input-border-color);
}
.woof .woof_list_checkbox > li .woof_checkbox_label:after,
.woof .woof_list_radio > li .woof_radio_label:after {
    font-family: 'iconfont';
    content: "\e900";
    font-weight: bold;
    font-size: var(--font-size-body);
    background: none;
    width: 1em;
    height: 1em;
    transform: scale(0.55);
	opacity: 0;
}
.woof .woof_list_checkbox > li .woof_checkbox_term:checked + .woof_checkbox_label:after,
.woof .woof_list_radio > li .woof_radio_term:checked + .woof_radio_label:after {
    opacity: 1;
}
.woof .woof_list_checkbox > li .woof_childs_list_opener,
.woof .woof_list_radio > li .woof_childs_list_opener {
    margin: 0;
    flex: 1;
    text-align: right;
    background: none !important;
}
.woof .woof_list_checkbox > li .woof_childs_list_opener span,
.woof .woof_list_radio > li .woof_childs_list_opener span {
    background: none;
    width: auto;
    height: auto;
    vertical-align: top;
}
.woof .woof_list_checkbox > li .woof_childs_list_opener span:before,
.woof .woof_list_radio > li .woof_childs_list_opener span:before {
    display: block;
    font-size: inherit;
    width: auto;
    text-align: center;
}
.woof .woof_list_checkbox > li .woof_childs_list_opener span.woof_is_closed:before,
.woof .woof_list_radio > li .woof_childs_list_opener span.woof_is_closed:before {
    content: "+";
}
.woof .woof_list_checkbox > li .woof_childs_list_opener span.woof_is_opened:before,
.woof .woof_list_radio > li .woof_childs_list_opener span.woof_is_opened:before {
    content: "-";
}
.woof .woof_radio_term_reset {
    padding: 0;
    line-height: inherit;
    color: var(--color-error);
}
.woof .woof_radio_term_reset:before {
    font-family: 'iconfont';
    content: "\e900";
    font-size: var(--font-size-2xs);
    font-weight: bold;
    margin-left: var(--spacing-2xs);
    display: block
}
.woof .woof_radio_term_reset > img {
    display: none !important;
}
.woof .woof_submit_search_form_container {
    margin: 0;
    padding: 0;
    display: flex;
    grid-gap: var(--spacing-2xs);
    text-align: center;
}
.woof .woof_submit_search_form_container > * {
    margin: 0;
    flex: 1;
}
.woof .woof_submit_search_form_container .button {
    display: flex !important;
    width: 100% !important;
    min-width: 0 !important;
}
.woof_container_overlay_item,
.woof_checkbox_count,
.woof_radio_count {
    display: none !important;
}
div.woof_info_popup {
    display: none !important;
    position: fixed;
    z-index: 10001;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    box-shadow: none;
    border-radius: 50%;
    color: var(--color-white);
    background: var(--color-black);
    overflow: hidden;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-transform: uppercase;
    text-align: center;
    width: 120px;
    height: 120px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}


/*========== GENERAL ==========*/
.entry-plugin .woocommerce + .woocommerce {
    margin-top: var(--sc-spacing-y-resize);
}
.woocommerce ins {
    text-decoration: none;
}
.woocommerce mark {
    background-color: transparent;
    color: inherit;
}
.woocommerce-notices-wrapper:empty {
    display: none;
}


/*========== ALERT ==========*/
.woocommerce-error, 
.woocommerce-info, 
.woocommerce-message {
    border: 0 !important;
    background: var(--color-gray-bright) !important;
    padding: var(--spacing-xs) !important;
    color: var(--color-black);
	font-size: var(--font-size-body-sub);
    letter-spacing: var(--letter-spacing);
    line-height: normal;
    text-transform: none;
	margin: 0 0 var(--spacing-2xs);
}
.woocommerce-error:before, 
.woocommerce-info:before, 
.woocommerce-message:before {
    display: none !important;
}
.woocommerce-notices-wrapper > .woocommerce-error:last-child, 
.woocommerce-notices-wrapper > .woocommerce-info:last-child, 
.woocommerce-notices-wrapper > .woocommerce-message:last-child {
    margin-bottom: var(--sc-spacing-y-resize);
}

/*========== BUTTON ==========*/
.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button, 
.woocommerce .cart .button, 
.woocommerce .cart input.button, 
.woocommerce #respond input#submit.alt, 
.woocommerce a.button.alt, 
.woocommerce button.button.alt, 
.woocommerce input.button.alt,
.ur-frontend-form .button,
.ur-frontend-form button[type=submit], 
.ur-frontend-form input[type=submit],
.woof .woof_redraw_zone .woof_submit_search_form_container > a,
.woof .woof_redraw_zone .woof_submit_search_form_container > button {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	-webkit-appearance: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    text-decoration: none !important;
    box-shadow: none !important;
    margin: 0;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: top;
    white-space: normal;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 175px;
    max-width: 100%;
    height: var(--button-height);
    min-height: 0;
    max-height: none;
    padding: 0 var(--button-spacing-x);
    font-family: var(--font-body);
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-body-sub);
    line-height: normal;
    letter-spacing: var(--letter-spacing);
    text-transform: uppercase;
    text-align: center;
    color: rgba(var(--rgb),1);
    background: none;
    border: 1px solid rgba(var(--rgb),var(--rgb-opacity));
    border-radius: 0;
    overflow: hidden;
    opacity: 1;
    transition: var(--duration) var(--timing-function);
}
.woocommerce #respond input#submit:hover, 
.woocommerce a.button:hover, 
.woocommerce button.button:hover, 
.woocommerce input.button:hover, 
.woocommerce .cart .button:hover, 
.woocommerce .cart input.button:hover, 
.woocommerce #respond input#submit.alt:hover, 
.woocommerce a.button.alt:hover, 
.woocommerce button.button.alt:hover, 
.woocommerce input.button.alt:hover,
.ur-frontend-form .button:hover,
.ur-frontend-form button[type=submit]:hover, 
.ur-frontend-form input[type=submit]:hover,
.woof .woof_redraw_zone .woof_submit_search_form_container > a:hover,
.woof .woof_redraw_zone .woof_submit_search_form_container > button:hover {
  
}
.woocommerce #respond input#submit.disabled, 
.woocommerce #respond input#submit:disabled, 
.woocommerce #respond input#submit:disabled[disabled], 
.woocommerce a.button.disabled, .woocommerce a.button:disabled, 
.woocommerce a.button:disabled[disabled],
.woocommerce button.button.disabled, 
.woocommerce button.button:disabled, 
.woocommerce button.button:disabled[disabled],
.woocommerce input.button.disabled, 
.woocommerce input.button:disabled, 
.woocommerce input.button:disabled[disabled],
.woocommerce #respond input#submit.disabled:hover, 
.woocommerce #respond input#submit:disabled:hover, 
.woocommerce #respond input#submit:disabled[disabled]:hover, 
.woocommerce a.button.disabled:hover, 
.woocommerce a.button:disabled:hover, 
.woocommerce a.button:disabled[disabled]:hover, 
.woocommerce button.button.disabled:hover, 
.woocommerce button.button:disabled:hover, 
.woocommerce button.button:disabled[disabled]:hover, 
.woocommerce input.button.disabled:hover, 
.woocommerce input.button:disabled:hover, 
.woocommerce input.button:disabled[disabled]:hover, 
.woocommerce #respond input#submit.alt.disabled, 
.woocommerce #respond input#submit.alt.disabled:hover,
.woocommerce #respond input#submit.alt:disabled, 
.woocommerce #respond input#submit.alt:disabled:hover, 
.woocommerce #respond input#submit.alt:disabled[disabled], 
.woocommerce #respond input#submit.alt:disabled[disabled]:hover, 
.woocommerce a.button.alt.disabled, 
.woocommerce a.button.alt.disabled:hover, 
.woocommerce a.button.alt:disabled,
.woocommerce a.button.alt:disabled:hover, 
.woocommerce a.button.alt:disabled[disabled], 
.woocommerce a.button.alt:disabled[disabled]:hover, 
.woocommerce button.button.alt.disabled, 
.woocommerce button.button.alt.disabled:hover, 
.woocommerce button.button.alt:disabled, 
.woocommerce button.button.alt:disabled:hover, 
.woocommerce button.button.alt:disabled[disabled], 
.woocommerce button.button.alt:disabled[disabled]:hover, 
.woocommerce input.button.alt.disabled, 
.woocommerce input.button.alt.disabled:hover, 
.woocommerce input.button.alt:disabled, 
.woocommerce input.button.alt:disabled:hover, 
.woocommerce input.button.alt:disabled[disabled], 
.woocommerce input.button.alt:disabled[disabled]:hover,
.ur-frontend-form .button:disabled,
.ur-frontend-form button[type=submit]:disabled, 
.ur-frontend-form input[type=submit]:disabled,
.ur-frontend-form .button:disabled:hover,
.ur-frontend-form button[type=submit]:disabled:hover, 
.ur-frontend-form input[type=submit]:disabled:hover,
.woof .woof_redraw_zone .woof_submit_search_form_container > a:disabled,
.woof .woof_redraw_zone .woof_submit_search_form_container > button:disabled,
.woof .woof_redraw_zone .woof_submit_search_form_container > a:disabled:hover,
.woof .woof_redraw_zone .woof_submit_search_form_container > button:disabled:hover {
    padding: 0 var(--button-spacing-x) !important;
    color: rgba(var(--rgb),1) !important;
    background: none !important;
    border: 1px solid rgba(var(--rgb),var(--rgb-opacity)) !important;
    opacity: var(--opacity-light) !important;
    pointer-events: none;
}

#main .woocommerce .wc-proceed-to-checkout .button,
#main .woocommerce #payment #place_order {
    --button-height: 40px;
}
#main .woocommerce .wc-proceed-to-checkout .button,
#main .woocommerce .wc-proceed-to-checkout .button:active,
#main .woocommerce #payment #place_order,
#main .woocommerce #payment #place_order:active {
    background: var(--color-black) !important;
    border-color: var(--color-black) !important;
    color: var(--color-white) !important;
}
#main .woocommerce .wc-proceed-to-checkout .button:hover,
#main .woocommerce #payment #place_order:hover {
    background: #151515 !important;
    border-color: #151515 !important;
    color: var(--color-white) !important;
}

#main .woocommerce-error a, 
#main .woocommerce-info a, 
#main .woocommerce-message a,
#main .woocommerce-error button, 
#main .woocommerce-info button, 
#main .woocommerce-message button {
    text-decoration: none !important;
    box-shadow: var(--cta-shadow) !important;
    height: auto !important;
    width: auto !important;
    min-width: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: none !important;
    color: inherit !important;
    line-height: inherit !important;
    text-transform: none !important;
    display: inline !important;
    position: relative;
    font-weight: inherit;
    font-size: inherit;
    text-transform: none;
}
#main .woocommerce-error a:hover, 
#main .woocommerce-info a:hover, 
#main .woocommerce-message a:hover,
#main .woocommerce-error button:hover, 
#main .woocommerce-info button:hover, 
#main .woocommerce-message button:hover {
    color: inherit !important;
    box-shadow: var(--cta-shadow) !important;
    opacity: 1;
}

/*========== LAYOUT ==========*/
.woocommerce .col2-set {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.woocommerce .col2-set:before,
.woocommerce .col2-set:after {
    display: none;
}
.woocommerce .col2-set > [class*="col-"] {
    float: none;
    width: calc(50% - var(--spacing-container)/2);
}
.woocommerce .col2-set h2 {
    margin-bottom: var(--spacing-2xs);
}

@media (max-width:991px) {
    
    .woocommerce .col2-set {
        flex-direction: column;
    }
    .woocommerce .col2-set > [class*="col-"] {
        width: 100%;
    }
    .woocommerce .col2-set > [class*="col-"]:not(:last-child) {
        margin-bottom: var(--sc-spacing-y-resize);
    }
    
    .woocommerce-checkout #customer_details > [class*="col-"]:not(:last-child) {
        margin-bottom: var(--spacing-md);
    }

}

/*========== FORM ==========*/
.woocommerce form,
.woocommerce form.login, 
.woocommerce form.register,
.woocommerce form.checkout_coupon {
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
    text-align: inherit;
}
.woocommerce .woocommerce-input-wrapper {
    display: block;
}
.woocommerce form .form-row {
	margin: 0;
	padding: 0;
}
.woocommerce form .form-row:before,
.woocommerce form .form-row:after {
    display: none;
}
.woocommerce form .form-row:not(:last-child) {
	margin-bottom: calc(var(--spacing-md) - 1em);
}
.woocommerce form .form-row label {
    margin: 0;
    padding: 0;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    text-align: inherit;
    text-transform: none;
}
.woocommerce form .form-row label:not(.anim):not(.woocommerce-form__label-for-checkbox) {
    padding: 0;
    margin: 0;
    opacity: 1;
    color: inherit;
    font-size: var(--font-size-body-sub);
    font-weight: var(--font-weight-regular);
    letter-spacing: var(--letter-spacing);
    text-transform: uppercase;
}
.woocommerce form .form-row input.input-text, 
.woocommerce form .form-row textarea {
    padding: var(--input-spacing-y) var(--input-spacing-x);
    border-color: var(--input-border-color);
    font-weight: var(--font-weight-bold);
}
.woocommerce form .form-row textarea {
    line-height: normal;
    height: 97px;
    min-height: 97px;
    padding-top: 0.5em;
}
.woocommerce form .form-row .input-text + span em {
    display: block;
    font-style: inherit;
    font-size: var(--font-size-2xs);
    color: var(--color-gray);
    margin: var(--spacing-3xs) 0 0;
}
.woocommerce form .form-row[id*="_1_field"] {
    margin-bottom: var(--spacing-2xs) !important;
}
.woocommerce form .form-row :-ms-input-placeholder {
    font-weight: var(--font-weight-body) !important;
    font-size: inherit !important;
    text-transform: none !important;
    color: gray !important;
    opacity: 1 !important;
}
.woocommerce form .form-row ::-webkit-input-placeholder {
    font-weight: var(--font-weight-body) !important;
    font-size: inherit !important;
    text-transform: none !important;
    color: gray !important;
    opacity: 1 !important;
}
.woocommerce form .form-row ::-moz-placeholder {
    font-weight: var(--font-weight-body) !important;
    font-size: inherit !important;
    text-transform: none !important;
    color: gray !important;
    opacity: 1 !important;
}
.woocommerce form .form-row .select2-container {
    line-height: normal;
}
#main.bg-white .woocommerce form .form-row .select2-container--default .select2-selection--single,
#main.bg-white .woocommerce form .form-row .select2-dropdown {
    border: 1px solid !important;
}
.woocommerce form .form-row .required {
    color: var(--color-error);
    font-weight: inherit;
}
.woocommerce form .form-row-first, 
.woocommerce form .form-row-last {
    width: calc(50% - var(--spacing-sm)/2);
}

.woocommerce .woocommerce-form__label-for-checkbox {
    position: relative;
    line-height: inherit;
    display: inline-flex;
}
.woocommerce .woocommerce-form__label-for-checkbox > span {
    position: relative;
    display: inline-block;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.woocommerce .woocommerce-form__label-for-checkbox > .woocommerce-form__input-checkbox,
.wc_payment_method input[type="radio"],
.wc_payment_method input[type="checkbox"],
.woocommerce ul#shipping_method li input[type="radio"],
.woocommerce ul#shipping_method li input[type="checkbox"],
#omise_cc_form .omise-remember-card > input[type="radio"],
#omise_cc_form .omise-remember-card > input[type="checkbox"] {
    position: absolute;
    z-index: -1000;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    background: none;
}
.woocommerce .woocommerce-form__label-for-checkbox > .woocommerce-form__input-checkbox + span,
.wc_payment_method input[type="radio"] + label,
.wc_payment_method input[type="checkbox"] + label,
.woocommerce ul#shipping_method li input[type="radio"] + label,
.woocommerce ul#shipping_method li input[type="checkbox"] + label,
#omise_cc_form .omise-remember-card input[type="radio"] + label,
#omise_cc_form .omise-remember-card input[type="checkbox"] + label {
    display: inline-block;
    vertical-align: baseline;
    text-align: left;
    padding-left: calc(1em + var(--font-size-2xs));
    line-height: inherit;
    min-width: 1em;
    min-height: 1em;
    height: auto;
    cursor: pointer;
}
.woocommerce .woocommerce-form__label-for-checkbox > .woocommerce-form__input-checkbox + span:before,
.woocommerce .woocommerce-form__label-for-checkbox > .woocommerce-form__input-checkbox + span:after,
.wc_payment_method input[type="radio"] + label:before,
.wc_payment_method input[type="radio"] + label:after,
.wc_payment_method input[type="checkbox"] + label:before,
.wc_payment_method input[type="checkbox"] + label:after,
.woocommerce ul#shipping_method li input[type="radio"] + label:before,
.woocommerce ul#shipping_method li input[type="radio"] + label:after,
.woocommerce ul#shipping_method li input[type="checkbox"] + label:before,
.woocommerce ul#shipping_method li input[type="checkbox"] + label:after,
#omise_cc_form .omise-remember-card input[type="radio"] + label:before,
#omise_cc_form .omise-remember-card input[type="radio"] + label:after,
#omise_cc_form .omise-remember-card input[type="checkbox"] + label:before,
#omise_cc_form .omise-remember-card input[type="checkbox"] + label:after  {
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    margin: 0;
    position: absolute;
    left: 0; 
    top: 2px;
}
.woocommerce .woocommerce-form__label-for-checkbox > .woocommerce-form__input-checkbox + span:before,
.wc_payment_method input[type="radio"] + label:before,
.wc_payment_method input[type="checkbox"] + label:before,
.woocommerce ul#shipping_method li input[type="radio"] + label:before,
.woocommerce ul#shipping_method li input[type="checkbox"] + label:before,
#omise_cc_form .omise-remember-card input[type="radio"] + label:before,
#omise_cc_form .omise-remember-card input[type="checkbox"] + label:before {
    background: none;
    border: 1px solid;
}
.woocommerce .woocommerce-form__label-for-checkbox > .woocommerce-form__input-checkbox + span:after,
.wc_payment_method input[type="radio"] + label:after,
.wc_payment_method input[type="checkbox"] + label:after,
.woocommerce ul#shipping_method li input[type="radio"] + label:after,
.woocommerce ul#shipping_method li input[type="checkbox"] + label:after,
#omise_cc_form .omise-remember-card input[type="radio"] + label:after,
#omise_cc_form .omise-remember-card input[type="checkbox"] + label:after {
    background: currentColor;
	opacity: 0;
    transform: scale(0.65);
}
.woocommerce .woocommerce-form__label-for-checkbox > .woocommerce-form__input-checkbox:checked + span:after,
.wc_payment_method input[type="radio"]:checked + label:after,
.wc_payment_method input[type="checkbox"]:checked + label:after,
.woocommerce ul#shipping_method li input[type="radio"]:checked + label:after,
.woocommerce ul#shipping_method li input[type="checkbox"]:checked + label:after,
#omise_cc_form .omise-remember-card input[type="radio"]:checked + label:after,
#omise_cc_form .omise-remember-card input[type="checkbox"]:checked + label:after {
    opacity: 1;
}
.woocommerce .woocommerce-form__label-for-checkbox > .woocommerce-form__input-checkbox[type="radio"] + span:before,
.woocommerce .woocommerce-form__label-for-checkbox > .woocommerce-form__input-checkbox[type="radio"] + span:after,
.wc_payment_method input[type="radio"] + label:before,
.wc_payment_method input[type="radio"] + label:after,
.woocommerce ul#shipping_method li input[type="radio"] + label:before,
.woocommerce ul#shipping_method li input[type="radio"] + label:after,
#omise_cc_form .omise-remember-card input[type="radio"] + label:before,
#omise_cc_form .omise-remember-card input[type="radio"] + label:after {
    border-radius: 50%;
}
.woocommerce .woocommerce-form__label-for-checkbox > .woocommerce-form__input-checkbox[type="checkbox"] + span:after,
.wc_payment_method input[type="checkbox"] + label:after,
.woocommerce ul#shipping_method li input[type="checkbox"] + label:after,
#omise_cc_form .omise-remember-card input[type="checkbox"] + label:after  {
    font-family: 'iconfont';
    content: "\e900";
    font-weight: bold;
    background: none;
    width: 1em;
    height: 1em;
    transform: scale(0.55);
}

.woocommerce .woocommerce-input-wrapper.has-readonly > strong {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    height: var(--input-height);
}

.woocommerce .woocommerce-form .woocommerce-button {
	float: none;
}
.woocommerce .woocommerce-form .woocommerce-form-login__rememberme,
.woocommerce .woocommerce-form .woocommerce-LostPassword,
.woocommerce .woocommerce-form .woocommerce-privacy-policy-text {
    margin: 0;
    display: block;
    font: inherit;
    line-height: inherit;
    color: inherit;
}
.woocommerce .woocommerce-form .form-row-cta {
    position: relative;
    z-index: 1;
    display: grid;
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
    grid-template-columns: 100%;
    justify-content: center;
    align-items: center;
}
.woocommerce .woocommerce-form .form-row-cta > * {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.woocommerce .woocommerce-form .form-row-cta > *:not(:last-child) {
    margin-bottom: var(--spacing-sm);
}
.woocommerce .woocommerce-form .form-row-cta > .woocommerce-LostPassword {
    order: -1;
    margin-top: calc(var(--spacing-sm-minus)/2);
    position: relative;
    z-index: 1;
}
.woocommerce .woocommerce-form .form-row-cta a {
    box-shadow: var(--cta-shadow);
}

.woocommerce form .show-password-input {
    right: 0;
}

.woocommerce .woocommerce-ResetPassword .form-row {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}
.woocommerce .woocommerce-ResetPassword .form-row-cta {
    margin-top: var(--spacing-lg);
}
.woocommerce .woocommerce-ResetPassword p:not(:last-child) {
    margin-bottom: var(--spacing-sm);
}
.woocommerce .woocommerce-ResetPassword [type="submit"] {
    width: 100%;
}
.woocommerce .woocommerce-cart-form:not(:last-child),
.woocommerce .woocommerce-checkout:not(:last-child) {
	margin-bottom: 0;
}

/*========== ORDERING ==========*/
form.woocommerce-ordering {
    display: block;
	position: relative;
	cursor: pointer;
}
form.woocommerce-ordering select.orderby {
    outline: 0;
    -webkit-appearance: none;
    box-shadow: none;
    border-radius: 0;
    border: 0;
    background: none;
    padding: 0;
    margin: 0;
    min-width: 0;
    font: inherit;
    text-transform: none;
    color: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	display: block;
	width: 100%;
    height: 100%;
}

/*========== QUANTITY ==========*/
.woocommerce .quantity,
.woocommerce form.cart .quantity {
    margin: 0;
    float: none;
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100px;
    max-width: 100%;
    border: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.woocommerce .quantity .qty,
.woocommerce form.cart .quantity .qty {
    outline: 0;
    -webkit-appearance: none;
    box-shadow: none;
    background: none;
    border-radius: 0;
    display: block;
    padding: 0;
    margin: 0 auto;
    width: calc(100% - 40px);
    height: auto;
    min-height: 0;
    border: 0;
    color: inherit;
    font: inherit;
    line-height: inherit;
    text-align: center;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.woocommerce .quantity .qty-action,
.woocommerce form.cart .quantity .qty-action {
    width: 100%;
    height: 100%;
    border: 0;
    position: absolute;
    z-index: 2;
    top: 0; right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}
.woocommerce .quantity .qty-btn,
.woocommerce form.cart .quantity .qty-btn {
    width: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    position: absolute;
    z-index: 1;
    top: 0;
    font-size: 0;
}
.woocommerce .quantity .qty-btn:hover,
.woocommerce form.cart .quantity .qty-btn:hover {
    color: var(--color-body);
    background: none;
}
.woocommerce .quantity .qty-btn.inc,
.woocommerce form.cart .quantity .qty-btn.inc {
    right: 0;
    justify-content: flex-end;
}
.woocommerce .quantity .qty-btn.dec,
.woocommerce form.cart .quantity .qty-btn.dec {
    left: 0;
    justify-content: flex-start;
}
.woocommerce .quantity .qty-btn:before,
.woocommerce form.cart .quantity .qty-btn:before {
    font-family: 'iconfont';
    font-size: var(--font-size-body-sub);
    font-weight: normal;
}
.woocommerce .quantity .qty-btn.inc:before,
.woocommerce form.cart .quantity .qty-btn.inc:before {
    content: "\e945";
}
.woocommerce .quantity .qty-btn.dec:before,
.woocommerce form.cart .quantity .qty-btn.dec:before {
    content: "\e946";
}
.woocommerce .quantity-container {
    display: inline-block;
    width: auto !important;
    position: relative; 
    z-index: 1;
}

/*========== CART ==========*/
.woocommerce form.cart {
    position: relative;
    margin: 0;
}
.woocommerce form.cart:before,
.woocommerce form.cart:after {
    display: none !important;
}
.woocommerce form.cart .variations {
    font-family: inherit;
    font-size: inherit;
    line-height: normal;
}
.woocommerce form.cart .variations,
.woocommerce form.cart .variations tbody,
.woocommerce form.cart .variations tr,
.woocommerce form.cart .variations td {
    margin: 0;
    padding: 0;
    border: 0;
}
.woocommerce form.cart .variations select {
    display: block;
    margin: 0;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
}
.woocommerce form.cart .variations .select {
    width: 100%;
}
.woocommerce form.cart .variations .select select,
.woocommerce form.cart .variations .select2-container .select2-selection--single {
    width: 100%;
}
.woocommerce form.cart .variations .select2-container .select2-selection--single .select2-selection__placeholder {
    color: inherit;
    opacity: 1;
}
.woocommerce form.cart .variable-items-wrapper {
    display: inline-flex;
    flex-wrap: wrap;
    grid-gap: var(--spacing-2xs);
    width: auto;
    margin: 0;
    font: inherit;
    font-size: var(--font-size-body-sub);
    letter-spacing: var(--letter-spacing);
    text-transform: uppercase;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.woocommerce form.cart .variable-items-wrapper .variable-item:before,
.woocommerce form.cart .variable-items-wrapper .variable-item:after {
    display: none !important;
}
.woocommerce form.cart .variable-items-wrapper .variable-item,
.woocommerce form.cart .variable-items-wrapper .variable-item .variable-item-span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: top;
}
.woocommerce form.cart .variable-items-wrapper .variable-item {
    width: auto;
	height: auto;
    margin: 0;
    padding: 2px;
    line-height: inherit;
    white-space: nowrap;
    background: none;
    border: 1px solid transparent;
    border-radius: 50%;
    cursor: pointer;
}
.woocommerce form.cart .variable-items-wrapper .variable-item.selected {
    border-color: #000;
}
.woocommerce form.cart .variable-items-wrapper .variable-item .variable-item-span {
    width: 20px;
    height: 20px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 1px rgba(0,0,0,0.5);
}
.woocommerce form.cart .variable-items-wrapper .variable-item img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.woocommerce form.cart .variable-items-wrapper .variable-item > a {
    display: block;
    background: none;
    text-transform: none;
}
.woocommerce form.cart .variable-items-wrapper .variable-item.disabled {
    opacity: var(--opacity-light);
    pointer-events: none;
    cursor: default;
}
.woocommerce form.cart .button-variable-items-wrapper {
    margin: 0;
    display: inline-flex;
    flex-wrap: wrap;
    grid-gap: var(--spacing-2xs) var(--spacing-sm);
}
/* .woocommerce form.cart .button-variable-items-wrapper[data-attribute_name="attribute_pa_size"] {
    display: inline-grid;
    grid-template-columns: repeat(5,auto);
} */
.woocommerce form.cart .button-variable-items-wrapper .button-variable-item,
.woocommerce form.cart .button-variable-items-wrapper .button-variable-item .variable-item-span {
    box-shadow: none;
    border-radius: 0;
    border: 0;
    padding: 0;
    margin: 0;
    width: auto;
    height: auto;
}
.woocommerce form.cart .button-variable-items-wrapper .button-variable-item .variable-item-span {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    min-height: 0;
    height: 100%;
    padding: 0;
    line-height: inherit;
    color: inherit;
    background: none;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    transition: var(--duration) var(--timing-function);
}
.woocommerce form.cart .button-variable-items-wrapper .button-variable-item.selected .variable-item-span {
    color: inherit;
    background: none;
    box-shadow: var(--cta-shadow);
}
.woocommerce form.cart .button-variable-items-wrapper .variable-item-contents {
    width: 100%;
}
.woocommerce form.cart .single_variation_wrap {
    position: relative;
}
.woocommerce form.cart .single_variation_wrap .single_variation {
    font-size: inherit;
    font-style: normal;
    font-weight: normal;
    line-height: inherit;
    text-transform: none;
    color: inherit;
}
.woocommerce form.cart .single_variation_wrap .single_variation > *:empty {
    margin: 0;
    display: none;
}
.woocommerce form.cart .single_variation_wrap .single_variation > *:last-child:not(:empty) {
    margin-bottom: var(--spacing-sm);
}
.woocommerce form.cart .woocommerce-variation-availability {
    position: static;
}
.woocommerce form.cart .woocommerce-variation-availability .stock {
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
    text-transform: inherit !important;
    color: inherit !important;
}
.woocommerce form.cart .woocommerce-variation-availability .out-of-stock {
    color: var(--color-error) !important;
}
.woocommerce form.cart .woocommerce-variation-add-to-cart:before,
.woocommerce form.cart .woocommerce-variation-add-to-cart:after {
    display: none;
}
.woocommerce form.cart .reset_variations {
	display: none !important;
}

.woocommerce div.product form.cart {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    text-transform: none;
}
.woocommerce div.product form.cart .variations {
    margin: 0;
}
.woocommerce div.product form.cart .variations,
.woocommerce div.product form.cart .variations tbody,
.woocommerce div.product form.cart .variations tr,
.woocommerce div.product form.cart .variations tr > * {
    display: block !important;
    width: 100%;
    padding: 0;
    text-align: left;
}
.woocommerce div.product form.cart .variations th,
.woocommerce div.product form.cart .variations td {
    font-size: inherit;
    line-height: inherit;
    vertical-align: middle;
}
.woocommerce div.product form.cart .variations .label {
    padding: 0 !important;
    font-weight: inherit;
    font-size: inherit;
    text-transform: inherit;
    color: inherit;
    display: flex !important;
    flex-wrap: wrap;
    align-items: baseline;
}
.woocommerce div.product form.cart .variations .label > *:not(:last-child) {
    padding-right: var(--spacing-2xs);
}
.woocommerce div.product form.cart .variations .value {
    text-align: left;
}
.woocommerce div.product form.cart .variations label {
    opacity: 1;
    font-weight: inherit;
    text-transform: inherit;
}
.woocommerce div.product form.cart .variations label + .woo-selected-variation-item-name {
    margin-left: 3px;
}
.woocommerce div.product form.cart .variations select {
    margin: 0;
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
}
.woocommerce div.product form.cart .variations .select {
    width: 100%;
}
.woocommerce div.product form.cart .variations .select select,
.woocommerce div.product form.cart .variations .select2-container .select2-selection--single {
    width: 100%;
    height: var(--input-height);
    border-radius: calc(var(--input-height)/2);
    border: 1px solid var(--color-border);
}
.woocommerce div.product form.cart .variations .select select {
    padding-left: calc(var(--input-height)/2);
    padding-right: var(--input-height);
}
.woocommerce div.product form.cart .variations .select2-container .select2-selection__rendered {
    padding-left: calc(var(--input-height)/2);
    padding-right: var(--input-height);
    line-height: calc(var(--input-height) - var(--spacing-3xs)*2 - 2px);
}
.woocommerce div.product form.cart .variations .select2-dropdown {
    border-radius: calc(var(--input-height)/2) !important;
    border: 1px solid var(--color-border) !important;
}
.woocommerce div.product form.cart .variations .select:after,
.woocommerce div.product form.cart .variations .select2-container .select2-selection--single > .select2-selection__arrow {
    width: var(--input-height);
    padding: calc(var(--input-height)/2);
}
.woocommerce div.product form.cart .variations .select2-container .select2-selection--single .select2-selection__placeholder {
    color: inherit;
}
.woocommerce div.product form.cart .variations .select2-container--open .select2-dropdown--below {
    margin: var(--spacing-3xs) 0 0;
}
.woocommerce div.product form.cart .variations .select2-container--open .select2-dropdown--above {
    margin: var(--spacing-3xs-minus) 0 0;
}
.woocommerce div.product form.cart .variations .select2-results__options {
    padding-left: calc(var(--input-height)/2);
    padding-right: calc(var(--input-height)/2);
}

.woocommerce div.product form.cart .button {
    float: none;
}
.woocommerce div.product form.cart div.quantity {
    float: none;
    margin: 0;
}

.woocommerce div.product div.images {
    margin: 0;
}

.woocommerce .product .entry-tag {
    display: inline-flex;
    flex-wrap: wrap;
    width: auto;
    max-width: 100%;
    vertical-align: top;
    align-items: center;
    justify-content: center;
    grid-gap: var(--spacing-3xs);
}
.woocommerce .product .entry-tag:empty {
    display: none !important;
}
.woocommerce .product .tag {
    box-shadow: none !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    height: 26px;
    width: auto;
    margin: 0;
    padding: 0 var(--spacing-2xs);
    background: var(--color-theme);
    color: var(--color-white);
    border-radius: 0;
    overflow: hidden;
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-body-sub);
    white-space: nowrap;
    text-transform: none;
}
.woocommerce .product .tag[data-tag="discount"] {
    background: var(--color-body);
    color: var(--color-white);
}

/*========== PRODUCT ==========*/
.woocommerce ul.products,
.woocommerce .products ul {
    margin: 0;
}
.woocommerce ul.products:after, 
.woocommerce ul.products:before,
.woocommerce .products ul:after, 
.woocommerce .products ul:before {
    display: none;
}
.woocommerce ul.products li.product {
    --gap-x: var(--spacing-sm);
    --gap-y: var(--spacing-xs);
    position: relative;
    display: block;
    font-size: inherit;
    line-height: inherit;
    text-align: left;
    text-transform: none;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.woocommerce ul.products li.product,
.woocommerce ul.products[class*="columns-"] li.product {
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}
.woocommerce ul.products li.product > * {
    width: 100%;
}
.woocommerce ul.products li.product a img {
    margin: 0 !important;
}
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price, 
.woocommerce div.product span.price {
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
    opacity: 1;
}
.woocommerce ins,
.woocommerce ul.products li.product .price ins,
.woocommerce div.product p.price ins, 
.woocommerce div.product span.price ins {
    text-decoration: none;
    font-weight: inherit;
    color: var(--color-error);
}
.woocommerce del,
.woocommerce ul.products li.product .price del,
.woocommerce div.product p.price del, 
.woocommerce div.product span.price del {
    font-weight: inherit;
    text-decoration: line-through;
    color: inherit;
    opacity: var(--opacity-light);
    position: relative;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
}
.woocommerce ul.products li.product .button {
    margin: 0 !important;
}
.woocommerce ul.products li.product form.cart table.variations .label,
.woocommerce ul.products li.product form.cart table.variations tr,
.woocommerce ul.products li.product form.cart .reset_variations,
.woocommerce ul.products li.product form.cart .single_variation_wrap,
.woocommerce ul.products li.product form.cart .quantity,
.woocommerce ul.products li.product form.cart .quantity-container {
    display: none !important;
}
.woocommerce ul.products li.product form.cart table.variations tr.tr-size {
    display: table-row !important;
}
.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
    text-decoration: none !important;
    box-shadow: none !important;
    display: block;
    position: relative;
    z-index: 1;
}
.woocommerce ul.products li.product .woocommerce-LoopProduct-link,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .price * {
    padding: 0;
    margin: 0;
    float: none;
    clear: both;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-align: inherit;
    text-transform: inherit;
    letter-spacing: inherit;
    transition: none;
    opacity: 1;
}

.woocommerce ul.products li.product .caption {
    position: absolute;
    z-index: 3;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: var(--gap-y) var(--gap-x);
    display: grid;
    grid-gap: 0 var(--gap-x);
    font-size: var(--font-size-body-sub);
    line-height: var(--line-height-body);
    letter-spacing: var(--letter-spacing);
    text-transform: uppercase;
}
.woocommerce ul.products li.product .caption .woocommerce-loop-product__title {
    font-size: var(--font-size-body);
    text-transform: none;
    letter-spacing: normal;
}
.woocommerce ul.products li.product .caption .entry-price .price {
    color: inherit;
}
.woocommerce ul.products li.product .caption .entry-price .price del,
.woocommerce ul.products li.product .caption .entry-price .price ins {
    white-space: nowrap;
}

.woocommerce ul.products li.product .entry-variations {
    width: auto;
    max-width: 50%;
    padding: var(--gap-y) var(--gap-x) 0 var(--gap-x);
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
    pointer-events: none;
}
.woocommerce ul.products li.product .entry-variations * {
    transition: none;
}
.woocommerce ul.products li.product .entry-variations form.cart .button-variable-items-wrapper {
    grid-column-gap: 1vw;
}

.woocommerce ul.products li.product .soldout {
    color: var(--color-error);
}

.woocommerce ul.products li.product .cover {
    position: relative;
    overflow: hidden;
    background: #F2EFF6;
}
.woocommerce ul.products li.product .cover .object-fit:before {
    padding-bottom: 140%;
}
.woocommerce ul.products li.product .cover .object-fit > * {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 auto !important;
    will-change: opacity;
}
.woocommerce ul.products li.product .cover .object-fit > * + * {
    opacity: 0;
    z-index: 1;
}

.woocommerce ul.products li.product:hover .cover .object-fit > *:first-child:not(:last-child) {
    opacity: 0;
}
.woocommerce ul.products li.product:hover .cover .object-fit > * + * {
    opacity: 1;
}
.woocommerce ul.products li.product.has-cover-hover:hover .caption,
.woocommerce ul.products li.product.has-cover-hover:hover .entry-variations {
    color: var(--color-white);
}

.product-container {
    position: relative;
}
.product-container + .product-container {
    margin-top: var(--spacing-3xs) !important;
}

.product-container.type-grid .woocommerce ul.products {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: var(--spacing-3xs);
    grid-auto-flow: dense;
}
.product-container.type-marquee .woocommerce ul.products {
    display: inline-grid;
    vertical-align: top;
    grid-auto-flow: column;
    grid-auto-columns: -webkit-max-content;
    grid-auto-columns: max-content;
    white-space: normal;
}
.product-container.type-marquee .woocommerce ul.products li.product {
    width: 29.8611111111vw !important;
    max-width: 430px !important;
    margin-right: var(--spacing-3xs) !important;
}
.product-container.type-marquee .mMove,
.product-container.type-marquee .mItem {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
}

@media (min-width:992px) {

    .woocommerce ul.products li.product .caption {
        grid-template-columns: auto auto;
        grid-template-rows: 1fr auto auto;
        justify-content: space-between;
    }
    .woocommerce ul.products li.product .caption > .woocommerce-loop-product__title {
        grid-row: 3;
        grid-column: 1;
        align-self: end;
        justify-self: start;
        text-align: left;
    }
    .woocommerce ul.products li.product .caption > .entry-collection {
        grid-row: 1;
        grid-column: 1 / span 2;
        max-width: 50%;
        align-self: start;
        justify-self: start;
        text-align: left;
    }
    .woocommerce ul.products li.product .caption > .entry-code {
        grid-row: 2;
        grid-column: 1;
        align-self: end;
        justify-self: start;
        text-align: left;
    }
    .woocommerce ul.products li.product .caption > .entry-price {
        grid-row: 2 / span 2;
        grid-column: 2;
        align-self: end;
        text-align: right;
        justify-self: end;
    }

}

@media (max-width:1279px) {

    .woocommerce ul.products li.product .entry-variations {
        display: none !important;
    }

}

@media (max-width:991px) {

    .woocommerce ul.products li.product .caption {
        grid-template-columns: 100%;
        grid-template-rows: 1fr auto auto auto;
        justify-content: space-between;
    }
    .woocommerce ul.products li.product .caption > .woocommerce-loop-product__title {
        grid-row: 3;
        align-self: end;
    }
    .woocommerce ul.products li.product .caption > .entry-collection {
        grid-row: 1;
        align-self: start;
    }
    .woocommerce ul.products li.product .caption > .entry-code {
        grid-row: 2;
        align-self: end;
    }
    .woocommerce ul.products li.product .caption > .entry-price {
        grid-row: 4;
        align-self: end;
        margin-top: var(--spacing-3xs);
    }

    .product-container.type-grid .woocommerce ul.products {
        grid-template-columns: repeat(2,1fr);
    }

    .product-container.type-marquee .woocommerce ul.products li.product {
        width: 350px !important;
        max-width: 91.02564102564vw !important;
    }
    
}

/*========== SINGLE PRODUCT ==========*/
#single-product .woocommerce-notices-wrapper > * {
    margin: 0 !important;
    padding-left: var(--spacing-container) !important;
    padding-right: var(--spacing-container) !important;
}
#single-product .woocommerce-notices-wrapper > *:not(:last-child) {
    margin-bottom: var(--spacing-2xs) !important;
}
#single-product .woocommerce-notices-wrapper > .woocommerce-error:last-child, 
#single-product .woocommerce-notices-wrapper > .woocommerce-info:last-child, 
#single-product .woocommerce-notices-wrapper > .woocommerce-message:last-child {
    margin-bottom: 0 !important;
}

#single-product .product-layout > #product-navi,
#single-product .product-layout > #product-summary {
    padding-left: var(--spacing-container);
    padding-right: var(--spacing-container);
}

#single-product .summary {
    margin: 0;
    padding: 0;
    float: none;
    clear: both;
    position: relative;
    width: 100%;
    text-align: left;
}

#single-product form.cart > * {
    width: 100%;
}
#single-product form.cart .woocommerce-variation-add-to-cart {
    display: block;
}
#single-product form.cart .woocommerce-variation-add-to-cart > * {
    width: 100%;
}
#single-product form.cart .woocommerce-variation-add-to-cart > *:not(:first-child) {
    margin-top: var(--spacing-sm);
}
#single-product form.cart .variations tr:not(:first-child) {
    margin-top: var(--spacing-md);
}
#single-product form.cart .variations tr {
    display: block !important;
}
#single-product form.cart .variations tr > * {
    margin: 0;
    width: 100% !important;
    text-align: left;
}
#single-product form.cart .variations tr > *:not(:first-child) {
    margin-top: var(--spacing-sm);
}
#single-product form.cart .variations tr > .value {
    margin-left: auto;
}
#single-product form.cart .quantity {
    width: 100% !important;
    height: var(--input-height);
    border-radius: 0;
    border: 1px solid var(--input-border-color);
    padding: 0;
    overflow: hidden;
}
#single-product form.cart .quantity .qty {
    width: 100%;
    height: 100%;
}
#single-product form.cart .quantity .qty-btn {
    width: auto;
    padding: 0 var(--spacing-xs);
}

#single-product .quantity-container {
    width: 100px !important;
    min-width: 100px !important;
}

#single-product .cta-container {
    display: block;
    text-align: center;
}
#single-product .cta-container > * {
    margin: 0;
}
#single-product .cta-container > *:not(:first-child) { 
    margin-top: var(--spacing-sm);
}
#single-product .cta-container > .button {
    width: 100% !important;
}
#single-product .cta-container > .entry-wishlist {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
#single-product .cta-container .tinvwl_add_to_wishlist_button:before {
    display: none !important;
}
#single-product .cta-container .tinvwl_add_to_wishlist_button {
    font-size: var(--font-size-body-sub);
    letter-spacing: var(--letter-spacing);
    text-transform: uppercase;
}
#single-product .cta-container .tinvwl_add_to_wishlist_button .tinvwl_add_to_wishlist-text {
    display: block !important;
    white-space: nowrap;
}

#single-product .entry-navi {
    display: flex;
    flex-wrap: wrap;
    grid-gap: var(--spacing-3xs) var(--spacing-2xs);
    line-height: normal;
    padding: var(--spacing-sm) 0;
    font-size: var(--font-size-body-sub);
    letter-spacing: var(--letter-spacing);
    text-transform: uppercase;
}
#single-product .entry-navi,
#single-product .entry-navi > .data {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    grid-gap: var(--spacing-3xs) var(--spacing-2xs);
}
#single-product .entry-navi > .breadcrumb,
#single-product .entry-navi > .data > .entry-collection {
    flex: 1;
}

#product-summary .summary > *:not(:first-child),
#single-product form.cart > *:not(:first-child),
#single-product form.cart > *[data-product_id] > *:not(:first-child),
#single-product form.cart .single_variation_wrap > *:not(:first-child),
#product-summary .entry-cart > *:not(:first-child) {
    margin-top: var(--spacing-md);
}
#product-summary .summary > .entry-navi + *:not(:first-child) {
    margin-top: var(--spacing-sm);
}

#product-summary .entry-header {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: var(--spacing-2xs) var(--spacing-md);
    grid-auto-flow: dense;
}
#product-summary .entry-header > *:not(:first-child) {
    margin-top: 0;
}
#product-summary .entry-header > * {
    grid-column: 1;
}
#product-summary .entry-header > .entry-price {
    grid-row: 1 / span 2;
    grid-column: 2;
}
#product-summary .entry-header .entry-title {
    font-family: inherit;
    font-size: var(--font-size-md);
    line-height: var(--line-height-body);
    letter-spacing: var(--letter-spacing);
    text-transform: uppercase;
    color: inherit;
}
#product-summary .entry-header .entry-price {
    display: flex;
    flex-wrap: wrap;
    grid-gap: var(--spacing-3xs) var(--spacing-2xs);
}
#product-summary .entry-content li:not(:first-child) {
    margin-top: 0;
}
#product-summary .entry-explore {
    font-size: var(--font-size-body-sub);
    letter-spacing: var(--letter-spacing);
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;
    grid-gap: var(--spacing-2xs) var(--spacing-sm);
}

#product-gallery .entry-gallery {
    position: relative;
    width: 100%;
}
#product-gallery .entry-gallery .object-fit:before {
    padding-bottom: 140%;
}
#product-gallery .entry-gallery .item {
    box-shadow: none !important;
    text-decoration: none !important;
    display: block;
    position: relative;
    line-height: 1;
}
#product-gallery .entry-gallery.type-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: var(--spacing-3xs);
}

.popup-product-gallery.mfp-bg {
    background: var(--color-white);
    color: var(--color-black);
}
.popup-product-gallery.mfp-bg.mfp-ready {
    opacity: 1;
}
.modal-product-gallery {
    position: relative;
    color: var(--color-black);
}
.popup-product-gallery .mfp-content {
    width: 100%;
}
.modal-product-gallery .mfp-arrow {
    opacity: 1;
    padding: 0;
    margin: 0;
	width: auto;
	height: auto;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: inherit !important;
    box-shadow: none !important;
    pointer-events: auto;
}
.modal-product-gallery .mfp-arrow:before,
.modal-product-gallery .mfp-arrow:after {
    display: none;
}
.modal-product-gallery .mfp-arrow-left {
    left: var(--spacing-container) !important;
}
.modal-product-gallery .mfp-arrow-right {
    right: var(--spacing-container) !important;
}
.modal-product-gallery .mfp-arrow-left:before,
.modal-product-gallery .mfp-arrow-right:before {
    margin: 0;
    padding: 0;
    font-family: 'iconfont';
    font-size: var(--font-size-md);
    display: block;
    width: auto;
    height: auto;
    position: static;
    z-index: 10;
    border: 0;
    opacity: 1;
}
.modal-product-gallery .mfp-arrow-left:before {
    content: "\e90d";
}
.modal-product-gallery .mfp-arrow-right:before {
    content: "\e90e";
}
.modal-product-gallery .mfp-figure:after,
.modal-product-gallery .mfp-figure figcaption,
.modal-product-gallery .mfp-figure .mfp-title:empty {
    display: none;
} 
.modal-product-gallery .modal-close {
    width: auto;
    height: auto;
    display: inline-block;
    vertical-align: top;
    line-height: normal;
    position: fixed;
    z-index: 10;
    left: auto;
    right: var(--spacing-container);
    top: var(--spacing-sm);
}
.modal-product-gallery .modal-caption {
    padding: var(--spacing-lg) var(--spacing-container);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.modal-product-gallery .modal-caption .mfp-title {
    padding: 0;
    font-size: inherit;
    line-height: inherit;
    text-align: inherit;
    color: inherit;
}
.modal-product-gallery .modal-caption .mfp-title > *:not(:first-child) {
    margin-top: var(--spacing-3xs);
}
.modal-product-gallery .modal-caption .entry-code {
    text-transform: uppercase;
}
.modal-product-gallery .modal-caption .entry-title {
    font-size: var(--font-size-md);
    line-height: var(--line-height-body);
    letter-spacing: var(--letter-spacing);
    text-transform: uppercase;
}

.sizeguide > *:not(:first-child) {
    margin-top: var(--spacing-lg);
}
.sizeguide .entry-header > *:not(:first-child) {
    margin-top: 0 !important;
}
.sizeguide .entry-title {
    font-size: var(--font-size-title);
}
.sizeguide .entry-tab {
    font-size: var(--font-size-body-sub);
    letter-spacing: var(--letter-spacing);
    text-transform: uppercase;
}
.sizeguide .sizeinfo .entry-header:not(:last-child) {
    margin-bottom: var(--spacing-sm);
}
.sizeguide .sizeinfo .tab-content > *:not(:first-child) {
    margin-top: var(--spacing-sm);
}
.sizeguide .sizeinfo .entry-header,
.sizeguide .sizeinfo .entry-tab {
    display: flex;
    align-items: baseline;
    grid-gap: 0 var(--spacing-sm);
}
.sizeguide .sizeinfo .entry-tab {
    margin-left: auto;
}
.sizeguide .sizeinfo .entry-table sup {
    font-size: 60%;
}
.sizeguide .sizeinfo .entry-table table th {
    font-weight: var(--font-weight-bold);
}
.sizeguide .sizeinfo .entry-table table tr > *:not(:last-child) {
    padding-right: var(--spacing-2xs);
}
.sizeguide .sizeinfo .entry-table table tr > *:last-child {
    width: 1%;
    white-space: nowrap;
}
.sizeguide .sizeinfo .entry-table table tr:not(:last-child) > * {
    padding-bottom: var(--spacing-2xs);
}
.sizeguide .sizeinfo .entry-table table > *:not(:last-child) > tr:last-child > * {
    padding-bottom: var(--spacing-sm);
}
.sizeguide .sizeinfo .entry-length {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: var(--spacing-sm);
}
.sizeguide .sizeinfo .entry-length small {
    letter-spacing: var(--letter-spacing);
    text-transform: uppercase;
}
.sizeguide .measure {
    display: grid;
    grid-template-columns: 1fr 140px;
    grid-auto-flow: dense;
    grid-gap: var(--spacing-sm);
}
.sizeguide .measure > .entry-cover {
    grid-column: 2;
    grid-row: 1 / span 2;
}
.sizeguide .measure > .entry-content {
    align-self: end;
}

@media (min-width:576px) {
    
    #single-product form.cart .variations tr {
        display: flex !important;
    }
    #single-product form.cart .variations tr > * {
        flex: 1;
        width: auto !important;
    }
    #single-product form.cart .variations tr > *:not(:first-child) {
        margin-top: 0;
    }

    #single-product .cta-container {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        grid-gap: var(--spacing-2xs) var(--spacing-sm);
    }
    #single-product .cta-container > *:not(:first-child) { 
        margin-top: 0;
    }
    #single-product .cta-container > .entry-wishlist {
        flex: 1;
        text-align: right;
    }

}

@media (min-width:992px) {
    
    #single-product .summary {
        width: 100%;
    }

    #single-product .product-layout {
        position: relative;
        display: grid;
        grid-template-columns: 1fr calc(356px + var(--spacing-container)*2);
        grid-gap: var(--spacing-md) 0;
        grid-auto-flow: dense;
    }
    #single-product .product-layout > #product-navi {
        display: none !important;
    }
    #single-product .product-layout > #product-gallery {
        grid-column: 1;
    }
    #single-product .product-layout > #product-summary {
        grid-column: 2;
        padding-right: var(--spacing-container);
        height: -webkit-max-content;
        height: -moz-max-content;
        height: max-content;
        position: -webkit-sticky;
        position: sticky;
        top: var(--header-height);
    }
    html.page-scrolling--down #single-product .product-layout > #product-summary {
        top: 0;
    }
    
    #product-summary .cta-container .button {
        max-width: 300px;
    }
    #product-summary .entry-condition {
        max-width: 500px;
    }

}

@media (min-width:992px) and (orientation:landscape) {

    .modal-product-gallery {
        width: 100vw;
        height: 100%;
        display: flex;
        overflow: hidden;
    }
    .modal-product-gallery .modal-cover {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        max-width: 50%;
    }
    .modal-product-gallery .modal-cover .object > img {
        height: var(--lvh-fallback) !important;
        height: var(--lvh-flexible) !important;
        max-height: none !important;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
    }
    .modal-product-gallery .modal-caption {
        flex: 1;
        max-width: 50%;
        align-self: flex-end;
        padding-left: var(--spacing-md);
        padding-right: calc(var(--spacing-md) + var(--spacing-container)+ var(--font-size-md));
    }

}

@media (max-width:991px) {
    
    #product-gallery + #product-summary {
        margin-top: var(--spacing-sm);
    }
    #product-summary .entry-navi {
        display: none !important;
    }
    #product-summary .summary > .entry-navi + *:not(:first-child) {
        margin-top: 0;
    }


    .modal-product-gallery .modal-cover .object > img {
        max-height: var(--lvh-fallback) !important;
        max-height: var(--lvh-flexible) !important;
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: center;
        object-position: center;
    }
    .modal-product-gallery .modal-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: var(--spacing-container);
    }

}

/*========== CART ==========*/
.woocommerce a.remove {
    margin: 0 auto !important;
	background: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
	color: var(--color-theme) !important;
    opacity: 1;
	width: auto;
	height: auto;
    font: inherit;
    font-size: 0;
	line-height: 1;
}
.woocommerce a.remove:before {
    font-family: 'iconfont';
    content: '\e900';
    font-size: var(--font-size-body-sub);
    font-weight: bold;
    color: inherit;
}
.woocommerce a.remove:hover {
	color: var(--color-red) !important;
    opacity: 1 !important;
}

.woocommerce table.shop_table {
	margin: 0;
	border: 0;
	border-radius: 0;
    border-spacing: 0;
    text-transform: none;
}
.woocommerce table.shop_table tr > * {
    border: 0;
    border-bottom: 1px solid var(--color-border);
	padding: var(--spacing-sm) 0;
}
.woocommerce table.shop_table tr > *:not(:last-child) {
	padding-right: var(--spacing-xs);
}
.woocommerce table.shop_table > *:first-child > *:first-child > * {
    padding-top: 0;
}
.woocommerce table.shop_table thead tr > *, 
.woocommerce table.shop_table tbody tr > *, 
.woocommerce table.shop_table tfoot tr > * {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
	line-height: inherit;
    text-transform: none;
    letter-spacing: normal;
    vertical-align: inherit;
    border-top: 0;
}
.woocommerce table.shop_table thead tr > * {
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-body-sub);
    letter-spacing: var(--letter-spacing);
    text-transform: uppercase;
    padding-bottom: var(--spacing-2xs);
}
.woocommerce table.shop_table a:hover {
    color: var(--color-body);
}

.woocommerce table.shop_table .product-remove {
	width: 1%;
    padding-right: 0;
}
.woocommerce table.shop_table .product-remove a.remove {
    display: inline-block;
    line-height: inherit;
    box-shadow: none !important;
}

.woocommerce table.shop_table .product-thumbnail {
	width: calc(100px + var(--spacing-sm));
    padding-right: 0;
}
.woocommerce table.shop_table .product-thumbnail img {
    margin: 0;
	display: block;
    width: 100%;
    height: auto;
}

.woocommerce table.shop_table .product-quantity .quantity-container {
    margin: 0 auto;
}
.woocommerce table.shop_table .product-quantity .quantity {
    width: 80px;
}

.woocommerce table.shop_table:not(.shop_table_responsive) tr > *:last-child {
    text-align: right;
}

.woocommerce table.cart td.actions {
    position: relative;
}
.woocommerce table.cart td.actions .coupon {
	display: flex;
	align-items: baseline;
    grid-gap: 0 var(--spacing-2xs);
	width: calc(50% - var(--spacing-container));
	max-width: 100%;
}
.woocommerce table.cart td.actions .coupon:before,
.woocommerce table.cart td.actions .coupon:after {
    display: none !important;
}
.woocommerce table.cart td.actions .coupon .input-text,
.woocommerce form.checkout_coupon .form-row input.input-text {
	flex: 1;
    width: 100%;
	text-align: left;
    text-transform: none;
    font-weight: var(--font-weight-bold);
    height: var(--input-height);
	margin: 0;
    padding: var(--spacing-3xs) 0;
    border: 0;
    border-bottom: 1px solid var(--input-border-color);
    border-radius: 0;
}
.woocommerce table.cart td.actions .coupon .input-text:-ms-input-placeholder,
.woocommerce form.checkout_coupon .form-row input.input-text:-ms-input-placeholder {
    font-weight: var(--font-weight-body) !important;
    font-size: inherit !important;
    text-transform: none !important;
    color: inherit !important;
    opacity: 1 !important;
}
.woocommerce table.cart td.actions .coupon .input-text::-webkit-input-placeholder,
.woocommerce form.checkout_coupon .form-row input.input-text::-webkit-input-placeholder {
    font-weight: var(--font-weight-body) !important;
    font-size: inherit !important;
    text-transform: none !important;
    color: inherit !important;
    opacity: 1 !important;
}
.woocommerce table.cart td.actions .coupon .input-text::-moz-placeholder,
.woocommerce form.checkout_coupon .form-row input.input-text::-moz-placeholder {
    font-weight: var(--font-weight-body) !important;
    font-size: inherit !important;
    text-transform: none !important;
    color: inherit !important;
    opacity: 1 !important;
}
.woocommerce table.cart td.actions .coupon .button,
.woocommerce form.checkout_coupon .button,
.woocommerce table.cart td.actions [name="update_cart"] {
    justify-content: center;
    text-align: center;
}

.woocommerce .woocommerce-form-coupon-toggle > *:last-child {
    margin-bottom: var(--spacing-md);
}
.woocommerce .woocommerce-form-coupon {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 0 var(--spacing-2xs);
    align-items: flex-start;
    width: calc(50% - var(--spacing-container)/2);
    margin: 0 0 var(--sc-spacing-y-resize) !important;
    text-transform: none;
}
.woocommerce .woocommerce-form-coupon > * {
    grid-column: span 2;
}
.woocommerce .woocommerce-form-coupon > p:not(.form-row) {
	width: 100%;
	margin-bottom: var(--spacing-2xs);
}
.woocommerce .woocommerce-form-coupon .form-row {
    width: auto !important;
	margin: 0 !important;
	padding: 0 !important;
    float: none !important;
}
.woocommerce .woocommerce-form-coupon .form-row-first {
    grid-column: 1;
}
.woocommerce .woocommerce-form-coupon .form-row-last {
    grid-column: 2;
    justify-self: end;
}

.woocommerce .cart-collaterals {
    margin-top: var(--sc-spacing-y-resize);
}
.woocommerce .cart-collaterals .cart_totals > h2 {
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-title);
    line-height: var(--line-height-body);
    text-transform: none;
    color: inherit;
    margin-bottom: var(--spacing-sm);
}
.woocommerce .cart-collaterals .cart_totals > table.shop_table,
.woocommerce .cart-collaterals .cart_totals > table.shop_table > tbody,
.woocommerce .cart-collaterals .cart_totals > table.shop_table > tbody > tr,
.woocommerce .cart-collaterals .cart_totals > table.shop_table > tbody > tr > * {
    display: block;
    margin: 0;
    padding: 0 !important;
    border: 0 !important;
}
.woocommerce .cart-collaterals .cart_totals > table.shop_table {
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 0 !important;
}
.woocommerce .cart-collaterals .cart_totals > table.shop_table > tbody > tr {
    display: flex;
    flex-wrap: wrap;
    grid-gap: var(--spacing-2xs);
}
.woocommerce .cart-collaterals .cart_totals > table.shop_table > tbody > tr:not(:last-child) {
    margin-bottom: var(--spacing-2xs) !important;
}
.woocommerce .cart-collaterals .cart_totals > table.shop_table > tbody > tr > * {
    width: auto;
    text-align: left;
}
.woocommerce .cart-collaterals .cart_totals > table.shop_table > tbody > tr > *:last-child {
    text-align: right;
    margin-left: auto;
}
.woocommerce .cart-collaterals .cart_totals > table.shop_table > tbody > tr > *:not(:last-child) {
    padding-right: var(--spacing-2xs);
}
.woocommerce .cart-collaterals .cart_totals > table.shop_table > tbody > tr > *:before {
    display: none !important;
}
.woocommerce .cart-collaterals .cart_totals > table.shop_table > tbody > tr.shipping > * {
    width: 100%;
    font-weight: inherit;
}
.woocommerce .cart-collaterals .cart_totals > table.shop_table > tbody > tr.shipping > *:last-child {
    text-align: left !important;
}
.woocommerce .cart-collaterals .cart_totals > table.shop_table > tbody > tr.shipping > *:not(:last-child) {
    padding-right: 0;
}
.woocommerce .cart-collaterals .cart_totals > table.shop_table > tbody > tr.shipping > td ul#shipping_method .amount {
    font-weight: inherit;
}
.woocommerce .cart-collaterals .cart_totals > table.shop_table > tbody > tr.shipping .woocommerce-shipping-destination:not(:first-child) {
    margin-top: 0;
}
.woocommerce .cart-collaterals .cart_totals > table.shop_table > tbody > tr.shipping .shipping-calculator-button {
    text-decoration: none;
    background: none;
    box-shadow: var(--cta-shadow);
    color: inherit;
}
.woocommerce .cart-collaterals .cart_totals > table.shop_table > tbody > tr.shipping .shipping-calculator-form .form-row:not(:last-child) {
    margin-bottom: var(--spacing-2xs) !important;
}
.woocommerce .cart-collaterals .cart_totals > table.shop_table > tbody > tr.shipping .shipping-calculator-form [type="submit"] {
    margin: var(--spacing-2xs) 0 0;
    width: 100%;
}
.woocommerce .cart-collaterals .cart_totals > table.shop_table > tbody > tr.shipping > th {
    display: none !important;
}
.woocommerce .cart-collaterals .cart_totals > table.shop_table > tbody > tr.shipping > td {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 0 var(--spacing-2xs);
    align-items: baseline;
}
.woocommerce .cart-collaterals .cart_totals > table.shop_table > tbody > tr.shipping > td > * {
    grid-column: 1 / span 2;
}
.woocommerce .cart-collaterals .cart_totals > table.shop_table > tbody > tr.shipping > td:before {
    content: attr(data-title);
    display: block !important;
    grid-row: 1;
    grid-column: 1;
}
.woocommerce .cart-collaterals .cart_totals > table.shop_table > tbody > tr.shipping > td > .woocommerce-shipping-methods {
    grid-row: 1;
    grid-column: 2;
}
.woocommerce .cart-collaterals .cart_totals > table.shop_table > tbody > tr.shipping > td > .woocommerce-shipping-methods + * {
    margin-top: var(--spacing-2xs) !important;
}
.woocommerce .cart-collaterals .cart_totals > table.shop_table > tbody > tr.order-total {
    margin-top: var(--spacing-sm) !important;
    padding-top: var(--spacing-sm) !important;
    border-top: 1px solid var(--color-border) !important;
    align-items: center;
    font-size: var(--font-size-title);
    line-height: var(--line-height-body);
}
.woocommerce .cart-collaterals .cart_totals > table.shop_table > tbody > tr > th,
.woocommerce .cart-collaterals .cart_totals > table.shop_table > tbody > tr.shipping > td:before,
.woocommerce .cart-collaterals .cart_totals > table.shop_table > tbody > tr.order-total {
    font-weight: var(--font-weight-regular) !important;
    font-size: var(--font-size-body-sub);
    letter-spacing: var(--letter-spacing);
    text-transform: uppercase;
}
.woocommerce .cart-collaterals .cart_totals > table.shop_table > tbody > tr.order-total > td {
    font-weight: var(--font-weight-bold) !important;
    font-size: var(--font-size-title);
    letter-spacing: normal;
    text-transform: none;
}

.woocommerce .cart-collaterals .cross-sells > *:not(:first-child) {
    margin-top: var(--spacing-sm);
}
.woocommerce .cart-collaterals .cross-sells ul.products {
    display: block;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.product:not(:first-child) {
    margin-top: var(--spacing-sm) !important;
    padding-top: var(--spacing-sm) !important;
    border-top: 1px solid var(--color-border) !important;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.product .woocommerce-LoopProduct-link {
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-gap: var(--spacing-sm);
    align-items: center;
    text-align: left;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.product .woocommerce-LoopProduct-link > .cover {
    grid-row: 1;
    grid-column: 1;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.product .woocommerce-LoopProduct-link > .caption {
    grid-row: 1;
    grid-column: 2;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.product .woocommerce-LoopProduct-link .woocommerce-loop-product__title {
    height: auto;
    min-height: 0;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.product .woocommerce-LoopProduct-link .price {
    justify-content: flex-start;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.product .tags {
    display: none !important;
}

.woocommerce-shipping-totals.shipping > * {
    vertical-align: top;
}

.woocommerce .wc-proceed-to-checkout {
	text-align: center;
	margin-top: var(--spacing-sm);
}
.woocommerce .wc-proceed-to-checkout .button {
    width: 100% !important;
}
.woocommerce .wc-proceed-to-checkout > *:not(:first-child) {
    margin-top: var(--spacing-2xs);
}
.woocommerce .wc-proceed-to-checkout > .cart_note {
    text-align: left !important;
}

.woocommerce-checkout .woocommerce-shipping-fields + .woocommerce-additional-fields {
    margin-top: 0;
}
.woocommerce-checkout #customer_details {
	margin-bottom: var(--spacing-md);
}
.woocommerce-checkout #customer_details h3,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #customer_details .woocommerce-account-fields .create-account .woocommerce-form__label-for-checkbox {
    font-family: inherit;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-title);
    line-height: var(--line-height-body);
    margin-bottom: var(--spacing-sm);
    text-transform: none;
    color: inherit;
}
.woocommerce-checkout #customer_details .woocommerce-account-fields {
    margin-top: var(--spacing-md);
}
.woocommerce-checkout #customer_details .woocommerce-account-fields .create-account:not(.form-row) {
    margin-top: var(--spacing-sm) !important;
}
.woocommerce-checkout #customer_details .woocommerce-account-fields .create-account > .form-row {
    width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: var(--spacing-2xs) !important;
}
.woocommerce-checkout #customer_details .woocommerce-account-fields .create-account.form-row,
.woocommerce-checkout #customer_details .woocommerce-account-fields .create-account > .form-row-last {
    margin-bottom: 0 !important;
}

.options_container {
    position: relative;
    margin: 0;
    width: 100%;
    float: none;
} 
.options_container > br {
    display: none;
}

.saved_address_options {
    overflow: auto;
}

.billing_addresses_container:not(:first-child),
.shipping_addresses_container:not(:first-child) {
    margin-top: var(--spacing-md);
}
.billing_addresses_container > *:not(:first-child),
.shipping_addresses_container > *:not(:first-child) {
    margin-top: var(--spacing-sm);
}

.address_container_billing, 
.address_container_shipping {
    position: relative;
    margin: 0;
    padding: var(--spacing-sm);
    width: 100%;
    float: none;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: var(--spacing-sm) var(--spacing-md);
    grid-auto-flow: dense;
    align-items: baseline;
}
.address_container_billing > .single_address, 
.address_container_shipping > .single_address {
    grid-row: 1;
    grid-column: 1 / span 2;
}
.address_container_billing > .billing_address_edit_delete, 
.address_container_shipping > .shipping_address_edit_delete {
    grid-column: 1;
}
.address_container_billing > .bill_to_this_address_button, 
.address_container_shipping > .ship_to_this_address_button, 
.address_container_billing > .billing_to_this_address, 
.address_container_shipping > .shipping_to_this_address {
    grid-column: 2;
    justify-self: flex-end;
}

#bill_to_new_address_button, 
#ship_to_new_address_button {
    display: inline-block;
    vertical-align: top;
    line-height: normal;
    white-space: nowrap;
    box-shadow: var(--cta-shadow);
    text-transform: none;
    margin: 0;
}
#bill_to_new_address_button:not(:hover), 
#ship_to_new_address_button:not(:hover) {
    opacity: var(--opacity);
}
#bill_to_new_address_button:not(:first-child), 
#ship_to_new_address_button:not(:first-child) {
    margin-top: var(--spacing-2xs);
}
p.single_address {
    margin: 0;
    height: auto;
    font-size: inherit;
    white-space: normal;
    text-overflow: clip;
    overflow: visible;
}
.bill_to_this_address_button, 
.ship_to_this_address_button, 
.billing_to_this_address, 
.shipping_to_this_address {
    margin: 0;
    height: auto;
    text-align: inherit;
}
.billing_address_selected, 
.shipping_address_selected, 
#bill_here_button, 
#ship_here_button {
    font-size: inherit;
    display: block;
    width: auto;
    padding: 0;
}
.billing_address_selected, 
.shipping_address_selected {
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
}
.billing_address_selected .dashicons, 
.shipping_address_selected .dashicons {
    display: none;
}
#bill_here_button, 
#ship_here_button {
    padding: 0 !important;
    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    color: inherit !important;
    background: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    display: inline !important;
    vertical-align: baseline !important;
    line-height: normal !important;
    font-weight: inherit !important;
    font-size: inherit !important;
}
.billing_address_edit_delete, 
.shipping_address_edit_delete {
    margin: 0;
    line-height: normal;
    text-transform: uppercase;
    justify-content: flex-start;
}
#bill_here_button, 
#ship_here_button,
.billing_address_edit_delete > a, 
.shipping_address_edit_delete > a {
    box-shadow: var(--cta-shadow) !important;
}
#bill_here_button:hover, 
#ship_here_button:hover,
.billing_address_edit_delete > a:hover, 
.shipping_address_edit_delete > a:hover {
    opacity: var(--opacity);
}
.billing_address_edit_delete > *:not(:last-child), 
.shipping_address_edit_delete > *:not(:last-child) {
    margin-right: var(--spacing-md);
}

.woocommerce table.shop_table:not(.shop_table_responsive) tr > * {
    width: 50%;
}
.woocommerce table.shop_table:not(.shop_table_responsive) tr > *:last-child {
	text-align: right;
}
.woocommerce table.shop_table:not(.shop_table_responsive) thead {
    display: none;
}
.woocommerce table.shop_table:not(.shop_table_responsive) thead + * > tr:first-child > * {
    padding-top: 0;
}
.woocommerce table.shop_table:not(.shop_table_responsive) tbody tr > * {
    vertical-align: middle;
}

.woocommerce table.shop_table:not(.shop_table_responsive) tr > th,
.woocommerce table.shop_table:not(.shop_table_responsive) tfoot > tr.order-total,
.woocommerce table.shop_table:not(.shop_table_responsive).order_details tfoot > tr:last-child {
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-body-sub);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing);
    color: inherit;
}
.woocommerce table.shop_table:not(.shop_table_responsive) tfoot > tr.order-total,
.woocommerce table.shop_table:not(.shop_table_responsive).order_details tfoot > tr:last-child,
.woocommerce table.shop_table:not(.shop_table_responsive).order_details tfoot > tr:last-child > td {
    font-size: var(--font-size-title);
    font-weight: var(--font-weight-bold);
}
.woocommerce table.shop_table:not(.shop_table_responsive) .product-quantity, 
.woocommerce table.shop_table:not(.shop_table_responsive) .product-subtotal, 
.woocommerce table.shop_table:not(.shop_table_responsive) .product-total {
    white-space: nowrap;
}
.woocommerce table.shop_table:not(.shop_table_responsive) .product-name-wrap {
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-gap: 0 var(--spacing-xs);
    grid-auto-flow: dense;
    align-items: center;
}
.woocommerce table.shop_table:not(.shop_table_responsive) .product-name-wrap > *:not(.img) {
    grid-column: 2;
}
.woocommerce table.shop_table:not(.shop_table_responsive) .product-name-wrap > .img + .name:last-child {
    grid-row: 1 / span 3;
}
.woocommerce table.shop_table:not(.shop_table_responsive) .product-name-wrap > .img {
    grid-column: 1;
    grid-row: 1 / span 3;
}
.woocommerce table.shop_table:not(.shop_table_responsive) .product-name-wrap > .img > img {
    display: block;
    width: 100%;
    height: auto;
}
.woocommerce table.shop_table:not(.shop_table_responsive) .product-name-wrap > h3 {
    align-self: flex-end;
}
.woocommerce table.shop_table:not(.shop_table_responsive) .product-name-wrap > .product-quantity {
    align-self: flex-start;
}

.woocommerce #order_review > *:not(:last-child) {
    margin-bottom: var(--sc-spacing-y-resize);
}

.woocommerce ul#shipping_method li {
    line-height: inherit;
    margin: 0 0 var(--spacing-3xs);
}
.woocommerce ul#shipping_method li:last-child {
    margin-bottom: 0;
}
.woocommerce ul#shipping_method .amount {
    font-weight: inherit;
    white-space: nowrap;
}
.woocommerce .woocommerce-shipping-destination:not(:first-child) {
    margin-top: 15px;
}

.woocommerce-checkout #order_review .ppc-button-wrapper {
    line-height: 0;
    width: 100%;
    max-width: 100%;
}
.woocommerce-checkout #order_review > .woocommerce-checkout-payment:not(:last-child) {
    margin-bottom: var(--spacing-sm);
}
.woocommerce-checkout #order_review > .woocommerce-checkout-payment + .ppc-button-wrapper {
    margin-bottom: var(--spacing-sm-minus);
}
.woocommerce-checkout #order_review > .woocommerce-checkout-payment + .ppc-button-wrapper > #ppc-button-ppcp-gateway {
    padding-bottom: var(--spacing-sm);
}

.woocommerce .cart-empty {
    background: none !important;
    padding: 0 !important;
    color: inherit !important;
}
.woocommerce .cart-empty,
.woocommerce .cart-empty + .return-to-shop {
    text-align: center;
}
.woocommerce .return-to-shop:not(:first-child) {
    margin-top: var(--spacing-sm);
}

.payment_box:not(:first-child) {
    margin-top: var(--spacing-sm);
}
.wc_payment_method {
    position: relative;
    line-height: 1;
}
.wc_payment_method:not(:last-child) {
    margin-bottom: var(--spacing-2xs);
}
.wc_payment_method label,
#omise_cc_form .omise-remember-card > label {
    position: relative;
    display: inline-block;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.wc_payment_method input[type="radio"] + label img,
.wc_payment_method input[type="checkbox"] + label img,
#omise_cc_form .omise-remember-card input[type="radio"] + label img,
#omise_cc_form .omise-remember-card input[type="checkbox"] + label img {
    margin: 1px 5px;
}

#add_payment_method #payment, 
.woocommerce-cart #payment, 
.woocommerce-checkout #payment {
	border-radius: 0;
    background: none;
    margin: var(--spacing-sm) 0 0;
}
#add_payment_method #payment a, 
.woocommerce-cart #payment a, 
.woocommerce-checkout #payment a {
    box-shadow: var(--cta-shadow) !important;
    color: inherit;
}
#add_payment_method #payment a:hover, 
.woocommerce-cart #payment a:hover, 
.woocommerce-checkout #payment a:hover {
    box-shadow: var(--cta-shadow) !important;
}
#add_payment_method #payment div.form-row, 
.woocommerce-cart #payment div.form-row, 
.woocommerce-checkout #payment div.form-row {
    padding: 0;    
}
#add_payment_method #payment ul.payment_methods, 
.woocommerce-cart #payment ul.payment_methods, 
.woocommerce-checkout #payment ul.payment_methods {
    padding: 0;
    margin: 0;
    border: 0;
}
#add_payment_method #payment ul.payment_methods li, 
.woocommerce-cart #payment ul.payment_methods li, 
.woocommerce-checkout #payment ul.payment_methods li {
    line-height: inherit;
    font-weight: inherit;
}
#add_payment_method #payment ul.payment_methods li:not(:last-child), 
.woocommerce-cart #payment ul.payment_methods li:not(:last-child), 
.woocommerce-checkout #payment ul.payment_methods li:not(:last-child) {
    margin-bottom: var(--spacing-2xs);
}
#add_payment_method #payment div.payment_box, 
.woocommerce-cart #payment div.payment_box, 
.woocommerce-checkout #payment div.payment_box {
    font-size: inherit;
    line-height: inherit;
    color: var(--color-body);
    background: var(--color-gray-bright);
    padding: var(--spacing-sm);
    margin: var(--spacing-sm) 0 0;
}
#add_payment_method #payment div.payment_box::before, 
.woocommerce-cart #payment div.payment_box::before, 
.woocommerce-checkout #payment div.payment_box::before {
    border-bottom-color: var(--color-gray-bright);
}
#add_payment_method #payment div.payment_box .form-row, 
.woocommerce-cart #payment div.payment_box .form-row, 
.woocommerce-checkout #payment div.payment_box .form-row {
    margin: 0 0 calc(var(--spacing-md) - 1em);
}
#add_payment_method #payment div.payment_box input.input-text, 
#add_payment_method #payment div.payment_box textarea, 
.woocommerce-cart #payment div.payment_box input.input-text, 
.woocommerce-cart #payment div.payment_box textarea, 
.woocommerce-checkout #payment div.payment_box input.input-text, 
.woocommerce-checkout #payment div.payment_box textarea {
    border-color: var(--color-border);
    margin: 0;
}
#add_payment_method #payment div.payment_box label, 
.woocommerce-cart #payment div.payment_box label, 
.woocommerce-checkout #payment div.payment_box label {

}
#add_payment_method #payment ul.payment_methods li img, 
.woocommerce-cart #payment ul.payment_methods li img, 
.woocommerce-checkout #payment ul.payment_methods li img {
    margin: 3px;
    max-height: 20px;
    width: auto !important;
}
#add_payment_method #payment .payment_method_paypal .about_paypal, 
.woocommerce-cart #payment .payment_method_paypal .about_paypal, 
.woocommerce-checkout #payment .payment_method_paypal .about_paypal {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}
.woocommerce-checkout #payment .place-order:before,
.woocommerce-checkout #payment .place-order:after {
    content: "" !important;
    display: table !important;
    clear: both !important;
}

#omise_cc_form h3 {
    margin: 0;
    font-weight: var(--font-weight-bold);
    font-size: inherit;
}
#omise_cc_form > *:not(:last-child) {
    margin-bottom: var(--spacing-sm);
}
#omise_cc_form .omise-remember-card {
    position: relative;
    line-height: 1;
    display: inline-flex;
}
#omise_cc_form fieldset.card-exists {
    margin-top: var(--spacing-sm);
}
#omise_cc_form .omise-customer-card-list {
    border: 0;
    box-shadow: none;
}
#omise_cc_form .omise-customer-card-list:not(:last-child) {
    border-bottom: 1px solid var(--color-gray);
    padding-bottom: var(--spacing-sm);
}


.woocommerce .woocommerce-terms-and-conditions-wrapper {
	margin: var(--spacing-sm) 0 0;
    text-transform: none;
}
.woocommerce .woocommerce-terms-and-conditions-wrapper > *:not(:first-child) {
    margin-top: var(--spacing-sm);
}

.woocommerce #payment #place_order {
    margin: var(--spacing-sm) 0 0 !important;
}

.woocommerce form .form-row.woocommerce-validated .select2-container, 
.woocommerce form .form-row.woocommerce-validated input.input-text, 
.woocommerce form .form-row.woocommerce-validated select {
	border-color: inherit;
}

.woocommerce-order > *:not(:last-child),
.wpdt-wc-payment-thankyou > *:not(:last-child) {
	margin-bottom: var(--spacing-md);
}
.woocommerce ul.order_details {
	margin: 0 0 var(--spacing-md);
	padding: 0;
	display: grid;
	grid-gap: var(--spacing-sm);
	grid-template-columns: repeat(2,1fr);
	grid-auto-flow: dense;
}
.woocommerce ul.order_details:before,
.woocommerce ul.order_details:after {
	display: none;
}
.woocommerce ul.order_details li {
	font-size: var(--font-size-body-sub);
    font-weight: var(--font-weight-regular);
	line-height: var(--line-height-body);
    letter-spacing: var(--letter-spacing);
    text-transform: uppercase;
	padding: 0;
	margin: 0;
	border: 0;
	float: none;
}
.woocommerce ul.order_details li strong {
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-bold);
    letter-spacing: normal;
    text-transform: none;
    margin-top: var(--spacing-3xs);
}

.woocommerce .woocommerce-order-details__title {
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-title);
    color: inherit;
    line-height: inherit;
}
.woocommerce .woocommerce-order-details > *:not(:last-child) {
    margin-bottom: var(--spacing-sm);
}

.woocommerce #payFormCcard {
    display: flex;
    flex-wrap: wrap;
    grid-gap: var(--spacing-2xs);
}
.woocommerce #payFormCcard:not(:first-child) {
    margin-top: var(--spacing-sm);
}
.woocommerce #payFormCcard > * {
    margin: 0 !important;
}
.woocommerce #payFormCcard input {
    white-space: normal;
}

.woocommerce .woocommerce-notice--success {
    text-align: center;
    text-transform: none;
}

.woocommerce .woocommerce-customer-details .woocommerce-column__title {
    font-size: inherit !important;
}
.woocommerce .woocommerce-customer-details .woocommerce-column__title:not(:last-child) {
    margin-bottom: 15px;
}
.woocommerce .woocommerce-customer-details address {
    border: 0;
    border-radius: 0;
    padding: 0;
}

.woocommerce table.shop_table.wpdt-wc-payment-table tbody tr > *,
.woocommerce table.shop_table.wpdt-wc-payment-table tbody tr > * > *,
.woocommerce table.shop_table.wpdt-wc-payment-table tbody tr > * > * > * {
	color: inherit !important;
}


form.form-wpdt-wc-payment:after {
	content: "";
	display: table;
	clear: both;
}
form.form-wpdt-wc-payment h3,
form.form-wpdt-wc-payment h4,
form.form-wpdt-wc-payment .payment-info-remark label {
    display: block;
    font-family: inherit;
	font-size: inherit;
    line-height: inherit;
    font-weight: normal;
	text-transform: none;
    border-bottom: 1px solid rgba(0,0,0,0.3);
    padding-bottom: 10px;
    margin-bottom: 15px !important;
}

form.form-wpdt-wc-payment .input input,
form.form-wpdt-wc-payment .input textarea {
    width: 100% !important;
    max-width: 100% !important;
    height: 35px;
    padding: 5px 0;
    border: 0;
    border-radius: 0;
    background: none;
    border-bottom: 1px solid rgba(0,0,0,0.3);
}
form.form-wpdt-wc-payment span.required {
    position: absolute;
    top: 0; right: 0;
    line-height: 35px;
}
form.form-wpdt-wc-payment .reset {
    display: block;
    height: auto;
    padding: 0;
    margin: 15px 0 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    font-size: inherit;
    text-transform: none;
}

form.form-wpdt-wc-payment > *[class*="payment-info-"]:not(:last-child) {
	margin-bottom: 50px;
}
form.form-wpdt-wc-payment table {
    margin: 0;
}
form.form-wpdt-wc-payment table.shop_table tbody tr > * {
    padding: 0;
}
form.form-wpdt-wc-payment table.shop_table .thead {
    width: auto;
    text-align: left;
    vertical-align: middle !important;
}
form.form-wpdt-wc-payment table.shop_table .thead label .choice-name:before,
form.form-wpdt-wc-payment table.shop_table .thead label .choice-name:after{
    top: 50%;
    transform: translateY(-50%);
}
form.form-wpdt-wc-payment table.shop_table.wpdt-wc-payment-table-banks tr > * {
    color: inherit;
    vertical-align: baseline;
    padding-left: 0;
    padding-right: 0;
}
form.form-wpdt-wc-payment table.shop_table.wpdt-wc-payment-table-banks tr > *:not(:last-child) {
    padding-right: 20px;
}
form.form-wpdt-wc-payment table.shop_table.wpdt-wc-payment-table-banks .wpdt_wc_payment_form_bank_name {
    color: inherit !important;
}

form.form-wpdt-wc-payment table.wpdt-wc-payment-table:not(.wpdt-wc-payment-table-banks),
form.form-wpdt-wc-payment table.wpdt-wc-payment-table:not(.wpdt-wc-payment-table-banks) tbody,
form.form-wpdt-wc-payment table.wpdt-wc-payment-table:not(.wpdt-wc-payment-table-banks) tr,
form.form-wpdt-wc-payment table.wpdt-wc-payment-table:not(.wpdt-wc-payment-table-banks) tr > * {
    display: block;
}
form.form-wpdt-wc-payment table.wpdt-wc-payment-table:not(.wpdt-wc-payment-table-banks) tr {
    display: flex;
    align-items: baseline;
}
form.form-wpdt-wc-payment table.wpdt-wc-payment-table:not(.wpdt-wc-payment-table-banks) tr:not(:last-child) {
    margin-bottom: 15px;
}
form.form-wpdt-wc-payment table.wpdt-wc-payment-table:not(.wpdt-wc-payment-table-banks) tr th {
    width: 150px;
    padding-right: 15px;
}
form.form-wpdt-wc-payment table.wpdt-wc-payment-table:not(.wpdt-wc-payment-table-banks) tr td {
    flex: 1;
}
form.form-wpdt-wc-payment table.wpdt-wc-payment-table:not(.wpdt-wc-payment-table-banks) tr td > * {
    width: 100%;
}

form.form-wpdt-wc-payment .payment-info-remark label {
    display: none;
}

@media (min-width:769px) {
    
    .woocommerce table.shop_table tr > .product-price,
    .woocommerce table.shop_table tr > .product-quantity,
    .woocommerce table.shop_table tr > .product-subtotal {
        width: 15%;
        white-space: nowrap;
    }
    .woocommerce table.shop_table tr > .product-quantity {
        text-align: center;
    }
    .woocommerce table.shop_table tr > .product-subtotal {
        text-align: right;
    }
    .woocommerce table.cart tbody tr > * {
        vertical-align: middle;
    }
    .woocommerce table.cart tfoot td.actions [name="update_cart"] {
        margin-top: 0 !important;
        position: absolute !important;
        top: var(--spacing-sm);
        right: 0;
    }

    .woocommerce .cart-collaterals .cart_totals,
    .woocommerce #payment #place_order,
    .woocommerce-checkout #order_review .ppc-button-wrapper {
        width: calc(50% - var(--spacing-container)) !important;
        max-width: 100%;
        margin-left: auto;
    }
    
}

@media (max-width:991px) {

    .woocommerce .woocommerce-form-coupon {
        width: 100%;
    }

    .woocommerce .woocommerce-customer-details .col2-set > [class*="col-"]:not(:last-child) {
        margin-bottom: var(--spacing-md);
    }
    
}

@media (max-width:768px) {

    .woocommerce form .form-row-first, 
    .woocommerce form .form-row-last {
        width: 100%;
    }
    
    .woocommerce table.shop_table_responsive tr:not(:last-child) {
        border: 0;
        margin: 0;
        padding: 0;
        margin-bottom: var(--spacing-sm);
        padding-bottom: var(--spacing-sm);
        border-bottom: 1px solid var(--color-border);
    }
    .woocommerce table.shop_table_responsive tr > * {
        border-bottom: 0;
    }
    .woocommerce table.shop_table_responsive tr td {
        border: 0;
        background: none; 
        display: flex;
        align-items: baseline;
    }
    .woocommerce table.shop_table_responsive tr td:before,
    .woocommerce table.shop_table_responsive.cart tr > td:before {
        content: attr(data-title);
        float: none;
        width: 125px;
        padding-right: var(--spacing-xs);
        font-weight: var(--font-weight-bold);
        text-align: left;
        text-transform: none;
    }
    .woocommerce table.shop_table_responsive tr:nth-child(2n) td,
    .woocommerce table.shop_table_responsive.cart tr:nth-child(2n) td {
        background: none;    
    }
    
    .woocommerce table.shop_table_responsive.cart thead {
        display: block !important;
        padding-bottom: var(--spacing-2xs);
        margin-bottom: var(--spacing-sm);
        border-bottom: 1px solid var(--color-border);
    }
    .woocommerce table.shop_table_responsive.cart thead tr {
        display: grid !important;
		grid-gap: var(--spacing-3xs) var(--spacing-xs);
		grid-template-columns: auto 1fr auto;
    }
    .woocommerce table.shop_table_responsive.cart thead tr > * {
        display: none !important;
        padding: 0 !important;
    } 
    .woocommerce table.shop_table_responsive.cart thead tr > *.product-remove {
        display: block !important;
        grid-row: 1;
        grid-column: 1;
        min-width: 11px;
    }
    .woocommerce table.shop_table_responsive.cart thead tr > *.product-name {
        display: block !important;
        grid-row: 1;
        grid-column: 2;
    }
    .woocommerce table.shop_table_responsive.cart thead tr > *.product-subtotal {
        display: block !important;
        grid-row: 1;
        grid-column: 3;
        justify-self: flex-end;
    }
	.woocommerce table.shop_table_responsive.cart tr > td {
		border: 0;
		padding-left: 0;
		padding-right: 0;
	}
	.woocommerce table.shop_table_responsive.cart tr > td:not(:last-child) {
	    padding-right: 0;
	}
	.woocommerce table.shop_table_responsive.cart tr > td:before {
		width: 25%;
		text-align: left;
	}
    
	.woocommerce table.shop_table_responsive.cart .cart_item {
		display: grid;
		grid-gap: var(--spacing-3xs) var(--spacing-xs);
		grid-template-columns: auto auto 1fr auto;
		grid-template-rows: auto auto 1fr;
		padding: 0 0 var(--spacing-sm);
	}
	.woocommerce table.shop_table_responsive.cart .cart_item > * {
		padding: 0;
	}
    .woocommerce table.shop_table_responsive.cart .cart_item > td {
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left !important;
    }
	.woocommerce table.shop_table_responsive.cart .cart_item > td:before {
        display: none;
	}
    .woocommerce table.shop_table_responsive.cart .cart_item:nth-last-child(2) {
        border-bottom: 0;
        margin-bottom: 0;
    }
	.woocommerce table.shop_table_responsive.cart .product-remove {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
		grid-row: 1 / span 3;
        align-self: center;
	}
	.woocommerce table.shop_table_responsive.cart .product-thumbnail {
		display: block;
		width: 60px;
		grid-row: 1 / span 3;
		grid-column: 2;
	}
	.woocommerce table.shop_table_responsive.cart .product-thumbnail:before {
		display: none;
	}
    .woocommerce table.shop_table_responsive.cart .product-name {
        flex-direction: column;
        grid-row: 1;
		grid-column: 3;
    }
    .woocommerce table.shop_table_responsive.cart .product-name .variation {
        margin: 0;
    }
    .woocommerce table.shop_table_responsive.cart .product-price {
        grid-row: 2;
		grid-column: 3;
    }
    .woocommerce table.shop_table_responsive.cart .product-quantity {
        grid-row: 3;
		grid-column: 3;
        align-self: end;
    }
    .woocommerce table.shop_table_responsive.cart .product-quantity .quantity-container {
        margin-left: 0;
    }
    .woocommerce table.shop_table_responsive.cart .product-subtotal {
        grid-row: 1 / span 3;
        grid-column: 4;
        align-self: end;
    }
    
    .woocommerce table.shop_table_responsive.cart tr > td.actions {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        grid-gap: var(--spacing-2xs);
        padding: var(--spacing-container);
        background: var(--color-gray-bright);
        color: var(--color-black);
        margin-top: var(--sc-spacing-y-resize);
    }
    .woocommerce table.shop_table_responsive.cart tr > td.actions > * {
        width: 100% !important;
        margin: 0 auto;
        padding: 0;
    }
    .woocommerce table.shop_table_responsive.cart tr > td.actions .coupon {
        width: 100% !important;
    }

    .woocommerce .cart-collaterals > *:not(:first-child) {
        margin-top: var(--spacing-sm);
        padding-top: var(--spacing-sm);
        border-top: 1px solid var(--color-border);
    }
	
	.woocommerce .cart_totals table.shop_table_responsive tr {
		border-top: 0;
	}
	.woocommerce .cart_totals table.shop_table_responsive tr:last-child {
		border-bottom: 0;
	}
	.woocommerce .cart_totals table.shop_table_responsive tr > td {
		text-align: right !important;
	}
	
    .woocommerce #content table.cart td.actions .coupon .button, 
    .woocommerce #content table.cart td.actions .coupon .input-text, 
    .woocommerce #content table.cart td.actions .coupon input, 
    .woocommerce table.cart td.actions .coupon .button, 
    .woocommerce table.cart td.actions .coupon .input-text, 
    .woocommerce table.cart td.actions .coupon input {
        width: auto;
    }

    .woocommerce .woocommerce-terms-and-conditions-wrapper {
        text-align: left;
    }

    .woocommerce .wc-proceed-to-checkout .button,
    .woocommerce #payment #place_order {
        width: 100% !important;
    }

    .woocommerce table.shop_table:not(.shop_table_responsive) .product-name-wrap {
        grid-template-columns: 60px 1fr;
    }
}

@media (max-width:767px) {
    
    .woocommerce ul.order_details {
        grid-template-columns: 100%;
    }

    form.form-wpdt-wc-payment table {
        border: 0;
    }
    form.form-wpdt-wc-payment .wpdt-wc-payment-table.shop_table tr > * {
        background: 0;
        padding: 0;
        border: 0;
    }
    form.form-wpdt-wc-payment .wpdt-wc-payment-table.wpdt-wc-payment-table-banks.shop_table tr {
        display: grid;
        grid-gap: 5px 20px;
        grid-template-columns: auto 1fr;
    }
    form.form-wpdt-wc-payment .wpdt-wc-payment-table.wpdt-wc-payment-table-banks.shop_table tr > td {
        padding: 0;
        border: 0;
        background: none;
        grid-column: 2;
    }
    form.form-wpdt-wc-payment .wpdt-wc-payment-table.wpdt-wc-payment-table-banks.shop_table tr > .thead {
        position: static;
        width: auto;
        margin: 0;
        line-height: normal;
        grid-column: 1;
        grid-row: 1 / span 3;
    }


    .woocommerce table.shop_table:not(.shop_table_responsive),
    .woocommerce table.shop_table:not(.shop_table_responsive) > *,
    .woocommerce table.shop_table:not(.shop_table_responsive) > * > *,
    .woocommerce table.shop_table:not(.shop_table_responsive) > * > * > * {
        display: block;
    }
    .woocommerce table.shop_table:not(.shop_table_responsive) thead {
        display: none !important;
    }
    .woocommerce table.shop_table:not(.shop_table_responsive) tr > * {
        width: 100%;
        border: 0 !important;
    }
    .woocommerce table.shop_table:not(.shop_table_responsive) tr {
        border-bottom: 1px solid var(--color-border);
    }
    .woocommerce table.shop_table:not(.shop_table_responsive) tr,
    .woocommerce table.shop_table:not(.shop_table_responsive) tfoot > tr {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-gap: 0 var(--spacing-sm);
        align-items: center;
    }
    .woocommerce table.shop_table:not(.shop_table_responsive) tfoot > tr > th {
        align-self: center;
    }
	
}


/*========== DASHBOARD:START ==========*/
*[data-section="wc-dashboard"] .woocommerce:before,
*[data-section="wc-dashboard"] .woocommerce:after {
    display: none;
}
*[data-section="wc-dashboard"] .woocommerce {
    margin: 0;
}
*[data-section="wc-dashboard"] .woocommerce > * {
    width: 100%;
    float: none;
    clear: both;
}
*[data-section="wc-dashboard"] .woocommerce > *:not(:last-child) {
    margin-bottom: var(--sc-spacing-y-resize);
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-navigation {
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    text-transform: none;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-navigation li {
    margin: 0;
    text-align: left;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-navigation li a {
    padding: 0 !important;
    display: inline !important;
    text-decoration: none !important;
    box-shadow: none !important;
    position: relative;
    color: inherit;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-navigation li a:hover,
*[data-section="wc-dashboard"] .woocommerce-MyAccount-navigation li.is-active a {
    color: var(--color-body);
    opacity: 1;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-navigation li.is-active a {
    font-weight: var(--font-weight-bold);
    cursor: default;
}

*[data-section="wc-dashboard"] .woocommerce-MyAccount-content h2,
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content h3,
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content h4,
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content legend,
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content strong {
    color: inherit;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-Address-title {
    position: relative;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-Address-title .edit {
    color: var(--color-body);
    position: absolute;
    z-index: 1;
    right: 0; top: 50%;
    transform: translateY(-50%);
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content h2,
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content h3,
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content h4,
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content form h3,
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content form legend {
    display: block;
    margin: 0;
    padding: 0;
    font: inherit;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-title);
    text-transform: none;
    line-height: var(--line-height-body);
    color: inherit;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content a:not(.button) {
    box-shadow: var(--cta-shadow);
    color: inherit;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content a:not(.button):hover {
    box-shadow: var(--cta-shadow);
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-order-details__title,
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-Address-title,
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content form h3,
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content form legend {
    margin-bottom: var(--spacing-2xs);
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content > *:not(:last-child) {
    margin-bottom: var(--spacing-sm);
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content form [type="submit"] {
    margin-top: var(--spacing-md);
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content table .button:not(:last-child) {
    margin-right: var(--spacing-md);
}

*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-Addresses,
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-columns--addresses {
    display: block;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-Addresses > *[class*="saw-"] {
    font-size: var(--font-size-body);
    text-transform: uppercase;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-Addresses > *[class*="saw-"] a {
    font-size: inherit;
    line-height: normal;
    display: inline-block;
    vertical-align: top;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-Addresses > *:not(:first-child) {
    margin-top: var(--spacing-xs);
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-Addresses > br:first-child + * {
    margin-top: 0;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-Address address > br:nth-last-child(2) {
    display: none;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-Addresses + .woocommerce-Addresses,
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-columns--addresses > .woocommerce-column + .woocommerce-column {
    margin-top: var(--spacing-md);
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-Address,
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-columns--addresses > .woocommerce-column {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid;
    border-radius: var(--radius);
    overflow: hidden;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-Address .woocommerce-Address-title {
    margin: 0;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-Address .woocommerce-Address-title > * {
    font-size: var(--font-size-body);
    text-transform: uppercase;
    margin-bottom: var(--spacing-2xs);
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-Address .woocommerce-Address-title > *:empty {
    display: none;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-Address address > *[class*="-actions"] {
    font-size: 0;
    line-height: normal;
    display: flex;
    flex-wrap: wrap;
    margin-top: var(--spacing-sm);
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-Address address > *[class*="-actions"] > *:not(:last-child) {
    margin-right: var(--spacing-md);
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-Address address > *[class*="-actions"] a,
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-Address address > *[class*="-actions"] span {
    margin: 0;
    display: inline;
    font-size: var(--font-size-body);
    text-transform: uppercase;
    color: inherit !important;
}

*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-columns--addresses > .woocommerce-column .woocommerce-column__title:not(:last-child) {
    margin-bottom: var(--spacing-2xs);
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-customer-details--email, 
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-customer-details--phone {
    padding-left: 0;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-customer-details--email:before, 
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-customer-details--phone:before {
    display: none !important;
}

*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset:not(:first-child) {
    margin-top: var(--spacing-md);
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-order-details:not(:first-child),
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-customer-details:not(:first-child) {
    margin-top: var(--spacing-md);
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-order-details:last-child,
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content .woocommerce-customer-details:last-child {
    margin-bottom: 0;
}

*[data-section="wc-dashboard"] .woocommerce-MyAccount-content table {
    font-size: inherit;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content table thead tr > * {
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    color: var(--color-gray);
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content table.my_account_orders {
    text-transform: uppercase;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content table.my_account_orders a {
    line-height: normal;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content table.my_account_orders .button {
    display: inline !important;
    vertical-align: baseline !important;
    height: auto !important;
    width: auto !important;
    min-width: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: none !important;
    color: inherit !important;
    opacity: 1 !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    box-shadow: var(--cta-shadow) !important;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content table.my_account_orders .button:hover {
    opacity: var(--opacity) !important;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content table.my_account_orders tr > *[class*="-order-tracking"] {
    display: none !important;
}

*[data-section="wc-dashboard"] .woocommerce-MyAccount-content table.order_details tr > * {
    border: 0 !important;
    border-bottom: 1px solid var(--color-border) !important;
    padding: var(--spacing-sm) var(--spacing-3xs) !important;
    text-align: left;
    vertical-align: baseline;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content table.order_details thead tr > * {
    padding-top: var(--spacing-2xs) !important;
    padding-bottom: var(--spacing-2xs) !important;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content table.order_details tr > *:first-child {
    width: 60%;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content table.order_details tr > *:first-child {
    padding-left: 0 !important;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content table.order_details tr > *:last-child {
    padding-right: 0 !important;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content table.order_details > *:first-child > tr:first-child > * {
    padding-top: 0 !important;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content table.order_details tfoot tr:not(:first-child) > * {
    padding-top: 0 !important;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content table.order_details tfoot tr:not(:last-child) > * {
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content table.order_details tfoot {
    text-transform: uppercase;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content table.order_details tfoot tr:last-child > * {
    font-weight: var(--font-weight-bold);
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content table.order_details .product-name a:not(.button):not(:hover) {
    box-shadow: none;
}
*[data-section="wc-dashboard"] .woocommerce-MyAccount-content table.order_details .product-name .wc-item-meta {
    font-size: var(--font-size-xs);
}

@media (min-width:768px) {

    *[data-section="wc-dashboard"] .woocommerce-MyAccount-content table tr > * {
        padding: var(--spacing-sm) var(--spacing-3xs);
        border-bottom: 1px solid var(--color-border);
        text-align: left;
        vertical-align: baseline;
    }
    *[data-section="wc-dashboard"] .woocommerce-MyAccount-content table thead tr > * {
        padding-top: var(--spacing-2xs);
        padding-bottom: var(--spacing-2xs);
    }
    *[data-section="wc-dashboard"] .woocommerce-MyAccount-content table tr > *:first-child {
        padding-left: 0;
    }
    *[data-section="wc-dashboard"] .woocommerce-MyAccount-content table tr > *:last-child {
        padding-right: 0;
    }
    *[data-section="wc-dashboard"] .woocommerce-MyAccount-content table > *:first-child > tr:first-child > * {
        padding-top: 0;
    }
    *[data-section="wc-dashboard"] .woocommerce-MyAccount-content table.my_account_orders .button {
        display: block !important;
        width: -webkit-max-content !important;
        width: -moz-max-content !important;
        width: max-content !important;
        max-width: 100% !important;
    }
    *[data-section="wc-dashboard"] .woocommerce-MyAccount-content table.my_account_orders .button:not(:last-child) {
        margin-right: 0 !important;
        margin-bottom: var(--spacing-3xs) !important;
    }
    
}

@media (min-width:992px) {
    
    *[data-section="wc-dashboard"] .woocommerce > *:not(:last-child) {
        margin-bottom: 0 !important;
    }

    *[data-section="wc-dashboard"] .entry-plugin > .woocommerce {
        display: flex;
        grid-gap: var(--spacing-md);
    }
    *[data-section="wc-dashboard"] .entry-plugin > .woocommerce > *:not(:first-child) {
        margin-top: 0;
    }
    *[data-section="wc-dashboard"] .entry-plugin > .woocommerce > .woocommerce-MyAccount-navigation {
        width: 200px;
    }
    *[data-section="wc-dashboard"] .entry-plugin > .woocommerce > .woocommerce-MyAccount-content {
        flex: 1;
        margin-left: auto;
        margin-right: auto;
    }

    *[data-section="wc-dashboard"] .entry-plugin > .woocommerce > .woocommerce-MyAccount-navigation > * {
        height: -webkit-max-content;
        height: -moz-max-content;
        height: max-content;
        position: -webkit-sticky;
        position: sticky;
        z-index: 3;
        top: calc(var(--header-height) + var(--spacing-md));
        transition: top var(--duration) var(--timing-function);
    }
    html.page-scrolling--down *[data-section="wc-dashboard"] .entry-plugin > .woocommerce > .woocommerce-MyAccount-navigation > * {
        top: var(--spacing-md);
    }
    
    *[data-section="wc-dashboard"] .woocommerce-MyAccount-navigation .swiper-wrapper {
        transform: none !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }
    *[data-section="wc-dashboard"] .woocommerce-MyAccount-navigation .swiper-slide {
        padding: 0 !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        white-space: normal !important;
        flex: 0 !important;
    }
    *[data-section="wc-dashboard"] .woocommerce-MyAccount-navigation .swiper-slide:not(:first-child) {
        margin-top: var(--spacing-3xs) !important;
    }

}

@media (max-width:991px) {

    *[data-section="wc-dashboard"] .woocommerce-MyAccount-navigation {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        padding-left: var(--spacing-container) !important;
        padding-right: var(--spacing-container) !important;
        overflow: hidden;
    }
    *[data-section="wc-dashboard"] .woocommerce-MyAccount-navigation .swiper-container {
        overflow: visible;
        justify-content: space-between;
    }
    *[data-section="wc-dashboard"] .woocommerce-MyAccount-navigation .swiper-slide {
        flex: none;
    }
    *[data-section="wc-dashboard"] .woocommerce-MyAccount-navigation .swiper-slide:not(:last-child) {
        padding-right: var(--spacing-md);
    }
    
    .os-container .os-row  {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding-left: var(--spacing-container);
        padding-right: var(--spacing-container);
    }
}

@media (max-width:768px) {

    *[data-section="wc-dashboard"] .woocommerce-MyAccount-content table tr > * {
        padding: 0;
    }
    *[data-section="wc-dashboard"] .woocommerce-MyAccount-content table tr > *:not(:last-child) {
        margin-bottom: var(--spacing-2xs);
    }
    *[data-section="wc-dashboard"] .woocommerce-MyAccount-content table tr > *:first-child {
        padding-left: 0;
    }
    *[data-section="wc-dashboard"] .woocommerce-MyAccount-content table tr > *:last-child {
        padding-right: 0;
    }
    *[data-section="wc-dashboard"] .woocommerce-MyAccount-content table > *:last-child tr:last-child > * {
        padding-bottom: 0;
    }
    *[data-section="wc-dashboard"] .woocommerce-MyAccount-content table > *:first-child > tr:first-child > * {
        padding-top: 0;
    }

    *[data-section="wc-dashboard"] .woocommerce-MyAccount-content table.my_account_orders.shop_table_responsive tr td:before {
        flex: 1;
    }
    *[data-section="wc-dashboard"] .woocommerce-MyAccount-content table.my_account_orders.shop_table_responsive tr td > .woocommerce-Price-amount {
        margin-right: 0.35em;
    }
}
/*========== DASHBOARD:END ==========*/


/*========== ACCOUNT:START ==========*/
*[data-section="wc-account"] .sociallogin {
    margin-top: var(--spacing-md);
}

@media (max-width:767px) {

    *[data-section="wc-account"] .ur-frontend-form .action .submit-wrapper .button {
        width: 100% !important;
    }
    *[data-section="wc-account"] div.nsl-container.nsl-container-block .nsl-container-buttons {
        flex-direction: column;
    }
    *[data-section="wc-account"] div.nsl-container.nsl-container-block .nsl-container-buttons a {
        width: 100%;
    }

}
/*========== ACCOUNT:END ==========*/


/*========== PAGINATION ==========*/
.wp-pagenavi {
    margin: 0;
    padding: var(--spacing-sm) 0 0;
    border-top: 1px  solid var(--color-border);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: var(--spacing-2xs) var(--spacing-sm);
    font-weight: var(--font-weight-body);
    font-size: var(--font-size-lg);
    line-height: inherit;
    color: inherit;
    text-align: center;
}
.wp-pagenavi:not(:first-child) {
    margin-top: var(--sc-spacing-y);
}
.wp-pagenavi > span.pages {
    display: none;
}
.wp-pagenavi a:hover {
    color: var(--color-body);
}
.wp-pagenavi > * {
    text-decoration: none !important;
    box-shadow: none !important;
    position: relative;
    display: block;
    text-align: center;
    height: auto;
    width: auto;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
    color: inherit;
    opacity: 1;
}
.wp-pagenavi > *.current {
    opacity: 1;
    color: var(--color-body);
}
.wp-pagenavi > *[class*="postslink"] {
    margin: 0;
    padding: 0;
    border: 0;
    opacity: 1;
    font-size: 0;
    display: inline-flex;
    vertical-align: top;
    align-items: center;
    position: static;
    z-index: 1;
    top: 0;
}
.wp-pagenavi > .previouspostslink {
    left: 0;
    justify-content: flex-start;
}
.wp-pagenavi > .nextpostslink {
    right: 0;
    justify-content: flex-end;
}
.wp-pagenavi > .previouspostslink:before,
.wp-pagenavi > .nextpostslink:after {
    font-family: 'iconfont';
    font-weight: normal;
    font-size: var(--font-size-lg);
}
.wp-pagenavi > .previouspostslink:before {
    content: "\e909";
    transform: translateX(-0.2em);
}
.wp-pagenavi > .nextpostslink:after {
    content: "\e90a";
    transform: translateX(0.2em);
}

.woocommerce nav.woocommerce-pagination {
    font: inherit;
    line-height: inherit;
    color: inherit;
    text-align: inherit;
    padding: var(--spacing-sm) 0 0;
    border-top: 1px  solid var(--color-border);
}
.woocommerce nav.woocommerce-pagination:not(:first-child) {
    margin-top: var(--sc-spacing-y);
}
.woocommerce nav.woocommerce-pagination ul {
    border: 0;
    padding: 0;
    margin: 0;
}
.woocommerce nav.woocommerce-pagination ul li {
    border: 0;
    padding: 0;
    margin: 0;
    float: none;
    display: inline;
    overflow: visible;
}
.woocommerce nav.woocommerce-pagination ul li a, 
.woocommerce nav.woocommerce-pagination ul li span {
    text-decoration: none !important;
    box-shadow: none !important;
    padding: 0;
    margin: 0;
    min-width: 0;
    display: block;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}
.woocommerce nav.woocommerce-pagination ul li a:focus, 
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: none;
    color: inherit;
}
.woocommerce .woocommerce-pagination ul.page-numbers {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: var(--spacing-2xs) var(--spacing-sm);
    font-weight: var(--font-weight-body);
    font-size: var(--font-size-lg);
    line-height: inherit;
    color: inherit;
    text-align: center;
}
.woocommerce .woocommerce-pagination ul.page-numbers:after, 
.woocommerce .woocommerce-pagination ul.page-numbers:before {
    display: none !important;
}
.woocommerce .woocommerce-pagination ul.page-numbers li {
    display: block;
}
.woocommerce .woocommerce-pagination ul.page-numbers li > * {
    text-decoration: none !important;
    box-shadow: none !important;
    position: relative;
    display: block;
    text-align: center;
    height: auto;
    width: auto;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
    color: inherit;
    opacity: 1;
}
.woocommerce .woocommerce-pagination ul.page-numbers li > *.current {
    opacity: 1;
}
.woocommerce .woocommerce-pagination ul.page-numbers li > *:hover,
.woocommerce .woocommerce-pagination ul.page-numbers li > *.current {
    color: var(--color-body);
}
.woocommerce .woocommerce-pagination ul.page-numbers li > *.prev,
.woocommerce .woocommerce-pagination ul.page-numbers li > *.next {
    margin: 0;
    padding: 0;
    border: 0;
    opacity: 1;
    font-size: 0;
    display: inline-flex;
    vertical-align: top;
    align-items: center;
    position: static;
    z-index: 1;
    top: 0;
}
.woocommerce .woocommerce-pagination ul.page-numbers li > *.prev {
    left: 0;
    justify-content: flex-start;
}
.woocommerce .woocommerce-pagination ul.page-numbers li > *.next {
    right: 0;
    justify-content: flex-end;
}
.woocommerce .woocommerce-pagination ul.page-numbers li > *.prev:before,
.woocommerce .woocommerce-pagination ul.page-numbers li > *.next:after {
    font-family: 'iconfont';
    font-weight: normal;
    font-size: var(--font-size-lg);
}
.woocommerce .woocommerce-pagination ul.page-numbers li > *.prev:before {
    content: "\e909";
    transform: translateX(-0.2em);
}
.woocommerce .woocommerce-pagination ul.page-numbers li > *.next:after {
    content: "\e90a";
    transform: translateX(0.2em);
}
