/*==============POPUP===============*/

@media (max-width: 50rem) {
    .popup > div {
      width: 95% !important;
    }
    
    .form-signin {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

.popup {
    background: rgba(100, 100, 100, 0.6);
    position: fixed;
    display: none;
    z-index: 5000;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}
.popup > div {
    border-radius: 10px;
    position: fixed;
    background: #1b1b1b;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
    padding: 10px 15px 0px 15px;
    /* Width of popup can be changed */
    width: 70%;
    max-width: 600px;
    z-index: 5001;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    text-align: center;
    border: 5px solid #fff;
}

.popup_close {
    color: #fff;
    float: right;
    font-weight: 700;
    font-size: 24px;
    position: absolute;
    cursor: pointer;
}
