@charset "utf-8";

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

#claimModal .modal .modal-dialog{
    width:750px;
}

.modal .eva_list_element a{
    color:#ff600f;
}

.modal .modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 0;
    border-radius: 8px;
    width: 80%;
    max-width: 750px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal .modal-header {
    background-color: #252525;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 1rem;
}

.modal .modal-title {
    font-size: 18px;
    font-weight: bold;
}

.modal .close {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}

.modal .close:hover,
.modal .close:focus {
    color: #ff600f;
    text-decoration: none;
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    padding: 1rem;
}

.modal-confirm {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
}
.modal-confirm-content {
    background: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 400px;
    text-align: center;
}
.close-confirm {
    float: right;
    font-size: 20px;
    cursor: pointer;
}
.modal-confirm-actions {
    margin-top: 20px;
    display: flex;
    justify-content: space-evenly;
}

.modal-link{
    cursor: pointer;
}