*,
*::before,
*::after {
  	-webkit-box-sizing: border-box;
  	        box-sizing: border-box;
}

root {
    --scroll-height: 0px;
    --scroll-width: 0px;
}

body {
  	min-height: 100vh;
  	scroll-behavior: smooth;
  	text-rendering: optimizeSpeed;
	-webkit-text-size-adjust: 100%;
  	line-height: 1.5;
	margin: 0;
}

body.overflow-hidden {
    overflow: hidden;
    padding-right: var(--scroll-width);
}

body.overflow-hidden header > div {
    padding-right: calc(20px + var(--scroll-width));
}

p {
	margin: 0;
}

p + p {
	margin-top: 1em;
}


header {
    z-index: 1000!important;
}

.scroll header > div {
    background: var( --e-global-color-primary );
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

.btn-add-to-cart .elementor-button {
    font-family: var(--e-global-typography-accent-font-family), Sans-serif;
    font-size: var(--e-global-typography-accent-font-size);
    font-weight: var(--e-global-typography-accent-font-weight);
    text-transform: capitalize;
    color: #FAFBFF;
    background-color: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
    border-radius: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    max-width: 100%;
    padding: 8px 16px;
    cursor: pointer;
}

.btn-add-to-cart .elementor-button:hover,
.btn-add-to-cart .elementor-button:focus {
    color: var(--e-global-color-accent);
    background-color: transparent;
}

.e-loop-item .btn-add-to-cart .elementor-button {
    width: 100%;
}

.single-product .btn-add-to-cart .elementor-button {
    width: 240px;
}

.single-product-item .quantity {
    margin-bottom: 10px;
}

.product-form .stock-status {
    font-family: var(--e-global-typography-accent-font-family), Sans-serif;
    font-size: var(--e-global-typography-accent-font-size);
    font-weight: var(--e-global-typography-accent-font-weight);
    text-transform: capitalize;
    border: 1px solid var(--e-global-color-primary);
    border-radius: 40px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 60px;
    width: 100%;
    padding: 8px 16px;
    text-align: center;
}

/* Qanity plus/minus */
.quantity {
	font-family: var(--e-global-typography-2258a6d-font-family), Sans-serif;
    font-size: var(--e-global-typography-2258a6d-font-size);
    font-weight: var(--e-global-typography-2258a6d-font-weight);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	max-width: 115px;
	position: relative;
}

.woocommerce .quantity .qty {
    width: 100%;
}

.quantity__minus,
.quantity__plus {
	color: inherit;
	font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 20px;
	height: 20px;
	background: none;
	border: none;
	position: absolute;
	cursor: pointer;
}

.quantity__minus {
	left: 10px;
}

.quantity__minus:before {
	content: '-';
}

.quantity__plus {
	right: 10px;
}
.quantity__plus:before {
	content: '+';
}

.quantity input {
	color: inherit;
	font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
	text-align: center;
	border: 1px solid var(--e-global-color-primary);
	border-radius: 34px;
	height: 34px;
	width: 100%;
	outline: none;
}

/* Loader */
.my-loader {
    position: relative;
    overflow: hidden;
}

.my-loader:before {
    content: '';
    width: 50px;
    height: 50px;
    max-width: 80%;
    max-height: 80%;
    aspect-ratio: 1 / 1;
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='50px' height='50px' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' fill='none' stroke='%231F4B89' stroke-width='10' r='40' stroke-dasharray='188.49555921538757 64.83185307179586'%3E%3C/circle%3E%3C/svg%3E%0A");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: calc(50% - 25px);
    top: calc(50% - 25px);
    -webkit-animation: rotate 2s linear infinite;
            animation: rotate 2s linear infinite;
}

.quantity.my-loader:before {
    width: 20px;
    height: 20px;
    left: calc(50% - 10px);
    top: calc(50% - 10px);
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.my-loader:after {
    content: '';
    background: rgba(255, 255, 255, 0.5);
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

/* Modal */
.modal {
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 300000;
}

.modal:before {
    content: "";
    background: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.6;
}
.modal__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
}
.modal__modal {
    background: #FFF;
    position: relative;
    width: 100%;
    max-width: 680px;
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
}

@media (max-width: 720px) {
    .modal__modal {
        width: calc(300px + 380 * ((100vw - 320px) / 400));
    }
}

/* Mini cart */
.mini-cart .cart__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	list-style: none;
	padding: 0;
	margin: 0;
}

.cart__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	grid-gap: 20px;
	padding: 20px 36px 20px 0;
	border-bottom: 1px solid rgba(31, 75, 137, 0.05);
	position: relative;
}

@media (max-width: 767px) {
    .cart__item {
        padding-right: 0;
    }
}

.cart-item__info {
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	grid-gap: 10px;
	width: calc(100% - 120px);
}

.cart-item__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	grid-gap: 10px;
}

.cart-item__subtitle {
font-family: var(--e-global-typography-c7cb06a-font-family), Sans-serif;
    font-size: var(--e-global-typography-c7cb06a-font-size);
    font-weight: var(--e-global-typography-c7cb06a-font-weight);
}

.cart-item__price,
.cart-item__quanity {
	font-family: var(--e-global-typography-ff6f3e7-font-family), Sans-serif;
    font-size: var(--e-global-typography-ff6f3e7-font-size);
    font-weight: var(--e-global-typography-ff6f3e7-font-weight);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	grid-gap: 4px;
	width: 120px;
}

.cart-item__price del {
    opacity: .5;
}

.cart-item__price ins {
    text-decoration: none;
}

.cart-item__image {
	width: 100px;
	min-width: 100px;
}

.cart-item__remove {
	font-size: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M9.52366 1.60591L8.39226 0.474609L4.99816 3.86871L1.60406 0.474609L0.472656 1.60591L3.86676 5.00001L0.472656 8.39421L1.60406 9.52551L4.99816 6.13141L8.39226 9.52551L9.52366 8.39421L6.12956 5.00001L9.52366 1.60591Z'%3E%3C/path%3E%3C/svg%3E");
	background-color: transparent;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 10px;
	height: 10px;
	position: absolute;
	top: 20px;
	right: 12px;
	border: none;
	-webkit-filter: invert(21%) sepia(25%) saturate(4582%) hue-rotate(199deg) brightness(93%) contrast(84%);
	        filter: invert(21%) sepia(25%) saturate(4582%) hue-rotate(199deg) brightness(93%) contrast(84%);
	cursor: pointer;
}

.cart-item__remove:not(:hover) {
	-webkit-filter: invert(38%) sepia(72%) saturate(2732%) hue-rotate(329deg) brightness(106%) contrast(101%);
	        filter: invert(38%) sepia(72%) saturate(2732%) hue-rotate(329deg) brightness(106%) contrast(101%);
}

.cart-item__title {
	color: var(--e-global-color-primary);
    font-family: var(--e-global-typography-accent-font-family), Sans-serif;
    font-size: var(--e-global-typography-accent-font-size);
    font-weight: var(--e-global-typography-accent-font-weight);
}

.cart__bottom,
.checkout__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	grid-gap: 20px;
}

.cart__list {
    margin-bottom: 40px!important;
}

.checkout__bottom {
    margin-top: 40px;
}

.cart__fees {
    padding: 0;
    margin: 0;
    list-style: none;
}

.fee-item__amount {
	font-weight: 600;
}

@media (max-width: 767px) {
    .cart__list {
        margin-bottom: 20px;
    }
    .checkout__bottom {
        margin-top: 20px!important;
    }
}

.cart__total,
.checkout__total {
	    font-family: var(--e-global-typography-ff6f3e7-font-family), Sans-serif;
    font-size: var(--e-global-typography-ff6f3e7-font-size);
    font-weight: var(--e-global-typography-ff6f3e7-font-weight);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-gap: 4px;
    width: 120px;
}

.cart__total strong,
.checkout__total strong {
    font-family: var(--e-global-typography-c7cb06a-font-family), Sans-serif;
    font-size: var(--e-global-typography-c7cb06a-font-size);
    font-weight: var(--e-global-typography-c7cb06a-font-weight);
}

.cart__total del,
.checkout__total del {
    opacity: .5;
}

.cart__total ins,
.checkout__total ins {
    text-decoration: none;
}

.cart__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.cart__button button,
.checkout__button button {
	font-family: var(--e-global-typography-accent-font-family), Sans-serif;
    font-size: var(--e-global-typography-accent-font-size);
    font-weight: var(--e-global-typography-accent-font-weight);
	text-transform: capitalize;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 60px;
    max-width: 100%;
    width: 320px;
    color: #FAFBFF;
	background-color: var(--e-global-color-accent);
    -webkit-transition-duration: 0.4s;
         -o-transition-duration: 0.4s;
            transition-duration: 0.4s;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--e-global-color-accent);
    border-radius: 40px;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(1, 33, 70, 0.4);
            box-shadow: 0px 10px 20px 0px rgba(1, 33, 70, 0.4);
    padding: 8px;
    cursor: pointer;
    margin-left: auto;
}

.cart__button button[disabled] {
    opacity: 0.5;
}

.cart__message {
    width: 100%;
}

.cart__coupon {
    margin-top: 20px;
}

.cart__coupon p {
    width: 100%;
}

.cart__coupon input {
    color: var(--e-global-color-text);
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    border: none;
    border-bottom: 1px solid #1F4B8980;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    outline: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    padding: 15px 0;
}

.cart__coupon-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    grid-gap: 20px;
}

@media (max-width: 767px) {
    .cart__coupon input,
    .cart__coupon button {
        width: 100%!important;
    }
}

.cart__coupon button {
	font-family: var(--e-global-typography-accent-font-family), Sans-serif;
    font-size: var(--e-global-typography-accent-font-size);
    font-weight: var(--e-global-typography-accent-font-weight);
    text-transform: capitalize;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 60px;
    width: 240px;
    max-width: 100%;
    color: #FAFBFF;
    background-color: transparent;
    -webkit-transition-duration: 0.4s;
         -o-transition-duration: 0.4s;
            transition-duration: 0.4s;
    border: 1px solid var(--e-global-color-primary);
    color: var(--e-global-color-primary);
    border-radius: 40px;
    padding: 8px;
    cursor: pointer;
}

.cart__coupon button:hover,
.cart__coupon button:focus {
    color: var(--e-global-color-accent);
    border-color: var(--e-global-color-accent);
}


@media (max-width: 767px) {
    .cart__button,
	.checkout__button {
        width: 100%;
    }
    .cart__button button,
    .checkout__button button {
        width: 100%;
    }
}

.flatpickr-calendar.open {
    z-index: 350000!important;
}

/* My account */
.woocommerce-form-tabs {
    padding-top: 40px;    
}

.woocommerce-form-tabs .woocommerce-form-tab:not(.active) {
    display: none;
}

.woocommerce-form-tab form,
form.lost_reset_password {
    margin: 20px auto 0 auto!important;
    max-width: 500px;
}

form.lost_reset_password {
    margin-top: 40px;
}

form.lost_reset_password .form-row-first {
    width: 100%!important;
}

.woocommerce-form-tab h2 {
    text-align: center;
}

p.woocommerce-link-tab,
p.lost_password {
    text-align: center;
    width: 100%;
    margin: 0;
}

.woocommerce-form-submit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.woocommerce-form-login__rememberme {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
}

.woocommerce-MyAccount-navigation ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-MyAccount-navigation a {
    font-family: var(--e-global-typography-accent-font-family), Sans-serif;
    font-size: var(--e-global-typography-accent-font-size);
    font-weight: var(--e-global-typography-accent-font-weight);
    text-transform: capitalize;
    color: var( --e-global-color-primary );
    border: 1px solid var( --e-global-color-primary );
    border-radius: 40px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 60px;
    width: 100%;
    -webkit-transition-duration: 0.4s;
         -o-transition-duration: 0.4s;
            transition-duration: 0.4s;
    padding: 8px 16px;
    cursor: pointer;
}

.woocommerce-MyAccount-navigation li a:hover {
    color: #FFF;
    background: var( --e-global-color-primary );
}

.woocommerce-MyAccount-navigation li.is-active a {
    color: #FFF;
    border-color: var(--e-global-color-accent);
    background: var(--e-global-color-accent);
}

.woocommerce-MyAccount-navigation a {
    color: inherit;    
}

.woocommerce-info {
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    color: var(--e-global-color-text);
    border-radius: 100px;
    border: none;
}

.woocommerce-info .button {
    display: none!important;
}

.woocommerce-account .woocommerce-MyAccount-content h2 {
    color: var(--e-global-color-primary);
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    font-size: var(--e-global-typography-primary-font-size);
    font-weight: var(--e-global-typography-primary-font-weight);
    text-transform: uppercase;
    line-height: 120%;
    margin: 0;
}

.woocommerce-account table.my_account_orders td,
.woocommerce-account table.my_account_orders th {
    padding: 10px;
}

.woocommerce-account .woocommerce-form-tab form {
    border: 1px solid #E2E2E2;
    border-radius: 16px!important;
    padding: 40px 20px!important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    grid-gap: 20px;
}

.woocommerce-account .woocommerce-form-tab form .form-row {
    width: 100%;
    padding: 0;
    margin: 0;
}

@media (min-width: 768px) {
    .woocommerce-account .woocommerce-form-tab form .form-row-first,
    .woocommerce-account .woocommerce-form-tab form .form-row-last {
        width: calc(50% - 10px);
    }
}

.woocommerce-account .woocommerce-form-tab form .clear {
    display: none;
}

.woocommerce-account .woocommerce-form-tab form fieldset {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    grid-gap: 20px;
    width: 100%;
    border: 1px solid #E2E2E2;
    padding: 40px 20px;
}

.woocommerce-account .woocommerce-form-tab form label,
.woocommerce-account .woocommerce-form-tab form input + span {
    font-family: var(--e-global-typography-1b3a764-font-family), Sans-serif;
    font-size: var(--e-global-typography-1b3a764-font-size);
    font-weight: var(--e-global-typography-1b3a764-font-weight);
    line-height: 100%;
}

.woocommerce-account .woocommerce-form-tab form input + span {
    margin-top: 5px;
}

.woocommerce-account .woocommerce-form-tab form input {
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    color: var(--e-global-color-text);
    background-color: #ffffff;
    border-color: #1F4B8980;
    border-width: 0px 0px 1px 0px;
    border-radius: 0px;
    -webkit-box-shadow: none!important;
            box-shadow: none!important;
    padding: 5px 0 15px 0;
}

.woocommerce-account .woocommerce-form-tab form button[type="submit"] {
    font-family: var(--e-global-typography-accent-font-family), Sans-serif;
    font-size: var(--e-global-typography-accent-font-size);
    font-weight: var(--e-global-typography-accent-font-weight);
    text-transform: capitalize;
    color: #FAFBFF;
    background-color: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
    border-radius: 40px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 60px;
    width: 240px;
    max-width: 100%;
    -webkit-transition-duration: 0.4s;
         -o-transition-duration: 0.4s;
            transition-duration: 0.4s;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(1, 33, 70, 0.4);
            box-shadow: 0px 10px 20px 0px rgba(1, 33, 70, 0.4);
    padding: 8px 16px;
    cursor: pointer;
}

.woocommerce-account .woocommerce-form-tab form button[type="submit"]:hover,
.woocommerce-account .woocommerce-form-tab form button[type="submit"]:focus {
    color: var(--e-global-color-accent);
    background-color: transparent;
}

.woocommerce-account .woocommerce-form-tab form a,
.woocommerce-account .woocommerce-MyAccount-content a {
    color: inherit;
}

.woocommerce-account .woocommerce-form-tab form a:not(:hover),
.woocommerce-account .woocommerce-MyAccount-content a:not(:hover) {
    text-decoration: underline;
}

.woocommerce-account .woocommerce-MyAccount-content strong {
    font-weight: 400;
}

.woocommerce-account form .woocommerce-password-strength {
    margin-top: 20px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 8px 16px;
    border-radius: 50px;
}

/* Other */
@-webkit-keyframes pulse {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1.3);
                transform: scale(1.3);
    }
}
@keyframes pulse {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1.3);
                transform: scale(1.3);
    }
}

/* Checkout */
.page-id-1195 .woocomemrce {
	display: none;
}

.checkout__fields {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	grid-gap: 20px;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.checkout__fields input {
	border-radius: 0!important;	
}

.checkout__fields.friend {
    background: rgba(31, 75, 137, 0.1);
    margin-top: 20px;
    padding: 40px;
    border-radius: 20px;
}

@media (max-width: 767px) {
    .checkout__fields.friend {
        padding: 20px;
    }
}

.checkout__fields.friend .friend__wrap {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-gap: 8px;
}

.checkout__fields.friend .friend__input {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.checkout__fields .friend__button {
    color: #FFF;
    background: var(--e-global-color-primary);
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
}

.checkout__fields .form-row {
	padding: 0!important;
	margin: 0!important;
}

.checkout__fields .form-row-wide,
.checkout__fields .form-row.notes {
	width: 100%;
}

.checkout__fields .form-row-first,
.checkout__fields .form-row-last {
	width: calc((100% - 20px) / 2)!important;
	float: none!important;
}

.checkout__fields #billing_country_field {
	display: none;
}

.checkout__fields label {
	color: var(--e-global-color-text);
	font-family: var(--e-global-typography-2258a6d-font-family), Sans-serif;
    font-size: var(--e-global-typography-2258a6d-font-size);
    font-weight: var(--e-global-typography-2258a6d-font-weight);
	line-height: normal!important;
	margin-bottom: 10px;
	display: none!important
}

.checkout__fields label .required {
	display: none;
}

.checkout__fields #order_delivery_date_field label,
.checkout__fields #payment_method_radio_field label {
	display: block!important;
}

.checkout__fields input,
.checkout__fields textarea {
	color: var(--e-global-color-text)!important;
	font-family: var(--e-global-typography-text-font-family), Sans-serif!important;
	font-size: var(--e-global-typography-text-font-size)!important;
	font-weight: var(--e-global-typography-text-font-weight)!important;
	border: none!important;
	border-bottom: 1px solid #1F4B8980!important;
	width: 100%!important;
	border-radius: none!important;
	outline: none!important;
	-webkit-box-shadow: none!important;
	        box-shadow: none!important;
  	padding: 15px 0!important;
  	background: transparent!important;
}

.checkout__fields input::-webkit-input-placeholder, .checkout__fields textarea::-webkit-input-placeholder {
	color: var(--e-global-color-text);
}

.checkout__fields input::-moz-placeholder, .checkout__fields textarea::-moz-placeholder {
	color: var(--e-global-color-text);
}

.checkout__fields input:-ms-input-placeholder, .checkout__fields textarea:-ms-input-placeholder {
	color: var(--e-global-color-text);
}

.checkout__fields input::-ms-input-placeholder, .checkout__fields textarea::-ms-input-placeholder {
	color: var(--e-global-color-text);
}

.checkout__fields input::placeholder,
.checkout__fields textarea::placeholder {
	color: var(--e-global-color-text);
}

.checkout__fields textarea {
	resize: vertical;
	height: auto!important;
}

.checkout__fields #payment_method_radio_field .woocommerce-input-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    grid-gap: 20px;
}

.checkout__fields #payment_method_radio_field input[type="radio"] {
	display: none;
}

.checkout__fields #payment_method_radio_field input[type="radio"] + label {
	font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
	text-transform: capitalize;
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 60px;
    width: 100%;
    max-width: 240px;
    padding: 8px;
	margin: 0!important;
    border: 1px solid var(--e-global-color-primary);
    border-radius: 40px;
    -webkit-transition-duration: 0.4s;
         -o-transition-duration: 0.4s;
            transition-duration: 0.4s;
    cursor: pointer;
}

.checkout__fields #payment_method_radio_field  input[type="radio"]:checked + label {
	color: #FFF;
    background: var(--e-global-color-primary);
}

.checkout__fields + .woocommerce-checkout-payment {
	display: none!important;
}

.checkout__fields .checkox-slider-switch {
  display: inline-block!important;
  height: 34px;
  position: relative;
  width: 60px;
}

.checkout__fields .checkox-slider-switch input {
  display: none;
}

.checkout__fields .checkox-slider-switch .slider {
  background-color: #ccc;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}

.checkout__fields .checkox-slider-switch .slider:before {
  background-color: #fff;
  bottom: 4px;
  content: "";
  height: 26px;
  left: 4px;
  position: absolute;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  width: 26px;
}

.checkout__fields .checkox-slider-switch input:checked+.slider {
  background-color: var(--e-global-color-accent);
}

.checkout__fields .checkox-slider-switch input:checked+.slider:before {
  -webkit-transform: translateX(26px);
      -ms-transform: translateX(26px);
          transform: translateX(26px);
}

.checkout__fields .checkox-slider-switch .slider.round {
  border-radius: 34px;
}

.checkout__fields .checkox-slider-switch .slider.round:before {
  border-radius: 50%;
}

/* Product Form */
.product-form .my-loader {
	border-radius: 40px;
}

.product-form__wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	grid-gap: 15px 10px;
}

.product-form-type-card .product-form__wrap {
    flex-wrap: wrap;
}

.product-form__qty {
	width: 115px;
}

.product-form-type-page .product-form__price {
    order: -1;
}

.product-form__price del {
    opacity: .5;
}

.product-form__price ins {
    text-decoration: none;
}

.product-form__price.price-desktop {
	text-align: right;
	width: calc(100% - 125px)
}

.product-form-type-card .product-form__button {
	width: 100%;
}

.product-form__price {
	font-family: var(--e-global-typography-ff6f3e7-font-family), Sans-serif;
    font-size: var(--e-global-typography-ff6f3e7-font-size);
    font-weight: var(--e-global-typography-ff6f3e7-font-weight);
}

@media (min-width: 768px) {
	.product-form__price.price-mobile {
		display: none;
	}
}

@media (max-width: 767px) {
	.product-form-type-card .product-form__wrap {
		grid-gap: 0;
		border-radius: 40px;
	}
	
	.product-form-type-page .product-form__wrap {
	    flex-wrap: wrap;
	}
	
	.product-form__price.price-desktop {
		display: none;
	}
	.product-form__price.price-mobile {
		text-align: center;
		margin-bottom: 15px;
	}
	.product-form__qty {
		width: 100px;
		max-width: calc(100% - 55px);
		z-index: 1;
	}
	.product-form-type-card .product-form__qty .quantity input {
		height: 40px;
	}
    .product-form-type-card .product-form__button {
		width: calc(100% - 100px);
		min-width: 55px;
	}
	.product-form-type-page .product-form__button {
	    width: 100%;
	}
	.product-form-type-card .product-form__button .elementor-button {
		font-size: 0;
		height: 40px;		
		position: relative;
		padding: 0 24px 0 12px;
	}
	
	.product-form-type-page .product-form__button .elementor-button  {
	    width: 100%;
	    height: 48px;
	}
	
	.product-form-type-card .product-form__button .elementor-button:hover, .product-form__button .elementor-button:focus {
		background: var(--e-global-color-primary);
		border-color: var(--e-global-color-primary);
	}
	
	.product-form-type-card .product-form__button .elementor-button:before {
		content: '';
		width: calc(100% + 40px);
		height: 100%;
		display: block;
		background: inherit;
		position: absolute;
		left: -40px;
		border-radius: 40px;
		height: 40px;
	}
	
	.product-form-type-card .product-form__button .elementor-button:after {
		content: '';
		width: 16px;
		min-width: 16px;
		height: 16px;
		display: block;
	    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.0359 7.66683L14.2219 6.56016C14.3432 5.83616 14.4039 5.47483 14.2092 5.2375C14.0152 5.00016 13.6579 5.00016 12.9439 5.00016H3.05858C2.34458 5.00016 1.98725 5.00016 1.79325 5.2375C1.59858 5.47483 1.65991 5.83616 1.78058 6.56016L2.58325 11.3468C2.84925 12.9335 2.98191 13.7262 3.52525 14.1968C4.06791 14.6668 4.85058 14.6668 6.41591 14.6668H8.00125M9.33458 12.0002H14.6679M12.0012 14.6668V9.3335M11.6679 5.00016C11.6679 4.0277 11.2816 3.09507 10.594 2.40744C9.90634 1.7198 8.97371 1.3335 8.00125 1.3335C7.02879 1.3335 6.09615 1.7198 5.40852 2.40744C4.72089 3.09507 4.33458 4.0277 4.33458 5.00016' stroke='%23FAFBFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
		background-position: center;
		background-size: contain;
		background-repeat: no-repeat;
		z-index: 1;
    }
}