.error__stock {
	color: #EF0022;
}

.checkout__inner .text-danger {
	color: #EF0022;
	text-align: right;
}

.checkout__description.cart-empty {
	justify-content: center;
}

.checkout__description.cart-empty .shopping-cart-empty {
	margin: 60px 0 80px;
}

.checkout__modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 10000;
	display: flex;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
	overflow-y: auto;
	padding: 10px;
}

.checkout__modal.open {
	opacity: 1;
	visibility: visible;
	background: rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(12.5px);
}

.checkout__modal__content {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	max-width: 436px;
	width: 100%;
	background: #fff;
	border-radius: 20px;
	padding: 24px 24px 0 24px;
	margin: auto;
}

.checkout__modal__close {
	width: 24px;
	height: 24px;
	aspect-ratio: 1/1;
	background: none;
	border: none;
	cursor: pointer;
}

.checkout__modal__content-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.checkout__modal__title {
	font-size: 24px;
	font-weight: 700;
	line-height: 120%;
	letter-spacing: 0.12px;
	margin-bottom: 16px;
	text-align: center;
}

.checkout__modal__body {
	width: 100%;
	margin-bottom: 24px;
}

.checkout__modal__body p {
	color: #000;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.08px;
}

.checkout__modal__footer {
	display: flex;
	width: calc(100% + 48px);
	border-top: 1px solid var(--color-gray-light);
}

.checkout__modal__footer .btn-action:first-child {
	border-right: 1px solid var(--color-gray-light);
}

.checkout__modal__footer .btn-action {
	width: 100%;
	min-height: 56px;
	padding: 16px 0;
	background: transparent;
	border: none;
	border-radius: 0;
}

#modal-return-home .checkout__modal__content .checkout__modal__footer .btn-text-edit {
	color: var(--color-red);
}

@media (max-width: 768px) {
	.checkout__right .checkout__summary-value {
		margin-top: 0;
	}
}

.checkout .dropdown input[type="text"] {
	width: 100%;
}

.checkout ul.dropdown-address {
	width: 100%;
	margin-top: 8px;
	transform-origin: top;
	border-radius: 16px;
	transition: 0.2s ease-in-out;
	z-index: 100;
	padding: 0 24px;
	list-style: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	max-height: 230px;
	overflow-y: auto;
	background: white;
}

.checkout ul.dropdown-address li {
	padding: 16px 0;
	background-color: var(--color-light);
	border-bottom: 1px solid #E3E3E3;
	transition: 0.3s;
	cursor: pointer;
	list-style: none;
	color: var(--color-dark);
	font-size: 16px;
	font-weight: 500;
	line-height: 10px;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.checkout ul.dropdown-address li a:hover {
	color: var(--color-dark);
}

.checkout .dropdown__filter .dropdown__filter-input {
	position: absolute;
	cursor: auto;
	left: 0;
	right: 0;
	padding-left: 16px;
	padding-right: 55px;
}

.checkout__delivery-item .dropdown__filter .dropdown__filter-input {
	padding-left: 56px;
}

@media (max-width: 768px) {
	.checkout .dropdown__filter .dropdown__filter-input {
		font-size: 16px;
		line-height: 24px;
		padding-left: 12px;
		min-height: 42px;
		height: 42px;
	}

	.checkout__delivery-item .dropdown__filter .dropdown__filter-input {
		font-size: 14px;
		font-weight: 400;
		line-height: 18px;
		padding-left: 56px;
	}
}

.checkout #delivery-methods-group .checkout__form-delivery-select.address-input::after {
	background: none;
}

.checkout .delivery-progress {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-bottom: 24px;
	border-bottom: var(--border);
	margin-bottom: 25px;
}

.checkout .delivery-progress__text {
	display: flex;
	align-items: center;
	gap: 16px;
}

.checkout .delivery-progress__icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.checkout .delivery-progress {
		padding-top: 24px;
	}
}

.checkout__payment-options p {
	padding: 0 16px;
	color: var(--color-gray-label);
}