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

.modal-content {
    background-color: #fff;
    width: 1000px;
    margin: auto;
    padding: 2em;
    border-radius: 10px
}

.close {
    color: #AAA;
    float: right;
    font-size: 28px;
    font-weight: 700
}

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

.modal-indent p {
    text-indent: 5%
}

.gallery {
    text-align: center
}

.modal-image {
    border-radius: 5px;
    transition: .3s
}

.modal-image:hover {
    box-shadow: 0 18px 35px rgba(50, 50, 93, .1), 0 5px 15px rgba(0, 0, 0, .2);
    transform: scale(1.05)
}

.close-btn:focus,
.close-btn:hover {
    text-decoration: underline;
    color: #CC575D;
    cursor: pointer
}

.shroommates-specific {
    font-size: 12px
}

.subscription-specific {
    font-size: 14px
}

@media screen and (max-width:1280px) {
    .modal {
        padding: 0
    }
    .modal-content {
        width: auto;
        border-radius: 0;
        padding: 1em
    }
    .close-btn {
        display: inline-block
    }
    .modal-image {
        width: 100%;
        height: auto
    }
}