﻿/*提供輸入框+清除按鈕的css*/

.modal-box, .close-icon, .modal-wrapper {
	position: relative;
	padding: 5px;
}

.modal-wrapper {
	width: 100%;
	margin: auto;
	margin-top: 0px;
}

.modal-box {
	width: 80%;
	border: 1px solid #ccc;
	outline: 0;
	border-radius: 5px;
}

.modal-box:focus {
	box-shadow: 0 0 15px 5px #b0e0ee;
	border: 2px solid #bebede;
}

.close-icon {
	border: 1px solid transparent;
	background-color: transparent;
	display: inline-block;
	vertical-align: middle;
	outline: 0;
	cursor: pointer;
}

.close-icon:after {
	content: "X";
	display: block;
	width: 15px;
	height: 15px;
	position: absolute;
	background-color: #FA9595;
	z-index: 1;
	right: 20px;
	top: 0;
	bottom: 0;
	margin: auto;
	/*padding: 2px;*/
	border-radius: 50%;
	text-align: center;
	color: white;
	font-weight: normal;
	font-size: 12px;
	box-shadow: 0 0 2px #E50F0F;
	cursor: pointer;
}

.modal-box:not(:valid) ~ .close-icon {
	/*display: none;*/
}
