/* Home */
@media (min-width: 993px) {
	.videos-list .videos-list-slider .swiper-wrapper {
		gap: 24px;
	}
}

@media (min-width: 601px) {
	.slide-feedback__avatar {
		width: 150px;
		height: 150px;
	}
}

/* Products */
.product__image {
    height: auto!important;
}

.product__image img {
    width: 100%!important;
    height: 100%!important;
	object-fit: contain;
	aspect-ratio: 1 / 1;
}

.product__image-second {
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	transition: 1s;
	opacity: 0;
}

.product__image:hover .product__image-second  {
	opacity: 1;
}

.product__labels {
	display: flex;
	flex-direction: column;
	grid-gap: 5px;
    position: absolute;
    left: 0;
    top: 20px;
}

.product__labels .label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 20px;
    color: #fff;
    background-color: #003c80;
    min-width: 100px;
}

.product__labels .label.sale {
    background-color: #ff0600;
}

.product__data .price {
    display: flex;
    flex-direction: column;
}

.product-page__price ins,
.price ins {
	color: #ff0600;
	text-decoration: none;
}

.product-page__video {
    margin-bottom: 20px;
}

.product-page__video .video-preview__img {
    aspect-ratio: 16 / 9;
}

.other-categories__list .product__image {
	padding: 0;
}

.other-categories__list .product__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Cart */

.basket__cart {
	display: flex;
	flex-direction: column;
}

#basket-popup .popup__wrapper,
#basket-popup .popup__content,
#basket-popup .popup__inner.basket,
#basket-popup .basket__cart {
	height: 100%;
}

#basket-popup .popup__content {
    background: #FFF;
}

#basket-popup .basket__scroll {
	overflow-y: scroll;
	overflow-x: hidden;
	padding: 0 20px 0px 20px;
	margin: 0 -20px;
	position: relative;
	flex-grow: 1;
}

.product__info .add-to-basket,
.basket-btn {
	font-size: 0;
}

#basket-popup .basket-prod__image img {
	width: auto;
}

#basket-popup .basket-form__payment {
    margin-bottom: 20px;
}

@media (min-width: 601px) {
    #basket-popup .basket-form__payment {
        margin-bottom: 30px;
    }
}

#basket-popup .basket-form__phone-row {
	margin-bottom: 20px;
}

@media (min-width: 601px) {
    #basket-popup .basket-form__phone-row {
        margin-bottom: 30px;
    }
}

#basket-popup .g-input {
	-ms-grid-column-span: 3!important;
    grid-column: span 3!important;
}

#basket-popup .basket__checkout {
    width: 100%;
    margin-top: 20px;
    padding: 18px;
}

#basket-popup .basket__recommended {
    margin-top: 30px;
}

#basket-popup .basket__recommended-list {
    margin-top: 30px;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
}

#basket-popup .basket__recommended .product__title {
    font-size: 14px;
}

#basket-popup .basket__recommended .product__data {
    font-size: 12px;
}

#basket-popup .basket__recommended .product__image {
    padding: 30px;
}

@media (max-width: 600px) {
    #basket-popup .basket__recommended .product__info {
        padding: 0;
    }
    #basket-popup .basket__recommended .product .add-to-basket {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 10px;
    }
}

@media (min-width: 601px) {
    #basket-popup .basket__head {
        margin-bottom: 40px;    
    }
    
    #basket-popup .basket .section-title {
        font-size: 30px;
    }
    
    #basket-popup .basket-form__title {
        font-size: 18px;
        font-weight: 600;
    }
    
    #basket-popup .basket-prod__price,
    #basket-popup .basket-prod__title {
        font-size: 16px;
    }
    
    #basket-popup .basket-prod__property {
        font-size: 14px;
    }

}

#basket-popup .basket__qty {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    font-size: 12px;
}

#basket-popup .basket__recommended-list .product__image {
    background: #FFF;
}

/* Crop */
@media (min-width: 601px) {
    #basket-popup .popup__content {
        padding: 40px!important;
        max-width: 480px;
    }
}

/* Footer */
.footer__payments {
	max-height: 40px;
	width: 100%;
	object-fit: contain;
	object-position: left top;
	margin-top: 40px;
}

/* Single Product */
.product-page .product-page__availability {
    margin-top: 40px;
}

.product-page .product-page__availability strong {
    font-weight: 600;
}

.product-page .product-page__availability-form {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    grid-gap: 20px;
    margin-top: 20px;
}

.product-page .product-page__availability input
.product-page .product-page__availability button {
    width: 100%;
}

.product-page .product-page__availability input:not(:focus) {
    border: 1px solid #F1F1F1;
}

.product-page__availability-response {
    text-align: center;
    margin-top: 20px;
}

.product-page .footer-btn {
    width: 100%;
}

.product-page__attributes {
	width: 100%;
	display: flex;
	flex-direction: column;
	grid-gap: 20px;
	margin-top: 40px;
}

.attributes__title {
	text-align: center;
	font-weight: 500;
	margin-bottom: 10px;
}

.attributes__select {
    display: none;
}

.attributes__options {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	grid-gap: 10px;
}
.attributes__option {
	cursor: pointer;
	transition: 0.4s all;
}

.attributes__option input {
	display: none;
}

.attributes__option input + span {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #000;
	padding: 0 20px;
	min-height: 40px;
	min-width: 80px;
}

.attributes__option:hover input:not(:checked) + span {
	color: #004899;
	border-color: #004899;
}

.attributes__option input:checked + span {
	color: #FFF;
	background: #004899;
	border-color: #004899;
}

@media (min-width: 601px) {
    .product-page .product-page__availability {
        margin-top: 60px;
    }
    .product-page .product-page__availability-form {
        flex-direction: row;
    }
    .product-page .product-page__availability input {
        width: calc((100% - 20px) / 2);
    }
    .product-page .product-page__availability button {
        width: 100%;
    }
    .product-page__attributes {
        margin-top: 60px;
    }
}


/* Checkout */
.woocommerce-checkout .article__body {
	max-width: 100%;
}
.checkout__row {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 40px;
	width: 100%;
}

.checkout__column {
	width: 100%;
}

@media (min-width: 1025px) {
	.checkout__column {
		width: calc((100% - 40px) / 2);
	}
}

@media (max-width: 767px) {
	.woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
		width: 100%;
	}
}

form.checkout h3 {
	color: #004899;
    font-family: "Noto Serif Display", Arial, sans-serif;
    text-transform: uppercase;
    font-size: 24px;
	margin-bottom: 10px;
}

.woocommerce form .form-row .zen-ui-select__value,
.woocommerce form .form-row input[type="text"],
.woocommerce form .form-row input[type="email"],
.woocommerce form .form-row input[type="tel"],
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	font-size: 16px!important;
  	line-height: 18px!important;
	padding: 0 20px!important;
	height: 54px;
	border: 1px solid #ccc;
	border-radius: 0!important;
	transition: .2s ease-out;
}

.woocommerce-billing-fields__field-wrapper {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 0 6%;
}

.woocommerce-billing-fields__field-wrapper .form-row-wide {
	width: 100%;
}

.woocommerce-billing-fields__field-wrapper .address-field {
    order: 1;
}

.wcus-checkout-fields {
    margin-top: 0!important;
}

.wcus-checkout-fields h3 {
    display: none!important;
}

.woocommerce form .form-row .zen-ui-select__value {
	padding: 15px 20px!important;
}

.woocommerce form .form-row textarea {
	border: 1px solid #ccc!important;
	padding: 20px!important;
	min-height: 115px;
}

.woocommerce form .form-row input:focus,
.woocommerce form .form-row textarea:focus {
	border-color: #004899;
}

.woocommerce form .form-row {
	margin-bottom: 10px;
}

.woocommerce form .form-row#billing_country_field {
	display: none;
}

form.checkout .wcus-checkout-fields,
form.checkout .woocommerce-additional-fields {
	margin-top: 30px;
}

form.checkout button[type="submit"] {
  	background: #004899!important;
  	display: inline-flex;
  	justify-content: center;
  	align-items: center;
	width: 100%!important;
  	font-size: 17px;
  	font-weight: 500;
  	line-height: 22px;
	padding: 18px;
	border-radius: 0;
	transition: .3s ease-in-out;
	margin-top: 30px;
}

form.checkout button[type="submit"]:hover,
form.checkout button[type="submit"]:focus {
	background: #003c80!important;
}

.checkout__column.column-review {
    background: #f7f7f7;
    padding: 30px;
    position: relative;
    height: fit-content;
}

.checkout__column.column-review:before,
.checkout__column.column-review:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: transparent;
    background-image: radial-gradient(farthest-side, transparent 6px, #f7f7f7 0);
    background-size: 15px 15px;
}

.checkout__column.column-review:before {
    top: -10px;
    background-position: -3px -5px, 0 0;
}

.checkout__column.column-review:after {
    bottom: -10px;
    background-position: -3px 2px, 0 0;
}

.checkout__column.column-review .woocommerce-checkout-review-order-table {
    border: none;
    padding: 10px;
    border-radius: 0;
    background: #FFF;
    margin-top: 20px;
}

.checkout__column.column-review .woocommerce-shipping-totals.shipping,
.checkout__column.column-review .cart-subtotal {
    display: none;
}

.checkout__column.column-review .order-total #wcus-order-total {
    font-size: 1.2em;
    color: #004899;
}

.checkout__column.column-review .woocommerce-checkout-payment {
    background: none!important;
    border-radius: 0!important;
}

.checkout__column.column-review .wc_payment_methods {
    padding: 0 0 20px 0!important;
}

.checkout__column.column-review .place-order {
    padding: 20px 0 0 0!important;
}

.checkout__column.column-review .payment_box {
    display: none!important;
}

.checkout__column.column-review .cart-discount th {
	font-weight: inherit!important;
}

.checkout__column.column-review .cart-discount a {
	display: none;
}

/* Discount progress bar */
.basket__discount_progress_bar {
	margin-top: 20px;
}



.checkout__discount_progress_bar {
    border: 2px dashed #ccc;
    padding: 20px;
    margin-bottom: 20px;
}

.discount-progress-bar .progress-msg {
	font-size: 14px;
	line-height: 150%;
}

.discount-progress-bar .progress-msg strong {
	color: #004899;
	font-weight: 600;
}

.discount-progress-bar .progress-area {
	background: #f1f1f1;
	height: 8px;
	margin-top: 10px;
}

.discount-progress-bar .progress-bar {
	background: #004899;
	background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
	    background-size: 15px 15px;
	height: 100%;
}

/* Other */
.category .product__image,
.prod-sliders .product__image,
.product-page__image {
	display: flex;
	padding: 0;
	height: fit-content;
	aspect-ratio: 1 / 1!important;
	background-color: #FFF;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
	color: inherit;
	font-size: inherit;
}

.preloader,
body,
.header,
.header__inner,
.prod-slider__body::after,
.stats__separator::before {
	background-color: #FFF!important;
}



@media (max-width: 600px) {
	.footer__col.col-logo {
	text-align: center;
}
}

.footer__menu {
	display: flex;
	flex-direction: column;
	gap: 15px 40px;
	text-align: center;
}

@media (min-width: 601px) {
    .footer__menu {
      gap: 15px 90px;
			flex-direction: row;
			text-align: left;
    }
}

.footer .menu__list {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

@media (max-width: 1250px) {
	.footer__payments {
		object-position: center;
	}
}

@media (min-width: 1251px) {
    .footer__col.col-menu {
        padding-right: 0;
    }
}

#basket-popup .basket-form__email-row {
	margin-top: 10px;
}

@media (min-width: 601px) {
    #basket-popup .basket-form__phone-row {
        margin-bottom: 0;
    }
		#basket-popup .basket-form__email-row {
					margin-bottom: 30px;
			}
}

.article strong {
	font-weight: 600;
}

.article ul {
    letter-spacing: -.03em;
    line-height: 140%
}

.article ul:not(:last-child) {
    margin-bottom: 1.4em
}

.article ul {
    line-height: 140%;
}