.loginModal {
    position: fixed;
    top: 50%;
    top: -500%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: auto;
    background-color: #ffffff;
    z-index: 1000;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 120px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 120px 0px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 120px 0px rgba(0,0,0,0.4);
    transition: all .8s ease-in-out;
    padding: 25px 20px;
}

.loginModal.show {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loginModal .loginModal_close {
    position: absolute;
    top: 10px;
    right: 10px;
}

.loginModal .loginModal_close svg {
    width: 30px;
    height: 30px;
}

@media screen and (max-width: 991px) {
    .loginModal {
        width: 60%;
        height: auto;
    }
}



@media screen and (max-width: 991px) {
    .loginModal {
        width: 90%;
        height: auto;
    }
}