/*
Theme Name: LM
*/
.wpcf7-not-valid{
	border:1px solid red!important;
}
.wpcf7 form .wpcf7-response-output {
    margin: 1em 0.5em 1em;
}

.editor-styles-wrapper :where(:not(.is-layout-flex,.is-layout-grid))>.wp-block {
	width: 100%;
	max-width: 92.1875vw;
	padding: 0 1.30208vw;
	margin-left: auto;
	margin-right: auto;
}
.wpcf7-response-output{
	border:none!important;
}
.footer__nav ul{
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer__legal ul {
	display: flex;
	gap: 24px;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
	color: #fff;
}
.rmp-rating-widget__msg.js-rmp-msg{
	display: none;
}

/* Product page rating: stars + (N) on one line */
.product-info__rating .rmp-rating-widget {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.product-info__rating .rmp-rating-widget__hover-text,
.product-info__rating .rmp-rating-widget__submit-btn,
.product-info__rating .rmp-rating-widget__not-rated,
.product-info__rating .rmp-rating-widget__msg {
	display: none !important;
}
.product-info__rating .rmp-rating-widget__results {
	font-size: 0;
	margin: 0;
	line-height: 1;
}
.product-info__rating .rmp-rating-widget__results__rating {
	display: none;
}
.product-info__rating .js-rmp-vote-count {
	font-size: 14px;
	color: inherit;
}
.product-info__rating .js-rmp-vote-count::before { content: '('; }
.product-info__rating .js-rmp-vote-count::after  { content: ')'; }

.added_to_cart{
	display: none!important;
}

/* Add-to-cart button loader */
.product-info__add-spinner {
	display: none;
	width: 20px;
	height: 20px;
	animation: lm-spin 0.75s linear infinite;
}
.product-info__add.is-loading .product-info__add-icon { display: none; }
.product-info__add.is-loading .product-info__add-spinner { display: inline-block; }
@keyframes lm-spin {
	100% { transform: rotate(360deg); }
}

/* Product card badges: one per line by default, horizontal in slider */
.product-card__badges {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
}
.product-card--horizontal .product-card__badges {
	flex-direction: row;
	flex-wrap: wrap;
}

/* Product card Quick Add loader */
.product-card__add-spinner {
	display: none;
	width: 18px;
	height: 18px;
	animation: lm-spin 0.75s linear infinite;
}
.product-card__add--block.is-loading .product-card__add-icon { display: none; }
.product-card__add--block.is-loading .product-card__add-spinner { display: inline-block; }

/* FBT Buy a set loader */
.fbt__buy-spinner {
	display: none;
	width: 20px;
	height: 20px;
	animation: lm-spin 0.75s linear infinite;
}
.fbt__buy.is-loading .fbt__buy-text { display: none; }
.fbt__buy.is-loading .fbt__buy-spinner { display: inline-block; }

/* Mega menu cart button loader */
.mega-menu__cart-spinner {
	display: none;
	width: 18px;
	height: 18px;
	animation: lm-spin 0.75s linear infinite;
}
.mega-menu__cart-btn.is-loading .mega-menu__cart-icon { display: none; }
.mega-menu__cart-btn.is-loading .mega-menu__cart-spinner { display: inline-block; }

/* Shop AJAX preloader */
.shop-grid-section { position: relative; }
.shop-preloader {
	display: none;
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.7);
	z-index: 10;
	align-items: center;
	justify-content: center;
}
.shop-grid-section.is-loading .shop-preloader { display: flex; }
.shop-preloader__spin {
	width: 48px;
	height: 48px;
	animation: lm-spin 0.75s linear infinite;
}
.mini-cart__body { position: relative; }
.mini-cart__summary { position: sticky; bottom: 0; background: #fff; z-index: 2; }
.mini-cart__preloader {
	display: none;
	position: absolute;
	inset: 0;
	background: rgba(255,255,255,0.6);
	z-index: 20;
	align-items: center;
	justify-content: center;
}
.mini-cart__body.is-loading .mini-cart__preloader { display: flex; }
.mini-cart__body.is-loading .mini-cart__items { opacity: 0.4; transition: opacity 0.15s; }
.mini-cart__preloader-spin {
	width: 48px;
	height: 48px;
	animation: lm-spin 0.75s linear infinite;
}

p.mini-cart__empty {
	text-align: center;
	font-size: 2em;
	margin-top: 38px;
}

/* ── Auth modal fixes ── */
.auth-modal__options { margin-top: 12px; }

.auth-modal__error {
	display: none;
	color: #c0392b;
	font-size: 13px;
	line-height: 1.5;
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 6px;
	padding: 8px 12px;
	margin-bottom: 12px;
}
.auth-modal__error a { color: #c0392b; text-decoration: underline; }

/* Terms CSS checkbox */
.auth-modal__terms-check {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}
.auth-modal__terms-box {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	border: 1.5px solid #cbd5e1;
	border-radius: 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	transition: background 0.15s, border-color 0.15s;
}
.auth-modal__terms-check:checked + .auth-modal__terms-box {
	background: var(--primary);
	border-color: var(--primary);
}
.auth-modal__terms-check:checked + .auth-modal__terms-box::after {
	content: '';
	display: block;
	width: 9px;
	height: 5px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg) translate(0, -1px);
}

/* Google overlay button */
.auth-google-wrap { position: relative; }
.auth-google-btn-overlay {
	position: absolute;
	inset: 0;
	opacity: 0;
	overflow: hidden;
	cursor: pointer;
}

/* Lost password link in footer */
.auth-modal__forgot-link {
	color: var(--primary);
	font-size: inherit;
	text-decoration: none;
	display: inline-block;
	margin-top: 6px;
}

.auth-modal__options , .auth-modal__terms{
	padding: 20px 0px;
}

/* Fix account layout: .woocommerce spans both parent columns and becomes the 2-col grid itself */
.account-layout-login > .woocommerce {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}
/* Override WC float:left/right — works whether nav is direct child or wrapped in <aside> */
.account-layout > .woocommerce > aside,
.account-layout > .woocommerce > .woocommerce-MyAccount-navigation {
    float: none;
    grid-column: 1;
    width: auto;
    min-width: 0;
}
.account-layout > .woocommerce > .woocommerce-MyAccount-content {
    float: none;
    grid-column: 2;
    width: auto;
    min-width: 0;
}
/* When nav is absent (non-logged-in), content spans both columns */
.account-layout > .woocommerce > .woocommerce-MyAccount-content:only-child {
    grid-column: 1 / -1;
}

/* Account overview title */
.account-overview-title { font-size: 16px; font-weight: 600; margin-bottom: 20px; }

/* Lost password form inside content area */
.lm-lostpass-form { max-width: 480px; margin: 0 auto; padding: 32px 0; }

/* ── Missing auth-modal classes used on the lost-password/reset pages ── */
.auth-modal__form-header { margin-bottom: 24px; }
.auth-modal__form-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 8px;
}
.auth-modal__form-subtitle {
    font-size: 14px;
    font-weight: 300;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}
.auth-modal__field { display: flex; flex-direction: column; gap: 8px; }
.auth-modal__switch-row {
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    color: #1a1a1a;
    margin-top: 16px;
}
.auth-modal__switch-link {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    margin-left: 4px;
}
.auth-modal__switch-link:hover { text-decoration: underline; }

/* Remove modal card chrome when form is inline on the page */
.woocommerce-MyAccount-content .auth-modal__form {
    background: none;
    border-radius: 0;
    padding: 0;
    gap: 16px;
}

/* ── WooCommerce account section: form inputs ── */
.woocommerce-EditAccountForm input[type="text"],
.woocommerce-EditAccountForm input[type="email"],
.woocommerce-EditAccountForm input[type="password"],
.woocommerce-EditAccountForm input[type="tel"],
.woocommerce-address-fields input[type="text"],
.woocommerce-address-fields input[type="email"],
.woocommerce-address-fields input[type="tel"],
.woocommerce-address-fields select,
.woocommerce-address-fields textarea,
.woocommerce-MyAccount-content .woocommerce-form-row input[type="text"],
.woocommerce-MyAccount-content .woocommerce-form-row input[type="email"],
.woocommerce-MyAccount-content .woocommerce-form-row input[type="password"],
.woocommerce-MyAccount-content .woocommerce-form-row input[type="tel"],
.woocommerce-MyAccount-content .woocommerce-form-row select,
.woocommerce-MyAccount-content .woocommerce-form-row textarea {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #1a1a1a;
    background: #fff;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.15s;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
    height: auto;
}
.woocommerce-EditAccountForm input:focus,
.woocommerce-address-fields input:focus,
.woocommerce-address-fields select:focus,
.woocommerce-address-fields textarea:focus,
.woocommerce-MyAccount-content .woocommerce-form-row input:focus,
.woocommerce-MyAccount-content .woocommerce-form-row select:focus {
    border-color: rgba(0, 0, 0, 0.5);
    box-shadow: none;
    outline: none;
}

/* ── WooCommerce account section: labels ── */
.woocommerce-EditAccountForm .form-row label,
.woocommerce-address-fields .form-row label,
.woocommerce-MyAccount-content .woocommerce-form-row label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 6px;
    text-transform: none;
    letter-spacing: 0;
}
.woocommerce-EditAccountForm .form-row label abbr,
.woocommerce-address-fields .form-row label abbr {
    border: none;
    text-decoration: none;
    color: #c0392b;
}

/* ── WooCommerce account section: form row spacing ── */
.woocommerce-MyAccount-content .form-row,
.woocommerce-MyAccount-content .woocommerce-form-row {
    margin-bottom: 16px;
    padding: 0;
}

/* ── WooCommerce account section: buttons (aggressive override of WC defaults) ── */
.woocommerce-account .woocommerce a.button,
.woocommerce-account .woocommerce button.button,
.woocommerce-account .woocommerce input.button,
.woocommerce-account .woocommerce #respond input#submit,
.woocommerce-account .woocommerce-MyAccount-content .button,
.woocommerce-account .woocommerce-MyAccount-content button[type="submit"],
.woocommerce-account .woocommerce-MyAccount-content input[type="submit"],
.woocommerce-MyAccount-content .button,
.woocommerce-MyAccount-content button[type="submit"],
.woocommerce-MyAccount-content input[type="submit"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--primary) !important;
    color: #fff !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    padding: 13px 32px !important;
    border-radius: var(--radius) !important;
    border: 2px solid var(--primary) !important;
    cursor: pointer !important;
    transition: background 0.2s, border-color 0.2s, color 0.2s !important;
    line-height: 1 !important;
    text-decoration: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
    letter-spacing: 0 !important;
    outline: none !important;
}
.woocommerce-account .woocommerce a.button:hover,
.woocommerce-account .woocommerce button.button:hover,
.woocommerce-account .woocommerce-MyAccount-content .button:hover,
.woocommerce-account .woocommerce-MyAccount-content button[type="submit"]:hover,
.woocommerce-account .woocommerce-MyAccount-content input[type="submit"]:hover,
.woocommerce-MyAccount-content .button:hover,
.woocommerce-MyAccount-content button[type="submit"]:hover,
.woocommerce-MyAccount-content input[type="submit"]:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: #fff !important;
    text-decoration: none !important;
}

/* ── WooCommerce account section: links ── */
.woocommerce-MyAccount-content a:not(.button):not(.auth-modal__switch-link) {
    color: var(--primary);
    text-decoration: none;
}
.account-welcome a{
    color: #fff!important;
}
.woocommerce-MyAccount-content a:not(.button):not(.auth-modal__switch-link):hover {
    text-decoration: underline;
}

/* ── WooCommerce orders table ── */
.woocommerce-MyAccount-content .woocommerce-orders-table { width: 100%; border-collapse: collapse; }
.woocommerce-MyAccount-content .woocommerce-orders-table th {
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 10px 12px;
    border-bottom: 2px solid #e2e8f0;
    text-align: left;
}
.woocommerce-MyAccount-content .woocommerce-orders-table td {
    padding: 14px 12px;
    font-size: 14px;
    color: #1a1a1a;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}
.woocommerce-MyAccount-content .woocommerce-orders-table .button {
    font-size: 13px;
    padding: 8px 16px;
    white-space: nowrap;
}

/* ── WooCommerce account notices ── */
.woocommerce-MyAccount-content .woocommerce-message {
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #166534;
    margin-bottom: 20px;
    list-style: none;
}
.woocommerce-MyAccount-content .woocommerce-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #991b1b;
    margin-bottom: 20px;
    list-style: none;
}
.woocommerce-MyAccount-content .woocommerce-info {
    background: #eff6ff;
    border: 1px solid #93c5fd;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #1d4ed8;
    margin-bottom: 20px;
    list-style: none;
}

.account-overview-cards { margin-bottom: 40px; }

/* Task 3: remove fieldset border in account cabinet */
.woocommerce-account fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

/* ========================================
   WC CHECKOUT — template overrides
   ======================================== */

/* Stack .col-1 (billing) and .col-2 (shipping) vertically */
.checkout-page .col2-set { display: block; }
.checkout-page .col2-set .col-1,
.checkout-page .col2-set .col-2 { float: none; width: 100%; }

/* Form rows */
.checkout-page .form-row { padding: 0; margin-bottom: 16px; }
.checkout-page .form-row label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}
.checkout-page .form-row label .required { color: #d4183d; text-decoration: none; }

/* Text / select inputs — high-specificity via #co-checkout to beat WC selectors */
#co-checkout .form-row .input-text,
#co-checkout .form-row input[type="text"],
#co-checkout .form-row input[type="email"],
#co-checkout .form-row input[type="tel"],
#co-checkout .form-row input[type="password"],
#co-checkout .form-row input[type="number"],
#co-checkout .form-row select {
    width: 100%;
    height: 52px;
    border: 1px solid rgba(0,0,0,.4) !important;
    border-radius: var(--radius) !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    font-family: inherit !important;
    color: var(--dark) !important;
    background: #fff !important;
    transition: border-color .2s;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: none !important;
    outline: none;
}
#co-checkout .form-row textarea.input-text {
    height: 100px !important;
    padding: 12px 16px !important;
    resize: vertical;
}
#co-checkout .form-row .input-text:focus,
#co-checkout .form-row input:focus,
#co-checkout .form-row select:focus { border-color: var(--primary) !important; outline: none; box-shadow: none !important; }

/* Keep these as fallback for any WC-injected markup outside #co-checkout */
.checkout-page .form-row .input-text,
.checkout-page .form-row select {
    width: 100%;
    height: 52px;
    border: 1px solid rgba(0,0,0,.4);
    border-radius: var(--radius);
    padding: 0 16px;
    font-size: 14px;
    font-weight: 300;
    font-family: inherit;
    color: var(--dark);
    background: #fff;
    transition: border-color .2s;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}
.checkout-page .form-row textarea.input-text {
    height: 100px;
    padding: 12px 16px;
    resize: vertical;
}
.checkout-page .form-row .input-text:focus,
.checkout-page .form-row select:focus { border-color: var(--primary); outline: none; box-shadow: none; }

/* Validation */
.checkout-page .form-row.woocommerce-invalid .input-text,
.checkout-page .form-row.woocommerce-invalid select { border-color: #d4183d; }
.checkout-page .form-row.woocommerce-invalid label { color: #d4183d; }

.checkout-page .woocommerce-input-wrapper { display: block; width: 100%; }

/* Side-by-side paired fields (first/last name etc.) */
.checkout-page .form-row-first,
.checkout-page .form-row-last { float: left; width: calc(50% - 8px); }
.checkout-page .form-row-first { margin-right: 16px; }
.checkout-page .form-row-last  { margin-right: 0; }
.checkout-page .form-row-last::after { content: ''; display: table; clear: both; }

/* Ship-to-different-address checkbox */
.checkout-page #ship-to-different-address {
    font-size: 14px;
    font-weight: 400;
    margin: 4px 0 20px;
    padding: 0;
    border: none;
}
.checkout-page #ship-to-different-address label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 400;
    color: #646464;
    margin: 0;
}
.checkout-page #ship-to-different-address input[type="checkbox"] {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Section headings inside billing / shipping */
.checkout-page .woocommerce-billing-fields h3,
.checkout-page .woocommerce-shipping-fields h3,
.checkout-page .woocommerce-additional-fields h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 16px;
    color: var(--dark);
}

/* ── Order summary wrapper (AJAX-replaced div) ── */
.checkout-page .woocommerce-checkout-review-order-table {
    width: 100%;
}
/* WC injects .amount spans — keep them inline */
.checkout-page .woocommerce-checkout-review-order-table .woocommerce-Price-amount { white-space: nowrap; }

/* ── Payment section (#payment now in left column) ── */
.checkout-page #payment { background: none; border: none; padding: 0; }
.checkout-page .wc_payment_methods { list-style: none; padding: 0; margin: 0; }
.checkout-page .wc_payment_method  { margin: 0; }

/* Payment gateway description box (shown when method is selected) */
.checkout-page .payment_box {
    padding: 12px 18px;
    background: #f8fafc;
    border-radius: 8px;
    margin: -4px 0 12px;
    font-size: 13px;
    font-weight: 300;
    color: #717182;
}
.checkout-page .payment_box p { margin: 0; }

/* Place order */
.checkout-page .form-row.place-order { padding: 0; margin: 0; }
.checkout-page .woocommerce-terms-and-conditions-wrapper {
    font-size: 12px;
    font-weight: 300;
    color: #717182;
    margin-bottom: 12px;
}

/* WC notices on checkout */
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info {
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    margin-bottom: 16px;
    list-style: none;
}
.woocommerce-checkout .woocommerce-error   { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.woocommerce-checkout .woocommerce-message { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.woocommerce-checkout .woocommerce-info    { background: #eff6ff; border: 1px solid #93c5fd; color: #1d4ed8; }

/* Select2 dropdowns (country/state) */
.checkout-page .select2-container { width: 100% !important; }
.checkout-page .select2-container .select2-selection--single {
    height: 52px;
    border: 1px solid rgba(0,0,0,.4);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
}
.checkout-page .select2-container--focus .select2-selection--single,
.checkout-page .select2-container--open  .select2-selection--single { border-color: var(--primary); }
.checkout-page .select2-container .select2-selection__rendered {
    font-size: 14px;
    font-weight: 300;
    color: var(--dark);
    line-height: 52px;
    padding: 0 16px;
}
.checkout-page .select2-container .select2-selection__arrow { height: 52px; }

@media screen and (max-width: 640px) {
    .checkout-page .form-row-first,
    .checkout-page .form-row-last { float: none; width: 100%; margin-right: 0; }
}

/* ── #co-checkout: high-specificity overrides for WC form field styles ── */
/* Beats .woocommerce form .form-row .input-text (0,3,1) with id (1,2,1) */
#co-checkout .form-row .input-text,
#co-checkout .form-row input[type="text"],
#co-checkout .form-row input[type="email"],
#co-checkout .form-row input[type="tel"],
#co-checkout .form-row input[type="number"],
#co-checkout .form-row input[type="password"],
#co-checkout .form-row textarea {
    height: 52px !important;
    border: 1px solid rgba(0, 0, 0, 0.4) !important;
    border-radius: var(--radius) !important;
    padding: 13px 16px !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    font-family: inherit !important;
    color: var(--dark) !important;
    background: #fff !important;
    box-shadow: none !important;
    outline: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

#co-checkout .form-row textarea {
    height: auto !important;
    padding: 14px 16px !important;
    min-height: 100px !important;
}

#co-checkout .form-row .input-text:focus,
#co-checkout .form-row input:focus,
#co-checkout .form-row textarea:focus {
    border-color: var(--primary) !important;
    box-shadow: none !important;
    outline: none !important;
}

#co-checkout .form-row select {
    height: 52px !important;
    border: 1px solid rgba(0, 0, 0, 0.4) !important;
    border-radius: var(--radius) !important;
    padding: 0 16px !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    font-family: inherit !important;
    color: var(--dark) !important;
    background: #fff !important;
    box-shadow: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

#newsletter-unsubscribe-btn { color: var(--primary); margin-left: 10px; }

.woocommerce-billing-fields__field-wrapper , .woocommerce-shipping-fields__field-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

#customer_details .form-row {
    width: 100%;
    margin: 0;
}

.checkout-page .form-row label {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}
.woocommerce-error::before , .woocommerce-message::before{
    display: none;
}
#co-acc-payment {
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.order-summary__total {
    padding: 0;
    margin-top: 0;
    border-top: none;
}

.co-radio__label small {
    font-weight: 400;
    color: var(--gray-text);
    font-size: 12px;
}
.wc_payment_methods.payment_methods.methods{
    padding: 0px!important;
}

#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box {
    background: #f8fafc;
     border: 2px solid var(--primary);
	border-radius: 12px;
}
#add_payment_method #payment div.payment_box::before, .woocommerce-cart #payment div.payment_box::before, .woocommerce-checkout #payment div.payment_box::before {

	content: "";
    display: block;
    border: 1em solid #2f80ed;
    border-right-color: transparent;
    border-left-color: transparent;
    border-top-color: transparent;
    position: absolute;
    top: -.75em;
    left: 0;
    margin: -17px 0 0 2em;
}
fieldset {
    border: none !important;
}
.payment_box.payment_method_stripe_klarna label{
    font-size: 10px;
}