
html,body{
    /*background-image: url('http://getwallpapers.com/wallpaper/full/a/5/d/544750.jpg');*/
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    /*font-family: 'Numans', sans-serif;*/
    font-family: 'Open Sans', sans-serif;
}

#login-page{
    height: 100%;
    align-content: center;
}

#login-page .card{
    height: 370px;
    margin-top: auto;
    margin-bottom: auto;
    width: 400px;
    background-color: rgba(0,0,0,0.5) !important;
}

#login-page .card-header h3{
    color: white;
}

#login-page .input-group-prepend span{
    width: 50px;
    background-color: #F5910F;
    color: black;
    border:0 !important;
}

#login-page input:focus{
    outline: 0 0 0 0  !important;
    box-shadow: 0 0 0 0 !important;
}

#login-page .login_btn{
    color: white;
    background-color: #ED1E79;
    width: 100px;
}

#login-page .login_btn:hover{
    color: black;
    background-color: white;
}

#login-page .links{
color: white;
}

#login-page .links a{
margin-left: 4px;
}

#coach-page{
    height: 100%;
    display: none;
}

#header{
    /*border-bottom: .1em solid #F16A0E;*/
    background: #F5910F url(img/logo.svg) no-repeat 1em center;
    background-size: auto 90%;
    padding-left: 7em;
    height: 5em;
}
#header .navbar-brand{
    font-size: 1.6rem;
    color: rgba(0,0,0,0.4);
    font-weight: 600;
}

#left-column{
    min-width: 15em;
    max-width: 15em;
}
#left-column.extended-info{
    min-width: 17em;
    max-width: 17em;
}

#workstations-list{
    font-size: 1.2em;
}
#workstations-list.extended-info{
    font-size: 1em;
}
#workstations-list .agent-status{
    display: block;
}
#workstations-list .agent-ip{
    display: block;
}
#workstations-list i{
    margin-right: .4em;
}

#workstation-header{
    background: #F5910F;
    color: #fff;
}
#workstation-header #label{
    padding: .2em 1em;
    font-size: 2em;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
}
#workstation-header .buttons{
    margin: 0 1em;
    font-size: 2em;
}
#workstation-header .buttons i{
    padding: .1em .3em;
    cursor: pointer;
}
#analyser,
#analyser2{
    margin: .8em 2em;
    border-bottom: solid rgba(255,255,255,.4) 1px;
    /*border-radius: .6em;*/
    overflow: hidden;
    padding: .2em .4em;
    
    opacity: 0;
    transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -webkit-transition: opacity 1s ease-in-out;
}
.talking.video #analyser,
.talking #analyser2{
    opacity: 1;
}
.talking.video #analyser2{
    opacity: 0!important;
}

#workstation-header #status{
    font-size: 1em;
    font-weight: 600;
    padding: 0 3em .6em;
}
#workstation-header #status i{
    margin-right: .2em;
}
#workstation-header #status .talking{
    color: #ED1E79;
}
#workstation-header #status .talking,
#workstation-header #status .postcall,
#workstation-header #status .need-selection
{
    display: none;
}
#workstation.talking #workstation-header #status .talking{
    display: block;
}
#workstation.postcall #workstation-header #status .postcall{
    display: block;
}
#workstation.need-selection #workstation-header #status .need-selection{
    display: block;
}
#workstation.talking #workstation-header #status .dialing,
#workstation.postcall #workstation-header #status .dialing,
#workstation.need-selection #workstation-header #status .dialing,
#workstation.need-selection #workstation-header .buttons{
    display: none;
}

#workstation-screen{
    position: relative;
    background: rgb(40,40,40);
}
#screen{
    position: absolute;
    top:0; bottom:0; left: 0; right: 0;
}

#visual{
    color: #fff;
    font-size: 4em;
    text-align: center;
}

#visual .fa-broadcast-tower{
    -webkit-animation-name: pulsate;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-name: pulsate;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}
#visual .talking,
#visual .need-selection{
    display: none;
}
.talking #visual .talking{
    display: block;
}
.need-selection #visual .need-selection{
    display: block;
}
.talking #visual .dialing,
.need-selection #visual .dialing{
    display: none;
}


@-webkit-keyframes pulsate {
  0% {opacity: .6;}
  80% {opacity: .2;}
  100% {opacity: .6;}
}
@keyframes pulsate {
  0% {opacity: .6;}
  80% {opacity: .2;}
  100% {opacity: .6;}
}