/*---------------------------------- Login Window -----------------------------------*/
.login-form{
    width: 100%;
    height:100%;
    position: fixed;
    top:0;
    background-color: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000000;
}

.login-form .modal-content{
    width: 400px;
    height:500px;
    background-color: white;
    color:black;
    border-radius: 5%;
    text-align:center;
    padding: 2rem;
    position:relative;
    box-shadow: 0px 0px 10px rgba(255,255,255,0.4);
    background: url("../images/login-bg.jpg");
    background-size:cover;
    background-position:center;
    background-repeat: no-repeat;
}

.close{
    position:absolute;
    top:0;
    left:90%;
    font-size:3rem;
    transform: rotate(45deg);
    color: red;
}

#login-content {
    padding: 0px;
    background: white;
    border: 1px solid white;
    margin: auto;
}

#login-content .log-head{
    width:100%;
    display: flex;
    text-align:center;
    content-align: center;
    padding:none !important;
    width: 100%;
}

#login-content .log-head .login-tabs{
    background:#eee;
    color: #111;
    font-weight: 700;
    width:50%;
    height:40px;
    border-right: 1px solid #ccc;
    padding: 10px;
    cursor: pointer;
}

#login-content .log-head .selected{
    background: #fff;
    border-top: 2px solid #0A0;
}

#login-content .log-head h4{
    font-weight:700;
}

#login-content .pane-show{
    display: block;
}

#login-content .pane-hide{
    display: none;
}

.loginform{
     position: relative;
     width:80%;
     margin:auto;
}

.loginform input{
    width: 100%;
}


#siguppage .col-12{
    padding:0.5rem !important;
}
#firebaseui-auth-container p,
#firebaseui-auth-container a{
    color: black;
}

.no-padding{
    padding-top:0px;
    height:10px;
}
/* during login */

.loginWait{
    background: rgba(0,0,0,0.5);
    position:absolute;
    width:100%;
}

/* ------------------------- After Login Profile ------------------------*/
#login-button{position:relative;}

#user-profile{
    display:none;
    position:relative;
    height:40px;
    width:40px;
    border-radius:50%;
    overflow:hidden;
    cursor:pointer;
}

#user-profile .profile-icon{
    position:absolute;
    top: 0;
    left: 0;
    width:100%;
    height:100%;
    object-fit: cover;
}

#profile-menu{
    padding:2px;
    display: none;
    background:white;
    color: black;
    position: absolute;
    width:200px;
    right:10px;
}

@media (max-width:768px){
    #profile-menu{
        position: absolute;
        width:200px;
        left:10px;
    }
}
#profile-menu .userid{
    width:100%;
    color: black;
    font-weight:600;
    display:inline-block;
    background:#e8e6e6;
    text-align: center;
    box-shadow: 0px 0px 2px rgba(0,0,0,0.2);
}
#profile-menu ul{
    list-style-type: none;
}

#profile-menu ul li,
#profile-menu ul li a{
    padding-left: none;
    padding-bottom: 4px;

}

#profile-menu img{
    width: 30px;
    height:30px;
}