.order {
	margin-top: 4em;
}

.back {
	display: flex;
	align-items: center;
	margin-left: calc(-0.85em - 0.4em);
	width: fit-content;
}
	.back::before {
		content: "←";
		margin-right: 0.4em;
		text-decoration: underline;
		text-decoration-color: black;
	}

h1 {
	margin-top: 0.1em;
	margin-bottom: 1.5rem;
}

form {
	display: flex;
	gap: 6em;
}
	form .credentials {
		min-width: 600px;
	}

.field {
	display: flex;
	align-items: baseline;
	gap: 1em;
	margin-bottom: 1em;
	position: relative;
}
	.field > span {
		min-width: 8em;
  		width: 8em;
	}
	.field > small {
		font-size: 1em;
		position: absolute;
		left: 9em;
		bottom: 0;
		opacity: 0.8;
		transform-origin: top left;
		transform: scale(0.7);
		line-height: 1em;
	}
		.field:has(small) {
			padding-bottom: 1.25em;
		}

	.field input, .field textarea, .product input {
		flex-grow: 1;
		padding: 0;
		background: none;
		border: none;
		border-bottom: 1px solid var(--color-dark);
		outline: none !important;
		color: white;
		font-size: inherit;
		font-family: inherit;
	}
		.field input:focus, .field textarea:focus, .product input:focus {
			border-color: var(--color-grayish);
		}
		.field input::placeholder, .field textarea::placeholder {
			color: var(--color-gray);
			font-weight: 370;
		}
		.field input[invalid]:not(:focus):not(:focus-visible) {
			border-color: var(--color-red);
		}

		.field input[name="phone"] {
			width: 10em;
			flex-grow: 0;
		}
		.field input[name="city"] {
			width: 15em;
			flex-grow: 0;
		}
		.field input:not([type="checkbox"]), .product input {
			height: 1.5em;
		}

	.field textarea {
		background-image: linear-gradient(var(--color-dark) 1px,transparent 0);
		background-attachment: local;
		background-clip: content-box;
		background-color: transparent;
		background-position: 0 -1px;
		background-repeat: repeat-y;
		background-size: 100% 27px;
		height: 108px;
		line-height: 27px;
		resize: none;
	}

	.field svg {
		height: 1em;
		width: auto;
		margin-left: -0.6em;
	}

	.field .suggestions {
		position: absolute;
		left: 9em;
		top: 100%;
		z-index: 2;
		padding: 0.2em 0;
		background: black;
		width: calc(15em + 0.4em);
		outline: 1px solid var(--color-dark);
		margin-left: -0.4em;
		line-height: 1;
	}

.suggestion {
	font-size: 0.8em;
	padding: 0.3em 0.45rem;
	cursor: pointer;
}
	.suggestion:hover {
		background-color: var(--color-dark);
	}

	.suggestion-region {
		font-size: 0.8em;
		opacity: 0.5;
		margin-left: 0.2em;
	}
		.suggestion:hover .suggestion-region {
			opacity: 0.58;
		}

	.suggestion mark {
		color: Mark;
		background: none;
	}

.delivery-field {
	width: 45%;
}
.delivery {
	display: flex;
	gap: 1.2em;
	flex-grow: 1;
	align-items: baseline;
}
	.delivery-type {
		font-weight: 400;
		text-decoration: underline;
		text-decoration-style: dashed;
		text-decoration-color: color-mix(in srgb, currentColor, transparent 50%);
		text-underline-offset: 0.25em;
		cursor: pointer;
	}
		.delivery-type.active {
			text-decoration-style: solid;
			text-decoration-color: currentColor;
			text-decoration-thickness: 2px;
			cursor: default;
			font-weight: 700;
		}

	.delivery small {
		height: 0; 
		cursor: text;
		line-height: 1.25;
		font-size: 65%;
		margin-left: -1em;
	}


form section:nth-child(2) {
	/* background-color: color-mix(in srgb, var(--color-blue), transparent 80%); */
	outline: 1px solid var(--color-dark);
	padding: 1.5em 1em;
	height: fit-content;
	position: sticky;
	top: 1.5em;
}

.product {
	display: flex;
	gap: 0.6em;
	margin-bottom: 1em;
}
	.product-image {
		min-width: 4em;
		width: 50%;
		width: auto;
		scale: 1.2;
	}
		.product-image-container {
			position: relative;
			aspect-ratio: 1/1;
			margin-right: 5px;
			overflow: clip;
		}
	.product-text {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	.product-name {
		font-size: 65%;
		width: 100%;
		max-width: min-content;
		line-height: 1;
		margin-left: -0.3rem;
		margin-bottom: 0.5rem;
	}
	.product-price {
		margin-bottom: -5px;
	}
	.product-quantity {
		width: 4ch;
		font-weight: inherit;
		text-align: right;
		padding-right: 5px !important;
		margin-left: -5px;
	}
	.product-remove {
		position: absolute;
		top: 0;
		right: 0;
		background-color: var(--color-red);
		color: white;
		width: 1em;
		height: 1em;
		align-items: center;
		justify-content: center;
		display: flex;
		cursor: pointer;
		border: none;
		font-size: 1em;
	}

.delivery-price {
	display: flex;
  	justify-content: space-between;
	margin-bottom: 1em;
}

.total {
	font-weight: 700;
	font-size: 3em;
	margin-top: 1em;
}
	.total[v-cloak] {
		display: none;
	}

.go {
	width: 100%;
	font-size: 1.5em;
	font-weight: 700;
	background-color: color-mix(in srgb, var(--color-blue), transparent 10%);
	padding: 0.6em;
	border: none;
	color: white;
	cursor: pointer;
	transition: opacity 0.3s;
}
	.go:hover {
		background-color: var(--color-blue);
	}


.cdek-map, [id*='cdek-map'] {
	filter: invert(1) hue-rotate(180deg) brightness(1.5) contrast(0.9);
	width: 100%;
	height: 450px;
}
.cdek-map + small,
[id*='cdek-map'] + small {
	font-size: 60%;
	display: block;
	opacity: 0.6;
}

[id*='cdek-map'] * {
	font-family: Commissioner, sans-serif !important;
	box-shadow: none !important;
}
.cdek-r4yrgz.cdek-32nljf {
  height: 100% !important;
}
.ymaps3x0--control__background {
	box-shadow: none !important;
}
.cdek-luckad[data-v-8f7e4e68] {
	box-shadow: none !important;
	background-color: color-mix(in srgb, currentColor, transparent 90%) !important;
}
.cdek-mfqq2r[data-v-8f7e4e68] {
	background-color: color-mix(in srgb, currentColor, transparent 82%) !important;
}
	.cdek-mfqq2r[data-v-8f7e4e68] .cdek-qzbpbh[data-v-8f7e4e68]:not(#z) {
		font-weight: 650 !important;
	}
	.cdek-qzbpbh[data-v-8f7e4e68] {
		text-transform: unset !important;
	}
.cdek-xvnk8x[data-v-8f7e4e68] {
	background: none !important;
	padding: 0 !important;
}
.cdek-j8124d[data-v-49af0b4e] {
	color: black;
}
.cdek-32nljf[data-v-287a28bc], 
.cdek-luckad[data-v-8f7e4e68], 
.cdek-xvnk8x[data-v-8f7e4e68].cdek-b9aure {
	border-radius: 0 !important;
}
.cdek-dorbss[data-v-d73c2027],
.cdek-xvnk8x[data-v-8f7e4e68] {
	filter: hue-rotate(70deg) !important;
}
.cdek-j30l3x {
	margin-top: 1em;
}
.cdek-7aru09 {
	transform: scale(0.7);
	transform-origin: right;
}
.cdek-xvnk8x.cdek-2yvgu6 {
	display: none !important;
}
.ymaps3x0--map-copyrights__container,
.ymaps3x0--controls:nth-child(4),
.ymaps3x0--controls:nth-child(2) > ymaps:nth-child(2) {
	display: none;
}
  

menu {
	position: absolute !important;
}