@charset "UTF-8";

/* miso confirm css*/

#misoBlinder {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10000;
	width	: 100%;
	height: 100%;
	opacity	: 0.5;
	background-color: black;
	display : none;
}

#misoConfirmBox {
	position: absolute;
	top: calc((100% - 150px) / 2);
	left: calc(( 100% - 200px) / 2 );
	z-index	: 10001;
	width	: 200px;
   	height: 100px;
	background-color: white;
    border-radius: 0px 0px 10px 10px;
    box-shadow : 3px 4px 5px 1px rgba(0, 0, 0, 0.2);
    display : none;
}

#misoConfirmBox #miso-message-text {
    font-size: 14px;
    text-align: center;
}

#misoConfirmBox #miso-buttonWrap {
	text-align: center;
}

#misoConfirmBox .misoMessageTextWrap {
	border-top: 5px solid #1caf9a;
	border-bottom: 1px solid #EEEEEE;
    margin-bottom: 3px;
    height:70px;
}

#misoConfirmBox .misoMessageTextWrap > table{
	width: 100%;
	height: 100%;
}

.misoButton {
	border: 1px solid #ccc;
    border-radius: 4px;
    color: #333;
    background-color: white;
    font-size: 12px;
	margin: 0 2.4px;
    padding: 2px 15px;
}

.misoButton:hover {
	background-color: #EBEBEB;
}


