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

.modal-content {
    display: grid;
    margin: 15% auto;
    padding-bottom: 16px;
    background-color: #121212;
    border: 2px solid #404040;
    width: 70%;
}

.modal .top {
    display: flex;
    align-items: center;
    height: 64px;
    padding: 0 24px;
}

.modal .top .title {
    margin-bottom: 0;
}

.modal img {
    width: 24px;
    height: 24px;
    margin-left: auto;
    opacity: .6;
    cursor: pointer;
}

.modal img:hover,
.modal img:focus {
    opacity: .8;
}

.modal .link {
    padding: 16px 0 16px 24px;
    cursor: pointer;
}

.modal .link:hover {
    background: #333333;
    color: white;
}

.modal .link.unavailable {
    display: none;
}