*,
*::before,
*::after {
    box-sizing: border-box;
}
:focus-visible {
    outline: none;
}
:root {
    --responsive--alignwide-width: 1440px;
    --global--font-size-base: 16px;
    --global--font-primary: "Mulish";
    --global--font-secondary: var(--global--font-primary);
    --entry-content--font-family: var(--global--font-primary);

    --global--color-black: #1F1F1F;
    --global--color-green: #33B2B0;
    --global--color-white: #ffffff;
    --global--color-yellow: #FFE677;
    --global--color-drank-green: #104D4C;
    --global--color-light-grey: #E9E9E9;
    --global--color-dark-gray: var(--global--color-black);

    --global--letter-spacing: 0;

    --heading--font-size-h6: 14px;
    --heading--font-size-h5: 168px;
    --heading--font-size-h4: 18px;
    --heading--font-size-h3: 21px;
    --heading--font-size-h2: 28px;
    --heading--font-size-h1: 36px;
    --global--font-size-page-title: var(--heading--font-size-h1);
    --heading--letter-spacing-h6: var(--global--letter-spacing);
    --heading--letter-spacing-h5: var(--global--letter-spacing);
    --heading--line-height-h6: 19px;
    --heading--line-height-h5: 22px;
    --heading--line-height-h4: 24px;
    --heading--line-height-h3: 26px;
    --heading--line-height-h2: 38px;
    --heading--line-height-h1: 46px;

    --heading--font-weight-page-title: 400;
    --widget--font-weight-title: var(--heading--font-weight-page-title);
}
.white:hover,
.white {
    color: var(--global--color-white);
}
.green:hover,
.green {
    color: var(--global--color-green);
}
.yellow {
    color: var(--global--color-yellow);
}
.drank-green {
    color: var(--global--color-drank-green);
}
.light-grey {
    color: var(--global--color-light-grey);
}

body {
    font-family: var(--global--font-primary);
    color: var(--global--color-black);
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0;
    background-color: var(--global--color-white);
}

.regular {
    font-weight: 400;
}

.page-content,
.entry-footer,
.entry-content,
.widget-area,
.pagination,
.comments-pagination,
.post-navigation,
.alignwide,
.wide-max-width,
.container {
    max-width: var(--responsive--alignwide-width);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}
label,
legend,
input,
textarea,
button,
select,
a {
    -webkit-tap-highlight-color: transparent;
}
a {
    text-decoration: none;
    transition: all 0.3s;
    color: inherit;
}
a:hover {
    color: var(--global--color-black);
}
/* a:hover {
    color: var(--global--color-green);
} */
.singular .entry-title,
h1.entry-title,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin: 0 0 16px;
}
p {
    margin: 0 0 23px;
}
ul {
    padding-left: 25px;
    margin-bottom: 23px;
}
.singular .entry-title,
h1.entry-title,
h1,
.h1 {
    font-size: 50px;
    line-height: 55px;
}

h2,
.h2 {
    font-size: 36px;
    line-height: 44px;
}

h3,
.h3 {
    font-size: 30px;
    line-height: 38px;
}

h4,
.h4 {
    font-size: 22px;
    line-height: 26px;
}

h5,
.h5 {
    font-size: 18px;
    line-height: 24px;
}

h6,
.h6 {
    font-size: 16px;
    line-height: 23px;
}
.remark {
    font-size: 14px;
    line-height: 22px;
}

.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}

/* Start - Button 1 : View more button */
.full-width {
    width: 100%;
}
.btn-arrow {
    line-height: 21px;
    display: inline-flex;
    font-weight: 700;    
    text-transform: uppercase;
    align-items: center;
}

.btn-arrow .arrow-up,
.btn-arrow .arrow-down,
.btn-arrow .arrow-right {
    position: relative;
    width: 16px;
    height: 16px;
    overflow: hidden;
    display: inline-flex;
    margin-left: 8px;
}

.btn-arrow .arrow-up:before,
.btn-arrow .arrow-up:after,
.btn-arrow .arrow-down:before,
.btn-arrow .arrow-down:after,
.btn-arrow .arrow-right:before,
.btn-arrow .arrow-right:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    transition: .3s all;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 9px;
    left: 0;
}
.btn-arrow .arrow-up:before,
.btn-arrow .arrow-up:after,
.btn-arrow .arrow-down:before,
.btn-arrow .arrow-down:after {
    background-size: 13px;
}
.btn-arrow .arrow-right:before {
    left: -16px;
}
.btn-arrow:hover .arrow-right:before,
.btn-arrow:hover .arrow-right:after {
    transform: translateX(16px);
}

.btn-arrow .arrow-up:before {
    top: 16px;
}
.btn-arrow:hover .arrow-up:before,
.btn-arrow:hover .arrow-up:after {
    transform: translateY(-16px);
}

.btn-arrow .arrow-down:before {
    top: -16px;
}
.btn-arrow:hover .arrow-down:before,
.btn-arrow:hover .arrow-down:after {
    transform: translateY(16px);
}

.btn-arrow .arrow-right:before,
.btn-arrow .arrow-right:after {
    background-image: url(../images/arrow-right.svg);
}
.btn-arrow.white .arrow-right:before,
.btn-arrow.white .arrow-right:after {
    background-image: url(../images/arrow-right-white.svg);
}
.btn-arrow.green .arrow-right:before,
.btn-arrow.green .arrow-right:after {
    background-image: url(../images/arrow-right-green.svg);
}

.btn-arrow .arrow-up:before,
.btn-arrow .arrow-up:after {
    background-image: url(../images/arrow-up.svg);
}
.btn-arrow.white .arrow-up:before,
.btn-arrow.white .arrow-up:after {
    background-image: url(../images/arrow-up-white.svg);
}
.btn-arrow.green .arrow-up:before,
.btn-arrow.green .arrow-up:after {
    background-image: url(../images/arrow-up-green.svg);
}

.btn-arrow .arrow-down:before,
.btn-arrow .arrow-down:after {
    background-image: url(../images/arrow-down.svg);
}
.btn-arrow.white .arrow-down:before,
.btn-arrow.white .arrow-down:after {
    background-image: url(../images/arrow-down-white.svg);
}
.btn-arrow.green .arrow-down:before,
.btn-arrow.green .arrow-down:after {
    background-image: url(../images/arrow-down-green.svg);
}
.woocommerce .woocommerce-MyAccount-content button.button, 
.woocommerce .woocommerce-MyAccount-content input.button, 
.woocommerce .woocommerce-MyAccount-content a.button,
.woocommerce .xepure-minicart button.button,
.woocommerce .xepure-minicart input.button,
.woocommerce .xepure-minicart a.button,
.site .button, 
button, 
input[type=submit], 
input[type=reset], 
.wp-block-search .wp-block-search__button, 
.wp-block-button .wp-block-button__link, 
.wp-block-file a.wp-block-file__button,
.btn {
    transition: all 0.3s ease-in-out 0s;
    display: inline-flex;
    padding: 10px 19px;
    background-color: var(--global--color-black);
    color: var(--global--color-white);
    line-height: 21px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid var(--global--color-black);
    height: auto;
    align-items: center;    
    position: relative;
    text-align: center;
    justify-content: center;
    border-radius: 0;
}
.btn.btn-white {
    color: var(--global--color-black);
    background-color: var(--global--color-white);
    border-color: var(--global--color-white);
}
.btn.btn-download {
    color: var(--global--color-black);
    background-color: transparent;
    border-color: var(--global--color-black);
}
.btn.btn-subscription {
    background-color: var(--global--color-green);
    color: var(--global--color-white);
    border-color: var(--global--color-green);
}
.woocommerce .woocommerce-MyAccount-content button.button:hover, 
.woocommerce .woocommerce-MyAccount-content input.button:hover, 
.woocommerce .woocommerce-MyAccount-content a.button:hover,
.woocommerce .xepure-minicart button.button:hover,
.woocommerce .xepure-minicart input.button:hover,
.woocommerce .xepure-minicart a.button:hover,
.site .button:hover, 
button:hover, 
input[type=submit]:hover, 
input[type=reset]:hover, 
.wp-block-search .wp-block-search__button:hover, 
.wp-block-button .wp-block-button__link:hover, 
.wp-block-file a.wp-block-file__button:hover,
.btn:hover {
    color: var(--global--color-black);
    background-color: transparent;
    border-color: var(--global--color-black);
}
.btn.btn-black:hover {
    background-color: var(--global--color-white);
    border-color: var(--global--color-white);
}
.btn.btn-black:hover {
    background-color: var(--global--color-white);
    border-color: var(--global--color-white);
}
.btn.btn-download:hover,
.btn.btn-white:hover {
    background-color: var(--global--color-black);
    border-color: var(--global--color-black);
    color: var(--global--color-white);
}
.btn.btn-subscription:hover {
    background-color: transparent;
    color: var(--global--color-green);
    border-color: var(--global--color-green);
}
 
.btn-play {
    background-color: #E3E3E3;
    border-radius: 100%;
    width: 70px;
    height: 70px;
    border: none;
    position: relative;
    display: inline-flex;
    margin: 0;
    left: auto;
    top: auto;
    right: auto;
    transition: opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1);
    background-color: var(--global--color-green);
    border-radius: 100%;
    overflow: hidden;
}
.btn-play:after{
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s;
    border-radius: 100%;
    background-color: var(--global--color-white);
    transform: translateX(-100%);
}
.btn-play:hover:after {
    transform: translateX(0);
}
.btn-play .arrow:before, 
.btn-play .arrow:after {
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.4s;
    border-radius: 100%;
    background-image: url(../images/icon-play.svg);
    z-index: 1;
}
.btn-play .arrow:before {
    transform: translateX(0%);
}
.btn-play .arrow:after {
    transform: translateX(-100%);
    transition: all 0.5s;
}
.btn-play:hover .arrow:before {
    transform: translateX(100%);
}
.btn-play:hover .arrow:after {
    transform: translateX(0%);
    transition-delay: 0.15s;
}
/* End - Button 1 : View more button */

/* Start - Form */
.btn-play {
    background-color: #E3E3E3;
    border-radius: 100%;
    width: 70px;
    height: 70px;
    border: none;
    padding: 0;
}

input[type=text], 
input[type=email], 
input[type=url], 
input[type=password], 
input[type=search], 
input[type=number], 
input[type=tel], 
input[type=date], 
input[type=month], 
input[type=week], 
input[type=time], 
input[type=datetime], 
input[type=datetime-local], 
input[type=color], 
.woocommerce form .form-row .input-text,
.woocommerce form .form-row select,
.select2-container .select2-selection--single .select2-selection__rendered,
.site textarea {
    border: 1px solid #F8F8F8;
    background-color: #F8F8F8;
    border-radius: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0;
    padding: 10px 20px;
    height: auto;
    margin: 0;
    color: var(--global--color-black);
    outline: none;
    min-height: 45px;
}
.select2-container .select2-selection--single .select2-selection__rendered{
    padding-right: 40px;
}
.woocommerce form .form-row .input-text::placeholder,
.woocommerce form .form-row select::placeholder,
.select2-container .select2-selection--single .select2-selection__rendered::placeholder,
input::placeholder {
  opacity: 0.3;
}

input[type=text]:focus, 
input[type=email]:focus, 
input[type=url]:focus, 
input[type=password]:focus, 
input[type=search]:focus, 
input[type=number]:focus, 
input[type=tel]:focus, 
input[type=date]:focus, 
input[type=month]:focus, 
input[type=week]:focus, 
input[type=time]:focus, 
input[type=datetime]:focus, 
input[type=datetime-local]:focus, 
input[type=color]:focus, 
.woocommerce form .form-row .input-text:focus,
.woocommerce form .form-row select:focus,
.select2-container .select2-selection--single .select2-selection__rendered:focus,
.site textarea:focus {
    border-color: var(--global--color-green);
}

.select2-container .select2-dropdown, .select2-container .select2-selection{
    /* border: 1px solid var(--global--color-black); */
    border: 1px solid #F8F8F8;
    border-radius: 0;
}
.woocommerce form .woocommerce-input-wrapper {
    display: flex;
    flex-direction: column;
}
.woocommerce form .woocommerce-input-wrapper strong {
    border: 1px solid #F8F8F8;
    background-color: #F8F8F8;
    border-radius: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0;
    padding: 10px 20px;
    height: auto;
    margin: 0;
    color: var(--global--color-black);
    outline: none;
    min-height: 45px;
}
.woocommerce form .form-row label.error {
    order: 2;
}
.woocommerce-input-wrapper .select2-container .select2-selection {
    border: none;
    margin: 0;
}
.select2-container .select2-selection--single .select2-selection__arrow{
    right: 18px;
    top: 3px;
}
.select2-container .select2-selection--single .select2-selection__arrow b{
    overflow: hidden;
    background: none;
}
.select2-container .select2-selection--single .select2-selection__arrow b:after,
.select2-container .select2-selection--single .select2-selection__arrow b:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    transition: .3s all;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px;
    left: 0;
    background-image: url(../images/arrow-down.svg);
}
.select2-container:hover .select2-selection--single .select2-selection__arrow b::after{
    transform: translateY(16px);
}

.select2-container .select2-selection--single .select2-selection__arrow b:before {
    top: 16px;
}
.select2-container:hover .select2-selection--single .select2-selection__arrow b:before,
.select2-container:hover .select2-selection--single .select2-selection__arrow b:after {
    transform: translateY(-16px);
}

.select2-container .select2-selection--single .select2-selection__arrow b:before {
    top: -16px;
}
.select2-container:hover .select2-selection--single .select2-selection__arrow b:before,
.select2-container:hover .select2-selection--single .select2-selection__arrow b:after {
    transform: translateY(16px);
}

label {
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0;
}
label.error,
.wpcf7-form-control-wrap {
    margin-top: 10px;
    display: block;
}

textarea.wpcf7-form-control {
    height: 100px;
    resize: none;
}
.woocommerce form .form-row .input-text.error, 
.woocommerce form .form-row select.error,
.input-text.error,
.woocommerce form .form-row select.error ~ .select2-container .select2-selection__rendered,
.wpcf7-form-control.wpcf7-not-valid {
    border-color: #FF0000;
}
label span.red, 
.wpcf7-not-valid-tip, 
.woocommerce form .form-row .required {
    color: #FF0000;
    font-weight: normal;
}
.wpcf7-form-control:-internal-autofill-selected,
.woocommerce form .form-row .input-text:-internal-autofill-selected {
    -webkit-box-shadow: 0 0 0 1000px #F8F8F8 inset !important;
}
/* End - Form */


/* Start - Button 3 : Underline in filter tap button */
button.button-link.link-underline {
    padding: 0;
    background: transparent;
    font-family: Mulish;
    border: none;
    color: var(--global--color-black);
    font-weight: 400;
}
button.button-link.link-underline,
.woocommerce .woocommerce-MyAccount-content .button.add,
.woocommerce-breadcrumb a,
.footer-copyright a,
ul.footer-privacy a,
.footer-menu .menu-item a,
.link-underline,
.link {
    position: relative;
    display: inline-block;
}
button.button-link.link-underline:after,
.woocommerce .woocommerce-MyAccount-content .button.add:after,
.woocommerce-breadcrumb a:after,
.footer-copyright a:after,
ul.footer-privacy a:after,
.footer-menu .menu-item a:after,
.link-underline:after,
.link:after {
    background-color: currentcolor;
    bottom: 4px;
    content: "";
    height: 1px;
    left: 0px;
    pointer-events: none;
    position: absolute;
    transform: scaleX(0);
    transform-origin: right center;
    width: 100%;
    transition: transform .5s cubic-bezier(.215,.61,.355,1);
}
button.button-link.link-underline:after,
.woocommerce .woocommerce-MyAccount-content .button.add:after,
.woocommerce-breadcrumb a:hover:after,
.footer-copyright a:hover:after,
ul.footer-privacy a:hover:after,
.footer-menu .menu-item a:hover:after,
.link-underline:after,
.link:hover:after {
    transform: scaleX(1);
    transform-origin: left center;
}
button.button-link.link-underline:hover:after,
.woocommerce .woocommerce-MyAccount-content .button.add:hover:after,
.link-underline:hover:after {
    transform: scaleX(0);
    transform-origin: right center;
}
/* .woocommerce a.link-underline:after {
    bottom: 1px;
} */
a:not([class]) {
    /* background-image: linear-gradient(currentColor, currentColor);
    background-position: 0 calc(100% - .3rem);
    background-repeat: no-repeat;
    background-size: 0 .075rem;
    padding-bottom: .25rem; */
}

a:not([class]):hover {
    /* background-size: 100% .05rem;
    transition: background-size .3s cubic-bezier(.215, .61, .355, 1); */
}
fieldset {
    border: none;
    padding: 0;
}
/* End - Button 3 : Underline in filter tap button */

/* Start - Button 4 : Arrow button */
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: '';
}

.swiper-button-next.swiper-button-disabled, 
.swiper-button-prev.swiper-button-disabled {
    opacity: 0.3;
}
.swiper-button-next,
.swiper-button-prev {
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    display: inline-flex;
    margin: 0;
    left: auto;
    top: auto;
    right: auto;
    transition: opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1);
    background-color: var(--global--color-green);
    border-radius: 100%;
    overflow: hidden;
}
.swiper-button-next:after, 
.swiper-button-prev:after{
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s;
    border-radius: 100%;
    background-color: var(--global--color-black);
}

.swiper-button-prev .arrow:before, 
.swiper-button-prev .arrow:after {
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.4s;
    border-radius: 100%;
    background-image: url(../images/arrow-left-white.svg);
    z-index: 1;
}
.swiper-button-prev .arrow:before {
    transform: translateX(0%);
}
.swiper-button-prev .arrow:after {
    transform: translateX(100%);
    transition: all 0.5s;
}
.swiper-button-prev:hover .arrow:before {
    transform: translateX(-100%);
}
.swiper-button-prev:hover .arrow:after {
    transform: translateX(0%);
    transition-delay: 0.15s;
}

.swiper-button-next .arrow:before, 
.swiper-button-next .arrow:after {
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.4s;
    border-radius: 100%;
    background-image: url(../images/arrow-right-white.svg);
    z-index: 1;
}
.swiper-button-next .arrow:before {
    transform: translateX(0%);
}
.swiper-button-next .arrow:after {
    transform: translateX(-100%);
    transition: all 0.5s;
}
.swiper-button-next:hover .arrow:before {
    transform: translateX(100%);
}
.swiper-button-next:hover .arrow:after {
    transform: translateX(0%);
    transition-delay: 0.15s;
}

.swiper-button-prev:after {
    transform: translateX(100%);
}
.swiper-button-next:after {
    transform: translateX(-100%);
}
.swiper-button-prev:hover:after {
    transform: translateX(0);
}
.swiper-button-next:hover:after {
    transform: translateX(0);
}

/* End - Button 4 : Arrow button */

/* Start - Button 5 : Sticky - Contact Us button */
/* End - Button 5 : Sticky - Contact Us button */

/* Start - Button 6 : Back to All button */
.back-link {
    border-top: 1px solid var(--global--color-light-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 21px 0 21px;
    border-bottom: 1px solid var(--global--color-light-grey);
    color: var(--global--color-cristal-blue);
    position: relative;
    transition: all ease-in-out 1.2s;
}

.back-link:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--global--color-cristal-blue);
    transition: all 1.2s;
    z-index: -1;
}

.back-link:hover:before {
    width: 100%;
}

.back-link:hover {
    color: var(--global--color-white);
}

/* End - Button 4 : Arrow button */

/* Start - Banner */
.visible-moible {
    display: none;
}
.visible-desktop,.visible-moible {
    width: 100%;
}
.page-banner {
    position: relative;
    position: relative;
    margin: 0 0 80px;
    display: flex;
    width: 100%;
    z-index: 2;
}

.page-banner .post-thumbnail {
    margin: 0;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.page-banner .post-thumbnail:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 36.15%,
            rgba(0, 0, 0, 0.9) 131.54%);
}

.page-banner .post-thumbnail img {
    max-height: 240px;
    min-height: 240px;
    max-width: 100% !important;
    object-fit: cover;
    object-position: center;
    margin: 0;
}

.page-banner header.entry-header {
    margin: 0;
    width: 100%;
}

.page-banner.has-banner header.entry-header {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.page-banner.has-banner h1.entry-title {
    color: var(--global--color-white);
}
.page-banner.has-banner .entry-header {
    margin-bottom: 44px;
}
.page-banner h1.entry-title {
    margin-bottom: 0;
    text-transform: capitalize;
}
.archive .page-banner {
    border-bottom: 1px solid var(--global--color-light-grey);
    padding-bottom: 33px;
}

/* End - Banner */

.site-header,
.site-main,
.widget-area,
.site-footer {
    padding-top: 0;
    padding-bottom: 0;
}


/* Text effects / line effects / smooth page Transition */
.overflow-hidden {
    overflow: hidden;
}
.text-center {
    text-align: center;
}
.site-main article {
    margin-top: 0;
    padding-top: 70px;
    margin-bottom: 0;
}
.breadcrumbs {
    margin-bottom: 50px;
}
.site-main .woocommerce-breadcrumb a {
    color: #A8A8A8;
}
.site-main .woocommerce-breadcrumb,
.breadcrumbs .woocommerce-breadcrumb {
    border-bottom: 1px solid var(--global--color-light-grey);
    padding-bottom: 19px;
    padding-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.woocommerce .site-main .woocommerce-breadcrumb .icon-next,
.breadcrumbs .woocommerce-breadcrumb .icon-next {
    width: 7px;
    height: 8px;
    display: inline-flex;
    background-image: url(../images/icon-next.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 0 15px;
    padding: 0;
    top: 0;
    left: 0;
}
.visible-mobile {
    display: none;
}

/* Cookie */
div.cky-consent-container {
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0;
}

div.cky-consent-container .cky-consent-bar {
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 16px 40px;
}

div.cky-notice-group {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

div.cky-notice-des, 
div.cky-notice-des * {
    font-size: 16px;
    line-height: 23px;
}

div.cky-notice-btn-wrapper button.cky-btn.cky-btn-accept {
    min-width: 200px;
    padding: 10.5px;
    font-size: 16px;
    line-height: 21px;
    text-transform: uppercase;
    border-radius: 0;
}

div.cky-notice-btn-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 60px;
    margin: 0;
}

div.cky-notice-btn-wrapper button.cky-btn.cky-btn-reject {
    order: 2;
    padding: 0;
    margin: 0;
    border: none;
    position: relative;
    font-size: 16px;
    line-height: 23px;
    text-transform: uppercase;
    margin-right: 17px;
}

div.cky-notice-btn-wrapper button.cky-btn.cky-btn-reject:after {
    background-color: currentcolor;
    bottom: 1px;
    content: "";
    height: 1px;
    left: 0px;
    pointer-events: none;
    position: absolute;
    transform: scaleX(0);
    transform-origin: right center;
    width: 100%;
    transition: transform .5s cubic-bezier(.215,.61,.355,1);
    transform: scaleX(1);
    transform-origin: left center;
}

div.cky-notice-btn-wrapper button.cky-btn.cky-btn-reject:hover:after {
    transform: scaleX(0);
    transform-origin: right center;
}

div.cky-notice .cky-title {
    margin: 0;
}
div.cky-btn-revisit-wrapper {
    display: none;
}

/* More Informations */
hr {
    border-color: #E9E9E9;
    margin: 59px 0;
}
.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
    width: 100%;
}
hr.wp-block-separator:not(.is-style-dots):not(.alignwide) {
    max-width: 100%;
}
hr.wp-block-separator {
    margin: 59px 0 59.5px;
    border-color: #D7D7D7;
}

.section-more-infomations {
    margin-top: 140px;
}
.home .section-more-infomations .container {
    max-width: 1920px;
}
.more-info-container {
    width: 100%;
    padding: 25px 0;
    background-color: var(--global--color-green);
}

.more-info-toggle-label--hide {
    display: none;
}
.more-info-toggle.active .more-info-toggle-label--more {
    display: none;
}
.more-info-toggle.active .more-info-toggle-label--hide {
    display: inline;
}
.more-info-toggle.active .arrow-down,
.more-info-toggle .arrow-up {
    display: none;
}
.more-info-toggle.active .arrow-up {
    display: inline;
}
.more-info-inner.container {
    max-width: 1320px;
}

.more-info-panel {
    padding-top: 81px;
    padding-bottom: 56px;
    background-color: #F5F5F5;
}
.more-info-content p + h4 {
    margin-top: 40px;
} 
.wp-block-table td, 
.wp-block-table th {
    padding: 10px 0 9px;
    border: none;
    vertical-align: top;
}

.wp-block-table table {
    border: none;
}

.wp-block-table tr:not(:first-child) td {
    border-bottom: 1px solid #E9E9E9;
}

.wp-block-table tr:first-child td {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
}
.wp-block-table tr:first-child td {
    padding: 0;
}
.wp-block-table tr:last-child td {
    padding-bottom: 0;
    border: none;
}

.more-info-content .wp-block-table td {
    text-align: center;
}
.more-info-content .wp-block-table td:nth-child(2) {
    width: 14%;
}
.more-info-content .wp-block-table td:nth-child(3) {
    width: 75px;
}
.more-info-content .wp-block-table td:nth-child(4) {
    width: 14%;
}
.more-info-content .wp-block-table td:first-child {
    width: 40.8%;
}
.more-info-content .wp-block-table td:first-child {
    text-align: left;
}

/* 404 */
.error404 header.page-header {
    margin-top: 152px;
    margin-bottom: 28px;
}
.error-404.not-found {
    margin-top: 0;
    margin-bottom: 237px;
}
.error404 main p {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 23px;
}

.error404 main p:last-child {
    margin-bottom: 0;
}

.error-message {
    border-bottom: 1px solid #E9E9E9;
    padding-bottom: 49px;
    max-width: 900px;
    margin-bottom: 30px;
}


/* Responsive */
@media (max-width: 1199.98px) {
    .page-content,
    .entry-footer,
    .entry-content,
    .widget-area,
    .pagination,
    .comments-pagination,
    .post-navigation,
    .alignwide,
    .wide-max-width,
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (max-width: 1023.98px) {
    div.cky-notice-group {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    div.cky-consent-container .cky-consent-bar {
        padding: 30px;
    }
    
    div.cky-notice-des {
        padding: 0;
    }
    
    div.cky-notice-btn-wrapper button.cky-btn.cky-btn-accept {
        margin: 0;
        width: max-content;
        margin-right: auto;
        width: auto;
        flex: none;
    }
    
    div.cky-notice-btn-wrapper {
        padding: 0 5px;
        gap: 10px;
        width: 100%;
    }
    
    div.cky-notice-btn-wrapper button.cky-btn.cky-btn-reject {
        margin-left: auto;
        width: auto;
        flex: none;
    }
}
@media (max-width: 767.98px) {
    .visible-desktop {
        display: none;
    }
    .visible-mobile {
        display: block;
    }
    :root {
        --heading--font-size-h1: 28px;
        --heading--line-height-h1: 38px;
    }
    .breadcrumbs ,
    .site-main article {
        padding-top: 40px;
    }
    .breadcrumbs .woocommerce-breadcrumb {
        padding-top: 20px;
    }
    .page-banner.has-banner .entry-header {
        margin-bottom: 24px;
    }
    .singular .entry-title, h1.entry-title, h1, .h1,
    h1,
    .h1 {
        font-size: 34px;
        line-height: 38px;
    }
    
    h2,
    .h2 {
        font-size: 28px;
        line-height: 34px;
    }
    
    h3,
    .h3 {
        font-size: 24px;
        line-height: 30px;
    }
    
    h4,
    .h4 {
        font-size: 18px;
        line-height: 22px;
    }
    
    h5,
    .h5 {
        font-size: 16px;
        line-height: 23px;
    }

    input[type=text], 
    input[type=email], 
    input[type=url], 
    input[type=password], 
    input[type=search], 
    input[type=number], 
    input[type=tel], 
    input[type=date], 
    input[type=month], 
    input[type=week], 
    input[type=time], 
    input[type=datetime], 
    input[type=datetime-local], 
    input[type=color], 
    .woocommerce form .form-row .input-text,
    .woocommerce form .form-row select,
    .select2-container .select2-selection--single .select2-selection__rendered,
    .site textarea {
        padding: 7.5px 16px;
    }
    .select2-container .select2-selection--single .select2-selection__rendered{
        padding-right: 45px;
    }
    hr {
        margin: 50px 0;
    }
    .page-banner {
        margin: 0 0 40px;
    }

    .page-banner:not(.has-banner) {
        margin-top: -10px;
    }
    .archive .page-banner {
        padding-bottom: 40px;
    }
    .swiper-button-next:hover, .swiper-button-prev:hover {
        opacity: 1;
    }
    .back-link, 
    .back-link:hover {
        color: var(--global--color-white);
    }
    .back-link:before {
        width: 100%;
    }
    .visible-desktop {
        display: none;
    }
    .visible-moible {
        display: block;
    }
    .swiper-button-next,
    .swiper-button-prev {
        width: 50px;
        height: 50px;
    }
    
    .section-more-infomations {
        margin-top: 59px;
    }
    .more-info-container {
        padding: 18.5px 0;
    }
    .more-info-panel {
        padding-top: 51px;
        padding-bottom: 25px;
    }
    .more-info-content p {
        margin-right: -1px;
    }
    hr.wp-block-separator {
        margin: 39px 0;
    }
    .more-info-content p:nth-child(3) {
        margin-right: -1px;
    }
    
    .wp-block-spacer {
        height: 15.7px !important;
    }
    
    .wp-block-spacer[style="height:45px"] {
        height: 22px !important;
    }
    
    .wp-block-spacer[style="height:38px"] {
        height: 18px !important;
    }
    
    .wp-block-table tr:first-child td {
        font-size: 16px;
        line-height: 22px;
        text-align: left;
        padding-bottom: 2px;
    }
    
    .wp-block-spacer[style="height:46px"] {
        height: 25px !important;
    }
    
    .more-info-content .wp-block-table td:nth-child(3) {
        width: 12px;
    }
    
    .more-info-content .wp-block-table td:nth-child(2) {
        width: 26%;
    }
    
    .more-info-content .wp-block-table td:nth-child(4) {
        width: 27.4%;
    }
    
    .more-info-content .wp-block-table td:first-child {
        width: 43%;
        padding-right: 12px;
    }

    .error404 header.page-header {
        margin-top: 159px;
        margin-bottom: 17px;
    }
    .error404 main p {
        line-height: 23px;
    }
    .error-message {
        padding-bottom: 39px;
        margin-bottom: 20px;
    }
    .error-404.not-found {
        margin-bottom: 100px;
    }
}