/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top */
    padding-top: 10vw; /* Location of the box */
    padding-left: 60vw;
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
}

/* Modal Content */
.modal-content {
    background-color: #323232;
    margin-left: 0vw;
    margin-right: 0vw;
    padding: 20px;
    border-radius: 0.5vw;
    width: 18.0vw;
    height: 8.5vw;
}

p.modal-txt {
    font-family: "Roboto-Regular";
    color: #F1F1F1;
    font-size: 1.05vw;
}

.btn-row {
    width: 10.0vw;
    height: 2.8vw;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    
}

.button-left {
    font-family: "Roboto-medium";
    color: #acacac;
    font-size: 1.56vw;
    padding-top: 0.2vw;
    border: solid #D4B063 0.2vw;
    border-radius: 1.3vw 0.2vw 0.2vw 1.3vw;
    width: 4.9vw;
    height: 2.2vw;
    background-color: #323232;
    text-align: center;
}

.button-right {
    font-family: "Roboto-medium";
    color: #f1f1f1;
    font-size: 1.56vw;
    padding-top: 0.2vw;
    margin-left: 0.2vw;
    border: solid #D4B063 0.2vw;
    border-radius: 0.2vw 1.3vw 1.3vw 0.2vw;
    width: 4.9vw;
    height: 2.2vw;
    background-color: #323232;
    text-align: center;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}