.popup.is-open {
    opacity: 1;
    pointer-events: auto;
}

.popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	z-index: 60;
	transition: opacity .3s ease;
	opacity: 0;
	pointer-events: none;
}

.popup.is-open {
	opacity: 1;
	pointer-events: auto;
}

.popup.is-open .popup__body {
	transform: translateX(0);
}

.popup__close {
	position: absolute;
	right: 27px;
	top: 21px;
	cursor: pointer;
	transition: opacity .3s ease;
}

.popup__close:hover {
	opacity: .7;
}

.popup__close span {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 50px;
	overflow: hidden;
}

.popup__close span:before {
	transform: rotate(45deg);
}

.popup__close span:after,.popup__close span:before {
	content: "";
	position: absolute;
	height: 4px;
	border-radius: 5px;
	width: 100%;
	top: 50%;
	left: 0;
	margin-top: -1px;
	background: #2d2d2d;
}

.popup__close span:after {
	transform: rotate(-45deg);
}

.popup .form {
	padding-top: 15px;
}

.popup .form .info {
	color: #fff836;
	font-weight: 900;
	font-size: 18px;
	padding-left: 21px;
	text-transform: uppercase;
}

.popup .form .info a {
	color: #fff;
	text-decoration: none;
}

.popup .form__consert {
	margin-top: 58px;
}

.popup .form__btn {
	margin-top: 50px;
}

.popup .form__btn .btn {
	min-width: 170px;
	padding: 18px 25px;
}

.popup__info {
	color: #fff836;
	font-size: 18px;
	margin-top: 48px;
}

.popup__wrap {
	justify-content: center;
}

.popup__body,.popup__wrap {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
}

.popup__body {
	padding: 110px 70px;
	width: 30%;
	background-color: #e1e1e1;
	position: absolute;
	right: 0;
	bottom: 0;
	top: 0;
	transform: translateX(100%);
	transition: transform .3s ease;
}

.popup__title {
	text-transform: uppercase;
	font-size: 38px;
	font-weight: 700;
	line-height: 1;
}

.popup__title span {
	font-size: 26.27px;
	color: #fff836;
	display: block;
}

.product__char__list {
	margin: 30px 0;
	overflow: hidden;
}

.product__char__list .product__char__list__item {
	display: inline-block;
	border-bottom: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.product-description-text-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 40px;
    padding: 0 0 0 55px;
}

main ol {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: my-ol;
}

main ol li {
    position: relative;
    margin: 0 0 1.5rem 0;
    padding: 0 0 0 30px;
}

 li:before{counter-increment:continue}main ol[start="1"]{counter-reset:my-ol 1}main ol[start="2"]{counter-reset:my-ol 2}main ol[start="3"]{counter-reset:my-ol 3}main ol[start="4"]{counter-reset:my-ol 4}main ol[start="5"]{counter-reset:my-ol 5}

.product-description-text-list li:before {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #d8d8d8;
    color: #969696;
    font-weight: 800;
    border-radius: 50%;
    margin-right: 2rem;
    margin-top: -4px;
}
main ol li:before {
    content: counter(my-ol);
    counter-increment: my-ol;
    color: #969696;
    position: absolute;
    left: 0;
    top: 5px;
    font-weight: bold;
}


.product-description-text-list ol,
.product-description-text-list ul {
	margin-top: 30px;
}

@media (min-width:1200px) {

	.product__char__list .product__char__list__item {
		width: calc(50% - 30px);
		float: left;
	}
	
	
	.product__char__list .product__char__list__item {
		margin-right: 30px;
	}

}

@media (min-width: 992px) {
    .product-description-text-list ol {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .product-description-text-list li {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width:991px) {
	.popup__close {
		right: 27px;
		top: 21px;
	}

	.popup.is-open .popup__body {
		transform: translateY(0);
	}

	.popup__body {
		left: 0;
		right: 0;
		overflow-y: auto;
		bottom: inherit;
		padding: 110px 52px;
		padding-bottom: 60px;
		width: 100%;
		transform: translateY(-100%);
	}

	.popup__info {
		margin-top: 26px;
	}

	.popup .form {
		padding-top: 31px;
	}

	.popup .form__input--name,.popup .form__input--phone {
		width: 100%;
	}

	.popup .form__field {
		margin-bottom: 15px;
		margin: 0 22px 15px;
	}

	.popup .form__field--name {
		flex-grow: 1;
	}

	.popup .form__field-wrap {
		display: flex;
		margin: 0 -22px;
	}
}

@media (max-width:768px) {
	.popup__title {
		font-size: 30px;
		line-height: 1;
	}

	.popup__title span {
		font-size: 18px;
	}

	.popup__close {
		right: 15px;
		top: 12px;
	}

	.popup__body {
		padding: 89px 21px;
		padding-bottom: 20px;
		bottom: 0;
		transform: translateX(100%);
	}

	.popup__info {
		margin-top: 20px;
	}

	.popup.is-open .popup__body {
		transform: translateX(0);
	}

	.popup .form {
		padding-top: 38px;
	}

	.popup .form__field {
		margin-right: 0;
		margin-left: 0;
	}

	.popup .form__field-wrap {
		display: flex;
		flex-direction: column;
		margin: 0;
	}

	.popup .form__consent {
		margin-top: 10px;
	}

	.popup .form__consent-text {
		color: hsla(0,0%,100%,.72);
		font-size: 13px;
	}

	.popup .form__btn {
		margin-top: 30px;
	}

	.popup .form__btn--row {
		flex-direction: column;
	}

	.popup .form__btn--row .info {
		padding: 0;
		text-align: center;
		margin-top: 15px;
		font-size: 15px;
	}

	.popup .form__btn--row .info a {
		font-size: 24px;
	}

	.popup .form__btn .btn {
		min-width: 170px;
		width: auto!important;
		margin: 0 auto;
	}
}
