.modal .modal-dialog {
    width: 80%;
}

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

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 85%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.media-library {
    display: flex;
    flex-wrap: wrap;
    overflow: scroll;
    height: 500px;
}

.media-item {
    margin: 10px;
    text-align: center;
}

.media-item img {
    max-width: 300px;
}

.media-item {
    position: relative;
    cursor: pointer;
}

.media-item .selection-icon {
    display: none;
    position: absolute;
    top: 5px;
    right: 5px;
    color: #ffffff;
    background-color: #2271b1;
    width: 25px;
    height: 25px;
    /* border-radius: 50%; */
    border: 2px solid #2271b1;
    text-align: center;
    line-height: 25px;
}

.media-item.selected .selection-icon {
    display: block;
}

.nav-tabs .nav-link {
    font-size: 16px;
    font-weight: 600;
}
