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

.modal-content__top {
    background-color: #f4f4f4;
    margin: 20% auto;
    width: 80%;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
    animation-name: modalopen;
    animation-duration: 1s;
}

@media (max-width: 736px) {
    .modal-content__top {
        width: 95%;
    }
}

@keyframes modalopen {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.modal-header__top .modal-title {
    font-size: 1.3em;
    margin: 1rem 0;
}

.modal-header__top {
    background: lightblue;
    padding: 3px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modalClose {
    font-size: 2rem;
}

.modalClose:hover {
    cursor: pointer;
}

.modal-body__top {
    padding: 10px 20px;
    color: black;
    padding: 3em;
    text-align: left;
}