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

#modal-content {
    background-color: transparent;
    margin: auto;
    padding: 20px;
    width: 75%;
    border: none !important;
    position: relative;
    align-items: center;
    justify-content: center;
    display: flex;
}

#modal-content img {
    cursor: pointer;
}

.rad50 {
    border-radius: 50px;
}

.rad25 {
    border-radius: 25px;
}


.close {
    font-size: 28px;
    font-weight: bold;
    bottom: -50px;
    color: black;
    display: flex;
    background: white;
    /* padding: 10px; */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
    margin: auto
}

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

.modal-backdrop.show {
    z-index: 0 !important
}