.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1100;
}

.custom-modal.hidden {
    display: none;
}

.custom-modal .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    min-width: 60vw;
    min-height: 75vh;

    border-radius: 0.25rem;
    padding: 1.5rem;
}

.custom-modal .content .top {
    overflow: auto;
    display: flex;
    align-items: center;

    padding-bottom: 1.5rem;
    border-bottom: 1px solid #ced4da;
}

.custom-modal .content .top .close {
    font-size: 2rem;
    cursor: pointer;
}

.custom-modal .content .top input {
    float: right;
    width: 15rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;

    /* flex item to the right */
    margin-left: auto;
}

.custom-modal .content .container .row{
    min-height: 10rem;
}

.custom-modal .content .container .row img{
    width: 100%;
    height: auto;
    max-height: 7.5rem;
    border-radius: .125rem;
}

.custom-modal .content .container .row p.green:hover{
    cursor: pointer;
}
