.guest-error {
    color: red;
    font-size: 14px;
}
.hide {
    display: none;
}

h1 {
    text-align: center;
}
.guest_content {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width:100%;
    height: 80%;
    box-sizing: border-box;
    padding: 10px;
    z-index: 100;
    display: none;
    /*to hide popup initially*/
}

/* For screens wider than 768px (tablet and desktop) */
@media screen
   and (min-device-width : 320px)
   and (max-device-width : 480px){
    .guest_content {
        width: 100%;
    }
}
/* For screens wider than 768px (tablet and desktop) */
@media screen and (min-width: 768px) {
    .guest_content {
        width: 80%;
    }
}
/* For screens wider than 1024px (large desktop) */
@media screen and (min-width: 1024px) {
    .guest_content {
        width: 60%;
    }
}


.close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    background-color: black;
    color: white;
    border-radius: 50%;
    padding: 4px;
}

