@charset "UTF-8";
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
    padding: 0 0;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}
.hamburger:hover {
    opacity: 1;
}
.hamburger.is-active:hover {
    opacity: 1;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: #964b11;
}

.hamburger-box {
    width: 17.5px;
    height: 12.5px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -0.75px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 17.5px;
    height: 1.5px;
    background-color: #964b11;
    border-radius: 0px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}
.hamburger-inner::before {
    top: -5.5px;
}
.hamburger-inner::after {
    bottom: -5.5px;
}

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
    perspective: 35px;
}
.hamburger--3dx .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 5.5px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -5.5px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
    perspective: 35px;
}
.hamburger--3dx-r .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 5.5px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -5.5px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
    perspective: 35px;
}
.hamburger--3dy .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 5.5px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -5.5px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
    perspective: 35px;
}
.hamburger--3dy-r .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 5.5px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -5.5px, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
    perspective: 35px;
}
.hamburger--3dxy .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner::before {
    transform: translate3d(0, 5.5px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
    transform: translate3d(0, -5.5px, 0) rotate(-45deg);
}

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
    perspective: 35px;
}
.hamburger--3dxy-r .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 5.5px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -5.5px, 0) rotate(-45deg);
}

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
    transform: translate3d(-3.5px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrow.is-active .hamburger-inner::after {
    transform: translate3d(-3.5px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
    transform: translate3d(3.5px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
    transform: translate3d(3.5px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
    transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
    top: 0;
    transform: translate3d(-3.5px, -4.375px, 0) rotate(-45deg) scale(0.7, 1);
    transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
    bottom: 0;
    transform: translate3d(-3.5px, 4.375px, 0) rotate(45deg) scale(0.7, 1);
    transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
    transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
    top: 0;
    transform: translate3d(3.5px, -4.375px, 0) rotate(45deg) scale(0.7, 1);
    transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: translate3d(3.5px, 4.375px, 0) rotate(-45deg) scale(0.7, 1);
    transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
    transform: rotate(-180deg);
}
.hamburger--arrowturn.is-active .hamburger-inner::before {
    transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrowturn.is-active .hamburger-inner::after {
    transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
    transform: rotate(-180deg);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
    transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
    transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
    transition-property: none;
}
.hamburger--boring.is-active .hamburger-inner {
    transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}
.hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
    top: -11px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
    transform: translate3d(0, -5.5px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
    top: -11px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
    transform: translate3d(0, -5.5px, 0) rotate(45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
    top: 0.75px;
    transition-duration: 0.275s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
    top: 5.5px;
    transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
    top: 11px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
    transform: translate3d(0, 5.5px, 0) rotate(135deg);
    transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -11px, 0) rotate(-270deg);
    transition-delay: 0.075s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
    top: 0.75px;
    transition-duration: 0.275s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
    top: 5.5px;
    transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
    top: 11px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
    transform: translate3d(0, 5.5px, 0) rotate(-135deg);
    transition-delay: 0.075s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -11px, 0) rotate(270deg);
    transition-delay: 0.075s;
}

/*
 * Emphatic
 */
.hamburger--emphatic {
    overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
    left: 0;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::after {
    top: 5.5px;
    right: 0;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
    left: -35px;
    top: -35px;
    transform: translate3d(35px, 35px, 0) rotate(45deg);
    transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
    right: -35px;
    top: -35px;
    transform: translate3d(-35px, 35px, 0) rotate(-45deg);
    transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
    overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
    left: 0;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::after {
    top: 5.5px;
    right: 0;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
    left: -35px;
    top: 35px;
    transform: translate3d(35px, -35px, 0) rotate(-45deg);
    transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
    right: -35px;
    top: 35px;
    transform: translate3d(-35px, -35px, 0) rotate(45deg);
    transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Minus
 */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
    transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}
.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
    opacity: 0;
    transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}
.hamburger--minus.is-active .hamburger-inner::before {
    top: 0;
}
.hamburger--minus.is-active .hamburger-inner::after {
    bottom: 0;
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
    top: 0.75px;
}
.hamburger--slider .hamburger-inner::before {
    top: 5.5px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
    top: 11px;
}
.hamburger--slider.is-active .hamburger-inner {
    transform: translate3d(0, 5.5px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-2.5px, -4px, 0);
    opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -11px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
    top: 0.75px;
}
.hamburger--slider-r .hamburger-inner::before {
    top: 5.5px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
    top: 11px;
}
.hamburger--slider-r.is-active .hamburger-inner {
    transform: translate3d(0, 5.5px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(2.5px, -4px, 0);
    opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -11px, 0) rotate(90deg);
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
    transition-duration: 0.22s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
    transform: rotate(225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
    transition-duration: 0.22s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
    transform: rotate(-225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
    top: 0.75px;
    transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
    top: 5.5px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
    top: 11px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
    transition-delay: 0.22s;
    background-color: transparent !important;
}
.hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 5.5px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 5.5px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
    top: -11px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
    transform: translate3d(0, -5.5px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
    transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
    transform: rotate(90deg);
    background-color: transparent !important;
    transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
    transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand-r .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r.is-active .hamburger-inner {
    transform: rotate(-90deg);
    background-color: transparent !important;
    transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
    transition-duration: 0.075s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
    transform: rotate(765deg);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
}

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
    transform: rotate(-765deg);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}

/**
 * Swiper 8.4.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 21, 2022
 */
@font-face {
    font-family: swiper-icons;
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
    font-weight: 400;
    font-style: normal;
}
:root {
    --swiper-theme-color:#007aff;
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
    transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
    touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
    touch-action: pan-x;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

.swiper-slide-invisible-blank {
    visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
    height: auto;
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
    transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
    -ms-scroll-snap-type: y mandatory;
        scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
    content: "";
    flex-shrink: 0;
    order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    -webkit-margin-start: var(--swiper-centered-offset-before);
            margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    -webkit-margin-before: var(--swiper-centered-offset-before);
            margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
}

.swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
}

:root {
    --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
    display: none !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 10px;
    right: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: "next";
}

.swiper-button-lock {
    display: none;
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 0.3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
    display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: 50%;
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-pagination-bullet:only-child {
    display: none !important;
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
}

.swiper-pagination-lock {
    display: none;
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
    display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
}

.swiper-scrollbar-cursor-drag {
    cursor: move;
}

.swiper-scrollbar-lock {
    display: none;
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.swiper-slide-zoomed {
    cursor: move;
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
    -webkit-animation: swiper-preloader-spin 1s infinite linear;
            animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color:#000;
}

@-webkit-keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
    flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-cube {
    overflow: visible;
}

.swiper-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
    content: "";
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    filter: blur(50px);
}

.swiper-flip {
    overflow: visible;
}

.swiper-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
}

.swiper-cards {
    overflow: visible;
}

.swiper-cards .swiper-slide {
    transform-origin: center bottom;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
}

html {
    scroll-padding-top: 110px;
}

body,
html {
    background: none;
}

a:focus,
input:focus,
button:focus,
select:focus,
textarea:focus {
    outline: none;
}

svg {
    transition: 0.34s;
}

a, a:before, a:after, input, select, textarea, button {
    transition: color 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), background 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), border 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

html, body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

ul, ol {
    list-style-position: outside;
}

ul {
    list-style: none;
}

ol {
    list-style: decimal;
}

a {
    text-decoration: none;
}

* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
}

a img {
    border: none;
}

img, video {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
}

video {
    outline: none;
}

header, footer, section, article, aside, main, nav, svg {
    display: block;
}

svg {
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
svg path {
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

table {
    border-collapse: collapse;
}

input, textarea, select, button {
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 0;
}

input[type=text], input[type=email], textarea, select {
    width: 100%;
}

input[type=submit] {
    cursor: pointer;
}

select, button {
    cursor: pointer;
}

textarea {
    display: block;
    overflow: auto;
    resize: vertical;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 50px white inset !important;
}

input[type=checkbox]:focus {
    outline: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Georgia", Times;
    color: #391802;
    -webkit-font-smoothing: subpixel-antialiased;
    outline: none !important;
}

body {
    overflow-x: hidden;
    width: 100%;
}

.btn,
.button {
    position: relative;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-align: center;
    color: #391802;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 23.25px 39px;
    border: 1px solid #CEA38B;
    text-transform: uppercase;
    font-weight: normal;
}
.btn:before,
.button:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #CEA38B;
    z-index: -1;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    margin: auto;
    -webkit-clip-path: circle(0 at 50% 50%);
    clip-path: circle(0 at 50% 50%);
    transition: 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
    display: none;
}
.btn:hover,
.button:hover {
    background-color: #CEA38B !important;
    color: #391802;
}
.btn:hover:before,
.button:hover:before {
    opacity: 1;
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
}

.rkbtn {
    position: relative;
}
.rkbtn a {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-align: center;
    color: #391802;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 23.25px 39px;
    border: 1px solid #CEA38B;
    text-transform: uppercase;
}
.rkbtn a:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #CEA38B;
    z-index: -1;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    margin: auto;
    -webkit-clip-path: circle(0 at 50% 50%);
    clip-path: circle(0 at 50% 50%);
    transition: 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
    display: none;
}
.rkbtn a:hover {
    background-color: #CEA38B !important;
    color: #391802 !important;
}
.rkbtn a:hover:before {
    opacity: 1;
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
}

.btn-line {
    position: relative;
    font-size: 16px;
    letter-spacing: 1.6px;
}
@media (max-width: 767px) {
    .btn-line {
        font-size: 14px;
    }
}
.btn-line:before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -4px;
    background-color: #391802;
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.btn-line:hover {
    background-color: transparent;
    color: #391802 !important;
}
.btn-line:hover:before {
    width: 50%;
}

.wrapper {
    width: 100%;
    max-width: 1210px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}
.wrapper.-lg {
    max-width: 1380px;
}

.sm {
    position: relative;
    display: flex;
    align-items: center;
}
.sm a {
    position: relative;
}
.sm a svg {
    width: 15.5px;
    height: 15.4px;
}
.sm a:not(:last-child) {
    margin-right: 26px;
}
@media (max-width: 299px) {
    .sm a:not(:last-child) {
        margin-right: 15px;
    }
}
.sm a:hover svg * {
    fill: #CEA38B !important;
}

.otgs-development-site-front-end {
    display: none !important;
}

.ad {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 90px;
    padding-bottom: 90px;
    border-top: 1px solid #CEA38B;
    border-bottom: 1px solid #CEA38B;
}
@media (max-width: 1024px) {
    .ad {
        padding: 40px 20px;
    }
}
.ad img {
    position: relative;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    width: 100%;
    max-width: 970px;
    height: 90px;
    margin: 0 auto;
}
@media (max-width: 1024px) {
    .ad img {
        height: auto;
    }
}

.rk-features {
    position: relative;
    margin-bottom: 5px;
    width: 100%;
}
@media (max-width: 767px) {
    .rk-features {
        margin-bottom: 0;
        margin-top: 10px;
    }
}
.rk-features .wp-block-group__inner-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.rk-features .wp-block-group__inner-container .wp-block-heading {
    position: relative;
    text-align: center;
    font-size: 17px;
    color: #391802;
    line-height: 1.18;
    letter-spacing: 2.55px;
    text-transform: uppercase;
    margin-top: 0 !important;
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.rk-features .wp-block-group__inner-container .wp-block-heading:before {
    content: "";
    width: 60px;
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: #CEA38B;
}

.usernotallowed {
    position: relative;
    padding-top: 65px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1024px) {
    .usernotallowed {
        padding-bottom: 80px;
    }
}
@media (max-width: 767px) {
    .usernotallowed {
        padding-top: 30px;
        padding-bottom: 50px;
    }
}
.usernotallowed h1 {
    text-align: center;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto 50px auto;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 6px;
}
@media (max-width: 767px) {
    .usernotallowed h1 {
        margin-bottom: 20px;
    }
}
.usernotallowed p {
    text-align: center;
    width: 100%;
    max-width: 580px;
    margin: 0 auto 50px auto;
}
@media (max-width: 767px) {
    .usernotallowed p {
        margin-bottom: 20px;
    }
}

figcaption {
    color: #391802;
}

.select2-container--open .select2-dropdown--below {
    border-radius: 0 !important;
    border-color: #CEA38B !important;
}

.select2-container--default .select2-results__option[aria-selected=true], .select2-container--default .select2-results__option[data-selected=true] {
    background-color: #fff;
}

.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected] {
    background-color: #CEA38B !important;
}

.f78 {
    font-size: 78px;
    font-weight: 400;
    line-height: 1.03;
}
@media (max-width: 1439px) {
    .f78 {
        font-size: 60px;
    }
}
@media (max-width: 1024px) {
    .f78 {
        font-size: 52px;
    }
}
@media (max-width: 767px) {
    .f78 {
        font-size: 34px;
        line-height: 1.3;
    }
}

.f70 {
    font-size: 70px;
    font-weight: 400;
    line-height: 1.03;
}
@media (max-width: 1439px) {
    .f70 {
        font-size: 60px;
    }
}
@media (max-width: 1024px) {
    .f70 {
        font-size: 52px;
    }
}
@media (max-width: 767px) {
    .f70 {
        font-size: 30px;
        line-height: 1.3;
    }
}

.f60 {
    font-size: 60px;
    font-weight: 400;
    line-height: 1.03;
}
@media (max-width: 1439px) {
    .f60 {
        font-size: 50px;
    }
}
@media (max-width: 1024px) {
    .f60 {
        font-size: 36px;
    }
}
@media (max-width: 767px) {
    .f60 {
        font-size: 28px;
        line-height: 1.3;
    }
}

.f48 {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.3;
}
@media (max-width: 1439px) {
    .f48 {
        font-size: 44px;
    }
}
@media (max-width: 1024px) {
    .f48 {
        font-size: 40px;
    }
}
@media (max-width: 767px) {
    .f48 {
        font-size: 28px;
    }
}

.f40 {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.03;
}
@media (max-width: 1439px) {
    .f40 {
        font-size: 32px;
    }
}
@media (max-width: 1024px) {
    .f40 {
        font-size: 28px;
    }
}
@media (max-width: 767px) {
    .f40 {
        font-size: 27px;
    }
}

.f36 {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.03;
}
@media (max-width: 1439px) {
    .f36 {
        font-size: 32px;
    }
}
@media (max-width: 1024px) {
    .f36 {
        font-size: 28px;
    }
}
@media (max-width: 767px) {
    .f36 {
        font-size: 26px;
    }
}

.f32 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.03;
}
@media (max-width: 1439px) {
    .f32 {
        font-size: 28px;
    }
}
@media (max-width: 1024px) {
    .f32 {
        font-size: 26px;
    }
}
@media (max-width: 767px) {
    .f32 {
        font-size: 24px;
    }
}

.f30 {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.03;
}
@media (max-width: 1439px) {
    .f30 {
        font-size: 28px;
    }
}
@media (max-width: 1024px) {
    .f30 {
        font-size: 26px;
    }
}
@media (max-width: 767px) {
    .f30 {
        font-size: 24px;
    }
}

.f28 {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.03;
}
@media (max-width: 1439px) {
    .f28 {
        font-size: 26px;
    }
}
@media (max-width: 1024px) {
    .f28 {
        font-size: 23px;
    }
}
@media (max-width: 767px) {
    .f28 {
        font-size: 21px;
    }
}

.f26 {
    font-size: 26px;
    line-height: 1.5;
}
@media (max-width: 1439px) {
    .f26 {
        font-size: 24px;
    }
}
@media (max-width: 1024px) {
    .f26 {
        font-size: 22px;
    }
}
@media (max-width: 767px) {
    .f26 {
        font-size: 20px;
    }
}

.f23 {
    font-size: 23px;
    line-height: 1.5;
}
@media (max-width: 1439px) {
    .f23 {
        font-size: 21px;
    }
}
@media (max-width: 1024px) {
    .f23 {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .f23 {
        font-size: 18px;
    }
}
@media (max-width: 399px) {
    .f23 {
        font-size: 16px;
    }
}

.f22 {
    font-size: 22px;
    line-height: 1.5;
}
@media (max-width: 1439px) {
    .f22 {
        font-size: 18px;
    }
}
@media (max-width: 1024px) {
    .f22 {
        font-size: 17px;
    }
}
@media (max-width: 767px) {
    .f22 {
        font-size: 16px;
    }
}

.f21 {
    font-size: 21px;
    line-height: 1.5;
}
@media (max-width: 1439px) {
    .f21 {
        font-size: 19px;
    }
}
@media (max-width: 1024px) {
    .f21 {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .f21 {
        font-size: 16px;
    }
}

.f20 {
    font-size: 20px;
    line-height: 1.5;
}
@media (max-width: 1439px) {
    .f20 {
        font-size: 18px;
    }
}
@media (max-width: 1024px) {
    .f20 {
        font-size: 17px;
    }
}
@media (max-width: 767px) {
    .f20 {
        font-size: 16px;
    }
}

.f18 {
    font-size: 18px;
    line-height: 1.5;
}

.f17 {
    font-size: 17px;
    line-height: 1.5;
}
@media (max-width: 767px) {
    .f17 {
        font-size: 16px;
    }
}

.f16 {
    font-size: 16px;
    line-height: 1.5;
}
@media (max-width: 767px) {
    .f16 {
        font-size: 14px;
    }
}

.f15 {
    font-size: 15px;
    line-height: 1.5;
}
@media (max-width: 767px) {
    .f15 {
        font-size: 14px;
    }
}

.f14 {
    font-size: 14px;
    line-height: 1.3;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a {
    color: #391802;
}

.pagination {
    position: relative;
}
.pagination nav {
    margin-top: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1024px) {
    .pagination nav {
        margin-top: 50px;
    }
}
@media (max-width: 219px) {
    .pagination nav {
        flex-direction: column;
    }
}
.pagination nav .page-numbers {
    display: none !important;
}
.pagination nav .paginationwrapper-prev {
    position: relative;
    order: -1;
}
@media (max-width: 339px) {
    .pagination nav .paginationwrapper-prev {
        width: 45%;
    }
}
@media (max-width: 219px) {
    .pagination nav .paginationwrapper-prev {
        width: 100%;
        margin-bottom: 10px;
    }
}
.pagination nav .paginationwrapper-prev .next {
    display: none !important;
}
.pagination nav .paginationwrapper-prev.disabled {
    opacity: 0.5;
    pointer-events: none;
}
.pagination nav .paginationwrapper-prev a {
    position: relative;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-align: center;
    color: #391802;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 40px;
    border: 1px solid #CEA38B;
    text-transform: uppercase;
    width: 150px;
}
@media (max-width: 767px) {
    .pagination nav .paginationwrapper-prev a {
        width: 120px;
        padding: 24px 15px;
    }
}
@media (max-width: 339px) {
    .pagination nav .paginationwrapper-prev a {
        width: 100%;
        padding: 18px 14px;
    }
}
.pagination nav .paginationwrapper-prev a:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #CEA38B;
    z-index: -1;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    margin: auto;
    -webkit-clip-path: circle(0 at 50% 50%);
    clip-path: circle(0 at 50% 50%);
    transition: 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
    display: none;
}
.pagination nav .paginationwrapper-prev a:hover {
    background-color: #CEA38B;
    color: #391802;
}
.pagination nav .paginationwrapper-prev a:hover:before {
    opacity: 1;
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
}
.pagination nav .paginationwrapper-prev.disabled {
    opacity: 0.5;
    pointer-events: none;
}
.pagination nav .paginationwrapper-prev .disabled {
    opacity: 0.5;
    pointer-events: none;
}
.pagination nav .paginationwrapper-next {
    position: relative;
    display: flex;
    order: 10000000000000002000;
}
@media (max-width: 339px) {
    .pagination nav .paginationwrapper-next {
        width: 45%;
    }
}
@media (max-width: 219px) {
    .pagination nav .paginationwrapper-next {
        width: 100%;
    }
}
.pagination nav .paginationwrapper-next .prev {
    display: none !important;
}
.pagination nav .paginationwrapper-next a {
    position: relative;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-align: center;
    color: #391802;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 40px;
    border: 1px solid #CEA38B;
    text-transform: uppercase;
    width: 150px;
}
@media (max-width: 767px) {
    .pagination nav .paginationwrapper-next a {
        width: 120px;
        padding: 24px 15px;
    }
}
@media (max-width: 339px) {
    .pagination nav .paginationwrapper-next a {
        width: 100%;
        padding: 18px 14px;
    }
}
.pagination nav .paginationwrapper-next a:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #CEA38B;
    z-index: -1;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    margin: auto;
    -webkit-clip-path: circle(0 at 50% 50%);
    clip-path: circle(0 at 50% 50%);
    transition: 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
    display: none;
}
.pagination nav .paginationwrapper-next a:hover {
    background-color: #CEA38B;
    color: #391802;
}
.pagination nav .paginationwrapper-next a:hover:before {
    opacity: 1;
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
}
.pagination nav .paginationwrapper-next.disabled {
    opacity: 0.5;
    pointer-events: none;
}
.pagination nav .paginationwrapper-next .disabled {
    opacity: 0.5;
    pointer-events: none;
}
.pagination nav .prev,
.pagination nav .next {
    position: relative;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-align: center;
    color: #391802;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 24px 40px;
    border: 1px solid #CEA38B;
    text-transform: uppercase;
    width: 150px;
}
@media (max-width: 767px) {
    .pagination nav .prev,
.pagination nav .next {
        width: 120px;
    }
}
@media (max-width: 339px) {
    .pagination nav .prev,
.pagination nav .next {
        width: 100%;
    }
}
.pagination nav .prev:before,
.pagination nav .next:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #CEA38B;
    z-index: -1;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    margin: auto;
    -webkit-clip-path: circle(0 at 50% 50%);
    clip-path: circle(0 at 50% 50%);
    transition: 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.pagination nav .prev:hover:before,
.pagination nav .next:hover:before {
    opacity: 1;
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
}
.pagination nav .pagination-info {
    order: 2;
}
@media (max-width: 339px) {
    .pagination nav .pagination-info {
        display: none;
    }
}

.content h2 {
    text-align: left;
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: 4.3px;
}
@media (max-width: 1439px) {
    .content h2 {
        font-size: 28px;
    }
}
@media (max-width: 1024px) {
    .content h2 {
        font-size: 26px;
        margin-bottom: 25px;
    }
}
@media (max-width: 767px) {
    .content h2 {
        margin-bottom: 20px;
        font-size: 23px;
    }
}
@media (max-width: 329px) {
    .content h2 {
        font-size: 21px;
        overflow-wrap: break-word;
    }
}
.content h2:not(:first-child) {
    margin-top: 60px;
}
@media (max-width: 1024px) {
    .content h2:not(:first-child) {
        margin-top: 30px;
    }
}
@media (max-width: 767px) {
    .content h2:not(:first-child) {
        margin-top: 30px;
    }
}
.content h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 15px;
}
@media (max-width: 1024px) {
    .content h3 {
        font-size: 22px;
    }
}
@media (max-width: 767px) {
    .content h3 {
        font-size: 21px;
    }
}
.content h3:not(:first-child) {
    margin-top: 40px;
}
@media (max-width: 1024px) {
    .content h3:not(:first-child) {
        margin-top: 25px;
    }
}
@media (max-width: 767px) {
    .content h3:not(:first-child) {
        margin-top: 20px;
    }
}
.content h4 {
    font-size: 19px;
    font-weight: 400;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 20px;
}
@media (max-width: 1024px) {
    .content h4 {
        margin-bottom: 15px;
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .content h4 {
        margin-bottom: 10px;
        font-size: 18px;
    }
}
.content h4:not(:first-child) {
    margin-top: 30px;
}
@media (max-width: 1024px) {
    .content h4:not(:first-child) {
        margin-top: 25px;
    }
}
@media (max-width: 767px) {
    .content h4:not(:first-child) {
        margin-top: 20px;
    }
}
.content p {
    font-size: 16px;
    line-height: 1.56;
    text-align: left;
}
@media (max-width: 1024px) {
    .content p {
        font-size: 15px;
    }
}
@media (max-width: 767px) {
    .content p {
        font-size: 14px;
    }
}
.content p:empty {
    display: none;
}
.content p:not(:last-child) {
    margin-bottom: 30px;
}
@media (max-width: 1024px) {
    .content p:not(:last-child) {
        margin-bottom: 25px;
    }
}
@media (max-width: 767px) {
    .content p:not(:last-child) {
        margin-bottom: 20px;
    }
}
.content blockquote,
.content em {
    font-size: 16px;
    line-height: 1.33;
    text-align: left;
}
@media (max-width: 1024px) {
    .content blockquote,
.content em {
        font-size: 15px;
    }
}
@media (max-width: 767px) {
    .content blockquote,
.content em {
        font-size: 14px;
    }
}
.content blockquote:not(:last-child),
.content em:not(:last-child) {
    margin-bottom: 30px;
}
@media (max-width: 1024px) {
    .content blockquote:not(:last-child),
.content em:not(:last-child) {
        margin-bottom: 25px;
    }
}
@media (max-width: 767px) {
    .content blockquote:not(:last-child),
.content em:not(:last-child) {
        margin-bottom: 20px;
    }
}
.content hr {
    margin: 20px 0;
}
.content a {
    color: #CEA38B;
    text-decoration: underline;
    white-space: pre-wrap;
    /* CSS3 */
    white-space: -moz-pre-wrap;
    /* Mozilla, since 1999 */
    white-space: -pre-wrap;
    /* Opera 4-6 */
    white-space: -o-pre-wrap;
    /* Opera 7 */
    word-wrap: break-word;
    /* Internet Explorer 5.5+ */
}
.content a:hover {
    color: #DE0D2C;
}
.content ol {
    list-style-position: inside;
}
.content ul,
.content ol {
    position: relative;
    margin-top: 10px;
    margin-bottom: 40px;
    word-wrap: break-word;
}
.content ul li {
    padding-left: 15px;
}
.content ul li:before {
    content: "";
    width: 6px;
    min-width: 6px;
    max-width: 6px;
    height: 6px;
    min-height: 6px;
    max-height: 6px;
    border-radius: 50%;
    background-color: #DE0D2C;
    position: absolute;
    left: 0;
    top: 7px;
}
.content li {
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 1.33;
    text-align: left;
}
@media (max-width: 1024px) {
    .content li {
        font-size: 15px;
    }
}
@media (max-width: 767px) {
    .content li {
        font-size: 14px;
    }
}
.content li:not(:last-child) {
    margin-bottom: 25px;
}
.content table {
    width: 100%;
    border: 1px solid #d9d9d9;
    border-collapse: collapse;
}
.content table * {
    border: 1px solid #d9d9d9;
}
.content table th {
    text-align: left;
}
.content table tr,
.content table td,
.content table th {
    padding: 10px;
}
.content img {
    margin: 40px 0;
}
@media (max-width: 767px) {
    .content img {
        margin: 20px 0;
    }
}
.content strong,
.content b {
    font-weight: bold;
}
.content * img {
    width: 100%;
}
.content code,
.content .code-block {
    background: #41444b;
    border: 1px solid #000;
    border-radius: 2px;
    padding: 0px 4px;
    color: #9cdcff;
    font-size: 13px;
}
.content .is-layout-flex {
    position: relative;
    align-items: stretch;
    margin: 51px 0 48px 0;
    width: 100%;
    gap: 60px;
}
@media (max-width: 767px) {
    .content .is-layout-flex {
        flex-direction: column;
        gap: 30px;
        margin: 30px 0;
    }
}
.content .is-layout-flex .wp-block-column {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
}
@media (max-width: 767px) {
    .content .is-layout-flex .wp-block-column {
        width: 100%;
    }
}
.content .is-layout-flex figure {
    display: flex;
    flex-direction: column;
    width: 100% !important;
    height: 100% !important;
    margin: 0;
}
.content .is-layout-flex img {
    width: 100% !important;
    height: 100% !important;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    margin: 0;
}
.content .is-layout-flex figcaption {
    font-size: 13px;
    margin-top: 3px;
}
.content .wp-block-gallery.has-nested-images {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}
@media (max-width: 1149px) {
    .content .wp-block-gallery.has-nested-images {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 1024px) {
    .content .wp-block-gallery.has-nested-images {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .content .wp-block-gallery.has-nested-images {
        grid-gap: 10px;
    }
}
@media (max-width: 329px) {
    .content .wp-block-gallery.has-nested-images {
        grid-template-columns: 1fr;
    }
}
.content .wp-block-gallery.has-nested-images figure {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
}
.content .wp-block-gallery.has-nested-images figure img {
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    width: 100%;
    height: 100%;
    margin: 0 !important;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.content .wp-block-gallery.has-nested-images figure:hover img {
    transform: scale(1.1, 1.1);
}
.content .wp-block-media-text {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
    margin: 40px 0;
}
@media (max-width: 1024px) {
    .content .wp-block-media-text {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
}
@media (max-width: 767px) {
    .content .wp-block-media-text {
        margin: 20px 0;
    }
}
.content .wp-block-media-text figure,
.content .wp-block-media-text img {
    margin: 0;
}
.content .wp-block-embed__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}
@media (max-width: 767px) {
    .content .wp-block-embed__wrapper {
        margin-bottom: 30px;
    }
}
.content iframe {
    position: relative;
    max-width: 100%;
    width: 640px;
    height: 360px;
    min-height: 360px;
    max-height: 360px;
    margin: 0 auto;
}
@media (max-width: 767px) {
    .content iframe {
        min-height: 240px;
        max-height: none;
        height: auto;
    }
}
.content .is-provider-spotify iframe {
    width: 100% !important;
    height: 360px !important;
    min-height: 360px !important;
    max-height: 360px !important;
}

.wpcf7 {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 45px;
}
@media (max-width: 767px) {
    .wpcf7 {
        margin-top: 30px;
    }
}
.wpcf7 form {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    align-items: stretch;
}
.wpcf7 form .leftpanel {
    position: relative;
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
@media (max-width: 767px) {
    .wpcf7 form .leftpanel {
        width: 100%;
    }
}
.wpcf7 form .leftpanel .email .wpcf7-not-valid-tip {
    position: absolute;
}
.wpcf7 form .rightpanel {
    position: relative;
    width: calc(50% - 15px);
}
@media (max-width: 767px) {
    .wpcf7 form .rightpanel {
        width: 100%;
        margin-top: 30px;
    }
}
@media (max-width: 767px) {
    .wpcf7 form {
        display: flex;
        flex-direction: column;
        grid-gap: 15px;
    }
}
.wpcf7 form p {
    margin-top: 0;
    height: 100%;
}
.wpcf7 form p .wpcf7-not-valid-tip:not(:first-of-type) {
    display: none;
}
.wpcf7 form br {
    display: none;
}
.wpcf7 form .wpcf7-form-control-wrap {
    width: 100%;
    height: 100%;
    margin-top: 3px;
}
.wpcf7 form .submit {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}
.wpcf7 form .submit p {
    display: flex;
    flex-direction: column;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    align-items: center;
    justify-content: center;
}
.wpcf7 form .submit input[type=submit] {
    font-size: 12px;
    font-weight: normal !important;
    letter-spacing: 1.2px;
    text-align: center;
    color: #391802;
    text-transform: uppercase;
    padding: 23.25px 40px;
}
.wpcf7 form .submit input[type=submit]:hover {
    color: #391802;
    background-color: #CEA38B;
}
.wpcf7 .wpcf7-spinner {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.wpcf7 .wpcf7-not-valid-tip {
    color: #CEA38B !important;
}
.wpcf7 .wpcf7-response-output {
    background-color: #CEA38B;
    border-color: #CEA38B !important;
    font-size: 12px;
    display: flex;
    justify-content: center;
    text-align: center;
    color: #fff;
    width: 100%;
}

input {
    border: 1px solid #CEA38B;
    color: #391802;
    font-size: 16px;
    padding: 20px 12px;
    background-color: #fff;
}
input[type=checkbox] {
    position: relative;
}
input[type=checkbox]:checked:after {
    content: "¬";
    font-size: 28px;
    color: #391802;
    position: absolute;
    left: 8px;
    right: 0;
    top: 1px;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(120deg);
}

label {
    width: 100%;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-align: left;
    color: #391802;
    text-transform: uppercase;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
    margin-bottom: 5px;
}

.wpcf7-form-control-wrap {
    margin-top: 4px !important;
}

textarea {
    border: 1px solid #CEA38B;
    height: 100%;
    color: #391802;
    font-size: 16px;
    padding: 20px 12px;
    background-color: #fff;
    height: 100%;
}

.pms-form-submit {
    font-size: 12px;
    letter-spacing: 1.2px;
    text-align: center;
    color: #391802;
    text-transform: uppercase;
    padding: 23.25px 40px;
    margin-top: 20px;
}
.pms-form-submit:hover {
    color: #391802 !important;
    background-color: #CEA38B;
}

.woocommerce-notices-wrapper {
    width: 100%;
}

.woocommerce-message,
.woocommerce-info {
    padding: 20px 10px;
    border-top: 1px solid #CEA38B;
    width: 100%;
    background-color: rgba(206, 163, 139, 0.05);
    border-color: #CEA38B;
    border-width: 1px !important;
    color: #391802 !important;
    font-weight: normal !important;
    margin-bottom: 30px !important;
    display: flex !important;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 5px 0;
}
.woocommerce-message:before,
.woocommerce-info:before {
    content: "!";
    color: #fff;
    background-color: #CEA38B;
    border-radius: 50%;
    min-width: 16px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 10px;
}
.woocommerce-message li,
.woocommerce-info li {
    position: relative;
    width: calc(100% - 27px);
    margin-left: auto;
}
.woocommerce-message a,
.woocommerce-info a {
    position: relative !important;
    background-color: transparent !important;
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
    font-size: 12px !important;
    letter-spacing: 1.2px !important;
    text-align: center !important;
    color: #391802 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 20px !important;
    border: 1px solid #CEA38B !important;
    text-transform: uppercase !important;
    text-decoration: underline;
}
.woocommerce-message a:before,
.woocommerce-info a:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #CEA38B;
    z-index: -1;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    margin: auto;
    -webkit-clip-path: circle(0 at 50% 50%);
    clip-path: circle(0 at 50% 50%);
    transition: 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.woocommerce-message a:hover,
.woocommerce-info a:hover {
    color: #fff !important;
}
.woocommerce-message a:hover:before,
.woocommerce-info a:hover:before {
    opacity: 1;
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
}

.woocommerce-error {
    padding: 20px 10px;
    border-top: 1px solid #CEA38B;
    width: 100%;
    background-color: rgba(206, 163, 139, 0.05);
    border-color: #CEA38B;
    border-width: 1px !important;
    color: #391802 !important;
    font-weight: normal !important;
    margin-bottom: 30px !important;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 5px 0;
}
.woocommerce-error strong {
    font-weight: normal !important;
}
.woocommerce-error:before {
    content: "!";
    color: #fff;
    background-color: #CEA38B;
    border-radius: 50%;
    min-width: 16px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 10px;
}
.woocommerce-error li {
    position: relative;
    width: calc(100% - 27px);
    margin-left: auto;
}

.header {
    position: sticky;
    top: 0;
    padding-top: 11px;
    padding-bottom: 11px;
    border-bottom: 1px solid #CEA38B;
    background-color: #fff;
    z-index: 9999999999;
}
@media (max-width: 767px) {
    .header {
        padding-bottom: 0;
        border-bottom: 0;
    }
}
.header .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .header .wrapper {
        flex-wrap: wrap;
    }
}
.header-logo {
    position: relative;
    width: calc(40% - 20px);
}
@media (max-width: 1349px) {
    .header-logo {
        width: 45%;
    }
}
@media (max-width: 1024px) {
    .header-logo {
        z-index: 16;
    }
}
@media (max-width: 767px) {
    .header-logo {
        order: -1;
    }
}
.header-logo svg,
.header-logo img {
    width: 253.27px;
    height: 52.17px;
}
@media (max-width: 849px) {
    .header-logo svg,
.header-logo img {
        width: 186.3px;
        height: 38.4px;
    }
}
@media (max-width: 329px) {
    .header-logo svg,
.header-logo img {
        width: 140px;
        height: auto;
    }
}
@media (max-width: 299px) {
    .header-logo svg,
.header-logo img {
        width: 100%;
        height: auto;
    }
}
.header-nav {
    position: relative;
    margin: 0 auto 0 auto;
}
@media (max-width: 767px) {
    .header-nav {
        order: 3;
        width: 100%;
        border-top: 1px solid #CEA38B;
        border-bottom: 1px solid #CEA38B;
        padding: 10.5px 0;
        margin-top: 11px;
    }
}
.header-nav ul {
    display: flex;
    align-items: center;
}
@media (max-width: 767px) {
    .header-nav ul {
        justify-content: center;
    }
}
.header-nav li {
    position: relative;
}
.header-nav li:not(:last-child) {
    margin-right: 30px;
}
@media (max-width: 329px) {
    .header-nav li:not(:last-child) {
        margin-right: 15px;
    }
}
.header-nav li.current-menu-item a:before {
    opacity: 1;
}
.header-nav li a {
    position: relative;
    color: #391802;
    font-size: 16px;
}
@media (max-width: 1349px) {
    .header-nav li a {
        font-size: 15px;
    }
}
@media (max-width: 329px) {
    .header-nav li a {
        font-size: 14px;
    }
}
.header-nav li a:before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: auto;
    right: 0;
    bottom: -5.5px;
    background-color: #CEA38B;
    opacity: 0;
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header-nav li a:hover:before {
    opacity: 1;
}
.header-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: calc(40% - 20px);
}
@media (max-width: 1349px) {
    .header-content {
        width: 45%;
    }
}
@media (max-width: 767px) {
    .header-content {
        order: 2;
    }
}
.header-content-con {
    position: relative;
    display: flex;
    align-items: center;
}
@media (max-width: 1024px) {
    .header-content-con {
        visibility: hidden;
        pointer-events: none;
        width: 100%;
        overflow: scroll;
        -webkit-overflow-scrolling: touch;
        position: fixed;
        top: 0;
        left: 0;
        will-change: transform;
        transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
        display: flex;
        flex-direction: column;
        transform: translateY(-100%);
        padding: 90px 20px 150px 20px;
        background: #fff;
        z-index: 14;
        min-height: 100vh;
        min-height: -webkit-fill-available;
        height: 100vh;
    }
    .header-content-con.-open {
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
}
.header-content-search {
    position: relative;
    cursor: pointer;
    width: 35px;
    border: 1px solid #fff;
    height: 36px;
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 1024px) {
    .header-content-search {
        width: 100%;
        border-color: #CEA38B;
        order: 2;
        height: auto;
    }
}
.header-content-search form {
    position: relative;
    height: 100%;
    opacity: 0;
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 1024px) {
    .header-content-search form {
        opacity: 1;
    }
}
.header-content-search form div {
    display: flex;
    align-items: stretch;
    height: 100%;
}
.header-content-search form label {
    display: none;
}
.header-content-search form #s {
    width: calc(100% - 28px);
    border: none;
    font-size: 12px;
    height: 100%;
    padding: 11px 14px;
    color: #391802;
}
@media (max-width: 1349px) {
    .header-content-search form #s {
        padding: 11px;
    }
}
@media (max-width: 1024px) {
    .header-content-search form #s {
        font-size: 15px;
        padding: 17px 20px;
    }
}
@media (max-width: 329px) {
    .header-content-search form #s {
        font-size: 13px;
        padding: 15px;
    }
}
.header-content-search form #s::-moz-placeholder {
    font-size: 12px;
    color: #391802;
}
.header-content-search form #s:-ms-input-placeholder {
    font-size: 12px;
    color: #391802;
}
.header-content-search form #s::placeholder {
    font-size: 12px;
    color: #391802;
}
@media (max-width: 1349px) {
    .header-content-search form #s::-moz-placeholder {
        font-size: 11px;
    }
    .header-content-search form #s:-ms-input-placeholder {
        font-size: 11px;
    }
    .header-content-search form #s::placeholder {
        font-size: 11px;
    }
}
@media (max-width: 1024px) {
    .header-content-search form #s::-moz-placeholder {
        font-size: 15px;
    }
    .header-content-search form #s:-ms-input-placeholder {
        font-size: 15px;
    }
    .header-content-search form #s::placeholder {
        font-size: 15px;
    }
}
@media (max-width: 329px) {
    .header-content-search form #s::-moz-placeholder {
        font-size: 13px;
    }
    .header-content-search form #s:-ms-input-placeholder {
        font-size: 13px;
    }
    .header-content-search form #s::placeholder {
        font-size: 13px;
    }
}
.header-content-search form #searchsubmit {
    opacity: 0;
    width: 28px;
}
@media (max-width: 1024px) {
    .header-content-search form #searchsubmit {
        width: 40px;
    }
}
.header-content-search svg {
    width: 14px;
    height: 14px;
    position: absolute;
    right: 7px;
    top: 0;
    bottom: 0;
    margin: auto;
    pointer-events: none;
}
@media (max-width: 1024px) {
    .header-content-search svg {
        right: 14px;
    }
}
.header-content-search:hover {
    width: 185px;
    border-color: #CEA38B;
}
@media (max-width: 1449px) {
    .header-content-search:hover {
        width: 180px;
    }
}
@media (max-width: 1024px) {
    .header-content-search:hover {
        width: 100%;
    }
}
.header-content-search:hover form {
    opacity: 1;
}
.header-content-usermenu {
    position: relative;
    margin-left: 15px;
    margin-right: 20px;
}
@media (max-width: 1349px) {
    .header-content-usermenu {
        min-width: -webkit-fit-content;
        min-width: -moz-fit-content;
        min-width: fit-content;
    }
}
@media (max-width: 1024px) {
    .header-content-usermenu {
        margin: 0 0 40px 0;
        width: 100%;
        order: 1;
    }
}
.header-content-usermenu ul {
    display: flex;
    align-items: center;
}
@media (max-width: 1024px) {
    .header-content-usermenu ul {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }
}
.header-content-usermenu li {
    position: relative;
}
@media (max-width: 1024px) {
    .header-content-usermenu li {
        width: 100%;
    }
}
.header-content-usermenu li:not(:last-child) {
    margin-right: 18px;
}
@media (max-width: 1024px) {
    .header-content-usermenu li:not(:last-child) {
        margin-right: 0;
    }
}
.header-content-usermenu li.bag-icon a {
    display: flex;
    align-items: center;
}
.header-content-usermenu li.bag-icon a svg {
    margin-left: 6px;
}
@media (max-width: 1024px) {
    .header-content-usermenu li.bag-icon a svg {
        margin-left: 7.5px;
    }
}
.header-content-usermenu li.bag-icon a svg * {
    fill: #391802;
}
.header-content-usermenu li a {
    color: #391802;
    font-size: 16px;
}
@media (max-width: 1349px) {
    .header-content-usermenu li a {
        font-size: 15px;
    }
}
@media (max-width: 1249px) {
    .header-content-usermenu li a {
        font-size: 14px;
    }
}
@media (max-width: 1024px) {
    .header-content-usermenu li a {
        position: relative;
        display: flex;
        font-size: 15px;
        padding: 16.5px 0;
        border-bottom: 1px solid #CEA38B;
    }
}
.header-content-usermenu li a:hover {
    color: #CEA38B;
}
.header-content-usermenu li a:hover svg * {
    fill: #CEA38B;
}
.header-content .wpml-ls {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
@media (max-width: 1024px) {
    .header-content .wpml-ls {
        z-index: 16;
        margin-right: 27px;
    }
}
.header-content .wpml-ls li.wpml-ls-item-legacy-dropdown {
    cursor: pointer;
}
.header-content .wpml-ls li.wpml-ls-item-legacy-dropdown:before {
    content: "";
    width: 100%;
    height: 22px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -22px;
}
.header-content .wpml-ls li:hover a {
    background-color: inherit !important;
}
.header-content .wpml-ls a {
    display: flex;
    align-items: flex-start;
    border: 0;
    padding: 0;
}
.header-content .wpml-ls a.js-wpml-ls-item-toggle {
    pointer-events: none;
    font-size: 15px;
    color: #391802;
    display: flex;
    align-items: center;
}
.header-content .wpml-ls a.js-wpml-ls-item-toggle svg {
    margin-left: 10px;
}
.header-content .wpml-ls a:after {
    content: none;
}
.header-content .wpml-ls .wpml-ls-sub-menu {
    width: 90px;
    height: auto;
    border: 1px solid #CEA38B;
    background-color: #fff !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 25px;
    transform: translate(30px, 20px);
    left: auto;
}
@media (max-width: 1449px) {
    .header-content .wpml-ls .wpml-ls-sub-menu {
        transform: translate(0, 20px);
    }
}
.header-content .wpml-ls .wpml-ls-sub-menu li:not(:last-child) {
    margin-bottom: 20px;
}
.header-content .wpml-ls .wpml-ls-sub-menu li a {
    font-size: 14px;
    color: #391802;
}
.header-content .wpml-ls .wpml-ls-sub-menu li a:hover {
    color: #CEA38B;
}
.header-hamburger {
    position: relative;
    display: none;
}
@media (max-width: 1024px) {
    .header-hamburger {
        display: flex;
        z-index: 15;
    }
}

.footer {
    position: relative;
    padding-top: 100px;
    padding-bottom: 35px;
    background-color: #fff;
    border-top: 1px solid #CEA38B;
}
@media (max-width: 767px) {
    .footer {
        padding-top: 52px;
        padding-bottom: 52px;
    }
}
.footer .wrapper {
    display: flex;
    flex-direction: column;
}
.footer-top {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 50px;
}
@media (max-width: 767px) {
    .footer-top {
        padding-bottom: 32.1px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}
.footer-top-logo {
    position: relative;
}
@media (max-width: 767px) {
    .footer-top-logo {
        margin-bottom: 22.6px;
    }
}
.footer-top-logo svg,
.footer-top-logo img {
    width: 253.3px;
    height: 52.2px;
}
@media (max-width: 767px) {
    .footer-top-logo svg,
.footer-top-logo img {
        width: 190px;
        height: auto;
    }
}
@media (max-width: 219px) {
    .footer-top-logo svg,
.footer-top-logo img {
        width: 100%;
    }
}
.footer-top-nav {
    position: relative;
    margin-left: auto;
    margin-right: 120px;
}
@media (max-width: 1149px) {
    .footer-top-nav {
        margin: 0 auto;
    }
}
@media (max-width: 767px) {
    .footer-top-nav {
        margin-bottom: 30px;
    }
}
.footer-top-nav ul {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 23px 130px;
}
@media (max-width: 1149px) {
    .footer-top-nav ul {
        grid-gap: 20px 80px;
    }
}
@media (max-width: 767px) {
    .footer-top-nav ul {
        grid-gap: 20px 60px;
    }
}
@media (max-width: 299px) {
    .footer-top-nav ul {
        grid-gap: 20px;
    }
}
@media (max-width: 219px) {
    .footer-top-nav ul {
        grid-template-columns: 1fr;
    }
}
.footer-top-nav ul li {
    position: relative;
}
.footer-top-nav ul li.current-menu-item a:before {
    opacity: 1;
}
.footer-top-nav ul li a {
    position: relative;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 16px;
    color: #391802;
    padding-bottom: 3px;
    border-bottom: 1px solid transparent;
}
@media (max-width: 767px) {
    .footer-top-nav ul li a {
        font-size: 15px;
    }
}
.footer-top-nav ul li a:hover {
    border-color: #CEA38B;
}
.footer-top .sm {
    padding-right: 100px;
}
@media (max-width: 1149px) {
    .footer-top .sm {
        padding-right: 0px;
    }
}
.footer-bottom {
    position: relative;
    display: flex;
    align-items: center;
}
@media (max-width: 767px) {
    .footer-bottom {
        flex-direction: column;
    }
}
.footer-bottom ul {
    display: flex;
    align-items: center;
    margin-left: 50px;
}
@media (max-width: 767px) {
    .footer-bottom ul {
        margin-left: 0;
        margin-top: 10px;
    }
}
.footer-bottom ul li:not(:last-child) {
    margin-right: 50px;
}
@media (max-width: 767px) {
    .footer-bottom ul li:not(:last-child) {
        margin-right: 15px;
    }
}
.footer-bottom ul li a:hover {
    color: #CEA38B;
}
.footer-bottom span,
.footer-bottom a {
    font-size: 13px;
    color: #391802;
    font-weight: normal;
}
@media (max-width: 767px) {
    .footer-bottom span,
.footer-bottom a {
        font-size: 12px;
        text-align: center;
    }
}

.fp {
    position: relative;
}
.fp-begin {
    position: relative;
    padding-top: 67px;
    padding-bottom: 50px;
}
.fp-begin .wp-block-group__inner-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.fp-begin .wp-block-group__inner-container h2 {
    text-transform: uppercase;
    color: #391802;
    font-weight: 400;
    letter-spacing: 5.5px;
    margin-bottom: 15px;
    text-align: center;
}
@media (max-width: 767px) {
    .fp-begin .wp-block-group__inner-container h2 {
        margin-bottom: 9px;
    }
}
.fp-begin .wp-block-group__inner-container h3 {
    text-align: center;
    color: #391802;
    line-height: 1.33;
    font-weight: 400;
    letter-spacing: 0.42px;
}
.fp-begin .wp-block-group__inner-container .wp-block-columns {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start;
    grid-gap: 30px;
    margin-top: 41px;
}
@media (max-width: 1024px) {
    .fp-begin .wp-block-group__inner-container .wp-block-columns {
        grid-gap: 20px;
    }
}
@media (max-width: 767px) {
    .fp-begin .wp-block-group__inner-container .wp-block-columns {
        grid-gap: 30px;
        grid-template-columns: 1fr;
        margin-top: 30px;
        width: 100%;
    }
}
.fp-begin .wp-block-group__inner-container .wp-block-columns .wp-block-column {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    width: 100%;
}
@media (max-width: 767px) {
    .fp-begin .wp-block-group__inner-container .wp-block-columns .wp-block-column {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .fp-begin .wp-block-group__inner-container .wp-block-columns .wp-block-column figure,
.fp-begin .wp-block-group__inner-container .wp-block-columns .wp-block-column a {
        width: 100%;
    }
}
.fp-begin .wp-block-group__inner-container .wp-block-columns .wp-block-column figure {
    position: relative;
    height: auto !important;
    max-height: 250px;
    margin-bottom: 15px;
}
@media (max-width: 1024px) {
    .fp-begin .wp-block-group__inner-container .wp-block-columns .wp-block-column figure {
        max-height: inherit;
    }
}
.fp-begin .wp-block-group__inner-container .wp-block-columns .wp-block-column figure img {
    width: 100%;
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 1024px) {
    .fp-begin .wp-block-group__inner-container .wp-block-columns .wp-block-column figure img {
        height: auto;
    }
}
.fp-begin .wp-block-group__inner-container .wp-block-columns .wp-block-column figure:hover img {
    opacity: 0.8;
}
.fp-begin .wp-block-group__inner-container .wp-block-columns .wp-block-column figure:hover + h3 {
    color: #CEA38B !important;
}
.fp-begin .wp-block-group__inner-container .wp-block-columns .wp-block-column figure:hover + h3 a {
    color: #CEA38B !important;
}
.fp-begin .wp-block-group__inner-container .wp-block-columns .wp-block-column h3 {
    position: relative;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.11;
    letter-spacing: 2.7px;
    margin-bottom: 28px;
    text-align: center;
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.fp-begin .wp-block-group__inner-container .wp-block-columns .wp-block-column h3:before {
    content: "";
    width: 60px;
    height: 1px;
    background-color: #CEA38B;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -15px;
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.fp-begin .wp-block-group__inner-container .wp-block-columns .wp-block-column h3:hover {
    color: #CEA38B;
}
.fp-begin .wp-block-group__inner-container .wp-block-columns .wp-block-column h3:hover a {
    color: #CEA38B;
}
.fp-begin .wp-block-group__inner-container .wp-block-columns .wp-block-column p {
    text-align: center;
    line-height: 1.5;
    width: 100%;
    max-width: 344px;
    margin-top: auto;
}
.fp-cp {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 50px;
}
.fp-cp h2 {
    position: relative;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 4.5px;
    text-align: center;
    margin-top: 66px;
    margin-bottom: 54px;
    text-transform: uppercase;
}
@media (max-width: 767px) {
    .fp-cp h2 {
        margin-bottom: 30px;
        margin-top: 0;
        font-size: 27px;
    }
}
.fp-cp h2:before {
    content: "";
    width: 1px;
    height: 70px;
    background-color: #CEA38B;
    position: absolute;
    left: 0;
    right: 0;
    top: -116px;
    margin: auto;
}
@media (max-width: 767px) {
    .fp-cp h2:before {
        height: 50px;
        top: -75px;
    }
}
.fp-cp-categories {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    width: 100%;
    margin-bottom: 87px;
    align-items: flex-start;
}
@media (max-width: 767px) {
    .fp-cp-categories {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
        margin-bottom: 50px;
    }
}
@media (max-width: 349px) {
    .fp-cp-categories {
        grid-template-columns: 1fr;
    }
}
.fp-cp-categories-i {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.fp-cp-categories-i img {
    width: 100%;
    height: 180px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 1149px) {
    .fp-cp-categories-i img {
        height: 160px;
    }
}
@media (max-width: 767px) {
    .fp-cp-categories-i img {
        height: auto;
    }
}
.fp-cp-categories-i span {
    position: relative;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    text-transform: uppercase;
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    letter-spacing: 2.25px;
    margin-top: 15px;
}
@media (max-width: 767px) {
    .fp-cp-categories-i span {
        font-size: 14px;
        margin-top: 10px;
    }
}
.fp-cp-categories-i span:before {
    content: "";
    width: 0%;
    height: 1px;
    background-color: #CEA38B;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -1px;
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.fp-cp-categories-i:hover img {
    opacity: 0.8;
}
.fp-cp-categories-i:hover span {
    color: #CEA38B;
}
.fp-cp p {
    font-size: 18px;
    line-height: 1.11;
    letter-spacing: 1.8px;
    text-align: center;
    margin-bottom: 12px;
}
.fp-cp h3 {
    font-size: 30px;
    line-height: 1.47;
    letter-spacing: 4.5px;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
}
@media (max-width: 767px) {
    .fp-cp h3 {
        font-size: 27px;
    }
}
.fp-cp-articles {
    position: relative;
    padding: 0 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px 61px;
    margin-top: 45px;
}
@media (max-width: 1024px) {
    .fp-cp-articles {
        grid-gap: 40px 30px;
        padding: 0;
    }
}
@media (max-width: 767px) {
    .fp-cp-articles {
        grid-gap: 20px;
    }
}
@media (max-width: 499px) {
    .fp-cp-articles {
        grid-template-columns: 1fr;
        grid-gap: 30px;
        padding: 0;
        margin-top: 30px;
    }
}
.fp-cp-articles-i {
    position: relative;
}
.fp-cp-articles-i img {
    width: 100%;
    height: 360px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 1209px) {
    .fp-cp-articles-i img {
        height: auto;
    }
}
.fp-cp-articles-i span {
    display: flex;
    text-align: left;
    margin-top: 15px;
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 767px) {
    .fp-cp-articles-i span {
        font-size: 14px;
    }
}
.fp-cp-articles-i:hover img {
    opacity: 0.8;
}
.fp-cp-articles-i:hover span {
    color: #CEA38B;
}
.fp-cultivated {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 50px;
}
.fp-cultivated .wp-block-group__inner-container {
    position: relative;
    width: 100%;
    max-width: none;
    min-width: none;
}
.fp-cultivated h2 {
    position: relative;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 4.5px;
    text-align: center;
    margin-top: 66px;
    margin-bottom: 54px;
    text-transform: uppercase;
}
@media (max-width: 767px) {
    .fp-cultivated h2 {
        margin-bottom: 30px;
        margin-top: 0;
        font-size: 27px;
    }
}
@media (max-width: 329px) {
    .fp-cultivated h2 {
        font-size: 24px;
    }
}
.fp-cultivated h2:before {
    content: "";
    width: 1px;
    height: 70px;
    background-color: #CEA38B;
    position: absolute;
    left: 0;
    right: 0;
    top: -116px;
    margin: auto;
}
@media (max-width: 767px) {
    .fp-cultivated h2:before {
        height: 50px;
        top: -75px;
    }
}
.fp-cultivated .wp-block-columns {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start;
    grid-gap: 30px;
    margin-top: 50px;
}
@media (max-width: 1024px) {
    .fp-cultivated .wp-block-columns {
        grid-gap: 20px;
    }
}
@media (max-width: 767px) {
    .fp-cultivated .wp-block-columns {
        grid-gap: 30px;
        grid-template-columns: 1fr;
        margin-top: 30px;
        width: 100%;
    }
}
.fp-cultivated .wp-block-columns .wp-block-column {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
@media (max-width: 767px) {
    .fp-cultivated .wp-block-columns .wp-block-column {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .fp-cultivated .wp-block-columns .wp-block-column figure,
.fp-cultivated .wp-block-columns .wp-block-column a {
        width: 100%;
    }
}
.fp-cultivated .wp-block-columns .wp-block-column figure img {
    width: 100%;
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    margin-bottom: 15px;
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 1024px) {
    .fp-cultivated .wp-block-columns .wp-block-column figure img {
        height: 220px;
    }
}
@media (max-width: 767px) {
    .fp-cultivated .wp-block-columns .wp-block-column figure img {
        height: auto;
    }
}
.fp-cultivated .wp-block-columns .wp-block-column figure:hover img {
    opacity: 0.8;
}
.fp-cultivated .wp-block-columns .wp-block-column figure:hover + p {
    color: #CEA38B !important;
}
.fp-cultivated .wp-block-columns .wp-block-column figure:hover + p a {
    color: #CEA38B !important;
}
.fp-cultivated .wp-block-columns .wp-block-column p {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.5;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 2.7px;
}
.fp-cultivated .wp-block-columns .wp-block-column p:hover {
    color: #CEA38B;
}
.fp-cultivated .wp-block-columns .wp-block-column p:hover a {
    color: #CEA38B;
}
.fp-subscribe {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    margin-bottom: 85px;
}
@media (max-width: 767px) {
    .fp-subscribe {
        padding-top: 0;
        margin-bottom: 50px;
    }
}
.fp-subscribe p {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
}
.fp-subscribe p:not(:last-child) {
    margin-bottom: 25px;
}
.fp-subscribe a {
    text-align: center;
}
.fp-about {
    position: relative;
}
.fp-about .wp-block-media-text {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
}
@media (max-width: 767px) {
    .fp-about .wp-block-media-text {
        flex-direction: column;
    }
}
.fp-about .wp-block-media-text__media {
    position: relative;
    width: 100%;
    max-width: 960px;
    height: 550px;
}
@media (max-width: 767px) {
    .fp-about .wp-block-media-text__media {
        height: auto;
    }
}
.fp-about .wp-block-media-text__media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
@media (max-width: 767px) {
    .fp-about .wp-block-media-text__media img {
        height: 100%;
    }
}
.fp-about .wp-block-media-text__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 710px;
    padding: 20px;
}
@media (max-width: 1149px) {
    .fp-about .wp-block-media-text__content {
        padding: 20px 60px 20px 20px;
        align-items: flex-start;
    }
}
@media (max-width: 767px) {
    .fp-about .wp-block-media-text__content {
        align-items: center;
        padding: 50px 20px;
        max-width: none;
    }
}
.fp-about .wp-block-media-text__content h2,
.fp-about .wp-block-media-text__content h3,
.fp-about .wp-block-media-text__content h4 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.38;
    letter-spacing: 4.8px;
    text-transform: uppercase;
}
@media (max-width: 1439px) {
    .fp-about .wp-block-media-text__content h2,
.fp-about .wp-block-media-text__content h3,
.fp-about .wp-block-media-text__content h4 {
        font-size: 28px;
    }
}
@media (max-width: 1149px) {
    .fp-about .wp-block-media-text__content h2,
.fp-about .wp-block-media-text__content h3,
.fp-about .wp-block-media-text__content h4 {
        text-align: left;
    }
}
@media (max-width: 1024px) {
    .fp-about .wp-block-media-text__content h2,
.fp-about .wp-block-media-text__content h3,
.fp-about .wp-block-media-text__content h4 {
        font-size: 26px;
    }
}
@media (max-width: 767px) {
    .fp-about .wp-block-media-text__content h2,
.fp-about .wp-block-media-text__content h3,
.fp-about .wp-block-media-text__content h4 {
        font-size: 24px;
        text-align: center;
        margin-bottom: 20px;
    }
}
.fp-about .wp-block-media-text__content p {
    font-size: 17px;
    line-height: 1.65;
    letter-spacing: 0.34px;
    text-align: center;
}
@media (max-width: 1149px) {
    .fp-about .wp-block-media-text__content p {
        text-align: left;
    }
}
@media (max-width: 767px) {
    .fp-about .wp-block-media-text__content p {
        font-size: 16px;
        text-align: center;
    }
}

.cp {
    position: relative;
    padding: 65px 35px 58px 35px;
}
@media (max-width: 1249px) {
    .cp {
        padding: 50px 20px 50px 20px;
    }
}
@media (max-width: 767px) {
    .cp {
        padding: 30px 20px 50px 20px;
    }
}
.cp-hero {
    position: relative;
}
.cp-hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 38px;
}
@media (max-width: 767px) {
    .cp-hero-content {
        margin-bottom: 20px;
    }
}
.cp-hero-content h1,
.cp-hero-content h2 {
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: 6px;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
    width: 100%;
}
@media (max-width: 1439px) {
    .cp-hero-content h1,
.cp-hero-content h2 {
        font-size: 32px;
    }
}
@media (max-width: 1024px) {
    .cp-hero-content h1,
.cp-hero-content h2 {
        font-size: 28px;
    }
}
@media (max-width: 767px) {
    .cp-hero-content h1,
.cp-hero-content h2 {
        font-size: 27px;
    }
}
.cp-hero-content p {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.41;
    letter-spacing: 0.34px;
    text-align: center;
}
@media (max-width: 767px) {
    .cp-hero-content p {
        font-size: 16px;
        margin-top: 10px;
    }
}
.cp-hero img {
    width: 100%;
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
@media (max-width: 767px) {
    .cp-hero img {
        height: 180px;
    }
}
@media (max-width: 329px) {
    .cp-hero img {
        height: auto;
    }
}
.cp-categories {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 48px;
}
@media (max-width: 1149px) {
    .cp-categories {
        margin-top: 40px;
    }
}
@media (max-width: 767px) {
    .cp-categories {
        flex-direction: column;
    }
}
.cp-categories li.current-cat a:before {
    opacity: 1;
}
.cp-categories a {
    position: relative;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2.25px;
}
@media (max-width: 1149px) {
    .cp-categories a {
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .cp-categories a {
        font-size: 15px;
    }
}
.cp-categories a:not(:last-child) {
    margin-right: 40px;
}
@media (max-width: 1149px) {
    .cp-categories a:not(:last-child) {
        margin-right: 20px;
    }
}
@media (max-width: 767px) {
    .cp-categories a:not(:last-child) {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
.cp-categories a:before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: auto;
    right: 0;
    bottom: -1px;
    background-color: #CEA38B;
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    opacity: 0;
}
.cp-categories a.active:before {
    opacity: 1;
}
.cp-categories a:hover:before {
    opacity: 1;
}
.cp-items {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px 60px;
    margin-top: 52px;
    align-items: flex-start;
}
@media (max-width: 1024px) {
    .cp-items {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
    }
}
@media (max-width: 767px) {
    .cp-items {
        margin-top: 30px;
        grid-template-columns: 1fr;
    }
}
.cp-items-i {
    position: relative;
}
.cp-items-i img {
    width: 100%;
    height: 227px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 1209px) {
    .cp-items-i img {
        height: auto;
    }
}
.cp-items-i h3 {
    display: flex;
    text-align: left;
    margin-top: 15px;
    line-height: 1.5;
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    font-weight: 400;
}
@media (max-width: 767px) {
    .cp-items-i h3 {
        font-size: 14px;
    }
}
.cp-items-i:hover img {
    opacity: 0.8;
}
.cp-items-i:hover h3 {
    color: #CEA38B;
}

.cps {
    position: relative;
    padding: 65px 35px 95px 35px;
}
@media (max-width: 1249px) {
    .cps {
        padding: 50px 20px 50px 20px;
    }
}
@media (max-width: 767px) {
    .cps {
        padding: 30px 20px 50px 20px;
    }
}
.cps-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.cps-hero h1 {
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 6px;
}
.cps-hero-toc {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    padding-top: 20px;
    padding-bottom: 10px;
    border-top: 1px solid #CEA38B;
    border-bottom: 1px solid #CEA38B;
    flex-wrap: wrap;
}
.cps-hero-toc:empty {
    display: none;
}
@media (max-width: 767px) {
    .cps-hero-toc {
        flex-direction: column;
        margin-top: 30px;
    }
}
.cps-hero-toc a {
    position: relative;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 10px;
}
@media (max-width: 1149px) {
    .cps-hero-toc a {
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .cps-hero-toc a {
        font-size: 15px;
    }
}
.cps-hero-toc a:not(:last-child) {
    margin-right: 30px;
}
@media (max-width: 1149px) {
    .cps-hero-toc a:not(:last-child) {
        margin-right: 20px;
    }
}
@media (max-width: 767px) {
    .cps-hero-toc a:not(:last-child) {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
.cps-hero-toc a:hover {
    color: #CEA38B;
}
.cps-hero img {
    position: relative;
    margin-top: 60px;
    width: 540px;
    height: 360px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .cps-hero img {
        height: auto;
        margin-top: 50px;
        margin-bottom: 20px;
    }
}
.cps-content {
    position: relative;
    margin-top: 60px;
}
@media (max-width: 767px) {
    .cps-content {
        margin-top: 30px;
    }
}
.cps-content h2 {
    text-align: center;
    text-transform: uppercase;
    margin-top: 40px;
}
.cps-content-price {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 570px;
    margin: 75px auto 0 auto;
}
@media (max-width: 767px) {
    .cps-content-price {
        max-width: none;
        margin-top: 40px;
    }
}
.cps-content-price h3 {
    margin-bottom: 40px;
    text-align: center;
}
@media (max-width: 767px) {
    .cps-content-price h3 {
        margin-bottom: 30px;
    }
}
.cps-content-price .qty,
.cps-content-price .quantity {
    display: none;
}
.cps-content-price button {
    position: relative !important;
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
    min-width: 240px !important;
    color: #391802 !important;
    text-decoration: none !important;
    font-size: 12px !important;
    letter-spacing: 1.2px !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 24px 40px !important;
    border: 1px solid #CEA38B !important;
    text-transform: uppercase !important;
    background: none !important;
    border-radius: 0 !important;
    font-weight: 400 !important;
}
@media (max-width: 767px) {
    .cps-content-price button {
        min-width: -webkit-fit-content !important;
        min-width: -moz-fit-content !important;
        min-width: fit-content !important;
        max-width: 100% !important;
    }
}
.cps-content-price button:hover {
    background-color: #CEA38B;
}
.cps-content-price span.f14 {
    text-align: center;
    font-style: italic;
    margin-top: 15px;
}
.cps-content-gallery {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 60px;
    margin-top: 100px;
    margin-bottom: 70px;
}
@media (max-width: 767px) {
    .cps-content-gallery {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
}
.cps-content-gallery img {
    width: 100%;
    height: 360px;
    margin: 0;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
@media (max-width: 1024px) {
    .cps-content-gallery img {
        height: auto;
    }
}
.cps-footer {
    position: relative;
    padding-top: 120px;
    margin-top: 50px;
}
@media (max-width: 767px) {
    .cps-footer {
        padding-top: 100px;
        margin-top: 40px;
    }
}
.cps-footer:before {
    content: "";
    width: 1px;
    height: 70px;
    background-color: #CEA38B;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
}
.cps-footer-rec, .cps-footer-latests {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.cps-footer-rec h2, .cps-footer-latests h2 {
    text-align: center;
    line-height: 1.17;
    letter-spacing: 4.4px;
    text-transform: uppercase;
}
.cps-footer-rec-items, .cps-footer-latests-items {
    position: relative;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 60px;
}
@media (max-width: 1149px) {
    .cps-footer-rec-items, .cps-footer-latests-items {
        grid-gap: 30px;
    }
}
@media (max-width: 1024px) {
    .cps-footer-rec-items, .cps-footer-latests-items {
        grid-gap: 15px;
    }
}
@media (max-width: 767px) {
    .cps-footer-rec-items, .cps-footer-latests-items {
        grid-template-columns: 1fr;
        grid-gap: 40px;
        width: 100%;
    }
}
.cps-footer-rec {
    margin-bottom: 40px;
}

.shopPage,
.woocommerce-shop,
.tax-product_cat {
    position: relative;
}
.shopPage .content-area,
.woocommerce-shop .content-area,
.tax-product_cat .content-area {
    padding-bottom: 58px;
}
@media (max-width: 1249px) {
    .shopPage .content-area,
.woocommerce-shop .content-area,
.tax-product_cat .content-area {
        padding-bottom: 20px;
    }
}
@media (max-width: 767px) {
    .shopPage .content-area,
.woocommerce-shop .content-area,
.tax-product_cat .content-area {
        padding-bottom: 50px;
    }
}
.shopPage .woocommerce-breadcrumb,
.shopPage .woocommerce-products-header,
.shopPage .woocommerce-notices-wrapper,
.shopPage .woocommerce-result-count,
.shopPage .woocommerce-ordering,
.shopPage #sidebar,
.woocommerce-shop .woocommerce-breadcrumb,
.woocommerce-shop .woocommerce-products-header,
.woocommerce-shop .woocommerce-notices-wrapper,
.woocommerce-shop .woocommerce-result-count,
.woocommerce-shop .woocommerce-ordering,
.woocommerce-shop #sidebar,
.tax-product_cat .woocommerce-breadcrumb,
.tax-product_cat .woocommerce-products-header,
.tax-product_cat .woocommerce-notices-wrapper,
.tax-product_cat .woocommerce-result-count,
.tax-product_cat .woocommerce-ordering,
.tax-product_cat #sidebar {
    display: none;
}
.shopPage .cp-hero,
.woocommerce-shop .cp-hero,
.tax-product_cat .cp-hero {
    padding-top: 65px;
    padding-left: 35px;
    padding-right: 35px;
}
@media (max-width: 1249px) {
    .shopPage .cp-hero,
.woocommerce-shop .cp-hero,
.tax-product_cat .cp-hero {
        padding-top: 50px;
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 767px) {
    .shopPage .cp-hero,
.woocommerce-shop .cp-hero,
.tax-product_cat .cp-hero {
        padding-top: 30px;
    }
}
.shopPage .cp-hero-content h1,
.woocommerce-shop .cp-hero-content h1,
.tax-product_cat .cp-hero-content h1 {
    max-width: 1024px;
}
.shopPage .cp-categories,
.woocommerce-shop .cp-categories,
.tax-product_cat .cp-categories {
    position: relative;
}
.shopPage .cp-categories li.cat-item,
.woocommerce-shop .cp-categories li.cat-item,
.tax-product_cat .cp-categories li.cat-item {
    position: relative;
    list-style: none;
    display: flex;
    align-items: center;
}
.shopPage .cp-categories li.cat-item a,
.woocommerce-shop .cp-categories li.cat-item a,
.tax-product_cat .cp-categories li.cat-item a {
    margin: 0;
}
.shopPage .cp-categories li.cat-item.current-cat a:before,
.woocommerce-shop .cp-categories li.cat-item.current-cat a:before,
.tax-product_cat .cp-categories li.cat-item.current-cat a:before {
    width: 100%;
}
.shopPage .cp-categories li.cat-item:not(:last-child),
.woocommerce-shop .cp-categories li.cat-item:not(:last-child),
.tax-product_cat .cp-categories li.cat-item:not(:last-child) {
    margin-right: 40px;
}
@media (max-width: 1149px) {
    .shopPage .cp-categories li.cat-item:not(:last-child),
.woocommerce-shop .cp-categories li.cat-item:not(:last-child),
.tax-product_cat .cp-categories li.cat-item:not(:last-child) {
        margin-right: 20px;
    }
}
@media (max-width: 767px) {
    .shopPage .cp-categories li.cat-item:not(:last-child),
.woocommerce-shop .cp-categories li.cat-item:not(:last-child),
.tax-product_cat .cp-categories li.cat-item:not(:last-child) {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
.shopPage .products,
.woocommerce-shop .products,
.tax-product_cat .products {
    position: relative;
    width: 100%;
    max-width: 1210px;
    padding-left: 35px !important;
    padding-right: 35px !important;
    margin: 52px auto 0 auto !important;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px 60px;
    align-items: flex-start;
}
@media (max-width: 1249px) {
    .shopPage .products,
.woocommerce-shop .products,
.tax-product_cat .products {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}
@media (max-width: 1024px) {
    .shopPage .products,
.woocommerce-shop .products,
.tax-product_cat .products {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
    }
}
@media (max-width: 767px) {
    .shopPage .products,
.woocommerce-shop .products,
.tax-product_cat .products {
        margin-top: 30px !important;
        grid-template-columns: 1fr;
    }
}
.shopPage .products:before, .shopPage .products:after,
.woocommerce-shop .products:before,
.woocommerce-shop .products:after,
.tax-product_cat .products:before,
.tax-product_cat .products:after {
    display: none !important;
    content: none;
}
.shopPage .products .product,
.woocommerce-shop .products .product,
.tax-product_cat .products .product {
    position: relative;
    margin: 0 !important;
    width: 100% !important;
}
.shopPage .products .product img,
.woocommerce-shop .products .product img,
.tax-product_cat .products .product img {
    width: 100% !important;
    height: 227px !important;
    -o-object-fit: cover !important;
       object-fit: cover !important;
    -o-object-position: center !important;
       object-position: center !important;
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
    margin-bottom: 0 !important;
}
@media (max-width: 1209px) {
    .shopPage .products .product img,
.woocommerce-shop .products .product img,
.tax-product_cat .products .product img {
        height: auto;
    }
}
.shopPage .products .product h2,
.woocommerce-shop .products .product h2,
.tax-product_cat .products .product h2 {
    display: flex;
    text-align: left;
    margin-top: 15px !important;
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    font-weight: 400 !important;
    font-size: 17px !important;
    padding: 0 !important;
    line-height: 1.5;
}
@media (max-width: 767px) {
    .shopPage .products .product h2,
.woocommerce-shop .products .product h2,
.tax-product_cat .products .product h2 {
        font-size: 14px !important;
    }
}
.shopPage .products .product .price,
.shopPage .products .product .add_to_cart_button,
.woocommerce-shop .products .product .price,
.woocommerce-shop .products .product .add_to_cart_button,
.tax-product_cat .products .product .price,
.tax-product_cat .products .product .add_to_cart_button {
    display: none !important;
}
.shopPage .products .product:hover img,
.woocommerce-shop .products .product:hover img,
.tax-product_cat .products .product:hover img {
    opacity: 0.8;
}
.shopPage .products .product:hover h2,
.woocommerce-shop .products .product:hover h2,
.tax-product_cat .products .product:hover h2 {
    color: #CEA38B;
}
.shopPage .woocommerce-pagination,
.woocommerce-shop .woocommerce-pagination,
.tax-product_cat .woocommerce-pagination {
    display: none !important;
}

.sp {
    position: relative;
}
.sp-content {
    position: relative;
    padding-top: 65px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
}
@media (max-width: 1024px) {
    .sp-content {
        padding-bottom: 80px;
    }
}
@media (max-width: 767px) {
    .sp-content {
        padding-top: 30px;
        padding-bottom: 50px;
    }
}
.sp-content h1 {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 6px;
    text-transform: uppercase;
}
@media (max-width: 767px) {
    .sp-content h1 {
        margin-bottom: 30px;
    }
}
.sp-content h2 {
    margin-top: 0 !important;
}
.sp-content h3 {
    margin-top: 0 !important;
    margin-bottom: 15px;
}
.sp-content p:not(:last-child) {
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .sp-content p:not(:last-child) {
        margin-bottom: 20px;
    }
}

.connectpagef {
    position: relative;
}
.connectpagef-content {
    position: relative;
    padding-top: 65px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1024px) {
    .connectpagef-content {
        padding-bottom: 80px;
    }
}
@media (max-width: 767px) {
    .connectpagef-content {
        padding-top: 30px;
        padding-bottom: 50px;
    }
}
.connectpagef-content h1,
.connectpagef-content h2 {
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: 6px;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
}
@media (max-width: 1439px) {
    .connectpagef-content h1,
.connectpagef-content h2 {
        font-size: 32px;
    }
}
@media (max-width: 1024px) {
    .connectpagef-content h1,
.connectpagef-content h2 {
        font-size: 28px;
    }
}
@media (max-width: 767px) {
    .connectpagef-content h1,
.connectpagef-content h2 {
        font-size: 27px;
    }
}
.connectpagef-content p {
    margin-top: 50px;
    font-size: 16px;
    line-height: 1.51;
    text-align: center;
}
@media (max-width: 767px) {
    .connectpagef-content p {
        font-size: 14px;
        margin-top: 30px;
    }
}
.connectpagef-content.-staying p {
    margin-top: 50px;
}
@media (max-width: 767px) {
    .connectpagef-content.-staying p {
        margin-top: 30px;
    }
}
.connectpagef-content label {
    margin-bottom: 0;
}
.connectpagef-content .fp-begin {
    padding: 0;
    margin-top: 48px;
}
@media (max-width: 767px) {
    .connectpagef-content .fp-begin {
        margin-top: 30px;
    }
}
.connectpagef-content .fp-begin .wp-block-columns {
    margin-top: 0;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .connectpagef-content .fp-begin img {
        margin-bottom: 7.5px;
    }
}
.connectpagef-content .fp-begin .wp-block-heading {
    margin-bottom: 0 !important;
}
@media (max-width: 767px) {
    .connectpagef-content .fp-begin .wp-block-heading a {
        font-size: 17px;
    }
}
.connectpagef-content .fp-begin .wp-block-heading:before {
    display: none;
    content: none;
}

.about {
    position: relative;
}
.about-content {
    position: relative;
    padding-top: 65px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
}
@media (max-width: 1024px) {
    .about-content {
        padding-bottom: 80px;
    }
}
@media (max-width: 767px) {
    .about-content {
        padding-top: 30px;
        padding-bottom: 50px;
    }
}
.about-content h1,
.about-content h2 {
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: 6px;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
    width: 100%;
    max-width: 940px;
    margin: 0 auto 50px auto;
}
@media (max-width: 1439px) {
    .about-content h1,
.about-content h2 {
        font-size: 32px;
    }
}
@media (max-width: 1024px) {
    .about-content h1,
.about-content h2 {
        font-size: 28px;
    }
}
@media (max-width: 767px) {
    .about-content h1,
.about-content h2 {
        font-size: 27px;
        margin-bottom: 30px;
    }
}
.about-content p {
    font-size: 16px;
    line-height: 1.41;
}
@media (max-width: 767px) {
    .about-content p {
        font-size: 14px;
    }
}
.about-content .fp-begin {
    padding: 0;
    margin-top: 30px;
}
@media (max-width: 767px) {
    .about-content .fp-begin {
        margin-top: 10px;
    }
}
.about-content .fp-begin .wp-block-columns {
    margin-top: 0;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .about-content .fp-begin figure {
        margin-bottom: 7.5px;
    }
}
.about-content .fp-begin .wp-block-heading {
    margin-bottom: 0 !important;
    margin-top: 10px !important;
}
.about-content .fp-begin .wp-block-heading a {
    text-decoration: none;
    color: #391802;
    font-size: 18px;
}
@media (max-width: 767px) {
    .about-content .fp-begin .wp-block-heading a {
        font-size: 17px;
    }
}
.about-content .fp-begin .wp-block-heading:before {
    display: none;
    content: none;
}

.subscribe {
    position: relative;
    padding-top: 65px;
    padding-bottom: 80px;
}
@media (max-width: 1249px) {
    .subscribe {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
@media (max-width: 767px) {
    .subscribe {
        padding-top: 30px;
        padding-bottom: 50px;
    }
}
.subscribe-main {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.subscribe-main h1 {
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: 6px;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
    width: 100%;
    max-width: 940px;
}
@media (max-width: 1439px) {
    .subscribe-main h1 {
        font-size: 32px;
    }
}
@media (max-width: 1024px) {
    .subscribe-main h1 {
        font-size: 28px;
    }
}
@media (max-width: 767px) {
    .subscribe-main h1 {
        font-size: 27px;
    }
}
.subscribe-main p {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: center;
}
.subscribe-main p:first-of-type {
    margin-top: 20px;
    font-size: 17px;
    letter-spacing: 0.34px;
}
@media (max-width: 767px) {
    .subscribe-main p:first-of-type {
        font-size: 16px;
    }
}
.subscribe-main p:not(:last-of-type) {
    margin-bottom: 25px;
}
@media (max-width: 767px) {
    .subscribe-main p {
        font-size: 14px;
    }
}
.subscribe-main .wp-block-group {
    width: 100%;
}
.subscribe-main-categories {
    position: relative;
    margin-top: 40px;
    width: 100%;
}
@media (max-width: 767px) {
    .subscribe-main-categories {
        margin-top: 30px;
    }
}
.subscribe-main-categories .wp-block-columns {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 60px;
}
@media (max-width: 1024px) {
    .subscribe-main-categories .wp-block-columns {
        grid-gap: 20px;
    }
}
@media (max-width: 767px) {
    .subscribe-main-categories .wp-block-columns {
        grid-gap: 30px;
        grid-template-columns: 1fr;
        width: 100%;
    }
}
.subscribe-main-categories .wp-block-columns .wp-block-column {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
@media (max-width: 767px) {
    .subscribe-main-categories .wp-block-columns .wp-block-column {
        width: 100%;
    }
}
.subscribe-main-categories .wp-block-columns .wp-block-column figure,
.subscribe-main-categories .wp-block-columns .wp-block-column a {
    width: 100%;
}
.subscribe-main-categories .wp-block-columns .wp-block-column figure img {
    width: 100%;
    height: 370px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    margin-bottom: 15px;
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 1024px) {
    .subscribe-main-categories .wp-block-columns .wp-block-column figure img {
        height: auto;
    }
}
.subscribe-main-categories .wp-block-columns .wp-block-column figure:hover img {
    opacity: 0.8;
}
.subscribe-main-categories .wp-block-columns .wp-block-column figure:hover + h3 {
    color: #CEA38B !important;
}
.subscribe-main-categories .wp-block-columns .wp-block-column figure:hover + h3 a {
    color: #CEA38B !important;
}
.subscribe-main-categories .wp-block-columns .wp-block-column h3 {
    position: relative;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.11;
    letter-spacing: 2.7px;
    margin-bottom: 28px;
    text-align: center;
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 767px) {
    .subscribe-main-categories .wp-block-columns .wp-block-column h3 {
        font-size: 17px;
    }
}
.subscribe-main-categories .wp-block-columns .wp-block-column h3:before {
    content: "";
    width: 60px;
    height: 1px;
    background-color: #CEA38B;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -15px;
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.subscribe-main-categories .wp-block-columns .wp-block-column h3:hover {
    color: #CEA38B;
}
.subscribe-main-categories .wp-block-columns .wp-block-column h3:hover a {
    color: #CEA38B;
}
.subscribe-main-categories .wp-block-columns .wp-block-column p {
    text-align: center;
    line-height: 1.5;
    width: 100%;
    margin-top: auto;
}
.subscribe-form {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 170px;
}
@media (max-width: 767px) {
    .subscribe-form {
        padding-top: 105px;
    }
}
.subscribe-form h2 {
    position: relative;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 4.5px;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
}
@media (max-width: 767px) {
    .subscribe-form h2 {
        margin-bottom: 30px;
        margin-top: 0;
        font-size: 17px;
    }
}
.subscribe-form h2:before {
    content: "";
    width: 1px;
    height: 70px;
    background-color: #CEA38B;
    position: absolute;
    left: 0;
    right: 0;
    top: -116px;
    margin: auto;
}
@media (max-width: 767px) {
    .subscribe-form h2:before {
        height: 50px;
        top: -75px;
    }
}
.subscribe-form-signup {
    position: relative;
    width: 100%;
    max-width: 570px;
    margin: 0 auto 40px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.subscribe-form-signup form {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.subscribe-form-signup form label {
    display: flex;
    flex-direction: row;
}
.subscribe-form-signup form .required {
    text-decoration: none;
}
.subscribe-form-signup form p {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.subscribe-form-signup form p:not(:last-of-type) {
    margin-bottom: 30px;
}
.subscribe-form-signup form p input,
.subscribe-form-signup form p .woocommerce-input-wrapper {
    width: 100%;
}
.subscribe-form-signup form p select {
    border: 1px solid #CEA38B;
    color: #CEA38B;
    font-size: 16px;
    padding: 20px 12px;
    background-color: #fff;
}
.subscribe-form-signup form p select::-moz-placeholder {
    color: #fff;
}
.subscribe-form-signup form p select:-ms-input-placeholder {
    color: #fff;
}
.subscribe-form-signup form p select::placeholder {
    color: #fff;
}
.subscribe-form-signup form .woocommerce-privacy-policy-text {
    display: none;
}
.subscribe-form-signup .toggleLogin {
    display: none;
}
.subscribe-form-signup .splitter {
    position: relative;
    text-align: center;
    text-transform: uppercase;
    margin-top: 50px;
}
.subscribe-form-signup .toppertxt {
    width: 100%;
    max-width: 400px;
    margin: 10px auto 40px auto !important;
    text-align: center;
    font-weight: normal;
}
.subscribe-form-main {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.subscribe-form-main a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 20px auto;
    font-weight: normal;
}
.subscribe-form-main p {
    text-align: center;
}
.subscribe-form-main p.toppertxt {
    width: 100%;
    max-width: 400px;
    margin: -16px auto 40px auto !important;
    text-align: center;
    font-weight: normal;
}
.subscribe-form-main p a {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid #391802;
}
.subscribe-form-main p a:hover {
    color: #CEA38B;
    border-color: #CEA38B;
}
.subscribe-form-main p:not(:last-child) {
    margin-bottom: 10px;
}

.searchpage {
    position: relative;
    padding-top: 65px;
    padding-bottom: 60px;
    max-width: 1180px;
}
@media (max-width: 767px) {
    .searchpage {
        padding-top: 30px;
        padding-bottom: 50px;
    }
}
.searchpage-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.searchpage-hero h1 {
    letter-spacing: 6px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 50px;
}
@media (max-width: 767px) {
    .searchpage-hero h1 {
        margin-bottom: 30px;
    }
}
.searchpage-hero p {
    margin-bottom: 10px;
    text-align: center;
}
@media (max-width: 767px) {
    .searchpage-hero p {
        margin-bottom: 20px;
    }
}
.searchpage-hero-search {
    position: relative;
    width: 100%;
    max-width: 705px;
    margin: 0 auto;
}
.searchpage-hero-search svg {
    position: absolute;
    left: 31px;
    top: 0;
    bottom: 0;
    margin: auto;
    pointer-events: none;
}
@media (max-width: 767px) {
    .searchpage-hero-search svg {
        display: none;
    }
}
.searchpage-hero-search form {
    width: 100%;
    border: 1px solid #CEA38B;
}
.searchpage-hero-search form div {
    display: flex;
    align-items: center;
}
.searchpage-hero-search form label {
    display: none;
}
.searchpage-hero-search form input[type=text] {
    width: calc(100% - 134px);
    font-size: 14px;
    color: #391802;
    font-weight: normal;
    border: none;
    padding: 10px 30px 10px 70px;
}
@media (max-width: 767px) {
    .searchpage-hero-search form input[type=text] {
        width: 70%;
        padding: 15px;
        font-size: 12px;
    }
}
.searchpage-hero-search form input[type=submit] {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    background: #fff;
    border: none;
    border-left: 1px solid #CEA38B;
    width: 134px;
    height: 62px;
    font-weight: normal !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 767px) {
    .searchpage-hero-search form input[type=submit] {
        width: 30%;
    }
}
.searchpage-hero-search form input[type=submit]:hover {
    color: #391802;
    background-color: #CEA38B;
}
.searchpage-main {
    position: relative;
    margin-top: 50px;
}
.searchpage-main-items {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px 60px;
}
@media (max-width: 1024px) {
    .searchpage-main-items {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
    }
}
@media (max-width: 767px) {
    .searchpage-main-items {
        margin-top: 30px;
        grid-template-columns: 1fr;
    }
}
.searchpage-latestposts {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 45px;
}
.searchpage-latestposts h2 {
    text-align: center;
    font-weight: 400;
    margin-bottom: 46.5px;
}
.searchpage-latestposts .cps-footer-latests-items {
    margin-top: 0;
}

.cartpage {
    position: relative;
    padding-top: 67px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
}
@media (max-width: 1024px) {
    .cartpage {
        padding-bottom: 80px;
    }
}
@media (max-width: 767px) {
    .cartpage {
        padding-top: 30px;
        padding-bottom: 50px;
    }
}
.cartpage-main {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.cartpage-main h1 {
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 6px;
    margin-bottom: 50px;
}
@media (max-width: 767px) {
    .cartpage-main h1 {
        margin-bottom: 30px;
    }
}
.cartpage-main-header {
    position: relative;
    width: 100%;
    margin-bottom: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 767px) {
    .cartpage-main-header {
        margin-bottom: 30px;
        flex-direction: column;
    }
}
.cartpage-main-header p {
    width: 202px;
    margin-right: 70px;
    text-align: right;
    font-weight: normal;
}
@media (max-width: 767px) {
    .cartpage-main-header p {
        margin-right: 0;
        margin-bottom: 15px;
        font-size: 15px;
        text-align: center;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }
}
.cartpage-main-header a.bts {
    width: 202px;
}
@media (max-width: 1024px) {
    .cartpage-main-header a.bts {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.cartpage-main-header a span.btn-line {
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cartpage-main-header a span.btn-line:hover {
    color: #CEA38B !important;
}
.cartpage-main-header a span.btn-line:hover:before {
    background-color: #CEA38B !important;
    width: 100% !important;
}
.cartpage-main-header a:not(:last-child) {
    margin-right: 70px;
}
@media (max-width: 767px) {
    .cartpage-main-header a:not(:last-child) {
        margin-right: 0;
        margin-bottom: 30px;
    }
}
.cartpage-main .woocommerce {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
@media (max-width: 767px) {
    .cartpage-main .woocommerce {
        flex-direction: column;
    }
}
.cartpage-main .woocommerce.is-empty {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cartpage-main .woocommerce .woocommerce-notices-wrapper {
    width: 100%;
    display: none;
}
.cartpage-main .woocommerce-emptycart {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.cartpage-main .woocommerce-emptycart p {
    text-align: center;
}
.cartpage-main .woocommerce-emptycart p:not(:last-of-type) {
    margin-bottom: 45px;
}
@media (max-width: 767px) {
    .cartpage-main .woocommerce-emptycart p:not(:last-of-type) {
        margin-bottom: 30px;
    }
}
.cartpage-main .woocommerce-emptycart .btn {
    margin-top: 26px;
}
.cartpage-main .woocommerce-cart-form {
    position: relative;
    width: 66.66%;
}
@media (max-width: 767px) {
    .cartpage-main .woocommerce-cart-form {
        width: 100%;
    }
}
.cartpage-main .woocommerce-cart-form table {
    position: relative;
    width: 100%;
    border: none;
}
@media (max-width: 767px) {
    .cartpage-main .woocommerce-cart-form table {
        margin-bottom: 0;
    }
}
.cartpage-main .woocommerce-cart-form table thead {
    display: none;
}
.cartpage-main .woocommerce-cart-form table tr,
.cartpage-main .woocommerce-cart-form table tbody,
.cartpage-main .woocommerce-cart-form table td {
    border: none;
}
.cartpage-main .woocommerce-cart-form table tr {
    position: relative;
    display: flex;
    align-items: flex-start;
}
.cartpage-main .woocommerce-cart-form table tr .actions {
    display: none;
}
.cartpage-main .woocommerce-cart-form table tr td {
    padding: 0;
    background-color: transparent !important;
}
.cartpage-main .woocommerce-cart-form table tr td:before {
    display: none;
}
@media (max-width: 767px) {
    .cartpage-main .woocommerce-cart-form table tr.cart_item {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
}
.cartpage-main .woocommerce-cart-form table tr.cart_item:not(:first-of-type) {
    margin-top: 65px;
}
@media (max-width: 767px) {
    .cartpage-main .woocommerce-cart-form table tr.cart_item:not(:first-of-type) {
        margin-top: 30px;
    }
}
.cartpage-main .woocommerce-cart-form table tr .product-thumbnail {
    position: relative;
    width: 100%;
    max-width: 340px;
    min-width: 340px;
    height: 227px;
    min-width: inherit;
    order: -1;
}
@media (max-width: 1024px) {
    .cartpage-main .woocommerce-cart-form table tr .product-thumbnail {
        max-width: 280px;
        height: 177px;
    }
}
@media (max-width: 767px) {
    .cartpage-main .woocommerce-cart-form table tr .product-thumbnail {
        display: block !important;
        max-width: 100%;
        width: 100%;
        height: auto;
        min-width: inherit;
    }
}
.cartpage-main .woocommerce-cart-form table tr .product-thumbnail img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.cartpage-main .woocommerce-cart-form table tr .product-name {
    position: relative;
    order: 1;
    width: 100%;
    max-width: 200px;
    margin-left: 20px;
    font-weight: normal !important;
    text-align: left !important;
}
@media (max-width: 1199px) {
    .cartpage-main .woocommerce-cart-form table tr .product-name {
        width: 100%;
        max-width: 140px;
    }
}
@media (max-width: 767px) {
    .cartpage-main .woocommerce-cart-form table tr .product-name {
        width: 100%;
        max-width: inherit;
        margin-left: 0;
        text-align: left !important;
        margin-top: 15px;
        margin-bottom: 30px;
    }
}
.cartpage-main .woocommerce-cart-form table tr .product-name a {
    display: block;
    font-size: 16px;
    line-height: 1.56;
    font-weight: normal;
    width: 100%;
}
@media (max-width: 1199px) {
    .cartpage-main .woocommerce-cart-form table tr .product-name a {
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .cartpage-main .woocommerce-cart-form table tr .product-name a {
        max-width: none;
        margin-left: 0;
        margin-top: 0;
        text-align: left;
        margin-bottom: 0;
    }
}
.cartpage-main .woocommerce-cart-form table tr .product-name a:hover {
    color: #CEA38B;
}
.cartpage-main .woocommerce-cart-form table tr .product-quantity {
    position: relative;
    order: 2;
    margin-left: 10px;
    margin-right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    justify-content: center;
}
@media (max-width: 1024px) {
    .cartpage-main .woocommerce-cart-form table tr .product-quantity {
        margin-left: 35px;
        margin-right: 15px;
    }
}
@media (max-width: 767px) {
    .cartpage-main .woocommerce-cart-form table tr .product-quantity {
        margin: 0;
        justify-content: flex-start;
        align-items: flex-start;
    }
}
.cartpage-main .woocommerce-cart-form table tr .product-quantity .quantity {
    position: relative;
}
@media (max-width: 767px) {
    .cartpage-main .woocommerce-cart-form table tr .product-quantity .quantity {
        display: flex;
        align-items: center;
    }
}
.cartpage-main .woocommerce-cart-form table tr .product-quantity .quantity input {
    border: solid 1px #CEA38B;
    background-color: #fff;
    font-size: 16px;
    line-height: 1.63;
    letter-spacing: -0.32px;
    width: 60px;
    height: 40px;
    padding: 10px;
    text-align: center;
}
.cartpage-main .woocommerce-cart-form table tr .product-quantity .quantity input::-webkit-inner-spin-button, .cartpage-main .woocommerce-cart-form table tr .product-quantity .quantity input::-webkit-outer-spin-button {
    display: none;
}
.cartpage-main .woocommerce-cart-form table tr .product-quantity .quantity-btns {
    position: absolute;
    background-color: #fff;
    z-index: 2;
    margin-top: 2px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2px;
    opacity: 0;
    transform: translateY(-35px);
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 767px) {
    .cartpage-main .woocommerce-cart-form table tr .product-quantity .quantity-btns {
        transform: none;
        position: relative;
        opacity: 1;
        margin-top: 0;
        margin-left: 2px;
    }
}
.cartpage-main .woocommerce-cart-form table tr .product-quantity .quantity-btns input {
    cursor: pointer;
    padding: 0;
    width: 29px;
}
@media (max-width: 767px) {
    .cartpage-main .woocommerce-cart-form table tr .product-quantity .quantity-btns input {
        width: 100%;
    }
}
.cartpage-main .woocommerce-cart-form table tr .product-quantity .quantity:hover .quantity-btns {
    opacity: 1;
    transform: translateY(0);
}
.cartpage-main .woocommerce-cart-form table tr .product-remove {
    position: relative;
    order: 3;
}
@media (max-width: 767px) {
    .cartpage-main .woocommerce-cart-form table tr .product-remove {
        order: 6;
        width: 100%;
    }
}
.cartpage-main .woocommerce-cart-form table tr .product-remove .remove {
    position: absolute;
    left: -99px;
    top: 38px;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    color: #391802 !important;
    text-align: center;
    font-size: 14px;
    letter-spacing: 1.4px;
    font-weight: normal;
    margin-top: 12px;
    border-radius: 0 !important;
}
@media (max-width: 1024px) {
    .cartpage-main .woocommerce-cart-form table tr .product-remove .remove {
        left: -74px;
    }
}
@media (max-width: 767px) {
    .cartpage-main .woocommerce-cart-form table tr .product-remove .remove {
        position: relative;
        left: 0;
        top: auto;
    }
}
.cartpage-main .woocommerce-cart-form table tr .product-remove .remove:before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -4px;
    background-color: #391802;
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cartpage-main .woocommerce-cart-form table tr .product-remove .remove:hover {
    background-color: transparent;
    color: #CEA38B !important;
}
.cartpage-main .woocommerce-cart-form table tr .product-remove .remove:hover:before {
    background-color: #CEA38B;
}
.cartpage-main .woocommerce-cart-form table tr .product-subtotal {
    position: relative;
    order: 4;
    margin-left: auto;
    width: 80px;
    min-width: 80px;
    max-width: 80px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}
@media (max-width: 767px) {
    .cartpage-main .woocommerce-cart-form table tr .product-subtotal {
        font-size: 14px;
        margin: 0 auto 0 50px;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        min-width: inherit;
        max-width: inherit;
    }
}
.cartpage-main .woocommerce-cart-form table tr .product-subtotal .subscription-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.cartpage-main .woocommerce-cart-form table tr .product-subtotal .subscription-details {
    text-align: right;
    font-size: 12px;
}
.cartpage-main .woocommerce-cart-form table tr .product-price {
    display: none;
}
.cartpage-main .woocommerce .cart-collaterals {
    position: relative;
    width: 25.6%;
    display: flex;
    flex-direction: column;
}
@media (max-width: 767px) {
    .cartpage-main .woocommerce .cart-collaterals {
        width: 100%;
        margin-top: 50px;
        padding: 0;
    }
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals {
    position: relative;
    float: none;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 2.4px;
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #CEA38B;
    border-bottom: 1px solid #CEA38B;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals table {
    border-radius: 0;
    border: none;
    margin-bottom: 37px;
}
@media (max-width: 767px) {
    .cartpage-main .woocommerce .cart-collaterals .cart_totals table {
        margin-bottom: 50px;
    }
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody {
    position: relative;
    display: flex;
    flex-direction: column;
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}
@media (max-width: 1024px) {
    .cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr {
        font-size: 14px;
    }
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr.tax-rate {
    order: 4;
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr.tax-rate th {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr.tax-rate th small {
    font-size: 10px;
    text-align: left;
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr.shipping {
    order: 3;
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr.cart-subtotal {
    order: 2;
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr.order-total {
    order: 99;
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr th,
.cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr td {
    border: none;
    line-height: 1.5;
    background-color: transparent !important;
    padding-top: 4.5px !important;
    padding-bottom: 4.5px !important;
    font-weight: normal;
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr th *,
.cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr td * {
    font-weight: normal;
}
@media (max-width: 767px) {
    .cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr th,
.cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr td {
        display: block;
    }
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr th {
    text-align: left !important;
    padding-left: 0 !important;
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr td {
    text-align: right;
    padding-right: 0 !important;
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr td:before {
    display: none;
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr td ul {
    position: relative;
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr td ul li {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr td ul label {
    text-align: right;
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr td #shipping_method li {
    margin-bottom: 0 !important;
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr td #shipping_method li label {
    margin-bottom: 0;
    display: block;
    font-size: 0;
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr td #shipping_method li label span {
    font-size: 16px;
}
@media (max-width: 1024px) {
    .cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr td #shipping_method li label span {
        font-size: 14px;
    }
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr td #shipping_method li:not(:first-child) {
    margin-top: 5px;
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr td .woocommerce-shipping-destination {
    text-align: right;
    display: none;
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr td .woocommerce-shipping-calculator {
    font-size: 12px;
    display: none;
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr td .woocommerce-shipping-calculator a {
    padding: 10px;
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr td .woocommerce-shipping-calculator .select2-selection--single {
    border-radius: 0 !important;
    border-color: #CEA38B !important;
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr td .woocommerce-shipping-calculator input {
    border: 1px solid #CEA38B;
    color: #391802;
    font-size: 12px;
    padding: 5px;
    background-color: #fff;
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals table tbody tr td .woocommerce-shipping-calculator .button {
    width: 100%;
    padding: 10px;
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout {
    position: relative;
    padding: 0 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1149px) {
    .cartpage-main .woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout {
        padding: 0;
    }
}
@media (max-width: 767px) {
    .cartpage-main .woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout {
        display: flex;
        flex-direction: column;
    }
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout a {
    margin-bottom: 0;
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals button,
.cartpage-main .woocommerce .cart-collaterals .cart_totals a {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-align: center;
    color: #391802;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 23.25px 38.2px;
    border: 1px solid #CEA38B;
    text-transform: uppercase;
    background-color: transparent;
    border-radius: 0;
    font-weight: normal;
}
@media (max-width: 1149px) {
    .cartpage-main .woocommerce .cart-collaterals .cart_totals button,
.cartpage-main .woocommerce .cart-collaterals .cart_totals a {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .cartpage-main .woocommerce .cart-collaterals .cart_totals button,
.cartpage-main .woocommerce .cart-collaterals .cart_totals a {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals button:before,
.cartpage-main .woocommerce .cart-collaterals .cart_totals a:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #CEA38B;
    z-index: -1;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    margin: auto;
    -webkit-clip-path: circle(0 at 50% 50%);
    clip-path: circle(0 at 50% 50%);
    transition: 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
    display: none;
}
.cartpage-main .woocommerce .cart-collaterals .cart_totals button:hover:before,
.cartpage-main .woocommerce .cart-collaterals .cart_totals a:hover:before {
    opacity: 1;
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
}
.cartpage-main .woocommerce .cart-collaterals .recurring-totals {
    display: none !important;
}
.cartpage-main .woocommerce .cart-collaterals .recurring-total.tax-rate {
    display: none !important;
}
.cartpage-main .woocommerce .cart-collaterals .recurring-total th {
    text-transform: capitalize;
}
.cartpage-main .woocommerce .cart-collaterals .recurring-total td .first-payment-date {
    display: block;
    width: 100%;
    max-width: 120px;
    color: #391802 !important;
    line-height: 1.1;
    margin-left: auto;
}
.cartpage-main .woocommerce .cart-collaterals .recurring-total td .first-payment-date small {
    color: #391802 !important;
}
.cartpage-main .woocommerce .cart-collaterals .ppcp-messages {
    display: none !important;
}

.checkoutpage {
    position: relative;
    padding-top: 65px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
}
@media (max-width: 1024px) {
    .checkoutpage {
        padding-bottom: 80px;
    }
}
@media (max-width: 767px) {
    .checkoutpage {
        padding-top: 30px;
        padding-bottom: 50px;
    }
}
.checkoutpage h1 {
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 6px;
}
@media (max-width: 767px) {
    .checkoutpage h1 {
        margin-bottom: 30px;
    }
}
.checkoutpage .woocommerce-thankyou-order-received {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.checkoutpage .woocommerce-notice--error {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 760px;
    margin: 0 auto 30px auto;
}
.checkoutpage .woocommerce-notice--error.woocommerce-thankyou-order-failed-actions {
    display: flex;
    align-items: stretch;
    flex-direction: row;
}
@media (max-width: 329px) {
    .checkoutpage .woocommerce-notice--error.woocommerce-thankyou-order-failed-actions {
        flex-direction: column;
    }
}
.checkoutpage .woocommerce-notice--error.woocommerce-thankyou-order-failed-actions a {
    position: relative;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-align: center;
    color: #391802;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 23.25px 39px;
    border: 1px solid #CEA38B;
    text-transform: uppercase;
    background-color: transparent;
}
@media (max-width: 767px) {
    .checkoutpage .woocommerce-notice--error.woocommerce-thankyou-order-failed-actions a {
        padding: 15px 20px;
    }
}
.checkoutpage .woocommerce-notice--error.woocommerce-thankyou-order-failed-actions a:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #CEA38B;
    z-index: -1;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    margin: auto;
    -webkit-clip-path: circle(0 at 50% 50%);
    clip-path: circle(0 at 50% 50%);
    transition: 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
    display: none;
}
.checkoutpage .woocommerce-notice--error.woocommerce-thankyou-order-failed-actions a:hover {
    background-color: #CEA38B !important;
    color: #391802;
}
.checkoutpage .woocommerce-notice--error.woocommerce-thankyou-order-failed-actions a:hover:before {
    opacity: 1;
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
}
.checkoutpage .woocommerce-notice--error.woocommerce-thankyou-order-failed-actions a:not(:last-child) {
    margin-right: 20px;
}
@media (max-width: 329px) {
    .checkoutpage .woocommerce-notice--error.woocommerce-thankyou-order-failed-actions a:not(:last-child) {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
.checkoutpage .woocommerce-form-login {
    display: none;
}
.checkoutpage .woocommerce-order {
    position: relative;
}
.checkoutpage .woocommerce-order-confirmed {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.checkoutpage .woocommerce-order-confirmed h2 {
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 50px;
    text-align: center;
}
@media (max-width: 767px) {
    .checkoutpage .woocommerce-order-confirmed h2 {
        margin-bottom: 30px;
    }
}
.checkoutpage .woocommerce-order-confirmed p {
    width: 100%;
    max-width: 480px;
    text-align: center;
    color: #391802;
}
.checkoutpage .woocommerce-order-confirmed-link {
    position: relative;
    margin-top: 50px;
    width: 100%;
    max-width: 555px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (max-width: 767px) {
    .checkoutpage .woocommerce-order-confirmed-link {
        margin-top: 30px;
    }
}
.checkoutpage .woocommerce-order-confirmed-link img {
    width: 100%;
    height: 370px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    margin-bottom: 15px;
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 767px) {
    .checkoutpage .woocommerce-order-confirmed-link img {
        height: auto;
    }
}
.checkoutpage .woocommerce-order-confirmed-link span {
    position: relative;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.11;
    letter-spacing: 2.7px;
    margin-bottom: 28px;
    text-align: center;
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.checkoutpage .woocommerce-order-confirmed-link span:before {
    content: "";
    width: 60px;
    height: 1px;
    background-color: #CEA38B;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -15px;
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.checkoutpage .woocommerce-order-confirmed-link p {
    text-align: center;
    line-height: 1.5;
}
.checkoutpage .woocommerce-order-confirmed-link:hover img {
    opacity: 0.8;
}
.checkoutpage .woocommerce-order-confirmed-link:hover span {
    color: #CEA38B;
}
.checkoutpage .checkout {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 10px;
    flex-wrap: wrap;
}
@media (max-width: 1024px) {
    .checkoutpage .checkout {
        padding: 0;
    }
}
.checkoutpage .checkout .woocommerce-NoticeGroup {
    width: 100%;
}
.checkoutpage .checkout label {
    width: 100%;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-align: left;
    color: #391802 !important;
    font-weight: 400;
    text-transform: uppercase;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
}
.checkoutpage .checkout input {
    border: 1px solid #CEA38B !important;
    color: #391802;
    font-size: 16px;
    font-weight: 400;
    padding: 20px 12px;
    background-color: #fff;
}
.checkoutpage .checkout input::-moz-placeholder {
    color: #fff;
}
.checkoutpage .checkout input:-ms-input-placeholder {
    color: #fff;
}
.checkoutpage .checkout input::placeholder {
    color: #fff;
}
.checkoutpage .checkout textarea {
    border: 1px solid #CEA38B;
    height: 100%;
    color: #CEA38B;
    font-size: 16px;
    padding: 20px 12px;
    background-color: #fff;
    height: 100%;
}
.checkoutpage .checkout .select2-selection--single {
    border-radius: 0 !important;
    border-color: #CEA38B !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}
.checkoutpage .checkout .select2-selection--single .select2-selection__rendered {
    color: #391802;
}
.checkoutpage .checkout .select2-selection--single .select2-selection__arrow {
    position: relative;
    display: flex;
    align-items: center;
}
.checkoutpage .checkout .select2-selection--single .select2-selection__arrow b {
    border-color: #CEA38B transparent transparent transparent;
}
.checkoutpage .checkout .select2-container--default .select2-results__option--highlighted[aria-selected], .checkoutpage .checkout .select2-container--default .select2-results__option--highlighted[data-selected] {
    background-color: #CEA38B !important;
}
.checkoutpage .checkout-details,
.checkoutpage .checkout #customer_details {
    position: relative;
    width: 62%;
    max-width: 715px;
    display: flex;
    flex-direction: column;
}
@media (max-width: 767px) {
    .checkoutpage .checkout-details,
.checkoutpage .checkout #customer_details {
        max-width: none;
        width: 100%;
        margin-bottom: 50px;
    }
}
.checkoutpage .checkout-details-header,
.checkoutpage .checkout #customer_details-header {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 38px;
}
@media (max-width: 767px) {
    .checkoutpage .checkout-details-header,
.checkoutpage .checkout #customer_details-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 30px;
    }
}
.checkoutpage .checkout-details-header h3,
.checkoutpage .checkout #customer_details-header h3 {
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2.4px;
}
.checkoutpage .checkout-details-header span,
.checkoutpage .checkout #customer_details-header span {
    font-size: 12px;
    letter-spacing: 1.2px;
    text-align: left;
    font-weight: 400;
    text-transform: uppercase;
}
@media (max-width: 767px) {
    .checkoutpage .checkout-details-header span,
.checkoutpage .checkout #customer_details-header span {
        align-self: flex-end;
        margin-top: 5px;
    }
}
.checkoutpage .checkout-details .woocommerce-billing-fields,
.checkoutpage .checkout #customer_details .woocommerce-billing-fields {
    position: relative;
    margin-bottom: 35px;
}
.checkoutpage .checkout-details .woocommerce-billing-fields h3,
.checkoutpage .checkout #customer_details .woocommerce-billing-fields h3 {
    display: none;
}
.checkoutpage .checkout-details .woocommerce-billing-fields__field-wrapper,
.checkoutpage .checkout #customer_details .woocommerce-billing-fields__field-wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.checkoutpage .checkout-details .woocommerce-billing-fields__field-wrapper .form-row,
.checkoutpage .checkout #customer_details .woocommerce-billing-fields__field-wrapper .form-row {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0 0 10px 0;
    order: 99;
}
.checkoutpage .checkout-details .woocommerce-billing-fields__field-wrapper .form-row#billing_first_name_field,
.checkoutpage .checkout #customer_details .woocommerce-billing-fields__field-wrapper .form-row#billing_first_name_field {
    width: 33.5664335664%;
    max-width: 240px;
    order: 0;
}
@media (max-width: 767px) {
    .checkoutpage .checkout-details .woocommerce-billing-fields__field-wrapper .form-row#billing_first_name_field,
.checkoutpage .checkout #customer_details .woocommerce-billing-fields__field-wrapper .form-row#billing_first_name_field {
        width: 100%;
        max-width: none;
    }
}
.checkoutpage .checkout-details .woocommerce-billing-fields__field-wrapper .form-row#billing_last_name_field,
.checkoutpage .checkout #customer_details .woocommerce-billing-fields__field-wrapper .form-row#billing_last_name_field {
    width: 63.6363636364%;
    max-width: 455px;
    order: 1;
}
@media (max-width: 767px) {
    .checkoutpage .checkout-details .woocommerce-billing-fields__field-wrapper .form-row#billing_last_name_field,
.checkoutpage .checkout #customer_details .woocommerce-billing-fields__field-wrapper .form-row#billing_last_name_field {
        width: 100%;
        max-width: none;
    }
}
.checkoutpage .checkout-details .woocommerce-billing-fields__field-wrapper .form-row#billing_address_1_field,
.checkoutpage .checkout #customer_details .woocommerce-billing-fields__field-wrapper .form-row#billing_address_1_field {
    order: 2;
}
.checkoutpage .checkout-details .woocommerce-billing-fields__field-wrapper .form-row#billing_city_field,
.checkoutpage .checkout #customer_details .woocommerce-billing-fields__field-wrapper .form-row#billing_city_field {
    order: 3;
}
.checkoutpage .checkout-details .woocommerce-billing-fields__field-wrapper .form-row#billing_postcode_field,
.checkoutpage .checkout #customer_details .woocommerce-billing-fields__field-wrapper .form-row#billing_postcode_field {
    order: 4;
    width: 18.1818181818%;
    max-width: 130px;
}
@media (max-width: 767px) {
    .checkoutpage .checkout-details .woocommerce-billing-fields__field-wrapper .form-row#billing_postcode_field,
.checkoutpage .checkout #customer_details .woocommerce-billing-fields__field-wrapper .form-row#billing_postcode_field {
        width: 100%;
        max-width: none;
    }
}
.checkoutpage .checkout-details .woocommerce-billing-fields__field-wrapper .form-row#billing_postcode_field .optional,
.checkoutpage .checkout #customer_details .woocommerce-billing-fields__field-wrapper .form-row#billing_postcode_field .optional {
    display: none;
}
.checkoutpage .checkout-details .woocommerce-billing-fields__field-wrapper .form-row#billing_state_field,
.checkoutpage .checkout #customer_details .woocommerce-billing-fields__field-wrapper .form-row#billing_state_field {
    order: 5;
    width: 35.6643356643%;
    max-width: 255px;
}
@media (max-width: 767px) {
    .checkoutpage .checkout-details .woocommerce-billing-fields__field-wrapper .form-row#billing_state_field,
.checkoutpage .checkout #customer_details .woocommerce-billing-fields__field-wrapper .form-row#billing_state_field {
        width: 100%;
        max-width: none;
        margin-bottom: 15px;
    }
}
.checkoutpage .checkout-details .woocommerce-billing-fields__field-wrapper .form-row#billing_country_field,
.checkoutpage .checkout #customer_details .woocommerce-billing-fields__field-wrapper .form-row#billing_country_field {
    order: 6;
    width: 40.5594405594%;
    max-width: 290px;
}
@media (max-width: 767px) {
    .checkoutpage .checkout-details .woocommerce-billing-fields__field-wrapper .form-row#billing_country_field,
.checkoutpage .checkout #customer_details .woocommerce-billing-fields__field-wrapper .form-row#billing_country_field {
        width: 100%;
        max-width: none;
        margin-bottom: 15px;
    }
}
.checkoutpage .checkout-details .woocommerce-billing-fields__field-wrapper .form-row#billing_email_field,
.checkoutpage .checkout #customer_details .woocommerce-billing-fields__field-wrapper .form-row#billing_email_field {
    order: 7;
    width: 56%;
    max-width: 405px;
}
@media (max-width: 767px) {
    .checkoutpage .checkout-details .woocommerce-billing-fields__field-wrapper .form-row#billing_email_field,
.checkoutpage .checkout #customer_details .woocommerce-billing-fields__field-wrapper .form-row#billing_email_field {
        width: 100%;
        max-width: none;
    }
}
.checkoutpage .checkout-details .woocommerce-billing-fields__field-wrapper .form-row#billing_phone_field,
.checkoutpage .checkout #customer_details .woocommerce-billing-fields__field-wrapper .form-row#billing_phone_field {
    order: 8;
    width: 40.5594405594%;
    max-width: 290px;
}
@media (max-width: 767px) {
    .checkoutpage .checkout-details .woocommerce-billing-fields__field-wrapper .form-row#billing_phone_field,
.checkoutpage .checkout #customer_details .woocommerce-billing-fields__field-wrapper .form-row#billing_phone_field {
        width: 100%;
        max-width: none;
    }
}
.checkoutpage .checkout-details .woocommerce-billing-fields__field-wrapper .form-row#billing_address_2_field,
.checkoutpage .checkout #customer_details .woocommerce-billing-fields__field-wrapper .form-row#billing_address_2_field {
    display: none !important;
}
.checkoutpage .checkout-details .woocommerce-billing-fields__field-wrapper .form-row#billing_company_field,
.checkoutpage .checkout #customer_details .woocommerce-billing-fields__field-wrapper .form-row#billing_company_field {
    display: none;
}
.checkoutpage .checkout-details .woocommerce-additional-fields,
.checkoutpage .checkout-details .woocommerce-shipping-fields,
.checkoutpage .checkout #customer_details .woocommerce-additional-fields,
.checkoutpage .checkout #customer_details .woocommerce-shipping-fields {
    display: none;
}
.checkoutpage .checkout-details #ship-to-different-address,
.checkoutpage .checkout #customer_details #ship-to-different-address {
    position: relative;
    margin-bottom: 45px;
    margin-top: 5px;
}
@media (max-width: 767px) {
    .checkoutpage .checkout-details #ship-to-different-address,
.checkoutpage .checkout #customer_details #ship-to-different-address {
        margin-bottom: 50px;
    }
}
.checkoutpage .checkout-details #ship-to-different-address label,
.checkoutpage .checkout #customer_details #ship-to-different-address label {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    pointer-events: none;
}
.checkoutpage .checkout-details #ship-to-different-address label input,
.checkoutpage .checkout #customer_details #ship-to-different-address label input {
    cursor: pointer;
    width: 30px;
    height: 30px;
    padding: 0;
    display: none;
}
.checkoutpage .checkout-details #ship-to-different-address label span,
.checkoutpage .checkout #customer_details #ship-to-different-address label span {
    margin-left: 20px;
    font-size: 12px;
    margin-left: 0;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: normal;
}
.checkoutpage .checkout-details .notes,
.checkoutpage .checkout #customer_details .notes {
    display: none !important;
}
.checkoutpage .checkout-details .required,
.checkoutpage .checkout #customer_details .required {
    color: #391802;
}
.checkoutpage .checkout-details .shop_table,
.checkoutpage .checkout #customer_details .shop_table {
    border: none;
    margin-bottom: 45px;
}
@media (max-width: 767px) {
    .checkoutpage .checkout-details .shop_table,
.checkoutpage .checkout #customer_details .shop_table {
        margin-bottom: 0;
    }
}
.checkoutpage .checkout-details .shop_table thead,
.checkoutpage .checkout-details .shop_table tbody,
.checkoutpage .checkout #customer_details .shop_table thead,
.checkoutpage .checkout #customer_details .shop_table tbody {
    display: none;
}
.checkoutpage .checkout-details .shop_table tfoot tr,
.checkoutpage .checkout #customer_details .shop_table tfoot tr {
    display: none;
}
.checkoutpage .checkout-details .shop_table tfoot tr.shipping,
.checkoutpage .checkout #customer_details .shop_table tfoot tr.shipping {
    border: none;
    display: flex;
    width: 100%;
    align-items: flex-start;
}
@media (max-width: 767px) {
    .checkoutpage .checkout-details .shop_table tfoot tr.shipping,
.checkoutpage .checkout #customer_details .shop_table tfoot tr.shipping {
        display: none;
    }
}
.checkoutpage .checkout-details .shop_table tfoot tr.shipping td,
.checkoutpage .checkout-details .shop_table tfoot tr.shipping th,
.checkoutpage .checkout #customer_details .shop_table tfoot tr.shipping td,
.checkoutpage .checkout #customer_details .shop_table tfoot tr.shipping th {
    border: none;
    font-weight: normal;
}
.checkoutpage .checkout-details .shop_table tfoot tr.shipping th,
.checkoutpage .checkout #customer_details .shop_table tfoot tr.shipping th {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2.4px;
    text-align: left;
    padding: 0;
    text-transform: uppercase;
    color: #391802;
}
.checkoutpage .checkout-details .shop_table tfoot tr.shipping th:after,
.checkoutpage .checkout #customer_details .shop_table tfoot tr.shipping th:after {
    content: ":";
}
.checkoutpage .checkout-details .shop_table tfoot tr.shipping td,
.checkoutpage .checkout #customer_details .shop_table tfoot tr.shipping td {
    margin-left: 20px;
    padding: 0;
}
.checkoutpage .checkout-details .shop_table tfoot tr.shipping td label,
.checkoutpage .checkout #customer_details .shop_table tfoot tr.shipping td label {
    font-size: 16px;
    color: #391802;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 0;
    text-transform: capitalize;
}
.checkoutpage .checkout-details .shop_table tfoot tr.shipping td label .woocommerce-Price-amount,
.checkoutpage .checkout #customer_details .shop_table tfoot tr.shipping td label .woocommerce-Price-amount {
    display: flex;
    flex-direction: row;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: normal;
    margin-left: 15px;
}
.checkoutpage .checkout-details .shop_table tfoot tr.shipping td label .woocommerce-Price-amount *,
.checkoutpage .checkout #customer_details .shop_table tfoot tr.shipping td label .woocommerce-Price-amount * {
    font-weight: normal;
}
.checkoutpage .checkout-details .shop_table tfoot tr.shipping td li,
.checkoutpage .checkout #customer_details .shop_table tfoot tr.shipping td li {
    margin-bottom: 0;
}
.checkoutpage .checkout-details .checkout-payment-title,
.checkoutpage .checkout #customer_details .checkout-payment-title {
    order: 198;
    text-transform: uppercase;
    margin-bottom: 45px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2.4px;
    text-align: left;
}
@media (max-width: 767px) {
    .checkoutpage .checkout-details .checkout-payment-title,
.checkoutpage .checkout #customer_details .checkout-payment-title {
        font-size: 14px;
        margin-bottom: 30px;
    }
}
.checkoutpage .checkout-details fieldset,
.checkoutpage .checkout #customer_details fieldset {
    border: none;
    padding: 0;
}
.checkoutpage .checkout-details .checkout-payment-labels,
.checkoutpage .checkout #customer_details .checkout-payment-labels {
    order: 99999999;
}
.checkoutpage .checkout-details .checkout-payment-labels-note,
.checkoutpage .checkout #customer_details .checkout-payment-labels-note {
    margin-top: 40px;
    font-size: 12px;
    text-transform: uppercase;
    color: #391802;
    line-height: 2;
    letter-spacing: 1px;
}
.checkoutpage .checkout-details .checkout-payment-labels-or,
.checkoutpage .checkout #customer_details .checkout-payment-labels-or {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1.2px;
    color: #391802;
    margin: 30px 0;
    display: none;
}
@media (max-width: 767px) {
    .checkoutpage .checkout-details .checkout-payment-labels-or,
.checkoutpage .checkout #customer_details .checkout-payment-labels-or {
        margin: 10px 0;
    }
}
.checkoutpage .checkout-details .ppcp-button-applepay,
.checkoutpage .checkout #customer_details .ppcp-button-applepay {
    display: none !important;
}
.checkoutpage .checkout-details .wc_payment_method.payment_method_ppcp-applepay label, .checkoutpage .checkout-details .wc_payment_method.payment_method_ppcp-googlepay label,
.checkoutpage .checkout #customer_details .wc_payment_method.payment_method_ppcp-applepay label,
.checkoutpage .checkout #customer_details .wc_payment_method.payment_method_ppcp-googlepay label {
    flex-direction: row-reverse;
    gap: 10px;
}
@media (max-width: 299px) {
    .checkoutpage .checkout-details .wc_payment_method.payment_method_ppcp-applepay label, .checkoutpage .checkout-details .wc_payment_method.payment_method_ppcp-googlepay label,
.checkoutpage .checkout #customer_details .wc_payment_method.payment_method_ppcp-applepay label,
.checkoutpage .checkout #customer_details .wc_payment_method.payment_method_ppcp-googlepay label {
        flex-direction: column;
    }
}
@media (max-width: 299px) {
    .checkoutpage .checkout-details .wc_payment_method.payment_method_ppcp-applepay label img, .checkoutpage .checkout-details .wc_payment_method.payment_method_ppcp-googlepay label img,
.checkoutpage .checkout #customer_details .wc_payment_method.payment_method_ppcp-applepay label img,
.checkoutpage .checkout #customer_details .wc_payment_method.payment_method_ppcp-googlepay label img {
        display: none;
    }
}
.checkoutpage .checkout-details .wc_payment_method.payment_method_ppcp-applepay .payment_box, .checkoutpage .checkout-details .wc_payment_method.payment_method_ppcp-googlepay .payment_box,
.checkoutpage .checkout #customer_details .wc_payment_method.payment_method_ppcp-applepay .payment_box,
.checkoutpage .checkout #customer_details .wc_payment_method.payment_method_ppcp-googlepay .payment_box {
    display: none !important;
}
.checkoutpage .checkout-details .woocommerce-checkout-payment,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment {
    position: relative;
    width: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
    flex-direction: column;
    order: 199;
}
.checkoutpage .checkout-details .woocommerce-checkout-payment .place-order,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .place-order {
    display: none !important;
}
.checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods {
    padding: 0;
    width: 100%;
    border: none;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
}
@media (max-width: 767px) {
    .checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods {
        flex-direction: column;
        width: 100%;
    }
}
.checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}
.checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li input,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li input {
    display: none;
}
.checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li label,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li label {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    width: 100%;
    height: 62px;
    padding: 24px 40px;
    border: solid 1px #CEA38B;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.1;
    cursor: pointer;
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    margin-bottom: 0 !important;
}
@media (max-width: 767px) {
    .checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li label,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li label {
        width: 100%;
        padding: 10px;
        height: 45px;
    }
}
.checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li label:before,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li label:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #CEA38B;
    z-index: -1;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    margin: auto;
    -webkit-clip-path: circle(0 at 50% 50%);
    clip-path: circle(0 at 50% 50%);
    transition: 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
    display: none;
}
.checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li label.active,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li label.active {
    color: #391802;
    background-color: #CEA38B;
}
.checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li label.active:before,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li label.active:before {
    opacity: 1;
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
}
.checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li label:hover,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li label:hover {
    color: #391802;
    background-color: #CEA38B;
}
.checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li label:hover:before,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li label:hover:before {
    opacity: 1;
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
}
.checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_wps_paypal,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_wps_paypal {
    display: none !important;
}
.checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_wps_paypal.active,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_wps_paypal.active {
    display: block !important;
}
.checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_wps_paypal .payment_box,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_wps_paypal .payment_box {
    display: none !important;
}
.checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway {
    flex-direction: column;
}
.checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box {
    background-color: #fff;
    padding: 0;
    width: 100%;
    margin-bottom: 0;
}
.checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box:before, .checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box:after,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box:before,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box:after {
    display: none;
}
.checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box .clear,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box .clear {
    display: none;
}
.checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box fieldset,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box fieldset {
    padding: 0;
    margin-top: 0;
    display: flex;
    width: 100%;
    flex-direction: column;
}
.checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box fieldset p,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box fieldset p {
    width: 100%;
    padding: 0;
    margin: 0;
}
.checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box fieldset p:not(:last-of-type),
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box fieldset p:not(:last-of-type) {
    margin-bottom: 15px;
}
.checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box fieldset p:before,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box fieldset p:before {
    display: none;
}
.checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box fieldset p label,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box fieldset p label {
    pointer-events: none;
    padding: 0;
    color: #391802;
    font-size: 12px;
    text-transform: uppercase;
    border: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    min-height: inherit;
    justify-content: flex-start;
    align-items: flex-start;
    cursor: inherit;
    flex-direction: row;
}
.checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box .woocommerce-SavedPaymentMethods-saveNew,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box .woocommerce-SavedPaymentMethods-saveNew {
    position: relative;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box .woocommerce-SavedPaymentMethods-saveNew:before, .checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box .woocommerce-SavedPaymentMethods-saveNew:after,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box .woocommerce-SavedPaymentMethods-saveNew:before,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box .woocommerce-SavedPaymentMethods-saveNew:after {
    display: none;
    content: none;
}
.checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box .woocommerce-SavedPaymentMethods-saveNew input,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box .woocommerce-SavedPaymentMethods-saveNew input {
    padding: 0;
    margin: 0;
    width: 15px !important;
    height: 15px;
    display: block;
    cursor: pointer;
}
.checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box .woocommerce-SavedPaymentMethods-saveNew input:checked:after,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box .woocommerce-SavedPaymentMethods-saveNew input:checked:after {
    font-size: 18px;
    left: 5px;
}
.checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box .woocommerce-SavedPaymentMethods-saveNew label,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box .woocommerce-SavedPaymentMethods-saveNew label {
    pointer-events: none;
    padding: 0;
    color: #391802;
    font-size: 12px;
    text-transform: uppercase;
    border: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    min-height: inherit;
    text-align: left;
    cursor: inherit;
    flex-direction: row;
    width: calc(100% - 25px);
    margin-bottom: 0;
}
.checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-gateway,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-gateway {
    display: block;
    opacity: 0;
    position: absolute;
    top: -74px;
}
.checkoutpage .checkout-details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-gateway .payment_box,
.checkoutpage .checkout #customer_details .woocommerce-checkout-payment .wc_payment_methods li.payment_method_ppcp-gateway .payment_box {
    display: none !important;
}
.checkoutpage .checkout-details .ppc-button-wrapper,
.checkoutpage .checkout #customer_details .ppc-button-wrapper {
    position: relative;
    width: 100%;
    order: 198;
    margin-bottom: 15px;
}
.checkoutpage .checkout-details .ppc-button-wrapper #ppc-button-ppcp-gateway,
.checkoutpage .checkout #customer_details .ppc-button-wrapper #ppc-button-ppcp-gateway {
    display: block !important;
    margin-top: 0;
}
.checkoutpage .checkout-details .woocommerce-SavedPaymentMethods-saveNew label,
.checkoutpage .checkout #customer_details .woocommerce-SavedPaymentMethods-saveNew label {
    cursor: pointer !important;
    pointer-events: auto !important;
    background: none !important;
}
.checkoutpage .checkout-details .woocommerce-SavedPaymentMethods-saveNew label:hover,
.checkoutpage .checkout #customer_details .woocommerce-SavedPaymentMethods-saveNew label:hover {
    background: none !important;
}
.checkoutpage .checkout-overview,
.checkoutpage .checkout #order_review {
    position: relative;
    width: 32.5%;
    display: flex;
    flex-direction: column;
}
@media (max-width: 767px) {
    .checkoutpage .checkout-overview,
.checkoutpage .checkout #order_review {
        width: 100%;
    }
}
.checkoutpage .checkout-overview h3,
.checkoutpage .checkout #order_review h3 {
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2.4px;
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #CEA38B;
    border-bottom: 1px solid #CEA38B;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 50px;
    font-weight: normal;
    order: 0;
}
@media (max-width: 767px) {
    .checkoutpage .checkout-overview h3,
.checkoutpage .checkout #order_review h3 {
        font-size: 14px;
    }
}
.checkoutpage .checkout-overview .checkout-payment-labels-or,
.checkoutpage .checkout-overview .checkout-payment-labels-note,
.checkoutpage .checkout #order_review .checkout-payment-labels-or,
.checkoutpage .checkout #order_review .checkout-payment-labels-note {
    display: none;
}
.checkoutpage .checkout-overview table,
.checkoutpage .checkout #order_review table {
    position: relative;
    border: none;
    padding: 0;
    margin-bottom: 0;
    width: 100%;
    order: 1;
}
.checkoutpage .checkout-overview table thead,
.checkoutpage .checkout #order_review table thead {
    display: none;
}
.checkoutpage .checkout-overview table td,
.checkoutpage .checkout-overview table th,
.checkoutpage .checkout #order_review table td,
.checkoutpage .checkout #order_review table th {
    padding: 0;
    border: none;
    font-weight: normal;
    color: #391802;
}
.checkoutpage .checkout-overview table tbody,
.checkoutpage .checkout #order_review table tbody {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.checkoutpage .checkout-overview table tbody .cart_item,
.checkoutpage .checkout #order_review table tbody .cart_item {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}
.checkoutpage .checkout-overview table tbody .cart_item .product-name,
.checkoutpage .checkout #order_review table tbody .cart_item .product-name {
    width: 100%;
    max-width: 235px;
    padding-right: 10px;
}
.checkoutpage .checkout-overview table tbody .cart_item *,
.checkoutpage .checkout #order_review table tbody .cart_item * {
    font-size: 16px;
    font-weight: normal !important;
}
@media (max-width: 767px) {
    .checkoutpage .checkout-overview table tbody .cart_item *,
.checkoutpage .checkout #order_review table tbody .cart_item * {
        font-size: 14px;
    }
}
.checkoutpage .checkout-overview table tbody .cart_item .subscription-price,
.checkoutpage .checkout #order_review table tbody .cart_item .subscription-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}
.checkoutpage .checkout-overview table tbody .cart_item .subscription-price .subscription-details,
.checkoutpage .checkout #order_review table tbody .cart_item .subscription-price .subscription-details {
    text-align: right;
    font-size: 13.3px;
}
.checkoutpage .checkout-overview table tbody .cart_item:not(:last-of-type),
.checkoutpage .checkout #order_review table tbody .cart_item:not(:last-of-type) {
    margin-bottom: 25px;
}
.checkoutpage .checkout-overview table tfoot,
.checkoutpage .checkout #order_review table tfoot {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 25px;
}
.checkoutpage .checkout-overview table tfoot tr,
.checkoutpage .checkout #order_review table tfoot tr {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}
@media (max-width: 767px) {
    .checkoutpage .checkout-overview table tfoot tr *,
.checkoutpage .checkout #order_review table tfoot tr * {
        font-size: 14px !important;
    }
}
.checkoutpage .checkout-overview table tfoot tr th,
.checkoutpage .checkout #order_review table tfoot tr th {
    text-align: left;
}
.checkoutpage .checkout-overview table tfoot tr td,
.checkoutpage .checkout #order_review table tfoot tr td {
    text-align: right;
}
.checkoutpage .checkout-overview table tfoot tr.wps_wsp_recurring_total, .checkoutpage .checkout-overview table tfoot tr.wps_recurring_bifurcation_wrapper,
.checkoutpage .checkout #order_review table tfoot tr.wps_wsp_recurring_total,
.checkoutpage .checkout #order_review table tfoot tr.wps_recurring_bifurcation_wrapper {
    display: none;
    width: 100%;
    background-color: rgba(206, 163, 139, 0.1);
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}
.checkoutpage .checkout-overview table tfoot tr.wps_wsp_recurring_total th, .checkoutpage .checkout-overview table tfoot tr.wps_recurring_bifurcation_wrapper th,
.checkoutpage .checkout #order_review table tfoot tr.wps_wsp_recurring_total th,
.checkoutpage .checkout #order_review table tfoot tr.wps_recurring_bifurcation_wrapper th {
    margin: 0 auto 5px auto;
    text-align: center;
    font-size: 14px;
    font-weight: normal;
}
.checkoutpage .checkout-overview table tfoot tr.wps_wsp_recurring_total td, .checkoutpage .checkout-overview table tfoot tr.wps_recurring_bifurcation_wrapper td,
.checkoutpage .checkout #order_review table tfoot tr.wps_wsp_recurring_total td,
.checkoutpage .checkout #order_review table tfoot tr.wps_recurring_bifurcation_wrapper td {
    width: 100%;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: normal;
}
.checkoutpage .checkout-overview table tfoot tr.wps_wsp_recurring_total td *, .checkoutpage .checkout-overview table tfoot tr.wps_recurring_bifurcation_wrapper td *,
.checkoutpage .checkout #order_review table tfoot tr.wps_wsp_recurring_total td *,
.checkoutpage .checkout #order_review table tfoot tr.wps_recurring_bifurcation_wrapper td * {
    font-weight: normal;
}
.checkoutpage .checkout-overview table tfoot tr.wps_wsp_recurring_total td .wps_sfw_free_trial, .checkoutpage .checkout-overview table tfoot tr.wps_recurring_bifurcation_wrapper td .wps_sfw_free_trial,
.checkoutpage .checkout #order_review table tfoot tr.wps_wsp_recurring_total td .wps_sfw_free_trial,
.checkoutpage .checkout #order_review table tfoot tr.wps_recurring_bifurcation_wrapper td .wps_sfw_free_trial {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    font-weight: normal;
    border-bottom: 1px solid #391802;
}
.checkoutpage .checkout-overview table tfoot tr.wps_wsp_recurring_total td .woocommerce-Price-amount,
.checkoutpage .checkout-overview table tfoot tr.wps_wsp_recurring_total td .woocommerce-Price-currencySymbol,
.checkoutpage .checkout-overview table tfoot tr.wps_wsp_recurring_total td .wps_sfw_interval, .checkoutpage .checkout-overview table tfoot tr.wps_recurring_bifurcation_wrapper td .woocommerce-Price-amount,
.checkoutpage .checkout-overview table tfoot tr.wps_recurring_bifurcation_wrapper td .woocommerce-Price-currencySymbol,
.checkoutpage .checkout-overview table tfoot tr.wps_recurring_bifurcation_wrapper td .wps_sfw_interval,
.checkoutpage .checkout #order_review table tfoot tr.wps_wsp_recurring_total td .woocommerce-Price-amount,
.checkoutpage .checkout #order_review table tfoot tr.wps_wsp_recurring_total td .woocommerce-Price-currencySymbol,
.checkoutpage .checkout #order_review table tfoot tr.wps_wsp_recurring_total td .wps_sfw_interval,
.checkoutpage .checkout #order_review table tfoot tr.wps_recurring_bifurcation_wrapper td .woocommerce-Price-amount,
.checkoutpage .checkout #order_review table tfoot tr.wps_recurring_bifurcation_wrapper td .woocommerce-Price-currencySymbol,
.checkoutpage .checkout #order_review table tfoot tr.wps_recurring_bifurcation_wrapper td .wps_sfw_interval {
    font-weight: normal;
    color: #CEA38B;
}
.checkoutpage .checkout-overview table tfoot tr.wps_wsp_recurring_total td ul, .checkoutpage .checkout-overview table tfoot tr.wps_recurring_bifurcation_wrapper td ul,
.checkoutpage .checkout #order_review table tfoot tr.wps_wsp_recurring_total td ul,
.checkoutpage .checkout #order_review table tfoot tr.wps_recurring_bifurcation_wrapper td ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    margin-top: 10px;
}
.checkoutpage .checkout-overview table tfoot tr.wps_wsp_recurring_total td ul li, .checkoutpage .checkout-overview table tfoot tr.wps_recurring_bifurcation_wrapper td ul li,
.checkoutpage .checkout #order_review table tfoot tr.wps_wsp_recurring_total td ul li,
.checkoutpage .checkout #order_review table tfoot tr.wps_recurring_bifurcation_wrapper td ul li {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.checkoutpage .checkout-overview table tfoot tr.wps_wsp_recurring_total td ul li:last-of-type, .checkoutpage .checkout-overview table tfoot tr.wps_recurring_bifurcation_wrapper td ul li:last-of-type,
.checkoutpage .checkout #order_review table tfoot tr.wps_wsp_recurring_total td ul li:last-of-type,
.checkoutpage .checkout #order_review table tfoot tr.wps_recurring_bifurcation_wrapper td ul li:last-of-type {
    padding-bottom: 10px;
    border-bottom: 0;
}
.checkoutpage .checkout-overview table tfoot tr.wps_wsp_recurring_total td ul li label, .checkoutpage .checkout-overview table tfoot tr.wps_recurring_bifurcation_wrapper td ul li label,
.checkoutpage .checkout #order_review table tfoot tr.wps_wsp_recurring_total td ul li label,
.checkoutpage .checkout #order_review table tfoot tr.wps_recurring_bifurcation_wrapper td ul li label {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.checkoutpage .checkout-overview table tfoot tr.shipping,
.checkoutpage .checkout #order_review table tfoot tr.shipping {
    order: 3;
    margin-top: 10px !important;
    margin-bottom: 0 !important;
}
.checkoutpage .checkout-overview table tfoot tr.shipping td,
.checkoutpage .checkout #order_review table tfoot tr.shipping td {
    font-size: 0 !important;
}
.checkoutpage .checkout-overview table tfoot tr.shipping td ul,
.checkoutpage .checkout #order_review table tfoot tr.shipping td ul {
    line-height: 1;
    text-align: right;
    font-size: 12px;
    max-width: 250px;
}
.checkoutpage .checkout-overview table tfoot tr.shipping li,
.checkoutpage .checkout #order_review table tfoot tr.shipping li {
    margin-bottom: 0;
}
.checkoutpage .checkout-overview table tfoot tr.shipping label,
.checkoutpage .checkout #order_review table tfoot tr.shipping label {
    font-size: 0 !important;
}
.checkoutpage .checkout-overview table tfoot tr.shipping label span,
.checkoutpage .checkout #order_review table tfoot tr.shipping label span {
    font-weight: normal;
    font-size: 16px;
}
.checkoutpage .checkout-overview table tfoot tr.tax-rate,
.checkoutpage .checkout #order_review table tfoot tr.tax-rate {
    order: 4;
    margin-top: 10px;
    margin-bottom: 0 !important;
}
.checkoutpage .checkout-overview table tfoot tr.cart-subtotal,
.checkoutpage .checkout #order_review table tfoot tr.cart-subtotal {
    margin-bottom: 0 !important;
}
.checkoutpage .checkout-overview table tfoot tr.order-total,
.checkoutpage .checkout #order_review table tfoot tr.order-total {
    position: relative;
    margin-top: 32px;
    margin-bottom: 50px;
    order: 4;
}
@media (max-width: 767px) {
    .checkoutpage .checkout-overview table tfoot tr.order-total,
.checkoutpage .checkout #order_review table tfoot tr.order-total {
        margin-bottom: 30px;
    }
}
.checkoutpage .checkout-overview table tfoot tr.order-total th,
.checkoutpage .checkout #order_review table tfoot tr.order-total th {
    text-transform: uppercase !important;
    font-weight: normal !important;
    letter-spacing: 2.4px !important;
}
.checkoutpage .checkout-overview table tfoot tr.order-total td,
.checkoutpage .checkout #order_review table tfoot tr.order-total td {
    font-weight: normal !important;
}
.checkoutpage .checkout-overview table tfoot tr.order-total td .woocommerce-Price-amount,
.checkoutpage .checkout #order_review table tfoot tr.order-total td .woocommerce-Price-amount {
    font-weight: normal;
}
.checkoutpage .checkout-overview table tfoot tr:not(:last-child),
.checkoutpage .checkout #order_review table tfoot tr:not(:last-child) {
    margin-bottom: 10px;
}
.checkoutpage .checkout-overview table .recurring-totals,
.checkoutpage .checkout #order_review table .recurring-totals {
    display: none;
}
.checkoutpage .checkout-overview table .recurring-total,
.checkoutpage .checkout #order_review table .recurring-total {
    margin-top: 10px !important;
    margin-bottom: 0 !important;
    display: none;
}
.checkoutpage .checkout-overview table .recurring-total:last-of-type,
.checkoutpage .checkout #order_review table .recurring-total:last-of-type {
    display: flex;
}
.checkoutpage .checkout-overview table .recurring-total td,
.checkoutpage .checkout #order_review table .recurring-total td {
    text-align: right;
}
.checkoutpage .checkout-overview table .recurring-total td .first-payment-date,
.checkoutpage .checkout #order_review table .recurring-total td .first-payment-date {
    display: block;
    width: 100%;
    max-width: 120px;
    color: #391802 !important;
    line-height: 1.1;
    margin-left: auto !important;
    text-align: right;
}
.checkoutpage .checkout-overview table .recurring-total td .first-payment-date small,
.checkoutpage .checkout #order_review table .recurring-total td .first-payment-date small {
    color: #391802 !important;
}
.checkoutpage .checkout-overview .order_review-s,
.checkoutpage .checkout #order_review .order_review-s {
    display: none;
    text-align: left;
    color: #391802;
    font-weight: normal !important;
    order: 2;
    margin: 30px 0;
}
@media (max-width: 767px) {
    .checkoutpage .checkout-overview .order_review-s,
.checkoutpage .checkout #order_review .order_review-s {
        font-size: 14px;
        margin: 20px 0;
    }
}
.checkoutpage .checkout-overview .order_review-s.active,
.checkoutpage .checkout #order_review .order_review-s.active {
    display: flex;
}
.checkoutpage .checkout-overview #payment,
.checkoutpage .checkout #order_review #payment {
    order: 3;
}
.checkoutpage .checkout-overview .place-order,
.checkoutpage .checkout #order_review .place-order {
    position: relative;
    padding: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    order: 4;
}
.checkoutpage .checkout-overview .place-order .woocommerce-terms-and-conditions-wrapper,
.checkoutpage .checkout #order_review .place-order .woocommerce-terms-and-conditions-wrapper {
    position: relative;
    width: 100%;
}
.checkoutpage .checkout-overview .place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text,
.checkoutpage .checkout #order_review .place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text {
    display: none;
}
.checkoutpage .checkout-overview .place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-terms-and-conditions,
.checkoutpage .checkout #order_review .place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-terms-and-conditions {
    display: none !important;
}
.checkoutpage .checkout-overview .place-order .woocommerce-terms-and-conditions-wrapper .checkbox,
.checkoutpage .checkout #order_review .place-order .woocommerce-terms-and-conditions-wrapper .checkbox {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    cursor: pointer;
}
.checkoutpage .checkout-overview .place-order .woocommerce-terms-and-conditions-wrapper .checkbox .required,
.checkoutpage .checkout #order_review .place-order .woocommerce-terms-and-conditions-wrapper .checkbox .required {
    display: none;
}
.checkoutpage .checkout-overview .place-order .woocommerce-terms-and-conditions-wrapper .checkbox input,
.checkoutpage .checkout #order_review .place-order .woocommerce-terms-and-conditions-wrapper .checkbox input {
    display: block;
    margin: 0;
    width: 15px;
    height: 15px;
    padding: 0;
    cursor: pointer;
}
.checkoutpage .checkout-overview .place-order .woocommerce-terms-and-conditions-wrapper .checkbox input:checked:after,
.checkoutpage .checkout #order_review .place-order .woocommerce-terms-and-conditions-wrapper .checkbox input:checked:after {
    content: "¬";
    font-size: 18px;
    color: #391802;
    position: absolute;
    left: 6px;
    right: 0;
    top: 1px;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(120deg);
}
.checkoutpage .checkout-overview .place-order .woocommerce-terms-and-conditions-wrapper .checkbox span,
.checkoutpage .checkout #order_review .place-order .woocommerce-terms-and-conditions-wrapper .checkbox span {
    display: inline;
    width: calc( 100% - 45px );
    line-height: 1.1;
}
.checkoutpage .checkout-overview .place-order .woocommerce-terms-and-conditions-wrapper .checkbox span:after,
.checkoutpage .checkout #order_review .place-order .woocommerce-terms-and-conditions-wrapper .checkbox span:after {
    content: "*";
    color: #DE0D2C;
}
.checkoutpage .checkout-overview .place-order .woocommerce-terms-and-conditions-wrapper .checkbox span a,
.checkoutpage .checkout #order_review .place-order .woocommerce-terms-and-conditions-wrapper .checkbox span a {
    pointer-events: none;
}
.checkoutpage .checkout-overview .form-row.validate-required,
.checkoutpage .checkout #order_review .form-row.validate-required {
    order: 4;
}
.checkoutpage .checkout-overview .form-row.validate-required .checkbox,
.checkoutpage .checkout #order_review .form-row.validate-required .checkbox {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    cursor: pointer;
}
.checkoutpage .checkout-overview .form-row.validate-required .checkbox .required,
.checkoutpage .checkout #order_review .form-row.validate-required .checkbox .required {
    display: none;
}
.checkoutpage .checkout-overview .form-row.validate-required .checkbox input,
.checkoutpage .checkout #order_review .form-row.validate-required .checkbox input {
    display: block;
    margin: 0;
    width: 15px;
    height: 15px;
    padding: 0;
    cursor: pointer;
}
.checkoutpage .checkout-overview .form-row.validate-required .checkbox input:checked:after,
.checkoutpage .checkout #order_review .form-row.validate-required .checkbox input:checked:after {
    content: "¬";
    font-size: 18px;
    color: #391802;
    position: absolute;
    left: 6px;
    right: 0;
    top: 1px;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(120deg);
}
.checkoutpage .checkout-overview .form-row.validate-required .checkbox span,
.checkoutpage .checkout #order_review .form-row.validate-required .checkbox span {
    display: inline;
    width: calc( 100% - 45px );
    line-height: 1.1;
}
.checkoutpage .checkout-overview .form-row.validate-required .checkbox span:after,
.checkoutpage .checkout #order_review .form-row.validate-required .checkbox span:after {
    content: "*";
    color: #DE0D2C;
}
.checkoutpage .checkout-overview .form-row.validate-required .checkbox span a,
.checkoutpage .checkout #order_review .form-row.validate-required .checkbox span a {
    pointer-events: none;
}
.checkoutpage .checkout-overview .btn,
.checkoutpage .checkout #order_review .btn {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 50px auto 0 auto !important;
    font-weight: normal;
    order: 6;
    cursor: pointer;
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 1024px) {
    .checkoutpage .checkout-overview .btn,
.checkoutpage .checkout #order_review .btn {
        width: -webkit-fit-content !important;
        width: -moz-fit-content !important;
        width: fit-content !important;
    }
}
.checkoutpage .checkout-overview .order_review-textsubscription,
.checkoutpage .checkout #order_review .order_review-textsubscription {
    display: none;
}
.checkoutpage .checkout-overview .order_review-textsubscription.active,
.checkoutpage .checkout #order_review .order_review-textsubscription.active {
    display: block;
    order: 4;
    margin-top: 30px;
    margin-bottom: 30px;
}
@media (max-width: 767px) {
    .checkoutpage .checkout-overview .order_review-textsubscription.active,
.checkoutpage .checkout #order_review .order_review-textsubscription.active {
        font-size: 14px;
    }
}

body.woocommerce-order-pay #order_review {
    position: relative;
    width: 100%;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
}
body.woocommerce-order-pay #order_review table {
    position: relative;
    border: none;
    padding: 0;
    margin-bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}
body.woocommerce-order-pay #order_review table thead {
    display: none;
}
body.woocommerce-order-pay #order_review table td,
body.woocommerce-order-pay #order_review table th {
    padding: 0;
    border: none;
    font-weight: normal;
    color: #391802;
}
body.woocommerce-order-pay #order_review table tbody {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    order: -1;
}
body.woocommerce-order-pay #order_review table tbody .cart_item,
body.woocommerce-order-pay #order_review table tbody .order_item,
body.woocommerce-order-pay #order_review table tbody tr {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}
@media (max-width: 767px) {
    body.woocommerce-order-pay #order_review table tbody .cart_item,
body.woocommerce-order-pay #order_review table tbody .order_item,
body.woocommerce-order-pay #order_review table tbody tr {
        flex-direction: column;
    }
}
body.woocommerce-order-pay #order_review table tbody .cart_item .product-name,
body.woocommerce-order-pay #order_review table tbody .order_item .product-name,
body.woocommerce-order-pay #order_review table tbody tr .product-name {
    width: 100%;
    max-width: 235px;
    padding-right: 10px;
}
body.woocommerce-order-pay #order_review table tbody .cart_item *,
body.woocommerce-order-pay #order_review table tbody .order_item *,
body.woocommerce-order-pay #order_review table tbody tr * {
    font-size: 16px;
    font-weight: normal !important;
}
@media (max-width: 767px) {
    body.woocommerce-order-pay #order_review table tbody .cart_item *,
body.woocommerce-order-pay #order_review table tbody .order_item *,
body.woocommerce-order-pay #order_review table tbody tr * {
        font-size: 14px;
    }
}
body.woocommerce-order-pay #order_review table tbody .cart_item:not(:last-of-type),
body.woocommerce-order-pay #order_review table tbody .order_item:not(:last-of-type),
body.woocommerce-order-pay #order_review table tbody tr:not(:last-of-type) {
    margin-bottom: 25px;
}
body.woocommerce-order-pay #order_review table tfoot {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 25px;
}
body.woocommerce-order-pay #order_review table tfoot tr {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}
@media (max-width: 767px) {
    body.woocommerce-order-pay #order_review table tfoot tr {
        flex-direction: column;
    }
}
@media (max-width: 767px) {
    body.woocommerce-order-pay #order_review table tfoot tr * {
        font-size: 14px !important;
    }
}
body.woocommerce-order-pay #order_review table tfoot tr:last-of-type {
    margin-top: 10px;
}
body.woocommerce-order-pay #order_review table tfoot tr:last-of-type th {
    text-transform: uppercase !important;
    font-weight: normal !important;
    letter-spacing: 2.4px !important;
}
body.woocommerce-order-pay #order_review table tfoot tr:not(:last-child) {
    margin-bottom: 15px;
}
body.woocommerce-order-pay #order_review table .recurring-totals {
    display: none;
}
body.woocommerce-order-pay #order_review table .recurring-total {
    margin-top: 10px !important;
    margin-bottom: 0 !important;
    display: none;
}
body.woocommerce-order-pay #order_review table .recurring-total:last-of-type {
    display: flex;
}
body.woocommerce-order-pay #order_review table .recurring-total td {
    text-align: right;
}
body.woocommerce-order-pay #order_review table .recurring-total td .first-payment-date {
    display: block;
    width: 100%;
    max-width: 120px;
    color: #391802 !important;
    line-height: 1.1;
}
body.woocommerce-order-pay #order_review table .recurring-total td .first-payment-date small {
    color: #391802 !important;
}
body.woocommerce-order-pay #order_review #payment {
    position: relative;
    width: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
    flex-direction: column;
    order: 199;
}
body.woocommerce-order-pay #order_review #payment .wc-credit-card-form {
    border: none !important;
}
body.woocommerce-order-pay #order_review #payment .payment_methods {
    padding: 0;
    margin-top: 40px;
    width: 100%;
    border: none;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
@media (max-width: 767px) {
    body.woocommerce-order-pay #order_review #payment .payment_methods {
        flex-direction: column;
        width: 100%;
    }
}
body.woocommerce-order-pay #order_review #payment .payment_methods li {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}
body.woocommerce-order-pay #order_review #payment .payment_methods li input {
    display: none;
}
body.woocommerce-order-pay #order_review #payment .payment_methods li label {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    width: 100%;
    height: 62px;
    padding: 24px 40px;
    border: solid 1px #CEA38B;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.1;
    cursor: pointer;
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 767px) {
    body.woocommerce-order-pay #order_review #payment .payment_methods li label {
        width: 100%;
        height: 45px;
    }
}
body.woocommerce-order-pay #order_review #payment .payment_methods li label:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #CEA38B;
    z-index: -1;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    margin: auto;
    -webkit-clip-path: circle(0 at 50% 50%);
    clip-path: circle(0 at 50% 50%);
    transition: 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
    display: none;
}
body.woocommerce-order-pay #order_review #payment .payment_methods li label.active {
    color: #391802;
    background-color: #CEA38B;
}
body.woocommerce-order-pay #order_review #payment .payment_methods li label.active:before {
    opacity: 1;
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
}
body.woocommerce-order-pay #order_review #payment .payment_methods li label:hover {
    color: #391802;
    background-color: #CEA38B;
}
body.woocommerce-order-pay #order_review #payment .payment_methods li label:hover:before {
    opacity: 1;
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
}
body.woocommerce-order-pay #order_review #payment .payment_methods li.payment_method_ppcp-credit-card-gateway {
    flex-direction: column;
    margin-bottom: 20px;
}
body.woocommerce-order-pay #order_review #payment .payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box {
    background-color: #fff;
    padding: 0;
    width: 100%;
    margin-bottom: 0;
}
body.woocommerce-order-pay #order_review #payment .payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box:before, body.woocommerce-order-pay #order_review #payment .payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box:after {
    display: none;
}
body.woocommerce-order-pay #order_review #payment .payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box .clear {
    display: none;
}
body.woocommerce-order-pay #order_review #payment .payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box fieldset {
    padding: 0;
    margin-top: 0;
    display: flex;
    width: 100%;
    flex-direction: column;
}
body.woocommerce-order-pay #order_review #payment .payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box fieldset p {
    width: 100%;
    padding: 0;
    margin: 0;
}
body.woocommerce-order-pay #order_review #payment .payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box fieldset p:not(:last-of-type) {
    margin-bottom: 15px;
}
body.woocommerce-order-pay #order_review #payment .payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box fieldset p:before {
    display: none;
}
body.woocommerce-order-pay #order_review #payment .payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box fieldset p label {
    pointer-events: none;
    padding: 0;
    color: #391802;
    font-size: 12px;
    text-transform: uppercase;
    border: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    min-height: inherit;
    justify-content: flex-start;
    align-items: flex-start;
    cursor: inherit;
    flex-direction: row;
}
body.woocommerce-order-pay #order_review #payment .payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box .woocommerce-SavedPaymentMethods-saveNew {
    position: relative;
    padding: 0;
    margin: 10px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
body.woocommerce-order-pay #order_review #payment .payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box .woocommerce-SavedPaymentMethods-saveNew:before, body.woocommerce-order-pay #order_review #payment .payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box .woocommerce-SavedPaymentMethods-saveNew:after {
    display: none;
    content: none;
}
body.woocommerce-order-pay #order_review #payment .payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box .woocommerce-SavedPaymentMethods-saveNew input {
    padding: 0;
    margin: 0;
    width: 15px !important;
    height: 15px;
    display: block;
    cursor: pointer;
}
body.woocommerce-order-pay #order_review #payment .payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box .woocommerce-SavedPaymentMethods-saveNew input:checked:after {
    font-size: 18px;
    left: 5px;
}
body.woocommerce-order-pay #order_review #payment .payment_methods li.payment_method_ppcp-credit-card-gateway .payment_box .woocommerce-SavedPaymentMethods-saveNew label {
    pointer-events: none;
    padding: 0;
    color: #391802;
    font-size: 12px;
    text-transform: uppercase;
    border: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    min-height: inherit;
    text-align: left;
    cursor: inherit;
    flex-direction: row;
    width: calc(100% - 25px);
    margin-bottom: 0;
}
body.woocommerce-order-pay #order_review #payment .payment_methods li.payment_method_ppcp-gateway {
    display: block;
    opacity: 0;
    position: absolute;
    top: -74px;
}
body.woocommerce-order-pay #order_review #payment .payment_methods li.payment_method_ppcp-gateway .payment_box {
    display: none !important;
}
body.woocommerce-order-pay #order_review #payment .form-row {
    display: flex;
    flex-direction: column;
}
body.woocommerce-order-pay #order_review #payment .form-row .ppc-button-wrapper {
    order: -1;
    width: 100%;
}
body.woocommerce-order-pay #order_review #payment .form-row .ppc-button-wrapper * {
    width: 100% !important;
}
body.woocommerce-order-pay #order_review #payment .form-row .woocommerce-terms-and-conditions-wrapper {
    margin-top: 50px !important;
}
@media (max-width: 767px) {
    body.woocommerce-order-pay #order_review #payment .form-row .woocommerce-terms-and-conditions-wrapper {
        margin-top: 30px !important;
    }
}
body.woocommerce-order-pay #order_review #payment .form-row .woocommerce-terms-and-conditions-wrapper p {
    font-size: 0;
}
body.woocommerce-order-pay #order_review #payment .form-row .woocommerce-terms-and-conditions-wrapper label {
    cursor: pointer;
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
}
body.woocommerce-order-pay #order_review #payment .form-row .woocommerce-terms-and-conditions-wrapper label span {
    margin-left: 10px;
    margin-top: 1px;
}
@media (max-width: 767px) {
    body.woocommerce-order-pay #order_review #payment .form-row .woocommerce-terms-and-conditions-wrapper label span {
        margin-top: 0;
        max-width: 430px;
    }
}
body.woocommerce-order-pay #order_review #payment .form-row .woocommerce-terms-and-conditions-wrapper label span a {
    pointer-events: none;
}
body.woocommerce-order-pay #order_review #payment .form-row .woocommerce-terms-and-conditions-wrapper input {
    cursor: pointer;
    padding: 0;
    width: 15px !important;
    height: 15px !important;
    min-width: 15px !important;
    min-height: 15px !important;
    max-width: 15px !important;
    max-height: 15px !important;
}
body.woocommerce-order-pay #order_review #payment .form-row #ppcp-hosted-fields {
    order: 99999999;
}
body.woocommerce-order-pay #order_review .ppc-button-wrapper {
    position: relative;
    width: 100%;
    order: 198;
}
body.woocommerce-order-pay #order_review .ppc-button-wrapper #ppc-button-ppcp-gateway {
    display: block !important;
    margin-top: 0;
}
body.woocommerce-order-pay #order_review .woocommerce-terms-and-conditions-wrapper {
    order: 4;
}
body.woocommerce-order-pay #order_review .form-row {
    padding: 0;
    margin: 0;
    width: 100% !important;
}
body.woocommerce-order-pay #order_review #place_order {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-align: center;
    color: #391802;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 23.25px 38.2px;
    border: 1px solid #CEA38B;
    text-transform: uppercase;
    background-color: transparent;
    border-radius: 0;
    margin: 50px auto 0 auto !important;
    font-weight: normal;
    float: none !important;
}
@media (max-width: 1024px) {
    body.woocommerce-order-pay #order_review #place_order {
        width: -webkit-fit-content !important;
        width: -moz-fit-content !important;
        width: fit-content !important;
    }
}
body.woocommerce-order-pay #order_review #place_order:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #CEA38B;
    z-index: -1;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    margin: auto;
    -webkit-clip-path: circle(0 at 50% 50%);
    clip-path: circle(0 at 50% 50%);
    transition: 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
    display: none;
}
body.woocommerce-order-pay #order_review #place_order:hover {
    color: #391802;
    background-color: #CEA38B;
}
body.woocommerce-order-pay #order_review #place_order:hover:before {
    opacity: 1;
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
}

.accountpage {
    position: relative;
    padding-top: 65px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
}
@media (max-width: 1024px) {
    .accountpage {
        padding-bottom: 80px;
    }
}
@media (max-width: 767px) {
    .accountpage {
        padding-top: 30px;
        padding-bottom: 50px;
    }
}
.accountpage-main {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* end of the My account */
}
.accountpage-main h1,
.accountpage-main h2 {
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 46px;
    line-height: 1.1;
    letter-spacing: 6px;
    font-size: 40px;
    font-weight: 400;
}
@media (max-width: 1439px) {
    .accountpage-main h1,
.accountpage-main h2 {
        font-size: 32px;
    }
}
@media (max-width: 1024px) {
    .accountpage-main h1,
.accountpage-main h2 {
        font-size: 28px;
    }
}
@media (max-width: 767px) {
    .accountpage-main h1,
.accountpage-main h2 {
        font-size: 27px;
        margin-bottom: 30px;
    }
}
.accountpage-main-headerlostpass {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 770px;
    margin: 0 auto 50px auto;
}
@media (max-width: 767px) {
    .accountpage-main-headerlostpass {
        margin-bottom: 30px;
    }
}
.accountpage-main-headerlostpass h2 {
    text-align: center;
}
.accountpage-main-headerlostpass p {
    text-align: center;
}
@media (max-width: 449px) {
    .accountpage-main-headerlostpass p br {
        display: none;
    }
}
.accountpage-main-headermyaccount {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}
@media (max-width: 767px) {
    .accountpage-main-headermyaccount {
        margin-bottom: 30px;
    }
}
.accountpage-main-headermyaccount h1 {
    margin-bottom: 20px;
    text-align: center;
}
@media (max-width: 767px) {
    .accountpage-main-headermyaccount h1 {
        margin-bottom: 10px;
    }
}
.accountpage-main-headermyaccount p {
    width: 100%;
    max-width: 1170px;
    text-align: center;
}
.accountpage-main-myaccount {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.accountpage-main-myaccount .woocommerce-MyAccount-navigation {
    position: relative;
    width: 100%;
}
.accountpage-main-myaccount .woocommerce-MyAccount-navigation ul {
    position: relative;
    width: 100%;
    max-width: 802px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-navigation ul {
        flex-direction: column;
        max-width: inherit;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-navigation ul li {
    position: relative;
    margin-right: 40px;
}
@media (max-width: 1024px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-navigation ul li {
        margin-right: 20px;
    }
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-navigation ul li {
        margin-right: 0;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin-bottom: 15px;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--subscriptions {
    text-align: center;
}
.accountpage-main-myaccount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--downloads, .accountpage-main-myaccount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard {
    display: none;
}
.accountpage-main-myaccount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account {
    order: -1;
}
.accountpage-main-myaccount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders {
    order: 0;
}
.accountpage-main-myaccount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--wps_subscriptions {
    order: 1;
}
.accountpage-main-myaccount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address {
    order: 2;
}
.accountpage-main-myaccount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--payment-methods {
    order: 3;
    display: none;
}
.accountpage-main-myaccount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout {
    order: 999999;
    margin-right: 0;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout {
        margin-bottom: 0;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-navigation ul li:before {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background-color: #CEA38B;
    display: none;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-navigation ul li:before {
        bottom: -4px;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-navigation ul li.is-active:before {
    content: "";
    display: inherit;
}
.accountpage-main-myaccount .woocommerce-MyAccount-navigation ul li a {
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2.25px;
    font-weight: normal;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-navigation ul li a {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-navigation ul li a:hover {
    color: #CEA38B;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content {
    position: relative;
    width: 100% !important;
    max-width: 802px !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    margin: 60px auto 0 auto;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content {
        margin-top: 30px;
        max-width: inherit !important;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content h2 {
    text-transform: uppercase;
    letter-spacing: 2.4px;
    font-weight: bold;
    font-size: 16px;
    color: #391802;
    margin-bottom: 40px;
    text-align: left;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content h2 {
        margin-bottom: 20px;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 {
    margin: 0 auto;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 p,
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .woocommerce-notices-wrapper {
    display: none;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap {
    margin-top: 60px;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap {
        margin-top: 30px;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table {
    position: relative;
    width: 100%;
    border: 1px solid #CEA38B !important;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table {
        display: flex;
        align-items: stretch;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table thead {
    position: relative;
    display: flex;
    width: 100%;
    padding-bottom: 20px;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table thead {
        width: 15%;
        padding-bottom: 0;
        align-items: flex-start;
        display: none;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table thead tr {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 15px;
    align-items: center;
    padding: 20px 20px 0 20px;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table thead tr {
        grid-template-columns: 1fr;
        grid-gap: 10px;
        padding: 10px;
        justify-content: space-between;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table thead tr th {
    padding: 0;
    border: none;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: normal;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table thead tr th {
        min-width: inherit;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table thead tr th.woocommerce-orders-table__header-order-actions {
    opacity: 0;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table thead tr th span {
    font-weight: normal;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table tbody {
    position: relative;
    width: 100%;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table tbody {
        width: 100%;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table tbody tr {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 15px;
    align-items: center;
    width: 100%;
    padding: 20px;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table tbody tr:not(:last-of-type) {
    border-bottom: 1px solid #CEA38B;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table tbody tr {
        grid-template-columns: 1fr;
        grid-gap: 15px;
    }
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table tbody tr * {
        background-color: transparent !important;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table tbody tr:first-of-type {
    border-top: 1px solid #CEA38B;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table tbody tr:first-of-type {
        border-top: 0;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table tbody tr td {
    position: relative;
    padding: 0;
    border: 0;
    height: auto;
    font-size: 14px;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table tbody tr td {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table tbody tr td b {
    display: none;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table tbody tr td b {
        display: block;
        font-weight: bold;
        margin-bottom: 5px;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table tbody tr td.woocommerce-orders-table__cell-order-number {
    flex-direction: row;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table tbody tr td.woocommerce-orders-table__cell-order-number {
        flex-direction: column;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table tbody tr td.woocommerce-orders-table__cell-order-number:before {
    content: "#";
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table tbody tr td.woocommerce-orders-table__cell-order-number:before {
        display: none;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table tbody tr td.woocommerce-orders-table__cell-order-status {
    color: #391802;
}
@media (max-width: 319px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table tbody tr td:before {
        content: none;
        display: none;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table tbody tr td.woocommerce-orders-table__cell-order-actions {
    display: flex;
    flex-direction: column;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table tbody tr td.woocommerce-orders-table__cell-order-actions {
        justify-content: flex-start;
    }
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table tbody tr td.woocommerce-orders-table__cell-order-actions:before {
        content: none;
        display: none;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table tbody tr td a {
    position: relative;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 0 !important;
    background-color: transparent;
    border: 1px solid #CEA38B;
    border-radius: 0px;
    color: #391802;
    font-weight: normal;
    padding: 8px 12px;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    margin-left: auto;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table tbody tr td a {
        width: 100%;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-1 .wps_sfw_account_wrap table tbody tr td a:hover {
    background-color: #CEA38B !important;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions table {
    position: relative;
    border: none !important;
    width: 100%;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions table thead {
    display: none;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions table tbody {
    position: relative;
    width: 100%;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions table tbody tr {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 15px;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #CEA38B;
    font-size: 14px !important;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions table tbody tr * {
    font-size: 14px !important;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions table tbody tr .button {
    font-size: 12px !important;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions table tbody tr {
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
    .accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions table tbody tr * {
        font-weight: normal !important;
        background-color: transparent !important;
    }
    .accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions table tbody tr *:before {
        font-weight: normal !important;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions table tbody tr:first-of-type {
    border-top: 1px solid #CEA38B;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions table tbody tr th {
    border: 0 !important;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions table tbody tr td {
    position: relative;
    padding: 0;
    border: 0 !important;
    height: auto;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions table tbody tr td {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions table tbody tr td.woocommerce-orders-table__cell-order-total {
    font-size: 0;
    text-align: right;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions table tbody tr td.woocommerce-orders-table__cell-order-total .woocommerce-Price-amount {
    font-size: 14px;
    line-height: 1;
    text-align: right;
}
@media (max-width: 319px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions table tbody tr td:before {
        content: none;
        display: none;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions table tbody tr td.woocommerce-orders-table__cell-order-actions {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-left: 25px;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions table tbody tr td.woocommerce-orders-table__cell-order-actions {
        justify-content: flex-start;
        padding-left: 0;
    }
    .accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions table tbody tr td.woocommerce-orders-table__cell-order-actions:before {
        content: none;
        display: none;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions table tbody tr td.woocommerce-orders-table__cell-order-actions a {
    width: 100% !important;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions table tbody tr td.woocommerce-orders-table__cell-order-actions a {
        width: -webkit-fit-content !important;
        width: -moz-fit-content !important;
        width: fit-content !important;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions table tbody tr td.woocommerce-orders-table__cell-order-actions a:not(:first-of-type) {
    margin-top: 10px !important;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions table tbody tr td .button {
    margin-top: 0 !important;
    background-color: transparent;
    border: 1px solid #CEA38B;
    border-radius: 0px;
    color: #391802;
    font-weight: normal;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions table tbody tr td .button {
        margin-left: 0;
        margin-right: auto;
    }
    .accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions table tbody tr td .button:hover {
        background-color: #CEA38B !important;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions .woocommerce-info {
    background-color: transparent !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-direction: column !important;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions .woocommerce-info a {
    float: none !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    padding: 22px !important;
    margin-top: 50px !important;
    text-decoration: none !important;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions .woocommerce-info a {
        margin-top: 40px !important;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions .woocommerce-info a:hover {
    color: #391802 !important;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions .woocommerce-info:before, .accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions .woocommerce-info:after {
    display: none;
    content: none;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions .button {
    padding: 6px !important;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions .woocommerce-Pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions .woocommerce-Pagination {
        flex-direction: column;
        gap: 10px;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions .woocommerce-Pagination .button {
    margin: 0 !important;
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
    padding: 14px 20px !important;
    font-weight: normal !important;
    font-size: 12px !important;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce_account_subscriptions .woocommerce-Pagination .button {
        width: 100% !important;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription .button {
    padding: 6px !important;
    width: 100%;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table {
    position: relative;
    border: none;
    width: 100%;
    max-width: 368px;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table {
        max-width: inherit;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table thead {
    display: none;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table tbody tr {
    background: none;
    margin-bottom: 10px;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table tbody tr td {
    color: #391802 !important;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table tbody,
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table tfoot {
    position: relative;
    width: 100%;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table tbody tr,
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table tfoot tr {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table tbody tr,
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table tfoot tr {
        flex-direction: column;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table tbody tr:not(:last-child),
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table tfoot tr:not(:last-child) {
    margin-bottom: 10px;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table tbody tr td,
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table tbody tr th,
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table tfoot tr td,
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table tfoot tr th {
    padding: 0;
    border: none;
    font-weight: normal;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table tbody tr td *,
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table tbody tr th *,
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table tfoot tr td *,
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table tfoot tr th * {
    font-weight: normal !important;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table.subscription_details tr:last-of-type td {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    width: 100%;
    float: none !important;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table.subscription_details tr:last-of-type td {
        grid-template-columns: 1fr;
        text-align: left !important;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table.subscription_details, .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table.woocommerce-orders-table--orders {
    margin-bottom: 40px !important;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table.subscription_details tbody tr:last-of-type td.woocommerce-orders-table__cell-order-actions, .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table.woocommerce-orders-table--orders tbody tr:last-of-type td.woocommerce-orders-table__cell-order-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    width: 100%;
    float: none !important;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table.subscription_details tbody tr:last-of-type td.woocommerce-orders-table__cell-order-actions, .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table.woocommerce-orders-table--orders tbody tr:last-of-type td.woocommerce-orders-table__cell-order-actions {
        grid-template-columns: 1fr;
        text-align: left !important;
    }
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table.subscription_details tbody tr:last-of-type td span, .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table.woocommerce-orders-table--orders tbody tr:last-of-type td span {
        text-align: left !important;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table.subscription_details tbody tr:last-of-type td:first-of-type, .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table.woocommerce-orders-table--orders tbody tr:last-of-type td:first-of-type {
    display: none;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table.subscription_details tbody tr:last-of-type td a, .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table.woocommerce-orders-table--orders tbody tr:last-of-type td a {
    width: 100% !important;
    float: none !important;
    max-width: inherit;
    font-size: 12px;
    display: flex;
    margin-top: 0 !important;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table.order_details {
    margin-bottom: 40px;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table .order-actions {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    flex-direction: row;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table .order-actions {
        flex-direction: column;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table .order-actions a {
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
    margin: 0 !important;
    font-size: 12px !important;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table .order-actions a {
        width: 100% !important;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table .order-actions a.button {
    margin-top: 0 !important;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription table.woocommerce-orders-table--orders tbody tr {
    flex-direction: column;
    margin: 0;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-subscription address {
    width: 100%;
    background-color: #fff;
    border: 1px solid #CEA38B;
    display: flex;
    flex-direction: column;
    padding: 16px;
    font-size: 16px;
    font-style: normal;
    line-height: 25px;
    border-radius: 0;
    margin-bottom: 30px;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-orders .woocommerce-info {
    background-color: transparent !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-direction: column !important;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-orders .woocommerce-info a {
    float: none !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    padding: 22px !important;
    text-decoration: none !important;
    margin-top: 40px !important;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-orders .woocommerce-info a:hover {
    color: #391802 !important;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-orders .woocommerce-info:before, .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-orders .woocommerce-info:after {
    display: none;
    content: none;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-orders .button {
    padding: 6px !important;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-orders .woocommerce-Pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-orders .woocommerce-Pagination {
        flex-direction: column;
        gap: 10px;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-orders .woocommerce-Pagination .button {
    margin: 0 !important;
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
    padding: 14px 20px !important;
    font-weight: normal !important;
    font-size: 12px !important;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-orders .woocommerce-Pagination .button {
        width: 100% !important;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order p:first-of-type {
    display: none;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details {
    margin-bottom: 0 !important;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table {
    position: relative;
    border: none;
    width: 100%;
    max-width: 368px;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table {
        max-width: inherit;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table thead {
    display: none;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tbody tr {
    margin-bottom: 25px;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tbody tr {
        margin-bottom: 15px;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tbody .product-name {
    width: 100%;
    max-width: 250px;
    padding-right: 15px;
    line-height: 1.5;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tbody .product-name {
        padding-right: 0;
        max-width: none;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tbody,
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tfoot {
    position: relative;
    width: 100%;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tbody tr,
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tfoot tr {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tbody tr,
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tfoot tr {
        flex-direction: column;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tbody tr td,
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tbody tr th,
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tfoot tr td,
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tfoot tr th {
    color: #391802;
    padding: 0;
    border: none;
    font-weight: normal;
    line-height: 1.5;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tbody tr td,
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tfoot tr td {
        margin-left: 0 !important;
    }
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tbody tr th,
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tfoot tr th {
        margin-right: 0 !important;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tbody tr .product-quantity,
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tfoot tr .product-quantity {
    display: none;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tfoot tr:not(:last-child) {
    margin-bottom: 5px;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tfoot tr:not(:last-child) {
        margin-bottom: 10px;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tfoot tr:last-child {
    margin-top: 50px;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tfoot tr:last-child {
        margin-top: 20px;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tfoot tr:last-child th {
    text-transform: uppercase;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tfoot tr th {
    text-align: left !important;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tfoot tr td {
    text-align: right !important;
    margin-left: auto;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tfoot tr.view-orderpage-actions {
    display: flex;
    flex-direction: column !important;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tfoot tr.view-orderpage-actions th {
    display: none;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tfoot tr.view-orderpage-actions td {
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table tfoot tr.view-orderpage-actions td a {
    padding: 6px !important;
    margin-top: 0 !important;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-order-details table .shipped_via {
    display: none;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-customer-details {
    display: none;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order header {
    margin-top: 50px;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order header {
        margin-top: 30px;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order header h2 {
    font-weight: normal !important;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-orders-table--subscriptions {
    margin-top: -20px;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-orders-table--subscriptions {
        margin-top: -10px;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-orders-table--subscriptions tr {
    margin-bottom: 0 !important;
    flex-wrap: wrap;
    gap: 10px !important;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-orders-table--subscriptions tr {
        gap: 10px !important;
    }
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-orders-table--subscriptions tr td {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-orders-table--subscriptions tr td:before {
        font-weight: normal !important;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-orders-table--subscriptions a.view {
    margin-top: 47px !important;
    position: absolute;
    left: 0;
    font-size: 12px !important;
    padding: 6px !important;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-view-order .woocommerce-orders-table--subscriptions a.view {
        position: relative;
        margin-top: 20px !important;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address p {
    text-transform: uppercase;
    letter-spacing: 2.4px;
    font-weight: bold;
    font-size: 16px;
    color: #391802;
    margin-bottom: 40px;
    text-align: left;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address p {
        margin-bottom: 20px;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address .woocommerce-Addresses {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address .woocommerce-Addresses:before, .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address .woocommerce-Addresses:after {
    display: none;
    content: none;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address .woocommerce-Addresses .woocommerce-Address {
    width: 100%;
    background-color: #fff;
    border: 1px solid #CEA38B;
    display: flex;
    flex-direction: column;
    padding: 16px;
    padding-bottom: 66px;
}
@media (max-width: 249px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address .woocommerce-Addresses .woocommerce-Address {
        padding-bottom: 86px;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address .woocommerce-Addresses .woocommerce-Address.u-column2 {
    display: none;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address .woocommerce-Addresses .woocommerce-Address header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address .woocommerce-Addresses .woocommerce-Address header {
        flex-direction: column;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address .woocommerce-Addresses .woocommerce-Address header:before, .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address .woocommerce-Addresses .woocommerce-Address header:after {
    display: none;
    content: none;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address .woocommerce-Addresses .woocommerce-Address header h2 {
    font-weight: normal;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address .woocommerce-Addresses .woocommerce-Address header h2 {
        margin-bottom: 10px;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address .woocommerce-Addresses .woocommerce-Address header a {
    position: absolute;
    left: 16px;
    bottom: 16px;
    text-transform: uppercase;
    background-color: #fff;
    border: 1px solid #CEA38B;
    padding: 10px;
    font-size: 12px;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address .woocommerce-Addresses .woocommerce-Address header a {
        left: auto;
        right: auto;
        margin: auto;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        max-width: calc(100% - 32px);
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address .woocommerce-Addresses .woocommerce-Address header a:hover {
    background-color: #CEA38B;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address .woocommerce-Addresses .woocommerce-Address address {
    font-size: 16px;
    font-style: normal;
    line-height: 25px;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form {
    width: 100% !important;
    max-width: inherit !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form ::-moz-placeholder {
    font-weight: normal;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form :-ms-input-placeholder {
    font-weight: normal;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form label,
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form ::placeholder,
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form input,
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form textarea,
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form select {
    font-weight: normal;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form h3 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 45px;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form h3 {
        margin-bottom: 20px;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .select2-selection--single {
    border-radius: 0 !important;
    border-color: #CEA38B !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .select2-selection--single .select2-selection__rendered {
    color: #391802;
    font-weight: normal;
    text-transform: capitalize;
    letter-spacing: normal;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .select2-selection--single .select2-selection__arrow {
    position: relative;
    display: flex;
    align-items: center;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .select2-selection--single .select2-selection__arrow b {
    border-color: #CEA38B transparent transparent transparent;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .select2-container--default .select2-results__option--highlighted[aria-selected], .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .select2-container--default .select2-results__option--highlighted[data-selected] {
    background-color: #CEA38B !important;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .select2-selection__placeholder {
    color: #391802 !important;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields {
    width: 100%;
    max-width: 715px;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .woocommerce-address-fields__field-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    justify-content: space-between;
    width: 100%;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields p {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px !important;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields p {
        margin-bottom: 20px !important;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields p .woocommerce-input-wrapper {
    width: 100%;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row {
    position: relative;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#billing_first_name_field, .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#shipping_first_name_field {
    width: 33.5664335664%;
    max-width: 240px;
    order: 0;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#billing_first_name_field, .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#shipping_first_name_field {
        width: 100%;
        max-width: none;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#billing_last_name_field, .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#shipping_last_name_field {
    width: 63.6363636364%;
    max-width: 455px;
    order: 1;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#billing_last_name_field, .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#shipping_last_name_field {
        width: 100%;
        max-width: none;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#billing_address_1_field, .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#shipping_address_1_field {
    order: 2;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#billing_city_field, .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#shipping_city_field {
    order: 3;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#billing_postcode_field, .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#shipping_postcode_field {
    order: 4;
    width: 18.1818181818%;
    max-width: 130px;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#billing_postcode_field, .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#shipping_postcode_field {
        width: 30%;
        max-width: none;
    }
}
@media (max-width: 364px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#billing_postcode_field, .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#shipping_postcode_field {
        width: 100%;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#billing_state_field, .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#shipping_state_field {
    order: 5;
    width: 35.6643356643%;
    max-width: 255px;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#billing_state_field, .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#shipping_state_field {
        width: 65%;
        max-width: none;
    }
}
@media (max-width: 364px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#billing_state_field, .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#shipping_state_field {
        width: 100%;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#billing_country_field, .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#shipping_country_field {
    order: 6;
    width: 40.5594405594%;
    max-width: 290px;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#billing_country_field, .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#shipping_country_field {
        width: 100%;
        max-width: none;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#billing_email_field, .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#shipping_email_field {
    order: 7;
    width: 56%;
    max-width: 405px;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#billing_email_field, .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#shipping_email_field {
        width: 100%;
        max-width: none;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#billing_phone_field, .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#shipping_phone_field {
    order: 8;
    width: 40.5594405594%;
    max-width: 290px;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#billing_phone_field, .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#shipping_phone_field {
        width: 100%;
        max-width: none;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#billing_address_2_field, .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#shipping_address_2_field {
    display: none !important;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#billing_company_field, .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .form-row#shipping_company_field {
    display: none;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address form .woocommerce-address-fields .button {
        margin-top: 20px !important;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address small {
    text-align: left;
    margin-right: auto;
    font-size: 12px;
    font-weight: normal;
    color: #391802;
    margin-top: 18px;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address small b,
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address small strong {
    font-weight: normal;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content.myaccountpage-edit-address .footertext {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 1px;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm {
    width: 100%;
    margin: 0 !important;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm p {
    align-items: flex-start;
    width: 100%;
    max-width: 570px;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm em {
    font-size: 12px;
    text-align: left;
    margin-top: 4px;
    font-weight: normal;
    font-style: normal;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content .no_subscriptions a {
    margin-top: 0 !important;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content .no_subscriptions a:hover {
    color: #391802 !important;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content fieldset {
    position: relative;
    border: 0;
    padding: 0;
    width: 100%;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content fieldset legend {
    display: none;
}
.accountpage-main-myaccount .woocommerce-MyAccount-content .button {
    margin-top: 50px !important;
    background-color: transparent;
    border: 1px solid #CEA38B;
    border-radius: 0px;
    color: #391802;
    font-weight: normal;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-content .button {
        margin-top: 40px !important;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-content .button:hover {
    color: #391802;
}
.accountpage-main-myaccount .woocommerce-MyAccount-orders {
    position: relative;
    border: none !important;
    width: 100%;
}
.accountpage-main-myaccount .woocommerce-MyAccount-orders thead {
    display: none;
}
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody {
    position: relative;
    width: 100%;
}
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 15px;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #CEA38B;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr {
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
    .accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr * {
        background-color: transparent !important;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr:first-of-type {
    border-top: 1px solid #CEA38B;
}
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr td,
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr th {
    position: relative;
    padding: 0;
    font-weight: normal !important;
    border: 0 !important;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr td,
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr th {
        font-size: 16px !important;
    }
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr td:before,
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr th:before {
        font-size: 16px !important;
        font-weight: normal !important;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr td *,
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr th * {
    font-weight: normal !important;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr td *,
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr th * {
        font-size: 16px !important;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr td.woocommerce-orders-table__cell-order-total,
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr th.woocommerce-orders-table__cell-order-total {
    font-size: 0;
    text-align: right;
}
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr td.woocommerce-orders-table__cell-order-total .woocommerce-Price-amount,
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr th.woocommerce-orders-table__cell-order-total .woocommerce-Price-amount {
    font-size: 14px;
    line-height: 1;
    text-align: right;
}
@media (max-width: 319px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr td:before,
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr th:before {
        content: none;
        display: none;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr td:before,
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr th:before {
    content: attr(data-title) ": ";
    float: left;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1px;
}
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr td.woocommerce-orders-table__cell-order-actions,
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr th.woocommerce-orders-table__cell-order-actions {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-left: 25px;
}
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr td.woocommerce-orders-table__cell-order-actions:before,
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr th.woocommerce-orders-table__cell-order-actions:before {
    content: none !important;
    display: none !important;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr td.woocommerce-orders-table__cell-order-actions,
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr th.woocommerce-orders-table__cell-order-actions {
        justify-content: flex-start;
        padding-left: 0;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr td.woocommerce-orders-table__cell-order-actions a,
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr th.woocommerce-orders-table__cell-order-actions a {
    width: 100% !important;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr td.woocommerce-orders-table__cell-order-actions a,
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr th.woocommerce-orders-table__cell-order-actions a {
        width: -webkit-fit-content !important;
        width: -moz-fit-content !important;
        width: fit-content !important;
    }
}
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr td.woocommerce-orders-table__cell-order-actions a:not(:first-of-type),
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr th.woocommerce-orders-table__cell-order-actions a:not(:first-of-type) {
    margin-top: 10px !important;
}
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr td .button,
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr th .button {
    margin-top: 0 !important;
    background-color: transparent;
    border: 1px solid #CEA38B;
    border-radius: 0px;
    color: #391802;
    font-weight: normal;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
}
@media (max-width: 767px) {
    .accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr td .button,
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr th .button {
        margin-left: 0;
        font-size: 12px !important;
        margin-right: auto;
    }
    .accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr td .button:hover,
.accountpage-main-myaccount .woocommerce-MyAccount-orders tbody tr th .button:hover {
        background-color: #CEA38B !important;
    }
}
.accountpage-main label {
    width: 100%;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-align: left;
    color: #391802;
    text-transform: uppercase;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
}
.accountpage-main input,
.accountpage-main select {
    border: 1px solid #CEA38B;
    color: #391802;
    font-size: 16px;
    padding: 20px 12px;
    background-color: #fff;
}
.accountpage-main input::-moz-placeholder, .accountpage-main select::-moz-placeholder {
    color: #fff;
}
.accountpage-main input:-ms-input-placeholder, .accountpage-main select:-ms-input-placeholder {
    color: #fff;
}
.accountpage-main input::placeholder,
.accountpage-main select::placeholder {
    color: #fff;
}
.accountpage-main input[type=checkbox],
.accountpage-main select[type=checkbox] {
    width: 25px !important;
    height: 25px !important;
    min-width: 25px !important;
    min-height: 25px !important;
    max-width: 25px !important;
    max-height: 25px !important;
    padding: 0 !important;
    margin: -2px 8px 0 0;
    text-align: center;
    vertical-align: middle;
}
.accountpage-main input[type=checkbox]:after,
.accountpage-main select[type=checkbox]:after {
    font-size: 22px;
    left: 6px;
}
.accountpage-main .checkbox {
    position: relative;
    cursor: pointer;
    font-weight: normal;
    display: block !important;
    padding-left: 40px;
}
.accountpage-main .checkbox strong,
.accountpage-main .checkbox b {
    font-weight: normal !important;
}
.accountpage-main .checkbox input[type=checkbox] {
    position: absolute;
    left: 0;
    top: 0;
    padding: 0;
    width: 25px;
    height: 25px;
    cursor: pointer;
}
.accountpage-main .show-password-input {
    transform: none !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    background-image: url("../svg/password-eye.svg");
    background-repeat: no-repeat;
    background-size: 17px;
    background-position: 50%;
    width: 17px;
}
.accountpage-main .show-password-input.display-password {
    filter: grayscale(1);
}
.accountpage-main .show-password-input:before, .accountpage-main .show-password-input:after {
    content: none !important;
    display: none;
}
.accountpage-main .required {
    color: #391802 !important;
}
.accountpage-main .woocommerce {
    position: relative;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.accountpage-main .woocommerce-ResetPassword p:first-child {
    display: none;
}
.accountpage-main #customer_login {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.accountpage-main #customer_login:before, .accountpage-main #customer_login:after {
    display: none;
}
.accountpage-main #customer_login .toggleRegister,
.accountpage-main #customer_login .toggleLogin {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 32px auto 0 auto;
    letter-spacing: 1.2px;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    color: #391802 !important;
    order: 100000000000000020;
}
@media (max-width: 359px) {
    .accountpage-main #customer_login .toggleRegister,
.accountpage-main #customer_login .toggleLogin {
        flex-direction: column;
        text-align: center;
    }
}
.accountpage-main #customer_login .toggleRegister-btn,
.accountpage-main #customer_login .toggleLogin-btn {
    position: relative;
    display: flex;
    font-size: 12px;
    margin-left: 15px;
    font-weight: bold;
    text-transform: uppercase;
    color: #391802 !important;
}
@media (max-width: 359px) {
    .accountpage-main #customer_login .toggleRegister-btn,
.accountpage-main #customer_login .toggleLogin-btn {
        margin-left: 0;
        margin-top: 5px;
    }
}
.accountpage-main #customer_login .toggleRegister-btn:hover,
.accountpage-main #customer_login .toggleLogin-btn:hover {
    color: #CEA38B !important;
}
.accountpage-main #customer_login .toggleRegister-btn:hover:before,
.accountpage-main #customer_login .toggleLogin-btn:hover:before {
    background-color: #CEA38B !important;
    width: 100%;
}
.accountpage-main #customer_login .u-column1 {
    position: relative;
    width: 100% !important;
    float: none !important;
}
.accountpage-main #customer_login .u-column1.active {
    display: block !important;
}
.accountpage-main #customer_login .u-column1 span.required {
    display: none;
}
.accountpage-main #customer_login .u-column2 {
    position: relative;
    display: none;
}
.accountpage-main #customer_login .u-column2.active {
    display: block;
}
.accountpage-main #customer_login .u-column2 p {
    font-size: 0;
}
.accountpage-main #customer_login .u-column2 .woocommerce-input-wrapper {
    width: 100%;
}
.accountpage-main form {
    position: relative;
    width: 100% !important;
    max-width: 570px !important;
    padding: 0 !important;
    border: none !important;
    margin: 0 auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.accountpage-main form .form-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
.accountpage-main form .form-row:before, .accountpage-main form .form-row:after {
    display: none;
}
.accountpage-main form .form-row span.password-input {
    width: 100%;
}
.accountpage-main form .form-row:not(:last-of-type) {
    margin-bottom: 25px !important;
}
.accountpage-main form .form-row:has(> .button) {
    order: 999;
    margin-bottom: 0 !important;
}
.accountpage-main form .show-password-input {
    color: #CEA38B !important;
    top: 0 !important;
    bottom: 0 !important;
    right: 10px !important;
    margin: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.accountpage-main form .woocommerce-form-login__rememberme {
    display: none !important;
}
.accountpage-main form .woocommerce-LostPassword {
    position: relative;
    margin: 1px auto 11px 0;
}
.accountpage-main form .woocommerce-LostPassword a {
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.accountpage-main form .woocommerce-LostPassword:before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -4px;
    background-color: #391802;
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.accountpage-main form .woocommerce-LostPassword:hover {
    background-color: transparent;
}
.accountpage-main form .woocommerce-LostPassword:hover a {
    color: #CEA38B !important;
}
.accountpage-main form .woocommerce-LostPassword:hover:before {
    background-color: #CEA38B;
}
.accountpage-main form .button {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.2px;
    text-align: center;
    color: #391802;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 23.25px 38.2px !important;
    border: 1px solid #CEA38B;
    text-transform: uppercase;
    background-color: transparent !important;
    border-radius: 0;
    margin: 25px auto 0 auto !important;
}
@media (max-width: 1024px) {
    .accountpage-main form .button {
        width: -webkit-fit-content !important;
        width: -moz-fit-content !important;
        width: fit-content !important;
    }
}
.accountpage-main form .button:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #CEA38B;
    z-index: -1;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    margin: auto;
    -webkit-clip-path: circle(0 at 50% 50%);
    clip-path: circle(0 at 50% 50%);
    transition: 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
    display: none;
}
.accountpage-main form .button:hover {
    color: #391802;
    background-color: #CEA38B !important;
}
.accountpage-main form .button:hover:before {
    opacity: 1;
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
}
.accountpage-main .subscriptionactivenote {
    display: none;
    position: relative;
    width: 100% !important;
    max-width: 802px !important;
    margin: 0 auto 0 auto;
}
.accountpage-main .subscriptionactivenote.active {
    display: block;
}
.accountpage-main .subscriptionactivenote p {
    width: 100%;
    text-align: left;
    max-width: 560px;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.errorpage {
    position: relative;
    padding-top: 65px;
    padding-bottom: 60px;
    max-width: 1180px;
}
@media (max-width: 767px) {
    .errorpage {
        padding-top: 30px;
        padding-bottom: 50px;
    }
}
