.f-height{
    height: 90vh;
}

#login{
    max-width: 350px;
    min-height: 250px;
}


.error {
    color : red;
    font-weight: normal;
}

.project-bg{
    max-width: 200px;
    max-height: 400px;
}


.magnifier-wrap{
    user-select: none;
}

.form-control{
	color:  #333;
}


.form-signin p{
	color : #fff;
}

.alert-danger{
    color : #fff;
	background-color: tomato !important;
}

.alert-success{
	background-color: #7ad67b !important;
}

.timeline-messages{
    max-height: 600px;
    overflow: auto;
}

.company-holder{
    max-height: 280px;
    overflow: auto;
    width: 270px;
}

.company-holder>.active{
    background-color: #428bca;
    color: white;
}
.company-holder>.active>a{
    color: white;
}

.fa-spin{
    display: none;
}

.fa-spin.active{
    display: inline-block;
    animation-name: spin;
    animation-duration: 4000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear; 
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

#device-area{
    z-index: 999999;
}



.btn-group-fab {
    position: fixed;
    height: auto;
    right: 20px; 
    top: 80px;
    z-index: 99999;
  }

.chat-holder{
    width:320px;
    max-height:500px;
    border-radius: 5px;
    overflow: hidden;
    background: #eee;
    box-shadow: 0px 0px 30px 10px #3333;
}

.chat-holder .users{
    display : none;
}

.chat-holder .users.active{
    display : block;
}

.chat-holder .users .user{
    border-bottom: 1px solid #3333;
    max-height: 50px;
    transition: 0.2s background-color;
}

.chat-holder .users .user:hover{
    background: #eee;
    cursor: pointer;
}

.chat-holder .chat{
    display: none;
}

.chat-holder .chat.active{
    display: block;
}

.chat-holder .chat .toolbar{
    background: #428bca;
    box-shadow: 0px 2px #3333;
    position: relative;
    z-index: 999;
}

.chat-holder .chat .history{
    height : 300px;
    overflow: auto;
}

.chat-holder .chat .history .loading{
    height: 100%;
    display: none;
}

.chat-holder .chat .history .loading.active{
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-holder .chat .history .bubbles{
    overflow: hidden;
}

.chat-holder .chat .history .bubbles .msg{
    width: 100%;
    border-radius: 5px;
    padding: 5px;
    margin: 10px 0;
    position: relative;
}
.chat-holder .chat .history .bubbles .date{
    padding: 5px;
}

.chat-holder .chat .history .bubbles .msg p{
    margin: 0;
    word-wrap: break-word;
}

.chat-holder .chat .history .bubbles .msg.left{
    background: #fff;
}

.chat-holder .chat .history .bubbles .msg.left:before{
    content: "";
    display: inline-block;
    position: absolute;
    width: 0px;
    height: 0px;
    border: 10px solid #fff;
    border-bottom-color : #0000 ;
    border-left-color : #0000 ;
    border-top-color : #0000 ;
    left : -20px;
    top: 10px;
}

.chat-holder .chat .history .bubbles .msg.right:before{
    content: "";
    display: inline-block;
    position: absolute;
    width: 0px;
    height: 0px;
    border: 10px solid #428bca;
    border-bottom-color : #0000 ;
    border-right-color : #0000 ;
    border-top-color : #0000 ;
    right : -20px;
    top: 10px;
}


.chat-holder .chat .history .bubbles .msg.right{
    background: #428bca;
    color: white;
}

.chat-holder .chat .send{
    height: 60px;
    background: white;
}



.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
  }
  .lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #428bca;
    border-color: #428bca transparent #428bca transparent;
    animation: lds-dual-ring 1.2s linear infinite;
  }
  @keyframes lds-dual-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
.modal-dialog{
    left : 0
}
.device .device-tag{
    height: 40px;
}
.device .device-options{
    transition: 0.2s top;
    top : 2px;
}
.device.active .device-options{
    top : 30px;
}

.device-options .btn-group{
    height: 5px;
}