body, html, *{


    /*font-family: 'Open Sans', sans-serif;*/

    font-family: 'Roboto Condensed', sans-serif;


    padding: 0; margin: 0;
}

/*
for FontAwesome ICON
statuses messages icon color
 */
.black{ color: #545454}
.gray{color: #b5b5b5}
.blue{color: #5089a8}

#login {
    display: none;
    background-color: #ffffff;
    width: 100%; height: 100%;
    position: absolute;
    top: 0; left: 0;
    margin: 0; padding: 0;
}
#login > form{
    display: block;
    background-color: #ff00ff;

    position: absolute;
    top: 40%; left: 40%;

    width: 250px; height: auto;
}
#login label{
    display: block;
    float: left;
}
#formLoginError {
    display: none;
    background-color: #ee2800;
    color: #ffffff;
    position: absolute;

    padding: 3px;
    font-weight: bold;
    text-decoration: blink;
    bottom: 0; left: 0;
    margin-bottom: -50px;
}



#main {
    display: none;
    /*background-color: #22ff00;*/
    margin: 0; padding: 0;
    width: 100%; height: 100%;
}

#userList {
    display: block;
    background-color: #fdffd4;
    /*width: 100%; height: 100%;*/
    position: absolute;
    /*top: 0; left: 0;*/
    margin: 0; padding: 0%;
    width: 10%; height: 90%;
    right: 0; top: 0;
}
#userList > a{
    display: block;
    padding: 3px;
    margin: 3px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 25px;
    border-bottom: solid 1px #c6c6c6;
}
#userList > a.realuser{
    color: #C8C8C8;
    font-weight: normal;
}
#userList > a.realuser.online{
    color: #689500;
    font-weight: bold;
}
#userList > a.active{
    background-color: #ffef29;

    border-radius: 5px;
    border: solid 1px #c7c7c7;
}
#userList > a > i{
    display: block;
    position: absolute;
    float: right;
    padding: 0; margin: 0;
    font-size: 8px;
    font-weight: lighter;    text-decoration: none;
    color: #909090;
}



#messageList { display: block;
    background-color: #cdf7d5;
    /*width: 100%; height: 100%;*/
    position: absolute;
    /*top: 0; left: 0;*/
    margin: 0; padding: 0%;
    width: 90%; height: 90%;
    overflow: scroll;

    left: 0; top: 0;
}
#messageList span{
    font-family: 'Open Sans', sans-serif;
}
#messageList .realmsg{
    margin: 4px;
    padding: 10px;
    border-radius: 5px;
    border: solid 1px #c7c7c7;
    background-color: #ffcb92;
    width: 70%;

    font-size: 12px;
    display: block;
    position: relative;
    float: left;

}
#messageList .realmsg.answer{
    background-color: #c3f0ff;
    float: right;

}
#messageList u{
    border-radius: 2px;

    padding: 2px;
    font-weight: normal;
    font-style: normal;
    font-size: 10px;
    display: block;
    position: absolute;
    bottom: 0; right: 0;
    margin-right: -100px;
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #ffffff;
    text-align: right;
    opacity: 0.6;
    width: 90px;

}
#messageList .answer u{
    position: absolute;
    bottom: 0; left: 0;
    text-align: left;
    margin-left: -100px;
}

#answer {display: block;
    background-color: #ffe1f5;
    /*width: 100%; height: 100%;*/
    position: absolute;
    /*top: 0; left: 0;*/
    margin: 0; padding: 0%;
    width: 100%; height: 10%;
    left: 0;
    bottom: 0;
}
#inputAnswer {
    display: block;
    margin: 15px;
    padding: 5px;
    width: 90%; height: 25px;
    font-size: 20px;
}
.template{
    display: none;
}



/* LOADER LOADING SPINNER */


#loaderSpinner .loader-section {
    position: fixed;

    top: 0; left: 0; bottom: 0; right: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    opacity: 0.9;
    z-index: 1000;
    display:block;

}



.spinner {
    top: 50%; left:50%;
    margin-top: -20px;
    margin-left: -20px;
    width: 40px;
    height: 40px;
    position: fixed;
    text-align: center;

    -webkit-animation: sk-rotate 2.0s infinite linear;
    animation: sk-rotate 2.0s infinite linear;
    z-index: 1009;
    display:block;
}

.dot1, .dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #333;
    border-radius: 100%;

    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.dot2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-rotate { 100% { -webkit-transform: rotate(360deg) }}
@keyframes sk-rotate { 100% { transform: rotate(360deg); -webkit-transform: rotate(360deg) }}

@-webkit-keyframes sk-bounce {
    0%, 100% { -webkit-transform: scale(0.0) }
    50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    } 50% {
          transform: scale(1.0);
          -webkit-transform: scale(1.0);
      }
}
/* END */