html, body, .container, video {
    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;
}

.container {
    background: white;
}

.container.recording {
    background: red;
}

#serverSection {
    position: relative;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: #555;
    padding: 4px;
}

#info {
    position: relative;
    background-color: #d1d3d4;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    text-align: center;
    padding: 4px;
    height: 29px;
}

#description {
    margin-top: 5px;
    padding: 4px;
    padding-top: 2px;
    background-color: #d1d3d4;
    display: block;
}

.tdnumber {
    padding-left: 10px;
    font-size: 28px;
    color: red;
    font-weight: bold;
    vertical-align: top;
}

.tdtext {
    padding-top: 7px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    vertical-align: top;
    font-weight: bold;
}

.notedivmain {
    margin-top: 5px;
    position: relative;
    width: 100%;
    text-align: center;
}

.notediv {
    display: inline-block;
    position: relative;
    border: 3px solid red;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 10px;
    text-align: center;
    font-weight: bold;
    padding: 3px;
}

button, input[type=button] {
    -moz-border-radius: 3px;
    -moz-transition: none;
    -webkit-transition: none;
    background: #f7931e;
    background: -moz-linear-gradient(top, #ffd492 0, #f7931e 100%);
    background: -webkit-linear-gradient(top, #ffd492 0, #f7931e 100%);
    border: 1px solid #f7931e;
    border-radius: 3px;
    color: #000;
    display: inline-block;
    font-family: inherit;
    line-height: 1.3;
    padding: 5px 12px;
    text-align: center;
    text-shadow: 1px 1px 1px #f7931e;
    font-size: 12px;
}

button:hover, input[type=button]:hover {
    background: rgb(210, 124, 22);
}

button:active, input[type=button]:active {
    background: rgb(154, 92, 20);
}

button[disabled], input[type=button][disabled] {
    background: none;
    border: 1px solid rgb(187, 181, 181);
    color: gray;
    text-shadow: none;
}

button, .toolbar-element {
    position: absolute;
    left: 24px;
    top: 5px;
    margin: 0px;
    display: block;
}

.microphone.icon {
    width: 28px;
    height: 28px;

    margin-left: 180px;
}

.ring-container {
    position: absolute;
    left: 5px;
    top: 5px;
    margin: 0px;
    display: block;
}

.circle {
    width: 15px;
    height: 15px;
    background-color: grey;
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 6px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    text-align: center;
    font-weight: bold;
}

.ringring {
    border: 3px solid #f7931e;
    -webkit-border-radius: 30px;
    height: 25px;
    width: 25px;
    position: absolute;
    left: -2px;
    top: -2px;
    -webkit-animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite;
    opacity: 0.0;
    display: none
}

@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        opacity: 0.0;
    }
    50% {
        opacity: 1.0;
    }
    100% {
        -webkit-transform: scale(1.2, 1.2);
        opacity: 0.0;
    }
}
