:root {
    --main-color: #000;
    --text-color: #fff;
    --second-color: #63e85b;
    --alt-color: #3f3f3f;
}

@keyframes pulse {
	0% {
		transform: scale(0.95);
	}

	70% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(0.95);
	}
}
@keyframes flareAnimation {
    0% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}

body {
    min-width: 480px;
    background: #eee;
    font-family: "Gilroy", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-color);
    cursor: default;
}
a {
    color: var(--main-color);
    text-decoration: none;
}
video {
    display: block;
    margin: 0 auto 20px;
    /* max-height: 300px; */
    max-width: 100%;
    border-radius: 5px;
}

.main_wrapper {
    position: relative;
    padding-top: 70px;
    margin: 0 auto;
    width: 480px;
    background-color: var(--main-color);
    overflow: hidden;
}
.rating {
    padding: 10px;
    display: flex;
    justify-content: space-around;
    text-align: center;
    text-transform: uppercase;
    position: fixed;
    top: 0;
    width: 480px;
    background: var(--main-color);
    z-index: 999;
    border-bottom: 2px solid #ffc801;
}
.rating__stars_block {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.rating__stars_block p {
    font-weight: 700;
    margin-right: 5px;
}
.rating__stars_desc,
.rating__stat_last-order {
    font-size: 12px;
    letter-spacing: 1px;
}
.rating__stat_buy {
    font-weight: 700;
    line-height: 1.4;
}
.rating__stat_buy > b {
    padding: 3px 10px 0;
    border-radius: 5px;
    background: #ffc801;
    color: #000000;
    font-weight: 700;
    line-height: 1.4;
}
.offer_section {
    background-color: var(--main-color);
    color: var(--text-color);
    margin-bottom: 30px;
}
.info-product__title {
    font-size: 28px;
    line-height: 34px;
    font-weight: 700;
    margin: 15px 0 10px;
    text-align: center;
}
.main-img {
    margin-bottom: 20px;
}
.info-product {
    padding: 0 10px;
    margin-bottom: 20px;
}
.info-product__price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sale {
    color: #fff;
    background: #b31e27;
    padding: 7px;
    line-height: 1;
    border-radius: 5px;
    font-weight: 500;
}
.price-last {
    font-size: 20px;
    color: #a8adb8;
    text-decoration: line-through;
}
.price {
    font-size: 34px;
    font-weight: 600;
    color: var(--text-color);
    border-bottom: 2px solid #ffc300;
    padding-bottom: 5px;
    margin-left: -5px;
}
.price span {
    font-size: 26px;
}
.text-sale {
    font-weight: 700;
    line-height: 1;
    color: #fff;
    background-color: #b31e27;
    padding: 7px;
    border-radius: 5px;
    animation: pulse 2s infinite;
}
.timer {
    margin-bottom: 20px;
}
.timer_block {
	padding: 0 20px;
	text-transform: uppercase;
	text-align: center;
}
.timer p {
	margin-bottom: 10px;
    text-align: center;
    font-size: 20px;
    line-height: 1;
}
.timer_container {
	display: flex;
    justify-content: center;
}
.timer_block .timer {
	margin: 0 auto;
	width: 370px;
}
.timer_block .timer_item {
	float: left;
	margin: 0 35px 0 0;
	width: 100px;
}
.timer_block .timer_item:last-child {
	margin: 0;
}
.timer_block .count {
	margin: 0 0 10px;
    height: 48px;
}
.timer_block .count span {
	display: block;
    float: left;
    margin: 0 7px 0 0;
    width: 45px;
    height: 50px;
    background: var(--second-color);
    font-weight: 700;
    font-size: 36px;
    line-height: 55px;
    color: #fff;
    border-radius: 3px;
}

.timer_block .count span:last-child {
	margin: 0;
}
.timer_block .text {
	font-size: 13px;
	line-height: 13px;
}
.form {
    padding: 0 15px;
    margin-bottom: 20px;
}
.form__inputs:not(:last-child),
.form__input:not(:last-child) {
    margin-bottom: 15px;
}

.input {
    width: 100%;
    display: block;
    border-radius: 5px;
    border: 2px solid #ffc300;
    background: #e8e8e8;
    font-weight: 500;
    font-size: inherit;
    line-height: 1.2;
    padding: 20px 10px 20px 40px;
    font-family: "Gilroy", sans-serif;
}
.button {
    position: relative;
    overflow-x: hidden;
    background-color: #ffc300;
    box-shadow: 0 4px 0 var(--alt-color);
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    gap: 15px;
    border: 0;
    width: 100%;
    min-height: 90px;
    font-family: "Gilroy", sans-serif;
    color: #000000;
}
.button::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    background: url(../img/cart.png) center / contain no-repeat;
}
.button:active {
    box-shadow: 0 4px var(--second-color);
    transform: translateY(3px);
  }

.button .flare {
    position: absolute;
    top: 0;
    height: 100%;
    width: 45px;
    transform: skewX(-45deg);
    animation: flareAnimation;
    left: -150%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
    animation: flareAnimation 3s infinite linear;
}
.icons__body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 10px;
    text-align: center;
    font-size: 16px;
    padding: 5px 0;
    font-size: 16px;
    background-color: var(--alt-color);
    margin: 0 15px;
    border-radius: 5px;
}
.icons__item_big {
    border-left: 1px dotted #6c6c6c;
    border-right: 1px dotted #6c6c6c;
}
.icons__img {
    margin: 0 auto;
    min-height: 30px;
    max-width: 30px;
}
.icons__img.car {
    max-width: 50px;
}
.icons__text {
    padding: 0 10px;
}

section {
    padding: 0 20px 30px;
}
section.benefits {
    padding: 0 15px 30px;
}
section.reviews {
    padding: 30px 40px 10px;
    background-color: var(--alt-color);
    margin-bottom: 20px;
}

.item__body {
    border-radius: 1.0625rem;
    background-color: var(--alt-color);
    padding: 10px;
    margin-bottom: 25px;
}
.item__title {
    position: relative;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 30px;
}
.item__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    margin: 0px 0px -10px 0px;
    left: 0;
    display: inline-block;
    width: 60px;
    height: 2px;
    background-color: #ffc300;
}
.item__img {
    display: block;
    border-radius: 5px;
    margin-top: 10px;
    min-width: 390px;
}
.video_block {
    width: 100%;
    height: 270px;
    background-color: #000;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
}
.video_block iframe,
.video_block object,
.video_block embed {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.youtube {
    background-color: #000;
    max-width: 100%;
    height: inherit;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery > div img {
    border-radius: 5px;
}
.gallery .owl-prev,
.gallery .owl-next  {
	width: 40px;
	height: 40px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background: var(--second-color) url("../img/slider__arrows.png") no-repeat;
	position: absolute;
	top: calc(50% - 20px)
}
.gallery .owl-prev  {
	background-position: left center;
	left: -15px;
}

.gallery .owl-next {
	background-position: right center;
	right: -15px;
}

.char__list {
    margin: 20px 0 30px;
}
.char__list li {
    display: flex;
    justify-content: space-between;
    padding: 3px 10px;
    margin-bottom: 5px;
}
.char__list li:nth-child(even) {
    background-color: var(--alt-color);
}


.vib_item {
	max-width: 410px;
	min-height: 710px;
	margin: 0 auto;
	background: url(../img/reviews__vib_bg.jpg) 50% 0% repeat;
	font-family: Arial, Helvetica, sans-serif;
	position: relative;
	overflow: hidden;
	border-radius: 20px 20px 20px 20px;
}

.vib_item .info {
	background: #ffffff url(../img/reviews__vib_btn.png) 3px 50% no-repeat;
    background-size: contain;
	padding: 16px 110px 13px 50px;
	box-shadow: 0 0 12px 0 rgba(0,0,0,0.35);
	position: relative;
	z-index: 2;
	border-radius: 20px 20px 0px 0px;
}

.vib_item .info>img {
	float: left;
	border-radius: 50%;
	width: 42px;
}

.vib_item .info .text {
	overflow: hidden;
	padding-left: 8px;
	color: #333;
}

.vib_item .info .text>p {
	font-size: 16px;
	line-height: 22px;
	font-weight: 700;
}

.vib_item .info .text>small {
	font-size: 13px;
	line-height: 18px;
	display: block;
}

.vib_item .date {
	text-align: center;
	margin-top: 10px;
}

.vib_item .date>span {
	display: inline-block;
	vertical-align: top;
	background: #d4ebf3;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 28px;
	color: #3f5250;
	padding: 0 8px;
	border-radius: 7px;
	box-shadow: 0 1px 5px 0 rgba(0,0,0,0.2);
}

.vib_item .message_container {
	margin-top: 10px;
	padding: 0 12px;
}

.vib_item .message {
	display: inline-block;
	max-width: 295px;
	min-width: 70px;
	padding: 6px 10px;
	position: relative;
	font-size: 18px;
	line-height: 22px;
	color: #212121;
	box-shadow: 0 1px 3px 0 rgba(0,0,0,0.25);
	margin-bottom: 10px;
}

.vib_item .message:last-child {
	margin-bottom: 0;
}

.vib_item .message>p {
	margin-bottom: 5px;
}

.vib_item .message>img {
	display: block;
	margin: 6px auto;
	border-radius: 4px;
}

.vib_item .message .time {
	text-align: right;
	font-size: 14px;
	line-height: 15px;
	color: #989898;
	padding: 0 5px;
}

.vib_item .message.client {
	background: #fff;
	border-radius: 0 6px 6px 6px;
}

.vib_item .message.client:before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 8px 8px 0;
	border-color: transparent #fff transparent transparent;
	position: absolute;
	top: 0;
	left: -6px;
}

.vib_item .message.author {
	background: #c8e2fd;
	border-radius: 10px 0 10px 10px;
	padding: 6px 10px;
	float: right;
}

.vib_item .message.author:before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 8px 0 0;
	border-color: #c8e2fd transparent transparent transparent;
	position: absolute;
	top: 0;
	right: -6px;
}

.vib_item .message.author .time {
	padding: 0;
}

.vib_item:after {
	content: '';
	width: 404px;
	height: 57px;
	background: url(../img/reviews__vib_send.png) 50% 50% no-repeat;
	position: absolute;
	left: 50%;
	margin-left: -202px;
	bottom: 7px;
}

.vib_rev .owl-prev,
.vib_rev .owl-next {
	width: 40px;
	height: 40px;
	background: #ffc801 url(../img/slider__arrows.png) no-repeat;
	position: absolute;
	top: calc(50% - 20px);
	border-radius: 5px;
}

.vib_rev .owl-prev {
	background-position: left center;
	left: -20px;
}

.vib_rev .owl-next {
	background-position: right center;
	right: -20px;
}

.vib_rev .owl-dots {
	font-size: 0;
	text-align: center;
	margin-top: 20px;
}

.vib_rev .owl-dot {
	display: inline-block;
	vertical-align: top;
	margin: 0 8px;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	border: 2px solid #fff;
}

.vib_rev .owl-dot.active {
	background: #FFC107;
}
.delivery {
    border-bottom: 2px solid var(--second-color);
    color: #000;
    background: #fff;
    padding-top: 20px;
}
.delivery .item__img {
    margin-bottom: 20px;
}
.step__item {
    text-transform: uppercase;
}
.step__item:not(:last-child){
    margin-bottom: 20px;
}
.step__title {
    display: flex;
    align-items: flex-end;
    column-gap: 10px;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 20px;
}
.step__title img {
    max-width: 30px;
}
.step__color {
    color: var(--second-color);
    font-weight: 500;
}

/* footer */
.offer_section + footer {
    margin-bottom: 0;
}
footer {
    background-color: var(--main-color);
}
footer a {
	color: #ffcf00;
}
.yvedw {
    position: fixed;
    top: 90px;
    width: 480px;
    height: 80px;
    overflow: hidden;
    z-index: 999;
}
.yved {
    position: absolute;
    left: -400px;
    /* width: 290px; */
    text-align: left;
    color: #fff;
    padding: 10px 10px 10px 30px;
    font-size: 15px;
    border-radius: 0 10px 10px 0;
    border: 1px solid #fff;
    box-shadow: 1px 1px 4px 0px var(--alt-color);
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}
.yved.active {
    left: -20px;
}
.yvedf1 {
    color: var(--text-color);
    background-color: var(--alt-color);
}
.yvedf2 {
    color: #222;
    background-color: #fff;
}
.pulse {
    animation: 2s infinite pulse;
}



.benefits_list3 .benefit_item {
	display: table;
	margin: 0 20px 30px;
	width: 440px;
	min-height: 150px;
	position: relative;
}

.benefits_list3 .benefit_item:last-child {
	margin: 0 20px 10px;
}

.benefits_list3 .benefit_item img {
	display: block;
	width: 150px;
	border: 3px solid #e6e6e6;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background: #e6e6e6;
	position: absolute;
	top: 0;
	left: 0;
}

.dark_theme .benefits_list3 .benefit_item img {
	border: 3px solid #fff;
	background: #fff;
}

.benefits_list3 .benefit_item:nth-child(even) img {
	left: auto;
	right: 0;
}

.benefits_list3 .benefit_item .text_block {
	display: table-cell;
	vertical-align: top;
	padding: 0 0 0 170px;
}

.benefits_list3 .benefit_item:nth-child(even) .text_block {
	padding: 0 170px 0 0;
	text-align: right;
}

.benefits_list3 .benefit_item .text_block h4 {
	font-weight: 700;
}

.dark_theme .benefits_list3 .benefit_item .text_block h4 {
	color: #ffd800;
}

.benefits_list3 .benefit_item .text_block h4 + p {
	margin: 5px 0 0;
}
.why {
    color: #fff;
    background: var(--alt-color);
    padding: 20px;
}

.why .block .img-block {
	margin-bottom: 10px;
	position: relative;
	text-align: center
}
.why .block .img-block .cam {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}
.why .block .img-block .icon {
	position: absolute;
	bottom: 0;
	left: 30%
}
.why .block ul {
	list-style: none;
	padding-left: 15px;
}
.why .block ul li {
	/* margin-bottom: 23px; */
	padding-left: 30px;
	font-size: 16px;
}
.why .minuses li {
	background: url(../img/no.png) left 1px no-repeat;
	background-size: 15px
}
.why .pluses li {
	background: url(../img/yes.png) left 5px no-repeat;
	background-size: 15px;
}