html,
body {
	margin: 0 !important;
}

body.home .elementor-location-header {
	position: absolute;
	z-index: 999;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.4);
}

body.home .elementor-location-header section,
body.home .elementor-location-header .elementor-background-overlay {
	background-image: none !important;
	background: none !important;
}

body.home main>article {
	margin: 0 !important;
}

body.home .entry-content {
	margin: 0 !important;
}

body.page-id-280 main {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 10px;
}

.woocommerce-result-count,
.woocommerce-ordering {
	display: none !important;
}

/* BUTTON */
button.btn-main {
	width: 100%;
	height: 42px;
	font-weight: 600;
	border: 1px solid #f1f1f1;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 350ms;
	transition-duration: 350ms;
	overflow: hidden;
	position: relative;
	background-color: #fff;
	cursor: pointer;
}

button.btn-main::before {
	content: 'Оставить заявку';
	background-color: #D48700;
	color: #fff;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
	height: 42px;
	position: absolute;
	top: 0;
	left: -100%;
	transition: 350ms;
	transition-duration: 350ms;
}

button.btn-main:hover {
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
	border-color: #D48700;
}

button.btn-main:hover::before {
	left: 0;
}


/* HOME PRODUCTS */

ul.products_home {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

ul.products_home li {
	padding: 15px;
	max-width: 250px;
	border-radius: 7px;
	box-shadow: 0 0 15px rgba(212, 135, 0, 0.1);
	background-color: #fff;
	margin: 0 10px 10px 10px;
}

ul.products_home li * {
	font-family: Rubik;
}

ul.products_home li .image {
	margin-bottom: 15px;
}

ul.products_home li .name {
	margin-bottom: 10px;
}

ul.products_home li h3 {
	font-size: 16px;
	font-weight: 500;
}

ul.products_home li img {
	height: 125px;
	object-fit: contain;
	padding: 5px;
	border: 1px solid #f1f1f1;
	border-radius: 5px;
}

ul.products_home li>.price>* {
	margin-bottom: 10px;
}

ul.products_home li .price .tag_price {
	padding: 5px 10px;
	font-weight: 300;
	font-size: 15px;
	border-radius: 50px;
	display: inline-block;
}

ul.products_home li .price .sell_price {
	background-color: #D48700;
}

ul.products_home li .price .sell_price * {
	color: #fff;
}

ul.products_home li .price .rent_price {
	background-color: #0659D5;
	color: #fff;
}

ul.products_home li .action {
	margin-top: 20px;
}

ul.products_home li .action button {
	width: 100%;
	height: 42px;
	font-weight: 600;
	border: 1px solid #f1f1f1;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 350ms;
	transition-duration: 350ms;
	overflow: hidden;
	position: relative;
	background-color: #fff;
	cursor: pointer;
}

ul.products_home li .action button::before {
	content: 'Оставить заявку';
	background-color: #D48700;
	color: #fff;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
	height: 42px;
	position: absolute;
	top: 0;
	left: -100%;
	transition: 350ms;
	transition-duration: 350ms;
}

ul.products_home li .action button:hover {
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
	border-color: #D48700;
}

ul.products_home li .action button:hover::before {
	left: 0;
}

.swiper {
	width: 100%;
}


/* PRODUCT SLIDER */

.product_slider .product {
	max-width: calc(100% - 80px);
	margin: 0 auto;
	padding: 20px;
	background-color: #fff;
	border-radius: 10px;
}

.product_slider .product .image {
	margin-bottom: 10px;
}

.product_slider .product * {
	font-family: 'Rubik', sans-serif;
}

.product_slider .product .name {
	margin-bottom: 15px;
}

.product_slider .product h3 {
	font-size: 16px;
	font-weight: 500;
	margin: 0;
}

.product_slider .product .info {
	font-size: 14px;
	font-weight: 300;
	color: rgb(87, 87, 87);
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #f1f1f1;
}

.product_slider .product>.price>* {
	margin-bottom: 10px;
}

.product_slider .product .price .tag_price {
	padding: 5px 10px;
	font-weight: 300;
	font-size: 15px;
	border-radius: 50px;
	display: inline-block;
}

.product_slider .product .price .sell_price {
	background-color: #D48700;
}

.product_slider .product .price .sell_price * {
	color: #fff;
}

.product_slider .product .price .rent_price {
	background-color: #0659D5;
	color: #fff;
}

.product_slider .product .action {
	margin-top: 20px;
}

.product_slider .product .action button {
	cursor: pointer;
	width: 100%;
	height: 42px;
	font-weight: 600;
	background-color: #fff;
	border: 1px solid #f1f1f1;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 350ms;
	transition-duration: 350ms;
	overflow: hidden;
	position: relative;
}

.product_slider .product .action button::before {
	content: 'Оставить заявку';
	background-color: #D48700;
	color: #fff;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
	height: 42px;
	position: absolute;
	top: 0;
	left: -100%;
	transition: 350ms;
	transition-duration: 350ms;
}

.product_slider .product .action button:hover {
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
	border-color: #D48700;
}

.product_slider .product .action button:hover::before {
	left: 0;
}

.product_slider .swiper-button-prev::after,
.product_slider .swiper-button-next::after {
	display: none !important;
}

.product_slider .swiper-button-prev,
.product_slider .swiper-button-next {
	background-image: none !important;
	background-color: #fff;
	width: 35px;
	height: 35px;
	border-radius: 50px;
}

.product_slider .swiper-button-prev {
	left: 0 !important;
}

.product_slider .swiper-button-next {
	right: 0 !important;
}

.product_slider .swiper-button-prev svg,
.product_slider .swiper-button-next svg {
	font-size: 24px;
	color: #000 !important;
}


/* REVIEW SLIDER */

.review_slider .name {
	margin-bottom: 5px !important;
}

.review_slider h3 {
	line-height: 1;
	font-size: 20px !important;
}

.review_slider .product * {
	text-align: center;
}

.review_slider .review_text {
	margin-top: 20px;
	color: #7A7A7A;
}

/* FORM REQUEST */
#request_wrapper {
	display: none;
}

#request {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.2);
	z-index: 999;
	display: flex;
	justify-content: center;
	align-items: center;
}

#request .wrapper {
	max-width: 900px;
	width: 100%;
	height: auto;
	/*transform: translateY(-50px);*/
	display: flex;
	background-color: #fff;
	position: relative;
	z-index: 99999;
}

#request .wrapper > .form {
	width: 50%;
	padding: 30px;
}
#request .wrapper > .product_info {
	width: 50%;
	padding: 30px;
}

#request .elementor-field-group-field_cbf36ae {
	display: none;
}

#request .close {
	position: absolute;
	right: 25px;
	top: 25px;
	z-index: 99999 !important;
}

#request .close {
	font-size: 50px;
	color: #fff;
}

#request .spinner {
	margin: auto;
}

#request .product img {
	height: 200px;
	object-fit: contain;
	border: 1px solid #ddd;
	padding: 5px;
	width: 100%;
	border-radius: 5px;
	margin-bottom: 15px;
}

#request .product .name {
	font-size: 22px;
	font-weight: 600;
	font-family: Rubik;
	color: #000;
	margin-bottom: 10px;
}

#request .product .short {
	margin-top: 10px;
	font-size: 14px;
	font-family: Rubik;
	font-weight: 300;
	color: #000;
	margin-bottom: 20px;
}

#request .product > .price > span {
	padding: 5px 10px;
	font-size: 16px;
	border-radius: 50px;
	background-color: #D48700;
}

#request .product > .price * {
	color: #fff;
	font-weight: 500 !important;
	font-family: Rubik;
}

.container{
  height: 15px;
  width: 105px;
  display: flex;
  position: relative;
  
}
.container .circle {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: repeating-linear-gradient(183deg, #ffa826 0%, #ff6b1c 100%);
  animation: move 500ms linear 0ms infinite;
  margin-right: 30px;
}

.container .circle:first-child{
  position: absolute;
  top:0;
  left:0;
  animation: grow 500ms linear 0ms infinite;
}
    
.container .circle:last-child{
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 0;
  animation: grow 500ms linear 0s infinite reverse;
}
@keyframes grow {
  from {transform: scale(0,0); opacity: 0;}
  to {transform: scale(1,1); opacity: 1;}
}

@keyframes move {
  from {transform: translateX(0px)}
  to {transform: translateX(45px)}
}

/* PRODUCTS LOOP */
ul.products li.product {
	padding: 15px !important;
	border-radius: 7px;
	box-shadow: 0 0 15px rgba(212, 135, 0, 0.1);
	background-color: #fff;
}

ul.products li.product * {
	font-family: Rubik;
}

ul.products li.product span.price {
	padding: 5px 10px;
	font-weight: 300;
	font-size: 15px;
	border-radius: 50px;
	display: inline-block !important;
	background-color: #D48700;

}

ul.products li.product span.price,
ul.products li.product span.price * {
	color: #fff;
}

ul.products li.product button {
	margin-top: 15px;
}

ul.products li.product img {
	height: 200px;
	object-fit: contain;
	border: 1px solid #ddd;
	padding: 5px;
	width: 100%;
	border-radius: 5px;
	margin-bottom: 0 !important;
}


@media screen and (max-width: 600px) {
	#request {
	}
	#request .wrapper {
		max-width: calc(100vw - 10px) !important;
		flex-direction: column;
		height: 80vh !important;
		overflow-y: scroll;
	}
	#request .wrapper > * {
		width: 100% !important;
		padding: 15px !important;
	}
	.close {
		top: 5px !important;
		right: 5px !important;
	}

	.products_home li {
		margin: 10px auto !important;
	}
}