body {
    margin: 0;
}
.fool-wrapper {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(45deg, #4c62b2, #a0d4a2);
    align-items: center;
    justify-content: center;
    padding: 15px;
}
#login-form {
    background: #ffffffc4;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 1px 1px 8px 2px grey;
}
.header-wrapper {
    display: flex;
    min-height: 100px;
    background: #1a2d3c;
    color: white;
    align-items: center;
    justify-content: center;
}
.dev-filter {
    background: #4a5965;
    padding: 20px;
}
.dev-filter-form {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.dev-filter-field {
    margin: 0 0 10px 0
}

.dev-filter-field label.lb-checkbox {
    display: flex;
    background: white;
    border-radius: 15px;
    box-shadow: 1px 1px 7px 0px #000000;
    width: 100px;
    height: 30px;
    border: 1px solid #ffffff;
    padding: 2px;
    margin: 0 20px;
}
.dev-filter-field label.lb-checkbox div.label-circ {
    width: 34px;
    height: 24px;
    border-radius: 20px;
    display: flex;
    padding: 2px;
    align-items: center;
    justify-content: center;
    background: grey;
}

.dev-filter-field input[type=checkbox] {
    width: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
    display: none;
}
.dev-filter-field input[type=checkbox]:checked + label {
    justify-content: flex-end;
    flex-direction: row-reverse;
}
.dev-filter-field input[type=checkbox]:checked + label div.label-circ {
    background: limegreen;
}
.dev-filter-field input[type=text], .dev-filter-field select {
    width: 300px;
    margin: 0 20px;
    height: 30px;
    padding: 0 15px;
    border-radius: 5px;
    border: 1px solid #1a2d3c;
    box-shadow: 1px 1px 7px 0px #000000;
}
.dev-filter-form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0 0;
}
.dev-filter-form-submit button {
    width: 300px;
    border: 1px solid #1a2d3c;
    background: #6d7982;
    color: white;
    height: 35px;
    border-radius: 5px;
    box-shadow: 1px 1px 7px #1a2d3c;
}
@media(max-width: 1080px) {
    .dev-filter-form {
        flex-direction: column;
    }

}

.devices {
    background: #6d7982;
    padding: 20px;
    display: flex;
    flex-flow: wrap;
    flex-direction: row;
}
.devices a {
    color: white;
}

.dev-item {
    display: flex;
    position: relative;
    flex-direction: column;
    max-width: 100%;
    margin: 0 20px 20px;
    width: fit-content;
    background: #1a2d3c5c;
    padding: 15px;
    color: white;
    border: 1px solid white;
    border-radius: 20px;
    box-shadow: 1px 1px 8px 0px #0e0202;
}
.dev-item-status {
    width: 100px;
    background: white;
    height: 30px;
    border: 1px solid #ffffff;
    padding: 2px;
    border-radius: 20px;
    position: absolute;
    right: -10px;
    top: -10px;
    box-shadow: 1px 1px 7px 0px #000000;
}
.status-ind {
    display: flex;
    justify-content: space-between;
}

.status-val {
    width: 76%;
    display: flex;
    align-items: center;
    line-height: 1;
    font-size: 12px;
    justify-content: center;
    text-transform: uppercase;
}
.status-circ {
    width: 40px;
    height: 24px;
    border-radius: 20px;
    display: flex;
    padding: 2px;
    align-items: center;
    justify-content: center;
}
.status-circ a {
    display: flex;
}

.status-circ img {
    max-width: 100%;
    width: 20px;
}

.status-offline {
    flex-direction: row-reverse;
    color: grey;
}
.status-online {
    color: limegreen;
}
.status-remote {
    color: #f44336;
}
.status-disconn {
    flex-direction: row-reverse;
    color: grey;
}

.status-offline .status-circ {
    background: grey;
}
.status-online .status-circ {
    background: limegreen;
}
.status-remote .status-circ {
    background: #f44336;
}
.status-disconn .status-circ {
    background: #ffc107;
}

.dev-item-deviceid {
    z-index: 100;
}

.hide-butt {
    text-decoration: underline dotted 3px;
    cursor: pointer;
    position: relative;
}
.hide-cont {
    display: none;
    position: absolute;
    background: #f5deb3;
    padding: 2px 10px;
    color: black;
    text-decoration: none;
    border: 1px solid lightgrey;
}
/* консоль девайса */
.webrtc-data {
    width: 100%;
    min-height: 400px;
    background: black;
    color: white;
}
.footer-wrapper{
    min-height: 100px;
    background: #1a2d3c;
    color: white;
}