.delivery-method-popup {
	position: fixed;
	inset: 0;
	display: flex;
	flex-flow: column;
	overflow: auto;
	background-color: $color-white;
	z-index: 999999;
}

.delivery-method-popup__header {
	position: sticky;
	top: 0;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	min-height: 56px;
	padding: 0 16px;
	border-bottom: 1px solid $color-border;
	background-color: white;
	box-sizing: border-box;
	z-index: 2;
}

.delivery-method-popup__header__title {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.03em;
}

.delivery-method-popup__header__btn {
	width: 24px;
	height: 24px;
	color: $color-gray-md;

	svg {
		width: 100%;
		height: 100%;
	}
}

.delivery-method-popup__content {
	flex: 1;
	display: flex;
	flex-flow: column;
	gap: 16px;
	padding: 16px 16px 0;
}

.delivery-method-popup__submit-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	margin: 16px;
	padding: 0px 18px;
	border-radius: 14px;
	background-color: $color-green;
	font-size: 16px;
	font-weight: 500;
	line-height: 18px;
	color: $color-white;
	box-sizing: border-box;
}
