.sip-form {
    display: inline-block;
}

.sip-callee {
    display: inline-block;
    /*width: 64px;*/
    cursor: pointer;
}

.sip-callee.disabled, .sip-callee {
    cursor: auto;
    filter: grayscale(100%);
}

.sip-callee.connect{
    filter: grayscale(0);
}
.sip-callee.calling {
    animation: shake 1.0s;
    animation-iteration-count: infinite;
}

.sip-callee.connected {
filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(350%) contrast(1.6);
}

@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}

#connection-state {
    display: none;
}

.call-center-btn.disabled {
    color: #ccc;
    border: 1px solid #ccc;
    cursor: auto;
}

button.disabled:hover {
    color: #ccc;
    background-color: #fff;
}

.btn-group {
    display: inline-block;
}

.connected {
    -webkit-filter: drop-shadow(0px 0px 10px rgba(0,200,0,0.9));
}

.label-align {
    display: block;
    padding-left: 15px;
    text-indent: -15px;
}

.input-align {
    width: 13px;
    height: 13px;
    padding: 0;
    margin: 0;
    vertical-align: bottom;
    position: relative;
    top: -1px;
    *overflow: hidden;
}

.glass-panel {
    z-index: 99;
    position: fixed;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    opacity: 0.8;
    background-color: Gray;
}

.div-keypad {
    z-index: 100;
    position: fixed;
    -moz-transition-property: left top;
    -o-transition-property: left top;
    -webkit-transition-duration: 2s;
    -moz-transition-duration: 2s;
    -o-transition-duration: 2s;
}

.previewvideo {
    position: absolute;
    width: 88px;
    height: 72px;
    margin-top: -42px;
}

.connecting {
    -webkit-animation: connecting-animation 1s infinite; /* Safari 4+ */
    -moz-animation:    connecting-animation 1s infinite; /* Fx 5+ */
    -o-animation:      connecting-animation 1s infinite; /* Opera 12+ */
    animation:         connecting-animation 1s infinite; /* IE 10+, Fx 29+ */
}

@-webkit-keyframes connecting-animation {
    0%, 49% {
        background-color: rgb(117,209,63);
        border-radius: 50%;
    }
    50%, 100% {
        border: 3px solid rgb(117,209,63);
        border-radius: 50%;
    }
}

.dial-key {
    display: inline-block;
    width: 30%;
    border: 1px solid #ccc;
}

.connect-ez-settings-field {
    width: 300px;
}