/* 遮罩层 */
.msg__overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	background-color: rgba(0, 0, 0, .4);
	transition: all .3s;
	opacity: 0;
}




/*=====================
01. Deby CUSTOM RADIO BUTTONS STYLE 1 CSS
=======================*/

.card-style1 {
	position: fixed;
	top: 40%;
	left: 50%;
	z-index: 10;
	transition: all .3s;
	transform: translate(-50%, -50%) scale(0, 0);
	background: #fff;
	box-shadow: 0 0 10px #eee;

	max-width: 80%;
	width: 70%;
	margin: 0px auto;
	border-radius: 5px;
	padding: 20px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.card-style1 .title {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 30px;
}

.card-style1 label.box {
	background: #ddd;
	margin-top: -20px;
	padding: 5px 6px;
	display: flex;
	border-radius: 5px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all 0.25s ease;
	font-size: 13px;
	font-weight: 500;
}

.card-style1 #option1-1:checked~label.first,
.card-style1 #option1-2:checked~label.second,
.card-style1 #option1-3:checked~label.third,
.card-style1 #option1-4:checked~label.four{
	border-color: #00aa00;
	background: #ffffff;
}

.card-style1 label.box:hover {
	background: #ffffff;
}

.card-style1 label.box .circle {
	height: 22px;
	width: 22px;
	background: #ccc;
	border: 5px solid transparent;
	display: inline-block;
	margin-right: 15px;
	border-radius: 50%;
	transition: all 0.25s ease;
	box-shadow: inset -4px -4px 10px rgba(0, 0, 0, 0.2);
}

.card-style1 #option1-1:checked~label.first .circle,
.card-style1 #option1-2:checked~label.second .circle,
.card-style1 #option1-3:checked~label.third .circle,
.card-style1 #option1-4:checked~label.four .circle{
	border-color: #00aa00;
	background: #fff;
}

.card-style1 label.box .option {
	display: flex;
	width: 100%;
	align-items: center;
}

.card-style1 input[type="radio"] {
	display: none;
}

/* 弹出框底部 */
.card-style1 .card-footer {
	border: 0px;
	background: #fff;
	padding: 10px 10px 0px 10px;
	display: flex;
	flex-direction: row-reverse;
}

.card-style1 .card-footer .card-footer-btn {
	width: 70px;
	border: 0 none;
	color: #fff;
	outline: none;
	font-size: 15px;
	border-radius: 2px;
	margin-left: 5px;
	cursor: pointer;
}

.card-style1 .card-footer .card-footer-confirm-button {
	background-color: #4896f0;
}

.card-style1 .card-footer .card-footer-confirm-button:active {
	background-color: #1d5fac;
}