/* Intro of game */
@charset "utf-8"; 

.confirm {
    background: rgba(0,0,0,0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}

.confirm .confirm-wrap {
    background: #ffffff;
    padding: 15px;
    box-sizing: border-box;
    position: absolute;
    width: 500px;
    left: 50%;
    margin-left: -250px;
    top: 30%;
    border: 5px solid #ffd15f;
    border-radius: 20px;
}

.confirm .confirm-wrap .confirm-close {
    width: 50px;
    height: 50px;
    background: url(img/btn-close.png);
    background-size: cover;
    cursor: pointer;
    position: absolute;
    right: -25px;
    top: -25px;
}

.confirm .confirm-wrap .confirm-title {
    font-family: dimbo;
    font-size: 40px;
    text-align: center;
    color: #494949;
    margin: 10px auto 10px;
}
.confirm .confirm-wrap .confirm-messaje {
    font-family: dimbo;
    font-size: 28px;
    text-align: center;
    color: #494949;
    margin: 10px auto 40px;
}

.confirm .confirm-wrap .confirm-yes {
    font-family: 'dimbo', sans-serif;
    color: #ffffff;
    font-size: 30px;
    float: right;
    text-shadow: 3px 3px 0px #002f22;
    text-align: center;
    border: 5px solid #fcd66d;
    border-radius: 15px;
    height: 50px;
    line-height: 50px;
    padding: 0px 25px;
    background: #119520;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.75);
    cursor: pointer;
}

.confirm .confirm-wrap .confirm-yes.acept {
	float: none;
	margin: 0px auto;
	width: 100px;
}

.confirm .confirm-wrap .confirm-no {
    font-family: 'dimbo', sans-serif;
    color: #ffffff;
    font-size: 30px;
    float: left;
    text-shadow: 3px 3px 0px #002f22;
    text-align: center;
    border: 5px solid #fcd66d;
    border-radius: 15px;
    height: 50px;
    line-height: 50px;
    padding: 0px 25px;
    background: #119520;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.75);
    cursor: pointer;
}
