main{
	overflow: hidden;
}

.calc__wrap{
	position: relative;
		overflow: clip;
}

.calc {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: sans-serif;
	position: relative;
	width: 100%;
	max-width: 1100px;
	margin: 30px auto 30px auto;
	/* background: #fff; */
	padding: 40px 30px;
	padding-top: 10px;
	z-index: 10;
}

@media (max-width: 991px) {
	.calc {
		padding: 40px 15px;
		padding-top: 10px;
	}
}
@media (max-width: 450px) {
	.calc {
		padding: 40px 8px;
		padding-top: 10px;
	}
}
.calc * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: sans-serif;
	position: relative;

}

.calc__wallpaper{
		filter: brightness(0.5);
		position: absolute;
		left: 50%;
		top: -30px;
		transform: translateX(-50%);
		object-fit: cover;
		width: 2200px;
		height: 850px;
		z-index: -1;
}
.calc__head {
	font-size: 28px;
	font-weight: 600;
	margin: 0 auto 70px auto;
	max-width: 700px;
	text-align: center;
	color: #1A6CD5;
	color: #fff;
}
.calc__transfer {
	opacity: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 50px;
	background: #fff;
	margin-left: -10px;
	padding: 0 10px;
	border-radius: 10px;
}
.calc__transfer:not([style]) {
	opacity: 1;
}
.calc__transfer[style] .dummy {
	display: none !important;
}

@media (max-width: 991px) {
	.calc__transfer {
		width: 100%;
	}
}
@media (max-width: 768px) {
	.calc__transfer {
		flex-wrap: wrap;
		box-shadow: 0 5px 10px 1px rgba(0,0,0,0.2);
	}
}
@media (max-width: 450px) {
	.calc__transfer {
		padding-left: 12px;
	}
}
.calc__info {
	display: flex;
	justify-content: space-between;
	-moz-column-gap: 20px;
			 column-gap: 20px;
	margin-bottom: 30px;
}
@media (max-width: 768px) {
	.calc__info {
		margin-bottom: 0px;
		-moz-column-gap: 2%;
				 column-gap: 2%;
	}
}
@media (max-width: 576px) {
	.calc__info {
		flex-wrap: wrap;
	}
}
.calc__element {
	display: flex;
	align-items: center;
	-moz-column-gap: 10px;
			 column-gap: 10px;
	width: 26%;
	color: #000;
}

@media (max-width: 768px) {
	.calc__element {
		width: 30%;
	}
}
@media (max-width: 576px) {
	.calc__element {
		width: 100%;
		margin-bottom: 15px;
	}
}
@media (max-width: 450px) {
		.calc__element {
				font-size: 14px;
		}
}
.calc__element img {
	width: 40px;
	height: 40px;
	opacity: 0.9;
	filter: invert(0);
}
.calc__element_bot {
	flex-direction: column;
	align-items: flex-start;
}
.calc__element_bot img {
	margin-bottom: 20px;
}
.calc__title {
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 30px;
	color: #1A6CD5;
	color: #000;
}
.calc__title_upper {
	text-transform: uppercase;
}
@media (max-width: 768px) {
		.calc__element_bot{
				color: #111;
		}
		.calc__element_bot img {
				filter: invert(0);
		}
		.calc__title_upper {
				color: #1A6CD5;
		}
		.calc__wallpaper{
				width: 800px;
				height: 450px;
				object-position: right;
		}
		.calc__transfer{
				margin-left: 0;
				padding-bottom: 10px;
		}
}
@media (max-width: 576px) {
		.calc__wallpaper{
				height: 690px;
		}
}
@media (max-width: 450px) {
		.calc__title_upper {
				font-size: 20px;
				text-align: center;
		}
		.calc__element_bot{
				text-align: center;
				max-width: 280px;
				margin: 0 auto;
				margin-bottom: 25px;
		}
		.calc__element_bot img {
				filter: invert(0);
				margin: 0 auto;
				margin-bottom: 25px;
		}
}
.calc__input {
	display: block;
	width: 30%;
	height: 50px;
	padding: 5px 10px;
	font-size: 18px;
}
.calc__people {
	width: 25%;
	border-left: 1px solid #bbb;
	border-top: 1px solid #bbb;
	border-bottom: 1px solid #bbb;
	height: 50px;
	margin-left: -4px;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media (max-width: 768px) {
	.calc__people {
		width: 50%;
		margin-top: -20px;
	}
}
@media (max-width: 450px) {
	.calc__people {
		margin-top: 0;
		width: 99%;
		margin-left: -3px;
		border: 1px solid #bbb;
	}
}
.calc__window {
	position: absolute;
	width: 100px;
	height: 60px;
	border-radius: 10px;
	padding: 8px;
	background: #fff;
	border: 1px solid #eee;
	box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.1);
	top: 105%;
	z-index: 99;
	cursor: default;
	display: flex;
	justify-content: center;
	align-items: center;
	-moz-column-gap: 10px;
			 column-gap: 10px;
}
.calc__plus, .calc__minus {
	position: absolute;
	right: 8px;
	width: 26px;
	height: 26px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	background: #eee;
	border-radius: 100px;
	border: 1px solid #aaa;
	-webkit-user-select: none;
		 -moz-user-select: none;
					user-select: none;
	cursor: pointer;
	transition-duration: 0.3s;
}
.calc__plus:hover, .calc__minus:hover {
	opacity: 0.6;
}
.calc__plus:active, .calc__minus:active {
	opacity: 0.1;
}
.calc__minus {
	padding-bottom: 2px;
	left: 8px;
}
.calc__button {
	width: 25%;
	height: 50px;
	cursor: pointer;
	border: none;
	background: #1A6CD5;
	font-size: 16px;
	color: #fff;
	font-weight: 600;
	transition-duration: 0.3s;
	border-radius: 0 10px 10px 0;
}
@media (max-width: 768px) {
	.calc__button {
		width: 50%;
		border-radius: 0;
		margin-top: -20px;
	}
}
@media (max-width: 450px) {
	.calc__button {
		margin-top: 0px;
		margin-left: -3px;
		width: 99%;
	}
}
.calc__button:hover {
	opacity: 0.8;
}
.calc__button img {
	width: 14px;
	height: 14px;
	margin-right: 5px;
	filter: invert(0);
}
.calc__cars {
	display: none;
	margin-top: 80px;
	z-index: 20;
}
.calc__map {
	width: 100%;
	max-width: 60%;
	height: 70px;
	border-radius: 10px;
	overflow: hidden;
}
@media (max-width: 991px) {
	.calc__map {
		width: 50%;
	}
}
@media (max-width: 768px) {
	.calc__map {
		width: 100%;
		max-width: 100%;
		margin-left: -6px;
		height: 90px;
	}
}
@media (max-width: 450px) {
	.calc__map {
		height: 120px;
	}
}

.ymaps * {
	position: relative !important;
}

.ymaps-2-1-79-balloon {
		display: none !important;
}

.ymaps-2-1-79-route-panel-input{
		/*box-shadow: none !important;
		border: 1px solid #ddd !important;*/
}

ymaps canvas {
		display: none !important;
}

.ymaps-2-1-79-route-panel__clear-row{
		display: none !important;
}

.ymaps-2-1-79-user-selection-none {
	display: none !important;
}

.ymaps-2-1-79-search__suggest{
	top: 25px !important;
}

.ymaps-2-1-79-map-bg {
	background-image: none !important;
}

.ymaps-2-1-79-controls__control_toolbar {
	margin-left: 0 !important;
}
@media (max-width: 450px) {
	.ymaps-2-1-79-controls__control_toolbar {
		height: 120px;
	}
}

.ymaps-2-1-79-controls__toolbar {
	margin-top: 0 !important;
}

.ymaps-2-1-79-control-popup-parent{
		margin-left: 2px !important;
}

.ymaps-2-1-79-control-popup {
	margin-left: 0px !important;
	margin-top: 0px !important;
	max-width: calc(100% + 1px) !important;
	box-shadow: none !important;
}
.ymaps-2-1-79-control-popup__header {
	display: none !important;
}

.ymaps-2-1-79-control-popup__layout {
	max-height: 70px !important;
}
@media (max-width: 768px) {
	.ymaps-2-1-79-control-popup__layout {
		max-height: 90px !important;
	}
}
@media (max-width: 450px) {
	.ymaps-2-1-79-control-popup__layout {
		max-height: 120px !important;
	}
}

.ymaps-2-1-79-route-panel__points {
	display: flex !important;
}
@media (max-width: 450px) {
		.ymaps-2-1-79-route-panel__points {
				flex-wrap: wrap !important;
		}
}

.ymaps-2-1-79-route-panel-input__input {
	height: 50px !important;
	width: 100% !important;
	border-left: 10px solid transparent !important;
}

.ymaps-2-1-79-route-panel__input {
	width: 30% !important;
}
@media (max-width: 991px) {
	.ymaps-2-1-79-route-panel__input {
		width: 25% !important;
	}
}
@media (max-width: 768px) {
	.ymaps-2-1-79-route-panel__input {
		width: 47.1% !important;
	}
}
@media (max-width: 450px) {
		.ymaps-2-1-79-route-panel__input {
				width: 99% !important;
		}
}

.ymaps-2-1-79-route-panel__input_from {
	box-sizing: border-box !important;
	margin-right: 30px !important;
}

.ymaps-2-1-79-route-panel-input_border {
	border-radius: 10px 0 0 10px !important;
}
@media (max-width: 768px) {
	.ymaps-2-1-79-route-panel-input_border {
		border-radius: 0 !important;
	}
}

.ymaps-2-1-79-route-panel__switch {
	box-sizing: border-box !important;
	position: absolute !important;
	top: 0px !important;
	left: calc(30% - 0px) !important;
	height: 50px !important;
	width: 30px !important;
	background: #ddd !important;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	padding-bottom: 5px !important;
}
@media (max-width: 991px) {
	.ymaps-2-1-79-route-panel__switch {
		left: 25% !important;
	}
}
@media (max-width: 768px) {
	.ymaps-2-1-79-route-panel__switch {
		left: 50% !important;
		margin-left: -18px !important;
		width: 33px !important;
	}
}
@media (max-width: 450px) {
	.ymaps-2-1-79-route-panel__switch {
		left: 100% !important;
		margin-left: -35px !important;
		height: 100px !important;
	}
}

..ymaps-2-1-79-route-panel-input:hover{
		box-shadow: none !important;
}

.ymaps-2-1-79-route-panel__switch-icon {
	width: 25px !important;
	height: 25px !important;
	background-size: cover !important;
	transform: rotate(90deg);
}

.ymaps-2-1-79-route-panel__inputs {
	padding: 10px 0 !important;
}

.ymaps-2-1-79-route-panel-input__location {
	display: none !important;
}

.ymaps-2-1-79-route-panel-input__icon {
	display: none !important;
}

.ymaps-2-1-79-map-copyrights-promo {
	display: none !important;
}

.ymaps-2-1-79-copyright__wrap {
	display: none !important;
}

.car {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: sans-serif;
	position: relative;
	display: flex;
	justify-content: space-between;
	height: 280px;
	box-shadow: 0px 5px 15px 1px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	padding: 20px 0;
	overflow: hidden;
	margin-bottom: 20px;
	background: #fff;
}
@media (max-width: 991px) {
	.car {
		height: 280px;
	}
}
@media (max-width: 768px) {
	.car {
		flex-wrap: wrap;
		height: auto;
	}
}
.car_hidden {
	display: none;
}
.car * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: sans-serif;
	position: relative;
}
.car__left {
	width: 33%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-right: 2px solid #eee;
}
@media (max-width: 768px) {
	.car__left {
		width: 50%;
	}
}
@media (max-width: 450px) {
	.car__left {
		width: 100%;
		margin-bottom: 16px;
	}
}
.car__label{
		position: absolute;
		top: -20px;
		left: 0;
		color: #fff;
		font-size: 14px;
		padding: 8px 20px;
		border-radius: 0 0 15px 0;
		z-index: 9;
}
.car__label_blue{
		background: linear-gradient(128deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
}
.car__label_green{
		background: linear-gradient(128deg, rgb(203, 255, 203) 0%, rgb(0, 201, 31) 35%, rgb(77, 169, 3) 100%);
}
.car__label_pink{
		background: linear-gradient(128deg, rgba(255,65,65,1) 0%, rgba(255,43,155,1) 35%, rgba(255,119,67,1) 100%);
}
.car__left img {
	width: 200px;
	height: 130px;
	-o-object-fit: cover;
		 object-fit: cover;
}
.car__cars {
	font-size: 10px;
	background: #eee;
	padding: 5px;
	border-radius: 5px;
	max-width: 200px;
}
.car__cars_premium {
	background: linear-gradient(-275deg, #fffbc5 0%, #e0ce8a 100%);
}
.car__info {
	width: 33.3333%;
	padding: 0px 20px 0 20px;
}
@media (max-width: 768px) {
	.car__info {
		width: 50%;
	}
}
@media (max-width: 450px) {
	.car__info {
		width: 100%;
	}
}
.car__title {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 10px;
}
@media (max-width: 450px) {
	.car__title {
		text-align: center;
	}
}
.car__stats {
	display: flex;
	-moz-column-gap: 20px;
			 column-gap: 20px;
}
@media (max-width: 450px) {
	.car__stats {
		justify-content: center;
	}
}
.car__people {
	display: flex;
	align-items: center;
	-moz-column-gap: 10px;
			 column-gap: 10px;
	opacity: 0.5;
	font-size: 16px;
	font-weight: 600;
	line-height: 20px;
}
.car__people img {
	width: 20px;
	height: 20px;
}
.car__bags {
	display: flex;
	align-items: center;
	-moz-column-gap: 10px;
			 column-gap: 10px;
	opacity: 0.5;
	font-size: 16px;
	font-weight: 600;
	line-height: 20px;
}
.car__bags img {
	width: 20px;
	height: 20px;
}
.car__description {
	font-size: 12px;
	margin-top: 15px;
}
.car__goods {
	font-size: 12px;
	color: #1A6CD5;
	margin-top: 15px;
}
.car__icon {
	position: relative;
	padding-left: 20px;
	margin-bottom: 5px;
}
.car__icon img {
	width: 14px;
	height: 14px;
	position: absolute;
	top: 0;
	left: 0;
}
.car__order {
	width: 33%;
	background: linear-gradient(275deg, rgb(209, 209, 209) 0%, rgb(237, 237, 237) 100%);
	margin-top: -20px;
	height: calc(100% + 40px);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
@media (max-width: 768px) {
	.car__order {
		width: 100%;
		margin-top: 20px;
		margin-bottom: -20px;
		padding: 10px 0;
	}
}
.car__order_premium {
	background: linear-gradient(-275deg, #fffbc5 0%, #e0ce8a 100%);
}
.car__price {
	font-size: 26px;
	color: #333;
	font-weight: 600;
}
.car__sale{
	font-size: 22px;
	color: #aaa;
	font-weight: 600;
}
@media (max-width: 768px) {
	.car__price {
		font-size: 18px;
	}
	.car__sale{
		font-size: 14px;
	}
}

.car__button {
	width: 200px;
	height: 50px;
	background: #1A6CD5;
	margin-top: 20px;
	border: none;
	color: #fff;
	cursor: pointer;
	font-weight: 600;
	transition-duration: 0.3s;
	border-radius: 10px;
	font-size: 15px;
}
@media (max-width: 768px) {
	.car__button {
		width: 50%;
		height: 36px;
		width: 160px;
		margin-top: 10px;
	}
}
.car__button_premium {
	background: #ddb832;
	color: #000;
}
.car__button:hover {
	opacity: 0.8;
}

.order {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: sans-serif;
	position: relative;
	display: flex;
	-moz-column-gap: 20px;
			 column-gap: 20px;
}
@media (max-width: 991px) {
	.order {
		flex-wrap: wrap;
	}
}
.order_hidden {
	display: none;
}
.order * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: sans-serif;
}
.order__body {
	width: 65%;
}
@media (max-width: 991px) {
	.order__body {
		width: 100%;
	}
}
.order__again {
	position: absolute;
	top: 30px;
	right: 20px;
}
@media (max-width: 450px) {
	.order__again {
		top: 5px;
	}
}
.order__block {
	width: 100%;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0px 5px 15px 1px rgba(0, 0, 0, 0.1);
	padding: 30px 20px;
	margin-bottom: 20px;
}
@media (max-width: 450px) {
	.order__block {
		padding: 30px 10px;
	}
}
.order__title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
}
@media (max-width: 450px) {
	.order__title {
		font-size: 16px;
	}
}
.order__gray {
	color: #aaa;
	font-size: 14px;
}
@media (max-width: 450px) {
	.order__gray {
		font-size: 12px;
	}
}
.order__info {
	margin: 20px 0;
}
.order__info_2{
		display: none;
}
.order__info::before {
	content: "";
	display: block;
	position: absolute;
	left: 15px;
	top: 12px;
	height: calc(100% - 30px);
	box-shadow: 0 0 0 0.5px #1A6CD5;
	width: 2px;
	background: #1A6CD5;
	z-index: 10;
}
.order__address {
	font-weight: 600;
	font-size: 16px;
	line-height: 16px;
	background: #eee;
	display: inline-flex;
	align-items: center;
	padding-right: 15px;
	border-radius: 30px;
}
@media (max-width: 450px) {
	.order__address {
		font-size: 14px;
	}
}
.order__address::before {
	content: "";
	box-sizing: border-box;
	display: inline-block;
	width: 32px;
	height: 32px;
	background: #1A6CD5;
	border: 8px solid #ddd;
	border-radius: 50px;
	margin-right: 10px;
	flex-shrink: 0;
}
.order__data {
	padding: 0px 0 30px 50px;
}
@media (max-width: 450px) {
	.order__data {
		padding: 0px 0 30px 35px;
	}
}
.order__name {
	font-size: 12px;
	color: #aaa;
	margin-bottom: 10px;
	margin-top: 20px;
	max-width: 480px;
}
.order__texarea {
	resize: none;
	height: 50px;
	width: 100%;
	padding: 10px;
	font-size: 14px;
	line-height: 15px;
	border: 1px solid #bbb;
	border-radius: 6px;
}
.order__texarea_big {
	height: 100px;
}
.order__input {
	padding: 10px;
	font-size: 16px;
	border: 1px solid #bbb;
	border-radius: 6px;
	height: 50px;
	width: 50%;
	flex-shrink: 0;
}
@media (max-width: 450px) {
	.order__input {
		font-size: 14px;
		width: 100%;
	}
}
.order__input_long {
	width: 100%;
}
.order__flex {
	display: flex;
	-moz-column-gap: 10px;
			 column-gap: 10px;
	align-items: center;
}
@media (max-width: 450px) {
	.order__flex {
		flex-wrap: wrap;
	}
}
.order__promo {
	padding: 10px;
	font-size: 16px;
	border: 1px solid #bbb;
	border-radius: 6px;
	height: 50px;
	margin-right: 10px;
}
@media (max-width: 450px) {
	.order__promo {
		font-size: 14px;
		margin: 0;
		margin-bottom: 10px;
		width: 100%;
	}
}
.order__accept {
	background: #1A6CD5;
	height: 50px;
	font-size: 16px;
	border: none;
	width: 200px;
	color: #fff;
	cursor: pointer;
	font-weight: 600;
	transition-duration: 0.3s;
	border-radius: 6px;
}
@media (max-width: 450px) {
	.order__accept {
		font-size: 14px;
		width: 100%;
	}
}
.order__accept:hover {
	opacity: 0.8;
}
.order__accept:active {
	opacity: 0.2;
}
.order__datetime {
	display: flex;
	-moz-column-gap: 10px;
			 column-gap: 10px;
}
.order__date, .order__time {
	width: 50%;
	height: 50px;
	border: 1px solid #bbb;
	border-radius: 6px;
	padding: 10px;
	font-size: 18px;
}
@media (max-width: 450px) {
	.order__date, .order__time {
		font-size: 14px;
	}
}
.order__border {
	width: calc(100% + 40px);
	height: 1px;
	border-bottom: 1px solid #ddd;
	margin: 30px 0;
	margin-left: -20px;
}
.order__border_small {
	margin: 20px 0;
	margin-left: -20px;
}
.order__box {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.order__smalltitle {
	font-weight: 600;
	margin-bottom: 5px;
}
.order__back {
	font-size: 14px;
	color: #aaa;
}
.order__note {
	font-size: 14px;
	color: #aaa;
	margin-bottom: 5px;
	max-width: 460px;
}
@media (max-width: 450px) {
	.order__note {
		font-size: 12px;
		padding-right: 15px;
	}
}
.order__checkbox {
	display: none;
}
.order__checkbox:checked + .order__label {
	background: #1A6CD5;
}
.order__checkbox:checked + .order__label::before {
	transform: translateX(100%);
}
.order__label {
	display: block;
	width: 60px;
	height: 32px;
	background: #aaa;
	border-radius: 100px;
	cursor: pointer;
	position: relative;
}
.order__label::before {
	content: "";
	display: block;
	position: absolute;
	transition-duration: 0.3s;
	background: #fff;
	border-radius: 100px;
	top: 2px;
	left: 2px;
	width: 28px;
	height: 28px;
	box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
}
.order__counter {
	width: 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #eee;
	border-radius: 50px;
	border: 6px solid #eee;
}
.order__value {
	width: 30px;
	text-align: center;
	text-align: center;
	height: 26px;
	border: none;
	background: #eee;
}
.order__plus, .order__minus {
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	background: #fff;
	border-radius: 100px;
	border: 1px solid #aaa;
	-webkit-user-select: none;
		 -moz-user-select: none;
					user-select: none;
	cursor: pointer;
	transition-duration: 0.3s;
}
.order__plus:hover, .order__minus:hover {
	opacity: 0.6;
}
.order__plus:active, .order__minus:active {
	opacity: 0.1;
}
.order__minus {
	padding-bottom: 2px;
}
.order__sticky {
	position: sticky;
	top: 20px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0px 5px 15px 1px rgba(0, 0, 0, 0.1);
	padding: 20px 20px;
	height: 220px;
	width: 35%;
}
@media (max-width: 991px) {
	.order__sticky {
		width: 100%;
		position: relative;
		margin-bottom: 20px;
		top: 10px;
	}
}
.order__line {
	display: flex;
	justify-content: space-between;
	padding-bottom: 2px;
	margin-bottom: 10px;
	font-size: 13px;
	flex-shrink: 0;
}
.order__line span {
	flex-shrink: 0;
}
.order__line_tarif {
	background: #1A6CD5;
	padding: 5px;
	border-radius: 6px;
	color: #fff;
	margin-left: -5px;
	width: calc(100% + 10px);
}
.order__line_head {
	justify-content: center;
	text-align: center;
	font-weight: 600;
	text-transform: uppercase;
}
.order__line_sum {
	font-size: 18px;
	font-weight: 600;
}
@media (max-width: 450px) {
	.order__line_sum {
		font-size: 14px;
	}
}
.order__sum {
	color: #1A6CD5;
}
.order__bot {
	width: 100%;
	border-bottom: 1px solid #ddd;
}
.order__final {
	width: 100%;
	background: #1A6CD5;
	color: #fff;
	padding: 20px;
	border-radius: 10px;
	border: none;
	font-size: 18px;
	cursor: pointer;
	font-weight: 600;
	transition-duration: 0.3s;
	border-radius: 6px;
}
@media (max-width: 450px) {
	.order__final {
		font-size: 14px;
	}
}
.order__final:hover {
	opacity: 0.8;
}
.order__final:active {
	opacity: 0.2;
}
.order__payment {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 10px;
}
@media (max-width: 450px) {
	.order__payment {
		flex-wrap: wrap;
	}
}
.order__radio {
	display: none;
}
.order__radio:checked + .order__variant::after {
	content: "";
	display: block;
	position: absolute;
	width: 16px;
	height: 16px;
	background: #1A6CD5;
	border-radius: 50px;
	margin-left: 4px;
	box-sizing: border-box;
}
.order__variant {
	display: block;
	border: 1px solid #1A6CD5;
	padding: 30px 15px;
	border-radius: 8px;
	width: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
}
@media (max-width: 450px) {
	.order__variant {
		width: 100%;
	}
}
.order__variant::before {
	content: "";
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 24px;
	height: 24px;
	background: #fff;
	border-radius: 50px;
	margin-right: 15px;
	border: 1px solid #1A6CD5;
	box-sizing: border-box;
}/*# sourceMappingURL=main.css.map */
.order__subtitle {
  margin-block: 10px;
  font-size: 14px;
}