﻿.modal-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(194, 198, 205, 0.8);
    display: none;
}

.modal {
    width: 400px;
    font-size: 12px;
    background-color: white;
    position: relative;
    margin: auto;
    width: 400px;
    top: 56px !important;
    border-radius: 4px;
}

.modal-header {
    font-size: 24px;
    font-weight: 500;
    padding-left: 16px;
    padding-top: 8px;
    border-bottom: 1px gainsboro solid;
    padding-bottom: 4px;
}

.modal-body {
    text-align: left;
    padding: 20px;
    padding-top: 10px;
    font-size: 16px;
}

.modal-buttons {
    text-align: right;
    margin-top: 16px;
}

.modal-true {
    background: none;
    padding: 5px 30px;
    border-radius: 4px;
    background-color: #176bfb;
    border: 2px solid #176bfb;
    color: white;
    font-size: 14px;
    outline: none;
}

.modal-false {
    background: none;
    padding: 5px 30px;
    border-radius: 4px;
    border: 2px solid #c2c6cd;
    background-color: #ffffff;
    color: #616b7d;
    margin-right: 15px;
    font-size: 14px;
    outline: none;
}


