.modal {
    position: fixed;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    box-shadow: 0 0 30px 20px rgba(0,0,0,0.3);
    z-index: 10;
    width: 500px;
    max-width: 90%;
}

.modal-header,
.modal-content,
.modal-footer {
    padding: 10px;
}

.modal-content-max-height {
    max-height: 300px;
    overflow: auto;
}

.modal-header {
    position: relative;
}

.modal-close {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    display: block;
    background-image: url('/assets/img/close.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}

.modal-header .modal-title {
    font-size: 1.2rem;
    font-weight: 500;
}

.modal-footer .modal-group-buttons {
    display: flex;
    justify-content: flex-end;
}

.modal-group-buttons .btn {
    margin-right: 15px;
}

.modal-group-buttons .btn:last-child {
    margin-right: 0;
}

.modal .spinner {
    position: relative;
    top: 5px;
    margin-right: 10px;
}

.changed-files-list {
    padding-top: 1rem;
}

.changed-file {
    line-height: 2;
}

#modal-checking-install .modal-content {
    text-align: center;
}