.are-you-there-box .content {
    background-color: #FAFAFA;
    border: 1px solid #CCC;
    display: flex;
    padding: 24px;
    font-size: 32px;
    box-shadow: 3px 3px 12px grey;
    align-items: center;
    flex-direction: column;
}

.are-you-there-box .content .header {
    font-size: 32px;
    margin-bottom: 20px;
}

.are-you-there-box .content .buttons-bottom {
    width: 100%;
    margin-top: 10px;
    border-top: 1px solid #CCC;
    padding-top: 10px;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.are-you-there-box .content .text {
    font-size: 12px;
    font-style: italic;
}

#are-you-there-modal {
    display: none;
}

.are-you-there-box {
    position: fixed;
    background-color: rgba(255,255,255,0.7);
    height: 100%;
    display: flex;
    width: 100%;
    z-index: 3;
    align-items: center;
    justify-content: center;
}

.blur {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
}

.lock-screen-content {
    width: 100%;
    height: 100%;
    background-color: rgba(5,98,127,0.5);
    position: fixed;
    z-index: 10;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

#lock-screen {
    display: none;
}

#lock-screen .avatar {
    border: 2px solid #CCC;
    border-radius: 50%;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
}

#lock-screen .avatar img{
    border-radius: 50%;
}

#lock-screen .password {
    margin: 10px;
    display: flex;
    flex-direction: column;
    font-style: italic;
    font-weight: bold;
}

#lock-screen .password input {
    font-size: 32px;
    padding: 0px 0px 0px 10px;
    width: 250px;
    padding: 6px;
}

#lock-screen .password .error-message {
    display: none;
}

#lock-screen .error .error-message {
    font-size: 12px;
    color: #F00;
    font-style: initial;
    font-weight: initial;
    display: initial;
}

#lock-screen .error input {
    border-color: #F00;
}

#lock-screen .relogin {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 300px;
}



