.has-error {
	border-color: red;
}

.has-error-txt {
  color: red!important;
}

.has-error-txt .main-form-checkbox__text a {
  color: red!important;
}

.has-error-txt .main-form-checkbox__checkmark {
    border: 1px solid red;
}

.btn.btn_primary.disabled {
	opacity: 0.5;
}

table.compare {
	border-collapse: collapse;
}
table.compare td {
	padding: 10px;
}
table.compare thead td {
	font-size: 16px;
	line-height: 20px;
	font-weight: 700;
}
table.compare tbody td {
	border-bottom: 1px solid #d5d5d5;
}
table.compare td + td {
	text-align: center;
}
table.compare tbody td:nth-child(even) {
	background: #eaeaea;
}
table.compare td.option_title {
	font-weight: 700;
	padding: 20px 10px;
	background: #eaeaea;
}

.pagination {
	margin-top: var(--section-gap);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}
.pagination .prev,
.pagination .next {
	position: relative;
	color: transparent;
	width: 1.75rem;
	height: 1.75rem;
	z-index: 2;
	background: linear-gradient(225deg, var(--color-main-grad));
	border-radius: 50%;
}
.pagination .prev::before,
.pagination .next::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 1px;
	background: #03c5ab;
	border-radius: inherit;
}
.pagination .prev::after,
.pagination .next::after {
	content: "";
	width: 1rem;
	height: 1rem;
	display: block;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-image: url("data:image/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.985551 1.02341L6.98547 6.98812L1.02075 12.988' stroke='%23ffffff' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.pagination .prev {
	margin-right: 0.5rem;
}
.pagination .prev::after {
	transform: translate(-50%, -50%) rotate(180deg);
}
.pagination .next {
	margin-left: 0.5rem;
}
.pagination .current {
	color: #03c5ab;
}

.cookies {
	position: fixed;
	bottom: 24px;
	left: 24px;
	z-index: 100000001;
	display: grid;
	grid-gap: 35px;
	grid-template-columns: repeat(2, auto);
	align-items: center;
	width: calc(100% - 8px);
	max-width: 416px;
	padding: 20px;
	border-radius: 16px;
	background-color: #fff;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.04), 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1023.9px) {
	.cookies {
		left: 50%;
		transform: translateX(-50%);
		bottom: 12px;
	}
}

@media (max-width: 767.9px) {
	.cookies {
		bottom: 4px;
		max-width: none;
	}
}

.cookies--hidden {
	display: none;
}

.cookies__desc {
	margin: 0;
	font-size: 12px;
	line-height: 16px;
}

.cookies__desc a {
	color: inherit;
	text-decoration: underline;
}

.cookies__desc a:focus,
.cookies__desc a:hover {
	text-decoration: none;
}

.cookies__button {
	margin: 0;
	border: 0;
	color: inherit;
	font: inherit;
	-webkit-tap-highlight-color: transparent;
	padding: 10px 24px;
	border-radius: 20px;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	background-color: #03c5ab;
	color: #fff;
	cursor: pointer;
	transition: background-color 0.15s ease-out;
}

.cookies__button:focus {
	outline: none;
}

.cookies__button::-webkit-input-placeholder {
	color: inherit;
}

.cookies__button::-moz-placeholder {
	color: inherit;
}

.cookies__button:-ms-input-placeholder {
	color: inherit;
}

.cookies__button::-ms-input-placeholder {
	color: inherit;
}

.cookies__button::placeholder {
	color: inherit;
}

.cookies__button:focus,
.cookies__button:hover {
	background-color: #000;
}

.hero-carousel {
	min-height: unset !important;
}
