﻿@import url('https://fonts.googleapis.com/css?family=Permanent+Marker&display=swap');


#confirmOverlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: -moz-linear-gradient(rgba(11,11,11,0.1), rgba(11,11,11,0.6)) repeat-x rgba(11,11,11,0.2);
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(11,11,11,0.1)), to(rgba(11,11,11,0.6))) repeat-x rgba(11,11,11,0.2);
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
}


#confirmPanel {
    width: 500px;
    height: 280px;
    position: fixed;
    border: 1px solid rgba(33, 33, 33, 0.6);
    border-radius: 10px;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.6) inset;
    background-color: lightseagreen;
    padding: 25px;
}


#confirmBody {
    height: 50%;
    width: 100%;
    background-color: white;
    color: black;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}


#confirmPanel h5 {
    font-size: 1.3rem;
    font-family: 'Cuprum','Lucida Sans Unicode', 'Lucida Grande', sans-serif;
    letter-spacing: 0.3px;
    color: white;
    font-weight: bold;
}

#confirmPanel i {
    margin-right: 10px;
}


#confirmPanel p {
    font-size: 0.9rem;
    font-family: 'Cuprum','Lucida Sans Unicode', 'Lucida Grande', sans-serif;
    line-height: 1.5;
}

#confirmPanel .btnPanel {
    /*background-color: #0094ff;*/
    margin-top: 30px;
    text-align: right;
}


#confirmPanel .button {
    color: white;
    display: inline-block;
    /*position: relative;*/
    /*margin-top: 30px;*/
    text-align: center;
    width: 100px;
    margin-left: 10px;
    /*left: 350px;*/
    font: 'Cuprum','Lucida Sans Unicode', 'Lucida Grande', sans-serif;
    padding: 2px 30px 2px 30px;
    text-decoration: none;
    border: 1px solid white;
    border-radius: 5px;
    cursor: pointer;
}


    #confirmPanel .button:hover {
        background-color: rgba(11,11,11,0.2);
        color: white;
    }