.modal {
    position: fixed;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal.open {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}

.modal-bg {
    position: absolute;
    background: #000;
    opacity: 0.4;
    width: 100%;
    height: 100%;
}

.modal-container {
    background: #D9534F;
    position: relative;
    padding: 30px;
    color: #fff;

    width: 418px;
    height: 349px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.modal-container svg {

}

.modal-container h1 {

    font-size: 23px;
    font-weight: 700;
    margin-top: 20px;
}

.modal-container h2 {
    
    font-size: 23px;
    font-weight: lighter;
}

.modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    outline: none;
    appearance: none;
    color: white;
    background: none;
    border: 0px;
    font-weight: bold;
    cursor: pointer;
}

.modal-btns {
    text-align: center;
    margin-top: 20px;
}

.modal-cancel-btn {
    width: 124px;
    height: 38px;
    border: none;
    background-color: #D9534F;
    color: #fff;
    cursor: pointer;
    border: 1px solid #fff;
}

.modal-cancel-btn:hover {
    background-color: #000;
    border: 1px solid #000;
    color: #fff;
}

.modal-delete-btn {
    width: 104px;
    height: 38px;
    border: none;
    background-color: #fff;
    color: #D9534F;
    cursor: pointer;
    margin-left: 15px;
}

.modal-delete-btn:hover {
    background-color: #000;
    color: #fff;
}

.file-delete-btn {
    position: relative;
    top: 14px;
    left: 10px;
    cursor: pointer;
}

.file-delete-svg circle {
    fill: #ECE9E7;
}

.file-delete-svg:hover path,
.file-delete-svg:hover circle {
    fill: #282828;
    stroke: white;
}

.modal-close-svg:hover circle {
    fill: #000;
}

.modal-close-svg:hover path {
    fill: #fff;
}

.btn-primary {
    background-color: #4F2FF2 !important;
    border-color: #4F2FF2 !important;
}

.btn-primary:hover {
    background-color: #000000 !important;
    border-color: #000000 !important;
}