﻿.gmodal-shadow {
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    display: block;
}

.gmodal {
    background: white;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10001;
}

/*@media screen and (max-width:600px) {

    .gmodal {
        position: fixed;
        margin: 0px;
        width: 100%;
        left: 0px;
        top: 0px;
        right: 0px;
        bottom: 0px;
        transform: translate(0%, 0%);
    }
}*/

.gmodal-head {
    background: white;
    padding: 8px;
    display: flex;
    justify-content: space-between;
    border-bottom: solid 1px #000
}

.gmodal-body {
    margin-top: 1px;
    background: white;
    padding: 16px;
}
