@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

/* Setup
======================================================= */
html {
    margin: 0;
    padding: 0;
    border: 0;
    line-height: 1.4;
    -webkit-tap-highlight-color: transparent;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%; 
    word-break: break-word;
}
body {
    font-family: 'Montserrat', sans-serif;
    font-feature-settings: 'lnum' 1;
    font-size: 12px;
    background-color: #fff;
    color: #000;
    font-weight: normal;
    position: relative;
    margin: 0;
    overflow-x: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    animation: fadein 2s;
    -webkit-animation: fadein 2s;
}
@keyframes fadein {
    from { opacity: 0; }  
    to { opacity: 1; }
}
@-webkit-keyframes fadein {
    from { opacity: 0; }  
    to { opacity: 1; }
}
*,
:before,
:after {
    box-sizing: border-box;
    outline: 0;
}
::-webkit-scrollbar {
    display: none;
}
article, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}
h1, h2, h3, h4, h5, h6, p {
    font-weight: normal;
    margin: 0;
}
b, strong {
    font-weight: 700;
}
ul, ol, li {
    list-style: none;
    margin: 0;
    padding: 0;
}
a, a:hover, a:focus {
    text-decoration: none;
    color: inherit;
    background-color: transparent;
    pointer-events: auto;
    outline: 0;
}
a[href^=tel] {
    white-space: nowrap;
}
a[href^=mailto] {
    word-break: break-word;
}
a, button, [role="button"] {
    cursor: pointer;
}
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
img {
    border: 0;
    outline: 0;
    max-width: 100%;
    height: auto;
}
figure {
    margin: 0;
}
iframe {
    border: 0;
}
table {
    border-collapse: collapse;
}
fieldset {
    border-width: 1px;
}
.is-device * {
    background-attachment: scroll;
}
mark {
    background-color: transparent;
}





/* Form
======================================================= */
input,
select,
textarea,
button,
optgroup {
    font-family: inherit;
    font-size: 100%;
    line-height: normal;
    padding: 0;
    margin: 0;
    outline: 0;
    border-radius: 0;
    border: 0;
    color: inherit;
    background: transparent;
    width: 100%;
}
button,
input {
    overflow: visible;
}
button,
select {
    text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}
[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
    width: auto;
    height: auto !important;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
    -webkit-appearance: none;
    margin: 0;
}
[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
.input input:not([type=submit]),
.input textarea {
    height: 35px;
    line-height: 35px;
    padding: 0;
    border-bottom: 1px solid #b2b2b2;
}
.input input:not([type=submit]):focus,
.input textarea:focus {
    border-color: #000;
}
.input textarea {
    resize: none;
    overflow: auto;
    display: block;
    width: 100% !important;
    min-width: 100%;
    max-width: 100%;
    min-height: 90px;
}
.form fieldset {
    border: 0;
    padding: 0;
    margin: 0;
}
.field {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    position: relative;
}
.input {
    position: relative;
    text-align: left;
}
.input .label {
    padding: 0;
    border-radius: 0;
    position: relative;
    display: block;
    margin-bottom: 2px;
}
.input .label.anim {
    margin: 0;
    display: inline-block;
    vertical-align: top;
    line-height: 35px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    text-transform: uppercase;
}
.input .label.anim.fixed {
    line-height: 1;
    top: 12px;
}
.input.filled .label.anim:not(.fixed) {
    opacity: 0;
    visibility: hidden;
}
.input.filled .label.anim.fixed {
    font-size: 10px;
    top: -8px;
}
.input.filled input,
.input.filled textarea,
.input.filled select {
    color: #000;
    font-weight: 500;
}
.input.filled input[type="password"] {
    letter-spacing: 2px;
}
.field.for-file .label {
    font-size: 10px;
}
.field.for-file input {
    padding: 5px 0;
}
input[type=file] {
    line-height: 35px;
}
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
    background-color: #fff;
    border: solid 1px #b2b2b2;
    outline: 0;
}
.is-device select {
    -moz-appearance: none;
    -webkit-appearance: none;
    background: url(../img/icon_arrow.svg) no-repeat calc(100% - 10px) 12px / 1em;
    border-radius: 0;
    border: solid 1px #000;
    padding: 0 20px 0 10px;
    height: 35px;
    text-transform: uppercase;
    font-weight: 500;
}






/* Select2
======================================================= */
.select2,
.select2-dropdown {
    outline: 0 !important;
}
.select2-container--default .select2-selection--single,
.select2-dropdown {
    outline: 0;
    border-radius: 0;
    border: solid 1px rgba(0, 0, 0, 0.1);
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #000;
    font-weight: 700;
}
.select2-container--default .select2-selection--single {
    height: 35px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 33px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 33px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-top-color: transparent;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-bottom-color: transparent;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    font-weight: 700;
    background-color: #fff;
    color: #000;
}
.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #fff;
}
.select:not(.search) .select2-search--dropdown { 
    display: none; 
}

/* Change arrow */
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    position: static;
    top: auto;
    left: auto;
    margin: auto;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b:after {
    font-family: 'icomoon' !important;
    content: "\e901";
    position: absolute;
    top: 9px;
    right: 10px;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b:after {
    content: "\e900";
}





/* Swiper
======================================================= */
.swiper-button-next,
.swiper-button-prev {
    background: url(../img/icon_next.svg) no-repeat center;
    background-size: 15px;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 100;
    transform: translateY(-50%);
    margin-top: 0;
    border: solid 1px #000;
    background-color: #ff0000;
}
.swiper-button-prev {
    background: url(../img/icon_prev.svg) no-repeat center;
    background-size: 15px;
    right: auto;
    left: 0;
    background-color: #edff38;
}
.swiper-button-next:after, 
.swiper-button-prev:after {
    display: none;
}
.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}
.swiper-container-fade .swiper-slide:not(.swiper-slide-active) * {
    pointer-events: none;
}





/* Fancybox
======================================================= */
.fancybox-button {
    background: none;
    height: 30px;
    width: 30px;
    padding: 3px;
}
.fancybox-button--arrow_right svg,
.fancybox-button--arrow_left svg {
    display: none;
}
.fancybox-navigation .fancybox-button {
    top: calc(50% - 15px);
}
.fancybox-navigation .fancybox-button--arrow_right,
.fancybox-navigation .fancybox-button--arrow_left {
    padding: 0;
    border: solid 1px #000;
    width: 30px;
    height: 30px;
}
.fancybox-navigation .fancybox-button--arrow_right {
    background: url(../img/icon_next.svg) no-repeat center;
    background-size: 15px;
    right: 0;
    background-color: #ff0000;
}
.fancybox-navigation .fancybox-button--arrow_left {
    background: url(../img/icon_prev.svg) no-repeat center;
    background-size: 15px;
    left: 0;
    background-color: #edff38;
}
.fancybox-button[disabled] {
    display: none;
}
.fancybox-slide {
    overflow: inherit;
}
.fancybox-show-infobar .fancybox-infobar {
    display: none;
}
.fancybox-content {
    overflow: unset;
}
.fancybox-close-small {
    border: solid 1px #000;
    opacity: 1;
    right: -30px !important;
    top: -1px !important;
    padding: 3px !important;
}
.fancybox-close-small:hover svg path {
    fill: #fff100 !important;
}






/* Plyr 
======================================================= */
.plyr__video-wrapper {
    height: 100%;
}
.plyr .player {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}
.plyr--video .plyr__time {
    font-size: 11px;
}
.plyr--video .plyr__controls {
    padding: 35px 45px;
}
.plyr--video .plyr__control {
    padding: 0;
}
.plyr--video .plyr__control svg {
    margin: 0 auto;
    transform: scale(0.7);
}
.plyr--video .plyr__control svg:hover {
    color: #fff;
}
.plyr--video .plyr__control--overlaid {
    width: auto;
    height: auto;
    line-height: 1;
    min-width: 0;
    padding: 0;
    text-align: center;
    color: #fff;
    background: none;
    box-shadow: none;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
}
.plyr--video .plyr__control--overlaid:before {
    font-family: 'icomoon';
    content: "\ea1c"; /* Play Icon */
    width: 30px;
    height: 27px;
    line-height: 27px;
    font-size: 13px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    background-color: #fff;
    color: #000;
}
.plyr--video .plyr__control--overlaid:hover:before {
    background-color: #000;
    color: #fff;
    box-shadow: 0 2px 12px rgba(255,255,255,0.5);
}
.plyr--video .plyr__control--overlaid svg {
    left: 0;
    display: none;
}
.plyr--video .plyr__control.plyr__tab-focus, 
.plyr--video .plyr__control:hover, 
.plyr--video .plyr__control[aria-expanded=true] {
    color: #fff;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
}
.plyr--video .plyr__control--overlaid:hover {
    color: #fff;
}
.plyr--video:not(.plyr--playing) .plyr__controls {
    opacity: 1;
    pointer-events: auto;
}
.plyr--video.plyr--paused .plyr__poster {
    opacity: 0;
}
.plyr--video.plyr--hide-controls .plyr__controls {
    transform: none;
}
.plyr--video .plyr__progress__buffer {
    box-shadow: none;
    border-radius: 0;
    width: 0;
    height: 0;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
}
.plyr--video .plyr__progress .plyr__tooltip {
    display: none;
}
.plyr--full-ui input[type=range] {
    -webkit-appearance: none;
    background: none;
    border: 0;
    border-radius: 0;
    color: #fff;
    display: block;
    height: 16px;
    margin: 0;
    padding: 0;
    width: 100%;
}
.plyr--full-ui input[type=range]::-webkit-slider-runnable-track {
    background: none;
    border: 0;
    border-radius: 0;
    height: 3px;
    -webkit-user-select: none;
    user-select: none;
    background-image: linear-gradient(to right, #fff var(--value, 0), transparent var(--value, 0))
}
.plyr--full-ui input[type=range]::-webkit-slider-thumb {
    background: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    height: 10px;
    width: 3px;
    position: relative;
    -webkit-transition: .2s ease;
    transition: .2s ease;
    -webkit-appearance: none;
    margin-top: -3px;
}
.plyr--full-ui input[type=range]::-moz-range-track {
    background: none;
    border: 0;
    border-radius: 0;
    height: 3px;
    -moz-user-select: none;
    user-select: none;
}
.plyr--full-ui input[type=range]::-moz-range-thumb {
    background: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    -moz-transition: .2s ease;
    transition: .2s ease;
    height: 10px;
    width: 3px;
}
.plyr--full-ui input[type=range]::-moz-range-progress {
    background: #fff;
    border-radius: 0;
    height: 3px;
}
.plyr--full-ui input[type=range]::-ms-track {
    background: none;
    border: 0;
    border-radius: 0;
    height: 3px;
    -ms-user-select: none;
    user-select: none;
    color: transparent;
}
.plyr--full-ui input[type=range]::-ms-fill-upper {
    background: none;
    border: 0;
    border-radius: 0;
    height: 3px;
    -ms-user-select: none;
    user-select: none
}
.plyr--full-ui input[type=range]::-ms-fill-lower {
    border: 0;
    border-radius: 0;
    height: 3px;
    -ms-user-select: none;
    user-select: none;
    background: #fff;
}
.plyr--full-ui input[type=range]::-ms-thumb {
    background: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    -ms-transition: .2s ease;
    transition: .2s ease;
    height: 10px;
    width: 3px;
    margin-top: 0;
}
.plyr--full-ui input[type=range]::-ms-tooltip {
    display: none;
}
.plyr--full-ui input[type=range]:focus {
    outline: 0
}
.plyr--full-ui input[type=range]::-moz-focus-outer {
    border: 0;
}
.plyr--full-ui input[type=range].plyr__tab-focus::-webkit-slider-runnable-track {
    box-shadow: none;
    outline: 0;
}
.plyr--full-ui input[type=range].plyr__tab-focus::-moz-range-track {
    box-shadow: none;
    outline: 0;
}
.plyr--full-ui input[type=range].plyr__tab-focus::-ms-track {
    box-shadow: none;
    outline: 0;
}
.plyr--full-ui.plyr--video input[type=range]:active::-webkit-slider-thumb {
    box-shadow: none;
}
.plyr--full-ui.plyr--video input[type=range]:active::-moz-range-thumb {
    box-shadow: none;
}
.plyr--full-ui.plyr--video input[type=range]:active::-ms-thumb {
    box-shadow: none;
}
.media .plyr__video-embed iframe {
    width: 300vw;
    left: -100vw;
}
.media {
    position: relative;
}





/* Entry Content
======================================================= */
.entry-content h1:not(:last-child),
.entry-content h2:not(:last-child),
.entry-content h3:not(:last-child),
.entry-content h4:not(:last-child),
.entry-content h5:not(:last-child),
.entry-content h6:not(:last-child),
.entry-title:not(:last-child) {
    margin-bottom: 20px;
}
.entry-header:not(:last-child) {
    margin-bottom: 40px;
}
.entry-content ul:not(:last-child),
.entry-content ol:not(:last-child),
.entry-content p:not(:last-child),
.entry-content address:not(:last-child),
.entry-content table:not(:last-child) {
    margin-bottom: 20px;
}
.entry-content ul,
.entry-content li {
    list-style-type: disc;
    list-style-position: inside;
}
.entry-content ol {
    list-style-type: decimal;
}
.entry-content .wp-block-image img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: auto;
}
.entry-content [class*="wp-block-"] {
    list-style: none;
    padding: 0;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.entry-content [class*="wp-block-"] li {
    margin: 0 auto !important;
}
.entry-content [class*="wp-block-"]:not(:first-child) {
    margin-top: 60px;
}
.entry-content [class*="wp-block-"]:not(:last-child) {
    margin-bottom: 60px;
}
.entry-content [class*="wp-block-"]:first-child {
    margin-top: 0;
}
.entry-content [class*="wp-block-"]:last-child {
    margin-bottom: 0;
}
.entry-content [class*="wp-block-"].alignfull {
	width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
.entry-content .blocks-gallery-grid {
    list-style: none;
    padding: 0;
    width: auto;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}
.entry-content .blocks-gallery-grid {
    margin: -7px -7px -8px -8px;
}
.entry-content .blocks-gallery-grid > li {
    padding: 7px 7px 8px 8px;
}
.entry-content .aligncenter {
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.entry-content .alignright {
    float: right;
}
.entry-content .alignleft {
    float: left;
}





/* Misc 
======================================================= */
.image {
    overflow: hidden;
}
img.full {
    display: block;
    width: 100%;
    max-width: none;
}
.object-fit {
    position: relative;
    display: block;
    overflow: hidden;
}
.object-fit:before {
    content: "";
    display: block;
}
.object-fit > img,
.object-fit > video,
.object-fit > iframe,
.object-fit > .plyr {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.bg-img {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: '';
    clear: both;
    height: 0;
}
.ic {
    display: inline-block;
    vertical-align: middle;
}
.hero .meta {
    width: 100%;
    padding: 100px 40px 40px;
    position: absolute;
    z-index: 1;
    left: 50%; 
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.section {
    position: relative;
}
.sc-inner {
    padding-top: 50px;
    padding-bottom: 50px;
}
.container,
.container-fluid {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.container {
    width: 1080px;
}
.tab-link {
    cursor: pointer;
}
._no-gutters {
    margin-right: 0;
    margin-left: 0;
}
._textcenter {
    text-align: center !important;
}
._center {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    max-width: 100%;
}
._upcase {
    text-transform: uppercase !important;
}
._flexcenter {
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-justify-content: center;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
}
._pull-left {
    float: left;
}
._pull-right {
    float: right;
}





/* Animation 
======================================================= */

/* Fade In */
@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Scale Down */
@-webkit-keyframes scaleDown {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}
@keyframes scaleDown {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}
.scaleDown {
    -webkit-animation-name: scaleDown;
    animation-name: scaleDown;
}

/* Reveal Right */
@-webkit-keyframes revealRight {
    0% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(0);
    }
}
@keyframes revealRight {
    0% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(0);
    }
}
.revealRight.animated:after {
    position: absolute;
    content: "";
    z-index: 1;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform-origin: 100% 50%;
    -webkit-animation: revealRight 1s ease-in-out forwards;
    animation: revealRight 1s ease-in-out forwards;
}

/* Reveal Left */
@-webkit-keyframes revealLeft {
    0% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(0);
    }
}
@keyframes revealLeft {
    0% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(0);
    }
}
.revealLeft.animated:after {
    position: absolute;
    content: "";
    z-index: 1;
    display: block;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform-origin: 0% 100%;
    -webkit-animation: revealLeft 1s ease-in-out forwards;
    animation: revealLeft 1s ease-in-out forwards;
}

/* Scroll Reveal Timing */
.animate {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}





/* Transition 
======================================================= */
img,
a,
button,
input,
textarea,
select,
label,
.btn,
.tab-link,
.swiper-button-next,
.swiper-button-prev,
#header,
ul.menu-category > li > a:before,
.ic,
.header-tools span,
ul.menu > li > ul,
ul.menu > li.has-sub:before,
.sc-sale .swiper-slide .meta,
.fancybox-close-small {
    transition: 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.input .label.anim:not(.fixed) {
    transition-property: opacity, visibility;
}
.input .label.anim.fixed {
    transition-property: opacity, top, font-size;
}





/* Theme
======================================================= */
.und,
ul.menu-main a,
.header-tools span,
#cookie-law-info-bar a,
.footer-nav a,
.contact-info a {
    background-image: linear-gradient(120deg, #000 0%, #000 100%);
    background-repeat: no-repeat;
    background-size: 0% 1px;
    background-position: left 100%;
    background-origin: border-box;
}
ul.menu .sale {
    background-image: linear-gradient(120deg, #ff0000 0%, #ff0000 100%);
}
.und:hover,
.und.active,
ul.menu-main > li:hover > a,
ul.menu-main a:hover,
ul.menu-main a.active,
.header-tools span:hover,
#cookie-law-info-bar a:hover,
.footer-nav a:hover,
.contact-info a:hover { 
    background-size: 100% 1px;
}
.btn {
    background-color: #fff;
    background-image: linear-gradient(120deg, #fff 0%, #fff 100%);
    background-repeat: no-repeat;
    background-size: 100% 0;
    background-position: 100% 0;
    background-origin: border-box;
    width: auto;
    min-width: 130px;
    padding-left: 20px;
    padding-right: 20px;
    border: solid 1px #000;
    color: #000;
    height: 35px;
    line-height: 33px;
    display: table;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
}
.btn.btn-black {
    background-color: #000 !important;
    background-image: linear-gradient(120deg, #000 0%, #000 100%);
    color: #fff;
}
.fancybox-close-small {
    background-color: #fff100 !important;
    background-image: linear-gradient(120deg, #fff100 0%, #fff100 100%);
    background-repeat: no-repeat;
    background-size: 100% 0;
    background-position: 100% 0;
    background-origin: border-box;
    color: #000;
}
.btn:hover,
.btn.active,
.btn.btn-yellow:hover,
.card:hover .btn {
    background-color: #fff;
    background-image: linear-gradient(120deg, #fff100 0%, #fff100 100%);
    background-size: 100% 100%;
    color: #000;
}
.btn.btn-blue:hover,
.btn.btn-blue.active,
.product:hover .btn,
.fancybox-close-small:hover {
    background-color: #fff;
    background-image: linear-gradient(120deg, #2f21fe 0%, #2f21fe 100%);
    background-size: 100% 100%;
    color: #fff100;
}
.btn.btn-red:hover,
.btn.btn-red.active,
.product-recommend .product:hover .btn {
    background-color: #fff;
    background-image: linear-gradient(120deg, #ff0000 0%, #ff0000 100%);
    background-size: 100% 100%;
    color: #fff100;
}
.socialgroup a {
    display: inline-block;
}
.socialgroup a:not(:last-child) {
    margin-right: 10px;
}
.ic-facebook:hover {
    color: #1778f2;
}
.ic-line:hover {
    color: #00B900;
}
.ic-twitter:hover {
    color: #00acee;
}
.ic-youtube:hover {
    color: #c4302b;
}
.ic-instagram:hover {
    color: #dd2a7b;
}





/* Header
======================================================= */
#page.header-transparent {
    padding-top: 0 !important;
}
#page.header-transparent #header {
    background-color: transparent;
}
#header {
    width: 100%;
    position: relative;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    background-color: #fff;
}
html.page-scrolling #header {
    background-color: #fff !important;
    border-bottom: solid 1px #000;
}



#header.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.brand-logo {
    width: 150px;
    margin: 0 auto 12px;
    display: block;
}

#header .container-fluid {
	width: 100%;
    height: 75px;
	position: relative;
    display: flex;
    align-items: center;
}
#header .brand-logo {
	position: absolute;
	top: 50%;
	left: 50%;	
	transform: translate(-50%, -50%);
	margin: 0;
	line-height: 1;
}



#page.hide-logo #header{
    transform: translateY(-75px);
}
html.page-scrolling #page.hide-logo #header {
    transform: translateY(0);
}
.header-bar {
	width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0 15px;
    -ms-align-items: center;
    align-items: center;
}
.hamburger {
    display: none;
}
ul.menu > li {
    display: inline-block;
}
ul.menu > li > a:hover,
ul.menu > li > a.active,
ul.menu > li:hover > a,
.header-tools span:hover {
    font-weight: 700;
}
ul.menu-main > li:not(:last-child) {
    margin-right: 25px;
}
ul.menu-main > li > a {
    position: relative;
    background-image: none !important;
}
ul.menu-main > li > a:before {
    background: url(../img/element/elem_menu.svg) no-repeat center center;
    background-size: 100% 100%;
    position: absolute;
    content: '';
    top: -10px;
    left: -17.5px;
    width: 35px;
    height: 35px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transform: scale(0,0);
}
ul.menu-main > li.active > a:before,
ul.menu-main > li:hover > a:before {
    opacity: 1;
    visibility: visible;
    transform: scale(1,1);
}

ul.menu-category {
    text-align: center;
}
ul.menu-category > li {
    margin: auto 12.5px;
}
ul.menu-category > li > a {
    position: relative;
}
ul.menu-category > li > a:before {
    background: url(../img/element/elem_menu.svg) no-repeat center center;
    background-size: 100% 100%;
    position: absolute;
    content: '';
    top: -10px;
    left: -17.5px;
    width: 35px;
    height: 35px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transform: scale(0,0);
}
ul.menu-category > li.active > a:before,
ul.menu-category > li:hover > a:before {
    opacity: 1;
    visibility: visible;
    transform: scale(1,1);
}
.header-tools i {
    font-size: 14px;
    margin-top: -3px;
    margin-right: 2px;
}
.header-tools {
    text-align: right;
}
.header-tools > * {
    display: inline-block;
    cursor: pointer;
}
.header-tools > *:not(:last-child) {
    margin-right: 15px;
}

/* Menu Dropdown */
ul.menu > li,
.header-tools > * {
    padding-top: 12px;
    padding-bottom: 12px;
}
ul.menu > li > ul {
    position: absolute;
	top: 100%;
	left: 50%;
	z-index: 10;
	transform: translateX(-50%);
	padding: 15px 15px;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	opacity: 0;
	visibility: hidden;
}
ul.menu > li:hover > ul  {
    opacity: 1;
    visibility: visible;
}
ul.menu > li > ul:after {
    width: 100vw;
    height: 100%;
    position: absolute;
    top: -1px;
    left: calc(50% - 50vw);
    z-index: -1;
    background-color: #fff;
    content: '';
    border-top: solid 1px #000;
    border-bottom: solid 1px #000;
}
#page.header-transparent ul.menu > li.has-sub:before {
    width: 100vw;
    height: calc(100% + 1px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #fff;
    content: '';
    opacity: 0;
    visibility: hidden;
}
#page.header-transparent ul.menu > li.has-sub:hover:before {
    opacity: 1;
    visibility: visible;
}

/* Category */
ul.menu > li > ul {
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
}
ul.menu > li > ul > li {
    width: 100%;
}
ul.menu > li > ul > li > a {
    font-weight: 700;
    line-height: 26px;
}

/* Subcategory */
ul.menu > li > ul > li > ul  {
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    /* padding-top: 5px; */
}
ul.menu > li > ul > li > ul > li {
    width: 100%;
    padding: 5px 15px 5px 0;
}
ul.menu .sale {
    color: #ff0000;
}

.menu-main .socialgroup {
	display: none;
}

/* Search Form */
.menu-search {
    position: relative;
}
.search-panel {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -10px;
    z-index: 1001;
    width: 350px;
    height: 35px;
    padding: 0 10px;
    border: solid 1px #000;
    background-color: #fff100;
}
.search-form .input input {
    border: 0;
    padding-right: 70px;
}
.search-form .search-btn:before {
    font-family: "icomoon";
    content: "\e90b";
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
    margin-right: 3px;
}
.search-form .search-btn {
    position: absolute;
    top: 0px;
    right: 10px;
    z-index: 10;
    width: auto;
    height: 35px;
    font-weight: 500;
}

/* Account */
#account-popup {
    background-color: #fff100;
    padding: 0;
    border: solid 1px #000;
    display: none;
    width: 800px;
    max-width: 100%;
}
#account-popup .control {
    padding: 30px 15px;
    border-bottom: solid 1px #000;
    text-align: center;
}
#account-popup .control a {
    width: 130px;
    margin-left: 10px;
    margin-right: 10px;
    display: inline-block;
}
#account-popup .account-form {
    width: 500px;
    max-width: 100%;
    margin: 30px auto;
    padding: 15px;
}






/* Footer
======================================================= */
#footer {
    padding-top: 50px;
    padding-bottom: 75px;
}
#footer .container {
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
}
.footer-sitemap {
    margin-bottom: 30px;
}
.footer-social .headline {
    position: relative;
    margin-bottom: 20px;
}
.footer-social .headline:before {
    background: url(../img/element/elem_star-blue.png) no-repeat center;
    background-size: 55px;
    width: 55px;
    height: 55px;
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: -1;
}
.footer-social .socialgroup {
    font-size: 20px;
}
.footer-nav {
    width: 440px;
    max-width: 100%;
    margin-left: auto;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
}
.footer-nav ul.col > li {
    padding-top: 5px;
    padding-bottom: 5px;
}
.footer-nav ul.col > li > ul {
    margin-top: 10px;
    font-size: 10px;
}
.footer-nav ul.col > li > ul > li {
    padding-top: 2px;
    padding-bottom: 2px;
}
.footer-nav .col-2 {
    margin-left: auto;
}
.footer-bar {
    font-size: 10px;
}
.footer-link {
    margin-left: auto;
}
.footer-link a:not(:last-child) {
    margin-right: 15px;
}
#footer a:hover {
    font-weight: 700;
}

/* Cookie */
#cookie-law-info-bar {
    width: 400px;
    max-width: calc(100% - 30px);
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 1001;
    border: solid 1px #000;
    background-color: #fff100;
    padding: 25px;
}
#cookie-law-info-bar #cookie_action_close_header {
    display: table;
    margin-top: 15px;
    font-weight: 600;
}





/* Content
======================================================= */
#content {
    min-height: calc(100vh - 406px);
    min-height: calc((var(--vh, 1vh) * 100) - 406px);
}
#page.header-transparent #content {
    min-height: calc(100vh - 313px);
    min-height: calc((var(--vh, 1vh) * 100) - 313px);
}
.index-hero .object-fit:before {
    padding-top: 100vh;
    padding-top: calc(var(--vh, 1vh) * 90);
}
.index-hero .meta {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0px 15px;
    z-index: 10;
    transform: translateY(-33%);
    text-align: center;
}
.index-hero .hero-logo {
    width: 850px;
    max-width: 100%;
    margin: auto auto 25px;
}
.index-hero .bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.bottom-bar {
    background-color: #2f21fe;
    border-top: solid 1px #000;
    border-bottom: solid 1px #000;
    padding: 25px 15px;
    text-align: center;
    text-transform: uppercase;
}
.bottom-bar a {
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
}
.bottom-bar + .bottom-bar {
    border-top: 0;
}
.sc-product .titleblock {
    margin-bottom: 30px;
}

ul.products {
    /*
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 75px 15px;
    */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    margin: -37px -7px -38px -8px;
}
ul.products .product {
    width: 20%;
    padding: 37px 7px 38px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
ul.products .product:after {
    width: calc(100% - 15px);
    height: calc(100% - 75px);
    top: 12px;
}
ul.products .product .woocommerce-LoopProduct-link {
    position: relative;
    display: block;
    width: 100%;
    flex: 1;
}

.product {
    position: relative;
    text-align: center;
}
.product .object-fit:before {
    padding-top: 100%;
}
.product .meta {
    margin-top: 15px;
    margin-bottom: 20px;
}
.product:after {
    content: '';
    background: url(../img/product-hover-bg-right.png) no-repeat top center;
    background-size: 80%;
    width: 100%;
    height: 100%;
    position: absolute;
    top: -25px;
    left: 8px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}
.product-recommend .product:after {
    background: url(../img/product-hover-bg-left.png) no-repeat top center;
    background-size: 80%;
}
.product:hover:after {
    opacity: 1;
    visibility: visible;
}
.product .tag {
    border-radius: 100%;
    width: 50px;
    height: 50px;
    text-align: center;
    position: absolute;
    top: 30px;
    right: 20%;
    z-index: 10;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-justify-content: center;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
}
.product .tag.tag-new {
    background-color: #3600ff;
    color: #ffde00;
}
.product .tag.tag-sale {
    background-color: #ff0000;
    color: #ffde00;
}
.product .tag.tag-hot {
    background-color: #deff00;
    color: #000;
}
.form-yellow fieldset {
    border: 0;
    padding: 0;
    margin: 0;
}
.form-yellow .input input,
.form-yellow .input textarea {
    border-bottom: solid 1px #000;
    text-align: center;
}
.form-yellow .input .label.anim.fixed {
    right: 0;
    text-align: center;
    color: rgba(0,0,0,0.3);
}
.form-yellow .btn {
    margin-top: 30px;
}
.field.for-check .input {
    display: block;
    margin: 0 auto;
}
.field.for-check input,
.field.for-check .label {
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
}
.field.for-check .label {
    max-width: calc(100% - 30px);
}
.sc-category .swiper-slide {
    width: 800px;
    max-width: 100%;
    margin-left: 15px;
    margin-right: 15px;
    position: relative;
    text-align: center;
}
.sc-category .swiper-slide .meta {
    position: absolute;
    bottom: 50px;
    left: 0;
    padding-left: 15px;
    padding-right: 15px;
    z-index: 10;
    width: 100%;
    text-align: center;
}
.sc-category .category-name {
    margin-bottom: 20px;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
}
.sc-category .swiper-slide .object-fit:before {
    padding-top: 54.3%;
}
.sc-category .swiper-button-prev {
    left: calc(50% - 400px);
    transform: translate(-50%, -50%);
}
.sc-category .swiper-button-next {
    right: calc(50% - 400px);
    transform: translate(50%, -50%);
}
.sc-sale,
.sc-instagram {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #edff38;
    text-align: center;
    color: #fff;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
}
.sc-sale .swiper-container {
    padding-left: 7.5px;
    padding-right: 7.5px;
}
.sc-sale .swiper-slide  {
    height: 180px;
    margin-left: 7.5px;
    margin-right: 7.5px;
    width: calc(25% - 15px);
    flex-grow: 1;
}
.sc-sale .swiper-slide:hover .meta {
    transform: scale(1.05);
}
.sc-instagram {
    background-color: #3600ff;
}
.sc-instagram .swiper-container {
    padding-left: 7.5px;
    padding-right: 7.5px;
}
.sc-instagram .swiper-slide {
    width: 180px;
    margin-left: 7.5px;
    margin-right: 7.5px;
    max-width: calc(25% - 15px);
}
.sc-instagram .object-fit:before {
    padding-top: 100%;
}
.sc-instagram .meta {
    position: absolute;
    top: 50%;
    left: 0;
    padding: 0 15px;
    width: 100%;
    z-index: 10;
    transform: translateY(-50%);
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
}
.sc-subscribe {
    padding-top: 75px;
    padding-bottom: 50px;
}
.sc-subscribe .titleblock  {
    width: 350px;
    max-width: 100%;
    margin-bottom: 20px;
}
.subscribe-form {
    position: relative;
}
.subscribe-form .input input {
    border: solid 1px #000;
    padding: 0 260px 0 10px;
}
.subscribe-form .label.anim {
    left: 10px;
}
.subscribe-form input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    width: 250px;
}
.sc-collection .object-fit:before {
    padding-top: 40%;
}
.sc-collection .meta {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    padding: 0 15px;
    text-align: center;
}
.sc-collection .collection-name {
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
}
.rand-elem {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 150px);
    height: calc(100% - 150px);
    pointer-events: none;
}
img.rellax-elem {
    display: block;
    position: absolute;
}
.search-result {
    padding-bottom: 50px;
    border-bottom: solid 1px #000;
}
.search-keyword:before {
    content: '“';
}
.search-keyword:after {
    content: '”';
}
.dashboard-hero {
    padding-top: 100px;
    padding-bottom: 100px;
}
.dashboard-hero .sc-title {
    color: #fff;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
}
.page-dashboard,
.page-process {
    padding-bottom: 100px;
    border-bottom: solid 1px #000;
}
.process-bar {
    padding: 100px 15px 50px;
}
.process-bar .control {
    width: 1050px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: rgba(0,0,0,0.3);
    position: relative;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
}
.process-bar .control:after {
    content: '';
    width: 75%;
    height: 1px;
    background-color: #b2b2b2;
    margin: -6px auto 0;
}
.process-bar .control li {
    width: 25%;
}
.process-bar .control a:after {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: solid 1px #727272;
    background-color: #fff;
    content: '';
    display: block; 
    margin: 5px auto 0;
    position: relative;
    z-index: 10;
}
.process-bar .control a.active,
.process-bar .control a:hover {
    color: #000;
}
.process-bar .control a.active:after {
    border-color: #000;
    background-color: #000;
}

.page-single .entry-header {
    margin-bottom: 75px;
}

.page-help .container > .titleblock {
    margin-bottom: 75px;
}
.help-item {
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 75px;
}
.help-item .titleblock {
    width: 350px;
    padding-right: 15px;
}
.help-item .listgroup {
    width: calc(100% - 350px);
}
.help-item .list {
    border-bottom: solid 1px #000;
    padding-bottom: 5px;
}
.help-item .list:not(:first-child) {
    padding-top: 40px;
}
.help-item .list .question {
    padding-right: 30px;
    position: relative;
    cursor: pointer;    
}
.help-item .list .question:after {
    font-family: "icomoon";
    content: "\e901";
    position: absolute;
    top: 0;
    right: 0;
}
.help-item .list .question.open:after {
    content: "\e900";
}
.help-item .list .answer {
    display: none;
    padding-top: 20px;
    padding-bottom: 20px;
}
.sc-yellow,
.sc-blue {
    background-color: #fff100;
    border-top: solid 1px #000;
    border-bottom: solid 1px #000;
    padding-top: 50px;
    padding-bottom: 50px;
}
.sc-blue {
    background-color: #3600ff;
}
.send-msg .titleblock {
    margin-bottom: 25px;
}
.send-msg .question-form {
    width: 475px;
    max-width: 100%;
    margin: 0 auto;
}
.store-map {
    border-top: solid 1px #000;
    border-bottom: solid 1px #000;
}
.store-map iframe {
    width: 100%;
    display: block;
    height: 500px;
}
.contact-info .container {
    display: grid;
    grid-gap: 40px 15px;
    grid-template-columns: repeat(3, 1fr);
}
.contact-info .col-2 {
    text-align: center;
}
.contact-info .col-3 {
    text-align: right;
}
.contact-info .headline {
    margin-bottom: 15px;
}
.contact-info .ic {
    margin-right: 5px;
}
.gotostore .headline {
    color: #fff;
    margin-bottom: 20px;
}
.sc-story .titleblock {
    margin-top: 40px;
    margin-bottom: 80px;
}
.sc-story .titleblock .title {
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}
.sc-story .titleblock .title:before,
.sc-story .titleblock .title:after {
    background: url(../img/element/elem_star-yellow.png) no-repeat center;
    background-size: 100%;
    width: 75px;
    height: 75px;
    position: absolute;
    top: -15px;
    left: -40px;
    z-index: -1;
    content: '';
}
.sc-story .titleblock .title:after {
    background: url(../img/element/elem_thunder.png) no-repeat center;
    background-size: contain;
    width: 35px;
    height: 50px;
    top: 0;
    left: auto;
    right: -40px;
}
.sc-story .titleblock .elem {
    width: 35px;
    display: block;
    margin: 0 auto;
}
.sc-story .entry-content p {
    width: 700px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.wp-block-gallery.columns-2 .blocks-gallery-grid {
    display: -ms-flex;
    display: flex;
    -ms-align-items: flex-start;
    align-items: flex-start;
}
.story-slide .swiper-container {
    height: 400px;
}
.story-slide .swiper-slide {
    width: auto;
    margin-left: 7.5px;
    margin-right: 7.5px;
}
.story-slide .swiper-slide img {
    height: 400px;
}
.story-popup {
    background-color: rgba(255,255,255,1);    
}
.story-popup .fancybox-navigation .fancybox-button--arrow_right {
    right: 15px;
}
.story-popup .fancybox-navigation .fancybox-button--arrow_left {
    left: 15px;
}

.page-collection .titleblock {
    margin-bottom: 75px;
}
.collection-item {
    display: block;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}
.collection-item .meta {
    margin-top: 5px;
}
.collection-item .image>img {
    width: 100%;
}
.collection-item .btn {
    width: 100px;
    height: 100px;
    position: absolute;
    left: calc(50% - 50px);
    top: calc(50% - 75px);
    z-index: 10;
    border-radius: 100%;
    line-height: 98px;
    padding: 0;
    min-width: unset;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
}
.collection-item:hover .btn {
    opacity: 1;
    visibility: visible;
    transform: none;
}
/* Colcade Grid */
.grid {
    display: flex;
}
.grid-col {
    flex-grow: 1;
}
.collection-itemsgroup {
    margin-left: -7.5px;
    margin-right: -7.5px;
}
.collection-col {
    width: 33.333%;
    padding-left: 7.5px;
    padding-right: 7.5px;
}
.load-more {
    margin-top: 60px;
}

.sc-category-feature {
    padding-top: 133px;
    border-top: 0;
    border-bottom: 0;
}

.sc-category-control { display: none;}
.sc-category-control .bottom-bar:first-child {
    background-color: #fff;
}

.product-onlinestore {
    padding-top: 50px;
    padding-bottom: 50px;
}
.sc-product-feature .products {
    grid-template-columns: repeat(2, 1fr);
}
.sc-product-feature .product:after {
    display: none;
}

.collection-sg-hero .object-fit:before {
    padding-top: 47%;
}
.collection-sg-hero .meta {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 10;
    width: 100%;
    padding: 15px;
    transform: translateY(-50%);
    text-align: center;
}

.gallery-grid {
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
}
.gallery-grid .item {
    width: 50%;
}
.gallery-grid .item .object-fit:before {
    padding-top: 100%;
}
.gallery-grid .item:nth-child(4n-2),
.gallery-grid .item:nth-child(4n-1) {
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-justify-content: center;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
}
.gallery-grid .item:nth-child(4n-2) .image,
.gallery-grid .item:nth-child(4n-1) .image {
    max-width: 50%;
}
.gallery-grid .item:nth-child(4n-2) .image>img,
.gallery-grid .item:nth-child(4n-1) .image>img {
    max-height: 375px;
    display: block;
}
.gallery-grid .item:nth-child(6n-5),
.gallery-grid .item:nth-child(6n-4) {
    background: url(../img/gallery-bg_01.jpg) no-repeat center;
    background-size: 100%;
}
.gallery-grid .item:nth-child(6n-3),
.gallery-grid .item:nth-child(6n-2) {
    background: url(../img/gallery-bg_02.jpg) no-repeat center;
    background-size: 100%;
}
.gallery-grid .item:nth-child(6n-1),
.gallery-grid .item:nth-child(6n) {
    background: url(../img/gallery-bg_03.jpg) no-repeat center;
    background-size: 100%;
}

.product-bar {
    background-color: #3600ff;
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: solid 1px #000;
    border-bottom: solid 1px #000;
    position: -webkit-sticky;
    position: sticky;
    z-index: 99;
}
html.page-scrolling .product-bar {
    border-top: 0;
}
.product-bar .container {
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-align-items: center;
    align-items: center;
}
.product-bar .btn {
    margin-right: 0;
}
.product-bar .meta {
    width: calc(100% - 200px);
    color: #fff;
    text-transform: uppercase;
}
.product-bar .meta > * {
    display: inline;
}
.product-single {
    padding-top: 50px;
    padding-bottom: 50px;
}
.product-single .container,
.product-single-meta .heading {
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-align-items: flex-start;
    align-items: flex-start;
}
.product-single-meta .heading .entry-title {
    margin-bottom: 0;
}

.product-single-meta .product-description {
    padding-bottom: 80px;
}

.product-single-meta .product-share {
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-align-items: center;
    align-items: center;
}
.product-single-meta .product-price {
    margin-left: auto;
}
.product-single-gallery {
    width: 50%;
}
.product-single-gallery .swiper-slide:not(.swiper-slide-active) {
	opacity: 0 !important;
	visibility: hidden !important;
}
.product-single-meta {
    width: 50%;
    padding-left: 35px;
}
.product-single {
	text-transform: none !important; 	
}
.product-single-meta > * {
    padding-top: 15px;
    padding-bottom: 15px;
}
.product-single-meta > *:not(:last-child) {
    border-bottom: solid 1px #000;
} 
.product-single-meta .product-name {
    width: calc(100% - 100px);
}
.product-single-meta .product-share .socialgroup {
    font-size: 14px;
    margin-left: 15px;
}
.product-variation {
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
}
.product-variation .product-size {
    width: calc(100% - 195px);
}
.product-variation .btn {
    margin-left: 15px;
    margin-right: 15px;
}
.wishlist {
    border: solid 1px #000;
    width: 35px;
    height: 35px;
    line-height: 33px;
    text-align: center;
    background-color: #ff0000;
}
.wishlist span:after {
    font-family: "icomoon";
    content: "\e90c";
    font-size: 16px;
    color: #fff;
}
.wishlist.clicked span:after {
    content: "\e90d";
}


.product-single-meta.variations-disabled .product-variation .quantity {
    position: static;
    transform: none;
    margin-bottom: 25px;
}

.product-single-gallery .swiper-container-fade .swiper-slide {
    transition: 300ms !important;
}

/* Text Setting
======================================================= */

/* Font Size */
.sc-subscribe .titleblock,
#entersite-popup .titleblock,
.sc-story .entry-content,
.product-single-meta .heading * {
    font-size: 15px;
}
.subscribe-headline,
.help-item .headline {
    font-size: 18px;
}
.index-hero .hero-description,
.entry-title,
.sc-title,
.sc-subtitle,
.sc-category .category-name,
.sale-banner-name,
.instagram-head,
.sc-collection .collection-name,
.gotostore .headline,
.sc-story .title {
    font-size: 32px;
}

/* Font Weight */
.entry-title,
.sc-title,
.product-name,
.product .tag,
.subscribe-headline,
.process-bar .control,
.help-item .headline,
.help-item .list .question,
.contact-info .headline,
.collection-item .collection-name,
.product-info a:hover {
    font-weight: 700;
}

.help-item .headline, .help-item .list .question {
	color: #007aff;
}

/* Font Color */
.sc-category .category-name {
    color: #fff;
}

/* Font Transform */
.entry-title,
.sc-title,
.product .product-name,
.product .tag,
.sale-banner-text,
#footer,
.process-bar .control,
.help-item .headline,
.help-item .list .question,
.collection-item .collection-name,
.product-single {
    text-transform: uppercase;
}

/* Line Clamp */
.card .meta > .title,
.card .meta > .excerpt,
.product .product-name {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.card .meta > .excerpt {
    -webkit-line-clamp: 3;
}



/*  Popup */
.popup-template {
    width: 1050px;
    max-width: 100%;
    padding: 0;
    border: solid 1px #000;
    background-color: #fff;
    display: none;
}
.popup-template .image {
    border-bottom: solid 1px #000;
}
.popup-template .object-fit:before {
    padding-top: 26%;
}
.popup-template .content {
    width: 800px;
    max-width: 100%;
    padding: 60px 15px;
    margin: 0 auto;
}
.popup-template .titleblock  {
    width: 350px;
    max-width: 100%;
    margin-bottom: 20px;
}
#promotion-popup .btn {
    margin-left: 0;
    width: 250px;
    text-align: center;
}



/* 404 */
#page.pagenotfound #header .header-bar,
#page.pagenotfound #footer {
    display: none;
}
#page.pagenotfound #content {
    min-height: calc(100vh);
    min-height: calc((var(--vh, 1vh) * 100));
}
.bg-404 {
    width: 100%;
    min-height: calc(100vh);
    min-height: calc((var(--vh, 1vh) * 100));
    color: #fff;
}
.bg-404 .btn {
    margin-top: 30px;
}
.bg-404 .sc-title,
.bg-404 .sc-subtitle {
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
}





/* Customize
======================================================= */

/* Contact form response */
.wpcf7 {
    position: relative;
}
div.wpcf7-response-output {
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute;
    bottom: 0;
    font-size: 0.8em;
}
span.wpcf7-not-valid-tip {
    position: absolute;
    z-index: 10;
    bottom: 5px;
    right: 10px;
    font-size: 0.75em !important;
}

/* Pagenav */
.wp-pagenavi,
ul.page-numbers {
    margin-top: 40px;
    text-align: center;
}
.wp-pagenavi a,
.wp-pagenavi span.current,
ul.page-numbers li {
    display: inline-block;
    margin: 0 5px;
    border: 0;
}
.wp-pagenavi span.current,
ul.page-numbers .page-numbers.current {
    color: #3600ff;
}
.wp-pagenavi a:hover,
ul.page-numbers li:hover {
    color: #ff0000;
}


/* Woofc-count */
#woofc-count {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    z-index: 1000 !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
    box-shadow: none !important;
    background-color: transparent !important;
    display: inline-block !important;
    vertical-align: baseline !important;
    line-height: 1.4 !important;
    cursor: pointer;
}
#woofc-count i {
    display: inline-block !important;
    vertical-align: middle !important;
    font-family: 'icomoon' !important;
    font-style: normal !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
    color: inherit !important;
}
#woofc-count i:before {
    content: "\e909" !important; /* Cart Icon */
}
#woofc-count #woofc-count-number:before {
    content: 'CART ('
}
#woofc-count #woofc-count-number:after {
    content: ')'
}
#woofc-count #woofc-count-number {
    display: inline-block;
    padding: 0;
}
.woofc-count.woofc-count-shake {
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
@-webkit-keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }
    30%, 50%, 70% {
        transform: translate3d(-2px, 0, 0);
    }
    40%, 60% {
        transform: translate3d(1px, 0, 0);
    }
}
@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }
    30%, 50%, 70% {
        transform: translate3d(-2px, 0, 0);
    }
    40%, 60% {
        transform: translate3d(1px, 0, 0);
    }
}

/* Woofc area */
.woofc-area,
.woofc-area a, 
.woofc-area input, 
.woofc-area p {
    font-family: inherit !important;
}
.woofc-area .woofc-area-bot .woofc-total .woofc-total-right {
    font-size: inherit !important;
}
.woofc-area .woofc-area-top {
    background-color: #000 !important;
    color: #fff !important;
}
.woofc-area .woofc-area-top .woofc-close {
    color: #fff !important;
}
.woofc-action-full a,
.woofc-continue span {
    background-color: #000 !important;
    color: #fff !important;
    border: solid 1px #000 !important;
}
.woofc-action-full a:hover,
.woofc-continue span:hover {
    background-color: #fff !important;
    color: #000 !important;
}
.woofc-continue {
    padding: 0 20px !important;
    margin-top: 10px !important;
}
.woofc-continue span {
    width: 100% !important;
    padding: 8px !important;
    display: block !important;
    font-weight: 700 !important;
}


/* Woocommerce */
.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] {
    color: #fff;
    background-color: #fff;
    opacity: 1;
    padding: 10px 20px;
}
.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 {
    background-color: #fff;
}
button.woocommerce-Button.button,
button.button {
    width: auto;
}
.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button,
button.single_add_to_cart_button,
input#payment-submit {
    background-color: transparent !important;
    background-image: linear-gradient(120deg, #000 0%, #000 100%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: 0 100%;
    background-origin: border-box;
    border: solid 1px #000;
    color: #fff;
    border-radius: 0;
    font-weight: 400;
    padding: 10px 20px;
    line-height: 1;
}
.woocommerce a.button {
	background: #2f21fe !important;
}
#page .woocommerce .checkout-button {
	background: #2f21fe !important;
	font-weight: bold;
}

button.single_add_to_cart_button {
    width: 250px;
    padding: 15px;
}
.woocommerce #respond input#submit:hover, 
.woocommerce a.button:hover, 
.woocommerce button.button:hover, 
.woocommerce input.button:hover,
button.single_add_to_cart_button:hover,
input#payment-submit:hover {
    background-color: #fff100 !important;
	background-image: linear-gradient(120deg, #000 0%, #000 100%);
    background-size: 0% 100%;
    color: #000 !important;
}
.woocommerce-message a.button {
    color: #000;
}
.woocommerce-message a.button:hover {
    font-weight: 700;
}
.woocommerce-error, 
.woocommerce-info, 
.woocommerce-message {
    width: 1050px;
    max-width: 100%;
    margin: 0 auto 30px;
    background-color: #fff;
    border: solid 1px #000;
    border-top:  solid 1px;
    border-top-width: 5px;
}
.woocommerce-error::before, 
.woocommerce-info::before, 
.woocommerce-message::before {
    color: #000;
/*     top: 25px; */
/* display: none; */
}
ins {
    text-decoration: none;
}

/* Dashboard */
nav.woocommerce-MyAccount-navigation {
    margin-bottom: 30px;
}
nav.woocommerce-MyAccount-navigation ul {
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}
nav.woocommerce-MyAccount-navigation li {
    text-align: center;
    list-style: none;
    width: 20%; 
    margin-right: 5px;
    border: solid 1px #000;
    flex: 1;
    white-space: nowrap;
}
nav.woocommerce-MyAccount-navigation li > a {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #fff;
    color: #000;
}
li.woocommerce-MyAccount-navigation-link--downloads {
    display: none;
}
nav.woocommerce-MyAccount-navigation li.is-active,
nav.woocommerce-MyAccount-navigation li:hover {
    border-color: #000;
}
nav.woocommerce-MyAccount-navigation li.is-active a,
nav.woocommerce-MyAccount-navigation li:hover a {
    background-color: #000;
    color: #fff;
}



.woocommerce-Address .edit {
    text-decoration: underline;
}
header.woocommerce-Address-title.title h3,
.woocommerce-MyAccount-content h3 {
    color: inherit !important;
}
.u-columns.woocommerce-Addresses.col2-set.addresses {
    margin-top: 40px;
}


.woocommerce form .form-row input.input-text, 
.woocommerce form .form-row textarea {
    border: solid 1px rgba(0, 0, 0, 0.1);
    height: 35px;
    padding: 4px 8px;
}
.woocommerce form .select2-container--default .select2-selection--single .select2-selection__arrow b:after {
    top: 0;
    right: 5px;
    height: 100%;
    display: flex;
    align-items: center;
}
.woocommerce-MyAccount-content button.woocommerce-Button.button,
.woocommerce-address-fields button.button {
    margin-top: 30px !important;
}
.woocommerce-MyAccount-content fieldset {
    border: solid 1px #000;
}
.woocommerce form .show-password-input, 
.woocommerce-page form .show-password-input {
    top: 4px !important;
    right: 8px !important;
}
.woocommerce form .form-row {
    padding: 0 !important;
}

/* Checkout */
td.product-thumbnail {
    width: 100px;
}
.woocommerce a.remove {
    color: #000 !important;
}
.woocommerce a.remove:hover {
    background: #000;
}
.woocommerce .cart-collaterals .cart_totals, 
.woocommerce-page .cart-collaterals .cart_totals {
    width: 100%;
    float: left;
}

.woocommerce table.cart td.actions .coupon {
    width: 100%;
    display: flex;
    align-items: center;
    
}
.woocommerce table.cart td.actions .coupon .input-text {
    width: 200px;
    height: 34px;
    padding: 7px 10px;
    border: solid 1px #000;
    float: none;
    flex: 1;
}
.woocommerce table.cart td.actions .coupon .button {
    margin-left: 5px;
}

.cart-collaterals {
    margin-top: 60px;
}
.woocommerce .col2-set .col-1, 
.woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2, 
.woocommerce-page .col2-set .col-2 {
    width: 100%;
    float: left;
}
.woocommerce .col2-set .col-1, 
.woocommerce-page .col2-set .col-1 {
    margin-bottom: 60px;
}
h3#order_review_heading {
    margin-top: 60px;
}
.woocommerce form.checkout_coupon {
    border-radius: 0;
    border-color: #000;
}
form.checkout_coupon.woocommerce-form-coupon .form-row {
    margin-bottom: 0;
}
form.checkout_coupon.woocommerce-form-coupon .form-row-first {
    width: 50%;
}
form.checkout_coupon.woocommerce-form-coupon input#coupon_code {
    height: 36px;
}
a.showcoupon {
    font-weight: 700;
    color: #000;
}
.woocommerce table.shop_table {
    border: 0;
    margin: 20px 0 20px;
    border-radius: 0;
    border-collapse: collapse;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    padding: 10px 0;
}
.woocommerce table.shop_table tbody th, 
.woocommerce table.shop_table tfoot td, 
.woocommerce table.shop_table tfoot th,
.woocommerce table.shop_table td {
    border-top-color: #d9d9d9;
}
td.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions a {
    display: inline-block;
    padding: 0;
    border: 0;
    text-decoration: underline !important;
    background: transparent !important;
    color: #000 !important;
}
td.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions a:not(:last-child) {
    margin-right: 10px;
}
.woocommerce ul.order_details li {
    border-right: 0;
    font-size: 1em;
    margin-bottom: 10px;
}
header.woocommerce-Address-title.title {
    font-family: inherit;
}
.woocommerce-Address address {
    margin-top: 20px;
}
div#payment li {
    list-style: none;
}
#add_payment_method #payment, 
.woocommerce-cart #payment, 
.woocommerce-checkout #payment {
    background: #fff;
    border-radius: 0;
}
#add_payment_method #payment ul.payment_methods, 
.woocommerce-cart #payment ul.payment_methods, 
.woocommerce-checkout #payment ul.payment_methods {
    border-bottom-color: #d9d9d9;
    padding: 0;
}
#add_payment_method #payment div.payment_box, 
.woocommerce-cart #payment div.payment_box, 
.woocommerce-checkout #payment div.payment_box {
    color: #fff;
    background-color: #000;
}
#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: #000;
}
.woocommerce-terms-and-conditions-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
}
.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
    float: left;
    margin-top: 20px;
}
input#ship-to-different-address-checkbox {
    display: inline-block;
    vertical-align: middle;
    margin-top: -5px;
}
.woocommerce form .form-row label,
form.woocommerce-EditAccountForm.edit-account legend {
    font-weight: 500;
}
.woocommerce ul.order_details li {
    font-size: 14px;
    text-transform: capitalize;
}
.woocommerce ul.order_details li strong {
    font-size: 1em;
}
.wpdt-wc-payment-thankyou .accounts {
    margin-bottom: 30px;
}
.accounts .cart-collaterals {
    margin-top: 30px;
}
section.woocommerce-order-details {
    margin-top: 60px;
    margin-bottom: 60px !important;
}
.form-row.place-order {
    padding-left: 0;
    padding-right: 0;
}

/* Payment */
span.wpdt_wc_payment_form_bank_name,
span.wpdt_wc_payment_form_account_name,
span.wpdt_wc_payment_form_account_number {
    color: #000 !important;
}
.woocommerce-customer-details address {
    padding: 0 !important;
    border: 0 !important;
}
form.form-wpdt-wc-payment div.info-table div.row {
    float: none;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
}
form.form-wpdt-wc-payment section {
    margin-top: 60px;
}

header.woocommerce-Address-title.title h3,
.woocommerce-MyAccount-content h3,
.woocommerce-billing-fields h3,
h3#ship-to-different-address,
.woocommerce-column--shipping-address h2,
.woocommerce-column--billing-address h2,
h2.woocommerce-order-details__title,
form.form-wpdt-wc-payment h3,
#payment_heading,
h3#order_review_heading,
.entry-title._textcenter  {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 20px;
}
.cart_totals h2{
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 20px;
}


/* Account */
label.woocommerce-form__label.woocommerce-form__label-for-checkbox.woocommerce-form-login__rememberme.label.anim.fixed {
    position: static;
    top: auto;
    left: auto;
    display: block;
    margin-top: 5px;
    display: none;
}
.account-form .ur-frontend-form {
    border: 0;
    padding: 0;
    margin-bottom: 0;
}
.account-form .ur-frontend-form .ur-form-row .ur-form-grid {
    padding: 0;
}
.account-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item {
    margin-bottom: 0;
}
.account-form .ur-frontend-form .ur-form-row .ur-form-grid input[type=date], 
.account-form .ur-frontend-form .ur-form-row .ur-form-grid input[type=email], 
.account-form .ur-frontend-form .ur-form-row .ur-form-grid input[type=number], 
.account-form .ur-frontend-form .ur-form-row .ur-form-grid input[type=password], 
.account-form .ur-frontend-form .ur-form-row .ur-form-grid input[type=phone], 
.account-form .ur-frontend-form .ur-form-row .ur-form-grid input[type=text], 
.account-form .ur-frontend-form .ur-form-row .ur-form-grid input[type=timepicker], 
.account-form .ur-frontend-form .ur-form-row .ur-form-grid input[type=url], 
.account-form .ur-frontend-form .ur-form-row .ur-form-grid select, 
.account-form .ur-frontend-form .ur-form-row .ur-form-grid textarea {
    min-height: unset;
    margin-bottom: 0;
    line-height: unset;
}
.account-form .ur-frontend-form .ur-form-row .ur-form-grid label.ur-label {
    font-weight: 400;
}
.account-form .ur-frontend-form .ur-form-row .ur-form-grid label, 
.account-form .ur-frontend-form .ur-form-row .ur-form-grid legend {
    margin-top: 0;
    margin-bottom: 0;
}
.account-form .ur-frontend-form .ur-button-container .ur-submit-button {
    border: solid 1px #000;
}




/**/
.woocommerce form.checkout_coupon, 
.woocommerce form.login, 
.woocommerce form.register {
    border: 0;
    padding: 0;
    margin: 0;
    text-align: left;
    border-radius: 0;
}
#page .wc-proceed-to-checkout {
    margin-top: 30px;
}
#page .woocommerce .checkout-button,
#page .woocommerce .wpmc-nav-wrapper button.button,
#page .woocommerce-checkout-payment #place_order {
    font-size: 14px;
    height: 44px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    white-space: nowrap;
}
#page .woocommerce .wpmc-nav-wrapper {
    margin: 30px 0 0;
    justify-content: flex-end;
    width: 100%;
}
#page .woocommerce .wpmc-nav-wrapper button {
    margin: 0 !important;
}
#page .woocommerce .wpmc-nav-wrapper > *:not(:last-child) {
    margin-right: 10px !important;
}
#page .woocommerce .wpmc-nav-wrapper button#wpmc-prev.current, 
#page .woocommerce .wpmc-nav-wrapper button#wpmc-next.current, 
#page .woocommerce .wpmc-nav-wrapper button#wpmc-skip-login.current {
    display: inline-flex !important;
    background: #3600ff !important;
	color: #fff !important;
	border: 2px solid #3600ff !important;   
}
#page .woocommerce #payment #place_order {
	background: #3600ff !important;
	color: #fff !important;
	border: 2px solid #3600ff !important;   
	
}
#page .woocommerce .wpmc-nav-wrapper button#wpmc-back-to-cart,
#page .woocommerce .wpmc-nav-wrapper button#wpmc-back-to-cart.current,
#page .woocommerce .wpmc-nav-wrapper button#wpmc-prev,
#page .woocommerce .wpmc-nav-wrapper button#wpmc-prev.current,
#page .woocommerce .wpmc-nav-wrapper button#wpmc-next:not(.current) {
    display: none !important;
}


#page .woocommerce-billing-fields:not(:last-child) {
    margin-bottom: 30px;
}
/*
#page .woocommerce-billing-fields, #page .woocommerce-shipping-fields {
	width: 48%;
	float: left;
	margin: 0 1%;
}
*/

#page .woocommerce .wpmc-tabs-list.wpmc-3-tabs .wpmc-tab-item {
	width: 33.3333333%;
} 
#page .woocommerce form.woocommerce-checkout .wpmc-step-shipping {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}
#page .woocommerce form.woocommerce-checkout .wpmc-step-shipping.current {
	display: flex !important;
}
#page .woocommerce form.woocommerce-checkout .wpmc-step-shipping > * {
	width: 100%;
}
@media (min-width:768px) { 
	#page .woocommerce form.woocommerce-checkout .wpmc-step-shipping .woocommerce-billing-fields,
	#page .woocommerce form.woocommerce-checkout .wpmc-step-shipping .woocommerce-shipping-fields {
		width: calc(50% - 15px);
	}
    #page .woocommerce form.woocommerce-checkout .wpmc-step-shipping .woocommerce-billing-fields {
        order: 0;
    }
    #page .woocommerce form.woocommerce-checkout .wpmc-step-shipping .woocommerce-shipping-fields {
        order: 1;
    }
    #page .woocommerce form.woocommerce-checkout .wpmc-step-shipping .woocommerce-account-fields {
        order: 2;
    }
    #page .woocommerce form.woocommerce-checkout .wpmc-step-shipping .woocommerce-additional-fields {
        order: 3;
    }
}



#page .woocommerce form .form-row textarea {
    padding: 8px;
}

#page form.checkout_coupon.woocommerce-form-coupon {
    display: flex;
    flex-wrap: wrap;
}
#page form.checkout_coupon.woocommerce-form-coupon>* {
    width: 100%;
}
#page form.checkout_coupon.woocommerce-form-coupon>.form-row-first {
    width: auto;
    flex: 1;
}
#page form.checkout_coupon.woocommerce-form-coupon>.form-row-last {
    width: auto;
    margin-left: 5px;
}
#page form.checkout_coupon.woocommerce-form-coupon input#coupon_code {
    height: 34px;
}

#page .woocommerce #payment #place_order {
    float: right;
}

#page .woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
    display: inline-flex; 
    align-items: center;
    min-height: 34px;
    vertical-align: top;
    line-height: normal;
}
#page .woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme input {
    margin-right: 5px;
}

#page .woocommerce-notices-wrapper:empty {
    display: none;
}
#page .woocommerce-notices-wrapper:not(:empty) + .wpmc-tabs-wrapper {
    margin-top: 60px;
}

#woofc-area.woofc-area-loading:before,
#woofc-area.woofc-area-loading:after,
#woofc-count.woofc-count-loading:before,
#woofc-count.woofc-count-loading:after {
    display: none;
}

#add_payment_method #payment ul.payment_methods li, .woocommerce-cart #payment ul.payment_methods li, .woocommerce-checkout #payment ul.payment_methods li {
	line-height: 2;
text-align: left;
margin: 20px 1%;
font-weight: 400;
height: 62px;
text-align: center;
border: 1px solid rgba(0, 0, 0, 0.19);
line-height: 40px;
width: 48%;
float: left;
padding: 10px 0;
}




#page .page-dashboard .woocommerce {
    margin-top: 0 !important;
}
#page nav.woocommerce-MyAccount-navigation {
    overflow: hidden;
    height: 75px;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #2f21fe;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    color: #fff;
}
#page nav.woocommerce-MyAccount-navigation ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: calc(100% + 25px);
    white-space: nowrap;
    overflow: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
#page nav.woocommerce-MyAccount-navigation li {
    width: auto !important;
    flex: auto;
    height: 75px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    vertical-align: top;
    border: 0 !important;
    background: none !important;
    color: inherit !important;
}
#page nav.woocommerce-MyAccount-navigation li > a {
    border: 0 !important;
    background: none !important;
    color: inherit !important;
}
#page nav.woocommerce-MyAccount-navigation li.is-active > a {
    font-weight: 700 !important;
    color: #fff200 !important;
}

ins .woocommerce-Price-amount.amount bdi {
	font-weight: bold;
}