.awesome-gallery-entry{
    width: 30%;
    height: auto;
    margin: 1%;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
}

.awsm-gallery-overlay{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0,0,0,0.8);
    z-index: 100000;
}

.awsm-gallery-zoomimg{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    z-index: 100002;
    margin: 0;
    position: fixed;
}

.awsm-gallery-closer,
.awsm-gallery-prev,
.awsm-gallery-next{
    position: fixed;
    z-index: 100003;
    font-size: 56px;
    line-height: normal;
    font-weight: bold;
    color: #4bbff7;
    width: fit-content;
    /*height: 24px;*/
    text-align: center;
    border-radius: 4px;
    padding: 2px;
    top: 20px;
    right: 20px;
    cursor: pointer;
    text-shadow: 2px 2px 5px #000;
}

.awsm-gallery-closer{
    background-color: #3b88c3;
    line-height: 30px;
    padding: 5px;
    text-align: center;
    width: min-content;
    color: white;
}

.awsm-gallery-prev,
.awsm-gallery-next{
    top: 50%;
}

.awsm-gallery-prev{
    left: 20px;
    right: auto;
}

@media screen and (max-width: 850px) {
    .awsm-gallery-closer,
    .awsm-gallery-next{
        right: 0px;
        border-radius: 0px;
    }
    
    .awsm-gallery-closer{
        background-color: #3b88c3;
        top: 0px;
    }
    
    .awsm-gallery-prev{
        border-radius: 0px;
        left: 0px;
        padding-left: 0;
    }
    
    .awesome-gallery-entry {
        width: 100%;
    }
}