/* Popup */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}
.popup__content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
}
.popup__bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
}

.popup__body {
    width: 450px;
    max-width: 100%;
    background: #fff;
    padding: 40px 40px;
    border-radius: 20px;
    color: #000;
}
.popup__title {
    font-size: 50px;
    line-height: 100%;
    margin-bottom: 20px;
    max-width: 430px;
    font-weight: 700;
    text-transform: uppercase;
}
.popup__close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}
.popup__close svg {
    width: 18px;
    height: 18px;
}
.popup__close:hover {
    opacity: .7;
}

.nav__user {
    display: flex;
    align-items: center;
}
.nav__user span {
    margin-right: 15px;
}

.card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.card__header .card-title {
    margin-bottom: 0;
    font-size: 1.625rem;
}

.table__actions {
    display: flex;
    align-items: center;
}
.table__actions a {
    margin-right: 10px;
}
.table__actions a:last-child {
    margin-right: 0;
}

.form__sort {
    background-color: #ced4da;
    padding: 10px;
    list-style: none;
    margin: 0;
    max-width: 450px;
}
.form__sort li {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    padding: 10px;
    cursor: pointer;
    background: #fff;
    margin-bottom: 10px;
    position: relative;
}
.form__sort li:last-child {
    margin-bottom: 0;
}

.form__sort select {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translate(0, -50%);
    border: 1px solid #ced4da;
    font-size: 14px;
}

.form__file-preview {
    margin: 10px 0;
}
