* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: 'Inter', sans-serif;
	font-optical-sizing: auto;
}
a {
	color: #007dfc;
}
.container {
	max-width: 1170px;
	margin: 0 auto;
	padding: 0 15px;
}
.btn--light {
	color: rgb(25, 27, 30);
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 70px;
	background: rgb(255, 255, 255);
	padding: 12px 30px 12px 30px;
}
.btn--blue {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 70px;
	background: #007dfc;
	padding: 12px 30px 12px 30px;
	box-shadow: 0 8px 20px 0 rgba(55, 128, 203, 0.37);
	transition: 0.3s;
}
.btn--blue:hover {
	background: #0171e0;
}
.header {
	background-color: #007dfc;
	padding: 16px 0;
}
.header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.nav-list {
	list-style-type: none;
	display: flex;
	gap: 30px;
}
.nav-list__item a {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.6);
	transition: 0.3s;
}
.nav-list__item a:hover {
	color: #fff;
}
.nav-list__item.active a {
	color: #fff;
}
.hero {
	margin: 80px 0;
}
.hero .container {
	display: flex;
	justify-content: space-between;
}
.hero-title {
	font-size: 45px;
	font-weight: 400;
	margin-bottom: 40px;
}
.hero__list {
	margin-left: 20px;
	list-style-type: none;
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 65px;
}
.hero__list li {
	position: relative;
	color: #191b1e;
}
.hero__list li::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -20px;
	transform: translateY(-50%);
	width: 9.5px;
	height: 8.5px;
	background-image: url(../images/svg/check_mark.svg);
	background-size: cover;
	background-repeat: no-repeat;
}
.about {
	padding: 160px 0;
	background-color: rgb(244, 246, 249);
}
.about__cell {
	display: flex;
	gap: 63px;
}
.about_cell__title h2 {
	color: rgb(25, 27, 30);
	font-size: 36px;
	font-weight: 700;
	line-height: 140%;
	width: 311px;
}
.about_cell__content p,
.about_cell__content span {
	padding-left: 33px;
}
.about_cell__link {
	margin-top: 44px;
}
.about_cell__content.border {
	border-left: 1px solid rgb(218, 225, 233);
}
.about_cell__content p {
	color: rgb(25, 27, 30);
	font-size: 24px;
	font-weight: 400;
	line-height: 160%;
	border-left: 1px solid #dae1e9;
}
.posts__block {
	padding: 160px 0;
}
.posts__block .container {
	position: relative;
}
.posts__title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 70px;
}

.posts__title a {
	text-decoration: none;
}

.carousel__wrapper {
	overflow: hidden;
}
.posts__list {
	display: flex;
	list-style: none;
	gap: 18px;
	transition: transform 0.5s ease-in-out;
}
.posts_list__item {
	flex: 0 0 calc(100% / 4 - 18px);
	max-width: 270px;
}
.posts_list__item img {
	width: 100%;
	border-radius: 8px;
}
.posts__title h2 {
	color: #191b1e;
	font-size: 36px;
	margin-bottom: 0;
}
.posts__title span {
	position: relative;
	color: #007dfc;
	margin-right: 30px;
}
.posts__title span::before {
	content: '';
	position: absolute;
	top: 50%;
	right: -25px;
	transform: translateY(-50%);
	width: 15px;
	height: 13px;
	background-image: url(../images/svg/arrow-right.svg);
	background-size: cover;
	background-repeat: no-repeat;
}
.posts_list__item p {
	margin-top: 20px;
	color: #191b1e;
	font-size: 18px;
	font-weight: 400;
	line-height: 160%;
}
.carousel__wrapper {
	position: relative;
	overflow: hidden;
	margin-left: 9px;
}
.carousel {
	display: flex;
	transition: transform 0.5s ease-in-out;
}
.carousel__button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	box-shadow: 0 8px 20px 0 rgba(55, 128, 203, 0.37);
	background: rgb(0, 125, 252);
	color: #fff;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	width: 40px;
	height: 40px;
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10;
}
.carousel__button--left {
	left: -40px;
}
.carousel__button--right {
	right: -20px;
}
.carousel__button[disabled] {
	opacity: 0.5;
	cursor: not-allowed;
}
.footer {
	background-color: #007dfc;
	padding: 40px 0;
}
.footer_nav__list {
	display: flex;
	flex-direction: column;
	gap: 28px;
	list-style: none;
}
.footer__container {
	display: flex;
	justify-content: space-between;
}
.footer_nav__item a {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.6);
}
.footer_nav__item.active a {
	color: #fff;
}
.footer__cell {
	flex: 1;
}
.footer__cell p {
	color: #fff;
}
.footer__cell-link {
	color: #fff;
	font-weight: 700;
}
.footer__cell:not(:first-child) {
	padding-left: 128px;
	border-left: 2px solid rgb(86, 150, 216);
}
.footer__cell:first-child {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.footer__cell:last-child p {
	font-size: 16px;
	line-height: 160%;
	width: 322px;
	font-weight: 200;
}
.body-gray {
	background-color: rgb(244, 246, 249);
}
.poll {
	max-width: 100%;
	padding: 80px 0;
}

.poll h1 {
	margin-top: 0;
}
.poll_menu {
	max-width: 128px;
	position: relative;
	border-radius: 8px;
	padding: 10px 0;
}
.poll_right {
	max-width: 100%;
	width: calc(100% - 128px - 85px);
}
.menu-item {
	padding: 10px 20px;
	font-size: 16px;
	color: #93a8bd;
	cursor: pointer;
	position: relative;
	text-align: left;
	transition: color 0.3s ease;
}
.menu-item:hover {
	color: #191b1e;
}
.menu-item.active {
	color: #191b1e;
	font-weight: 700;
}
.indicator {
	position: absolute;
	left: 0;
	width: 4px;
	height: 42px;
	background-color: #007bff;
	border-radius: 2px;
	transition: top 0.3s ease;
	z-index: 100;
}

.indicator_back {
	position: absolute;
	left: 0;
	width: 4px;
	height: 158px;
	background-color: #dae1e9;
	border-radius: 2px;
	transition: top 0.3s ease;
}
.poll__list {
	display: flex;
	justify-content: space-between;
	gap: 70px;
	margin-top: 60px;
}
.poll_main {
	max-width: 100%;
	border-radius: 20px;
	background: rgb(255, 255, 255);
	padding: 60px;
	margin-bottom: 80px;
}
.poll_column {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 50px;
	flex-wrap: wrap;
}
.poll_main h2,
h2 {
	color: rgb(25, 27, 30);
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 24px;
}
.poll_main h3,
.h3 {
	color: rgb(25, 27, 30);
	font-size: 24px;
	font-weight: 600;
	line-height: 140%;
	margin-bottom: 20px;
}
.poll_main p,
.p {
	color: rgb(25, 27, 30);
	font-size: 16px;
	font-weight: 400;
	line-height: 160%;
	margin-bottom: 20px;
}
.poll_main ul,
.ul-list {
	margin-bottom: 28px;
	list-style: none;
	padding: 0;
}
.poll_main ul li,
.ul-list li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 10px;
	color: rgb(25, 27, 30);
	font-size: 16px;
	font-weight: 400;
	line-height: 140%;
}
.poll_main ul li::before,
.ul-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	background-image: url(../images/svg/mark-1.svg);
	background-size: cover;
}
.poll_main ol {
	margin-bottom: 40px;
	list-style: none;
	padding: 0;
}
.poll_main ol li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 10px;
	color: rgb(25, 27, 30);
	font-size: 16px;
	font-weight: 400;
	line-height: 140%;
}
.poll_main ol li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 9.5px;
	height: 8.5px;
	background-image: url(../images/svg/mark-2.svg);
	background-size: cover;
}
.poll_desc {
	color: rgb(79, 85, 95);
	font-size: 16px;
	font-weight: 400;
	line-height: 160%;
}
.trigger-btn {
	width: 16px !important;
	height: 16px !important;
	margin: 0 !important;
}
.checkbox-container {
	display: flex;
	align-items: flex-start;
	margin-bottom: 8px;
	margin-top: 12px;
}
.checkbox-container input[type='checkbox'] {
	display: none;
}
.checkbox-container label {
	position: relative;
	padding-left: 30px;
	cursor: pointer;
	display: block;
}
.checkbox-container label::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	border: 2px solid #007bff;
	border-radius: 4px;
	background-color: #fff;
}
.checkbox-container input[type='checkbox']:checked + label::before {
	background-color: #007bff;
	border-color: #007bff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.checkbox-container input[type='checkbox']:checked + label::after {
	content: '✔';
	position: absolute;
	left: 5px;
	top: 3px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

.checkbox-error {
	color: #e13a3a;
	font-size: 14px;
	font-weight: 400;
	line-height: 120%;
}

.poll_question {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
}
.poll_answers {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.poll_answer {
	position: relative;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 10px 15px;
	cursor: pointer;
	transition: border 0.3s ease;
}
.poll_answer:hover {
	border-color: #007bff;
}
.poll_answer input[type='radio'] {
	display: none;
}
.poll_answer label {
	font-size: 16px;
	cursor: pointer;
}
.poll_answer input[type='radio']:checked + label {
	border-color: #007dfc;
	background-color: #f4f6f9;
}
.poll_answer.active {
	border-color: #007dfc;
	background-color: #f4f6f9;
}

.poll_answer img {
	order: 0 !important;
	margin: 0 !important;
}

.poll_info {
	font-size: 14px;
	color: #666;
	margin-top: 20px;
	display: flex;
	gap: 5px;
	align-items: flex-start;
}
.poll_info p {
	max-width: 501px;
	color: rgb(79, 85, 95);
	font-size: 14px;
	font-weight: 400;
	line-height: 120%;
}
.poll_info a {
	color: rgb(0, 125, 252);
	font-weight: 700;
}
.poll_info a:hover {
	text-decoration: underline;
}

.poll-label {
	display: flex;
	align-items: center;
	gap: 10px;
}

.poll_footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 60px;
	padding-top: 20px;
	border-top: 1px solid #dae1e9;
	font-size: 14px;
	color: #666;
	width: 100%;
}
.btn-back {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 110px;
	height: 48px;
	gap: 8px;
	border: 2px solid rgb(147, 168, 189);
	background: #fff;
	color: #191b1e;
	padding: 12px 30px 12px 30px;
	border-radius: 70px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease,
		border-color 0.3s ease;
	box-shadow: 0 8px 20px 0 rgba(55, 128, 203, 0.37);
}
.btn-back:hover {
	background: #f5f7fa;
	border-color: #7c9abb;
	color: #191b1e;
}
.btn-back__icon img {
	height: 19px;
}
.btn-back:hover .btn-back__icon {
	color: #7c9abb;
}
.btn-next {
	border: 0;
	width: 110px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.poll_report-link {
	text-decoration: none;
	color: #007bff;
}
.poll_report-link:hover {
	text-decoration: underline;
}
.poll_progress {
	font-weight: 700;
	color: rgb(147, 168, 189);
	font-size: 16px;
}

.poll_progress b {
	color: rgb(25, 27, 30);
}

.calculator_main__container {
	max-width: 800px;
	margin: 0 auto;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	padding: 20px;
}
.calculator_title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
}
.calculator_info__message {
	display: flex;
	gap: 5px;
	background: rgb(244, 246, 249);
	padding: 15px;
	border-radius: 10px;
	margin-bottom: 20px;
	font-size: 14px;
	color: rgb(79, 85, 95);
	font-weight: 400;
	line-height: 130%;
	border: 1px solid rgb(0, 125, 252);
}

.calculator_info__message div {
	min-width: 15px;
}

/* Стили для ползунка */
.calculator_slider__input {
	-webkit-appearance: none; /* Убираем стандартный стиль */
	width: 100%;
	height: 6px; /* Высота трека */
	background: #007dfc;
	border-radius: 5px;
	outline: none;
	transition: background 0.3s ease; /* Плавное обновление */
}

/* Стиль для кругляша (ползунка) */
.calculator_slider__input::-webkit-slider-thumb {
	-webkit-appearance: none; /* Убираем стандартный стиль */
	width: 20px;
	height: 20px;
	background: #93a8bd;
	border: 2px solid #fff;
	border-radius: 50%; /* Делаем его круглым */
	cursor: pointer;
	position: relative;
	z-index: 2;
}

/* Для Firefox */
.calculator_slider__input::-moz-range-thumb {
	width: 20px;
	height: 20px;
	background: #93a8bd;
	border: 2px solid #fff;
	border-radius: 50%;
	cursor: pointer;
}

/* Для Internet Explorer */
.calculator_slider__input::-ms-thumb {
	width: 20px;
	height: 20px;
	background: #93a8bd;
	border: 2px solid #fff;
	border-radius: 50%;
	cursor: pointer;
}

/* Стилизация трека для Firefox */
.calculator_slider__input::-moz-range-track {
	background: #007dfc;
	height: 6px;
	border-radius: 5px;
}

/* Для Internet Explorer */
.calculator_slider__input::-ms-track {
	width: 100%;
	height: 6px;
	background: transparent;
	border-color: transparent;
	color: transparent;
}

.calculator_slider__input::-ms-fill-lower {
	background: #007dfc;
	border-radius: 5px;
}

.calculator_slider__input::-ms-fill-upper {
	background: gray;
	border-radius: 5px;
}

.calculator_input__fields {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 20px;
}
.calculator_input__group {
	flex: 1;
	max-width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.calculator_input__label {
	display: block;
	margin-bottom: 8px;
	color: rgb(25, 27, 30);
	font-size: 16px;
	font-weight: 400;
	line-height: 140%;
}
.calculator_input__field {
	width: 100%;
	padding: 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
}
.calculator_slider__container {
	margin-bottom: 20px;
}
.calculator_slider__label {
	font-weight: 700;
}
.calculator_slider__input {
	width: 100%;
	margin: 10px 0;
}
.calculator_slider__values {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
}
.calculator_results {
	margin-bottom: 20px;
}
.calculator_results__title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}
.calculator_results__table {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.calculator_lease__option,
.calculator_buy__option {
	flex: 1;
	background: #f4f6f9;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 15px;
	text-align: center;
}
.calculator_lease__title,
.calculator_buy__title {
	margin-bottom: 10px;
}
.calculator_lease__detail,
.calculator_buy__detail {
	margin: 5px 0;
}
.calculator_lease__total,
.calculator_buy__total {
	font-size: 18px;
	font-weight: 700;
	margin-top: 10px;
}
.calculator_footer {
	text-align: left;
}
.calculator_btn__back {
	background-color: #007bff;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 8px;
	cursor: pointer;
}
.calculator_btn__back:hover {
	background-color: #0056b3;
}
.input-container {
	position: relative;
	display: flex;
	align-items: center;
	border: 1px solid #ccc;
	border-radius: 10px;
	padding: 0 10px 0 0;
	background-color: #fff;
	height: 42px;
	width: 80%;
	max-width: 210px;
}
.currency-symbol {
	font-size: 16px;
	color: #666;
	padding: 0 10px;
	background-color: #eaeef3;
	border-radius: 10px 0 0 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.procent-symbol {
	order: 2;
	border-radius: 0px 10px 10px 0px;
}

.input-container__procent {
	padding: 0 0px 0 10px;
}

.currency-input {
	width: 80%;
	border: none;
	flex: 1;
	font-size: 16px;
	outline: none;
	padding: 5px;
	border-radius: 0 10px 10px 0;
	background-color: transparent;
}

.input-container.disabled {
	background-color: #f4f6f9;
}

.input-container-link {
	position: absolute;
	top: 23%;
	left: 36px;
	color: rgb(0, 125, 252);
	font-size: 16px;
	font-weight: 600;
	line-height: 140%;
	text-decoration: underline;
}

.input-container.disabled .currency-input {
	color: #007dfc;
	text-decoration: underline;
	font-size: 16px;
	font-weight: 600;
	line-height: 140%;
}

.calculator_results__table {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 20px;
	width: 100%;
}
.calculator_section {
	display: grid;
	grid-template-rows: auto auto;
	gap: 10px;
}
.calculator_section__title {
	font-size: 18px;
	font-weight: 700;
	text-align: left;
}
.calculator_lease__options {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	background-color: #f4f6f9;
	padding: 10px;
	border-radius: 8px;
	border: 1px solid #ddd;
}
.calculator_lease__option,
.calculator_buy__option {
	flex: 1;
	background: #f4f6f9;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 15px;
	text-align: center;
}
.calculator_lease__total,
.calculator_buy__total {
	text-align: right;
	font-size: 18px;
	font-weight: 700;
	color: #000;
	margin-top: 10px;
}
.calculator_table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
	font-size: 16px;
}
.calculator_table th,
.calculator_table td {
	border: 1px solid #ddd;
	padding: 15px;
	text-align: left;
}
.calculator_total {
	font-size: 18px;
	font-weight: 700;
	text-align: right;
}

.double_lease {
	display: flex;
	gap: 5px;
}

.double_lease-item {
	border-radius: 10px;
	background: rgb(244, 246, 249);
	padding: 20px;
}

.one_lease span.one_lease-title,
.double_lease-item span.one_lease-title {
	color: rgb(25, 27, 30);
	font-size: 20px;
	font-weight: 600;
	line-height: 140%;
	margin: 0;
	padding: 0;
	margin-bottom: 16px;
}
.one_lease span.one_lease-subtitle,
.double_lease-item span.one_lease-subtitle {
	color: rgb(25, 27, 30);
	font-size: 16px;
	font-weight: 500;
	line-height: 140%;
	margin: 0;
	padding: 0;
	font-weight: 500;
}
.one_lease span,
.double_lease span {
	color: rgb(79, 85, 95);
	font-size: 14px;
	font-weight: 400;
	line-height: 120%;
	margin-bottom: 16px;
}

.double_lease-plus {
	display: flex;
	justify-content: center;
	align-items: center;
}

.double_lease-plus span {
	color: #007dfc;
	font-size: 22px;
	margin-bottom: 0;
}

.one_lease__wrapper {
	margin-top: 16px;
}

/* DOUBLE LEASE */

.calculator__table-title {
	color: rgb(25, 27, 30);
	font-size: 24px;
	font-weight: 400;
	line-height: 130%;
}
.poll_main__list {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 20px;
}
.poll_main__list li {
	width: 40px;
	height: 40px;
	padding-left: 0 !important;
	background-color: #d8dee8;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.poll_main__list li a img {
	margin-top: 3px;
}
.poll_main__list li::before {
	display: none;
}
.poll_main__cell {
	display: flex;
	align-items: center;
	gap: 48px;
	border-radius: 20px;
	background: rgb(244, 246, 249);
	padding: 46px;
	margin: 60px 0;
}
.poll_main__cell__content h3 {
	font-size: 20px;
	font-weight: 400;
	line-height: 140%;
}
.poll_main__content__column {
	max-width: calc(100% - 340px);
}
.result {
	padding: 20px;
	background-color: #fff;
}
.result__title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
	text-align: center;
}
.result__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 16px;
	margin-bottom: 60px;
}
.result__header-cell {
	text-align: center;
	font-weight: 700;
	background-color: #fff;
	padding: 10px;
	border: 1px solid #ddd;
}
.result__header-cell--lease {
	color: green;
}
.result__header-cell--buy {
	color: rgb(209, 103, 45);
}
.result__score {
	font-size: 18px;
	display: block;
	font-weight: 700;
	margin-top: 5px;
}
.result__body .result__row:nth-child(odd) .result__cell {
	background-color: #f4f6f9;
}
.result__row {
	border-bottom: 1px solid #ddd;
}
.result__cell {
	text-align: center;
	padding: 10px;
	border: 1px solid #ddd;
}
.result__left {
	text-align: left !important;
}
.result__cell--lease {
	color: #6b9932;
	font-weight: 700;
}
.result__cell--buy {
	color: rgb(209, 103, 45);
	font-weight: 700;
}
.result__diagram {
	height: 303px;
}
.hierarchy__wrapper {
	position: relative;
	margin: 40px 0 60px;
}
.hierarchy__wrapper img {
	max-width: 100%;
}
.hierarchy_lease,
.hierarchy_buy {
	color: rgb(25, 27, 30);
	font-size: 16px;
	font-weight: 700;
	line-height: 140%;
}
.hierarchy_lease {
	position: absolute;
	left: 38.6%;
	bottom: 13px;
}
.hierarchy_buy {
	position: absolute;
	right: 38.6%;
	bottom: 13px;
}
.modal {
	position: fixed;
	top: 0;
	right: -100%;
	width: 30%;
	height: 100%;
	background-color: #fff;
	box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
	transition: right 0.3s ease-in-out;
	z-index: 100;
}
.modal.active {
	right: 0;
}
.modal-content {
	padding: 20px;
}
.modal-header {
	background-color: #f4f6f9;
	padding: 30px 30px 10px 30px;
}
.modal-header h2 {
	margin-top: 28px;
}
.close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 24px;
	cursor: pointer;
}
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 70%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: 0.8s linear;
	pointer-events: none;
}
.modal-overlay.active {
	opacity: 1;
	pointer-events: all;
}
.d-mobile {
	display: none;
}
