@font-face {
    font-family: 'roboto';
    src: url('/fonts/roboto.ttf') format('truetype');
    font-display: swap;
}

body {
    background-color: #e0ffff;
    font-family: roboto, arial, sans-serif;
}

.zoneAuth, .zoneManagement {
    background-color: white;
    box-sizing: border-box;
    overflow: hidden;
    font-size: 40px;
    line-height: 1.4286;
    font-family: roboto, arial, sans-serif;
    padding: 5%;
    margin: 0;
}

aside {
    padding: 10px;
    padding-bottom: 50px;
    background-color: #ADD8E6;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 40px;
    height: auto;
}

.champText {
    width: 75%;
    padding: 20px;
    margin-top: 10%;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
    font-size: 40px;
    font-family: roboto, arial, sans-serif;
}

.buttonConnect {
    color: white;
    background: #4285f4;
    text-align: center;
    text-transform: uppercase;
    border-radius: 3px;
    padding: 5%;
    margin-top: 10%;
    font-family: roboto, arial, sans-serif;
    font-size: 40px;
    white-space: nowrap;
    line-height: 50px;
    border: 0;
}

.imgStream {
    width: 100%;
    height: auto;
}

.buttonStartStop {
    float: right;
    color: white;
    text-align: center;
    text-transform: uppercase;
    border-radius: 3px;
    padding: 2%;
    margin-right: 2%;
    font-family: roboto, arial, sans-serif;
    font-size: 40px;
    white-space: nowrap;
    line-height: 50px;
    border: 0;
}

.buttonClean {
    color: white;
    background: #8470FF;
    display: block;
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 3px;
    padding: 2%;
    font-family: roboto, arial, sans-serif;
    font-size: 40px;
    white-space: nowrap;
    line-height: 50px;
    border: 0;
}

.buttonStartStop[value="START"] {
    background: #32CD32;
}

.buttonStartStop[value="STOP"] {
    background: #B22222;
}

.buttonStartStop:disabled, .buttonClean:disabled {
    background: #C0C0C0;
}

h1 {
    color: #000080;
    font-size: 60px;
}

h2 {
    font-size: 50px;
}

.errorConnect {
    background: #FFA07A;
    color: white;
    padding: 5%;
    font-size: 40px;
    font-family: roboto, arial, sans-serif;
    margin-top: 2%;
}

ul {
    list-style-type: none;
    overflow: hidden;
    border: 2px solid #e7e7e7;
    background-color: #f3f3f3;
}

li a {
    display: block;
    color: #666;
    padding: 14px 16px;
    text-decoration: none;
}

li a:active {
    color: white;
    background-color: #666;
}

.containerRadioCam {
    display: block;
    position: relative;
    padding-left: 60px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.containerRadioCam input {
    display: none;
}

.checkmarkRadioCam {
    position: absolute;
    top: 0;
    left: 0;
    height: 50px;
    width: 50px;
    background-color: #eee;
    border-radius: 50%;
}

.containerRadioCam:hover input ~ .checkmarkRadioCam {
    background-color: #ccc;
}

.containerRadioCam input:checked ~ .checkmarkRadioCam {
    background-color: #2196F3;
}

.checkmarkRadioCam:after {
    content: "";
    position: absolute;
    display: none;
}

.containerRadioCam input:checked ~ .checkmarkRadioCam:after {
    display: block;
}

.containerRadioCam .checkmarkRadioCam:after {
    top: 13px;
    left: 13px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: white;
}
