.popup{
    top: 0;
    z-index: 9000;
    position: fixed;
    padding-bottom: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
}

.popup-content{
    position: relative;
    border-radius: 10px;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
    z-index: 2;
    height: auto;
    width: 80%;
    background-color: #fefefe;
    max-width: 800px;
}

.close-button{
    position: absolute;
    right: 0;
    padding-right: 8px;
    padding-top: 8px;
    line-height: 22px;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
}

.image{
    border-radius: 10px;
    width: 100%;
}

.responsive-image{
    border-radius: 10px;
    display: none;
    width: 100%
}

.hidden{
    display: none;
}


@media screen and (max-width: 500px) {
    .image{
        display: none;
    }

    .popup{
        top: 0;
        padding-top: 3rem;
    }

    .popup-content{
        margin: 0 1rem;
        width: auto;
        height: auto;
    }

    .responsive-image{
        display: block;
    	height: auto;
    }
}
