.base-modal{
    display: block;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.51);
}


.base-modal-content{
    background-color: rgb(255, 255, 255);
    margin: auto auto;
    top: 28%;
    padding: 20px;
    border: 1px solid #747474;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    position: relative;
    text-align: center;
}


.base-modal-close{
    position: absolute;
    top: 1px;
    right: 10px;
    font-size: 20px;
    font-weight: bold;
    color: rgba(29, 29, 29, 0.87);
    cursor: pointer;
}
.base-modal-close:hover{
    color: red;
}


.base-modal-ok{
    background-color: #3c9eff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    padding: 5px 10px;
    cursor: pointer;
    margin-top: 10px;
}
.base-modal-ok:hover{
    background-color: #007bff;
}


.base-modal-success {
    color: #000000;
    font-size: 15px;
}
.base-modal-error {
    color: rgba(255, 0, 0, 0.74);
    font-size: 15px;
}
