#cwc-city-selector-popup-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999;
	padding: 20px;
}

#cwc-city-selector-popup {
	width: 100%;
	max-width: 360px;
}

.cwc-popup-content {
	position: relative;
	background: #f5f5f5;
	border-radius: 20px;
	padding: 34px 20px 22px;
	box-shadow: 0 18px 40px rgba(0,0,0,.18);
	text-align: center;
}

.cwc-popup-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #d9d9d9;
	margin: 0 auto 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
}

.cwc-popup-icon svg {
	width: 28px;
	height: 28px;
	display: block;
}

.cwc-popup-title {
	margin: 0 0 12px;
	font-size: 28px;
	line-height: 1.15;
	font-weight: 700;
	color: #2f2f2f;
}

.cwc-popup-subtitle {
	margin: 0 0 24px;
	font-size: 14px;
	line-height: 1.5;
	color: #787878;
}

.cwc-field-group {
	text-align: left;
	margin-bottom: 14px;
}

.cwc-field-label {
	display: block;
	margin-bottom: 7px;
	font-size: 14px;
	font-weight: 600;
	color: #5c5c5c;
}

.cwc-select-wrap {
	position: relative;
}

.cwc-select-wrap::after {
	content: "";
	position: absolute;
	right: 16px;
	top: 50%;
	width: 10px;
	height: 6px;
	transform: translateY(-50%);
	pointer-events: none;
	background-repeat: no-repeat;
	background-size: 10px 6px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23A0A0A0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.cwc-dept-select,
.cwc-city-select {
	width: 100%;
	height: 44px;
	border: 1px solid #d8d8d8;
	border-radius: 24px;
	background: #f3f3f3;
	padding: 0 38px 0 16px;
	font-size: 14px;
	color: #555;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	outline: none;
	box-shadow: none;
}

.cwc-dept-select:focus,
.cwc-city-select:focus {
	border-color: #cfcfcf;
	background: #fff;
}

.cwc-city-select:disabled {
	opacity: .6;
	cursor: not-allowed;
}

.cwc-popup-note {
	margin: 14px 0 18px;
	font-size: 13px;
	color: #7a7a7a;
	text-align: center;
}

.cwc-popup-note a {
	color: #d9534f;
	text-decoration: none;
	font-weight: 600;
}

.cwc-confirm-city-button {
	width: 100%;
	height: 50px;
	border: 0;
	border-radius: 28px;
	background: #e5534c !important;
	color: #ffffff !important;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: background-color .2s ease, transform .2s ease;
}

.cwc-confirm-city-button:hover {
	background: #ff0000 !important;
	color: #ffffff;
}

.cwc-confirm-city-button:focus,
.cwc-confirm-city-button:active {
	color: #ffffff;
}