
body {
    background: #f8f8f8;
}


.devicesColumn {
    background: #efefef;
}

.devicesColumn:hover {
    background: #e0e0e0;
}



.progress-bar {
    height: 4px;
    background-color: rgba(5, 114, 206, 0.2);
    width: 100%;
    overflow: hidden;
}

.progress-bar-value {
    width: 100%;
    height: 100%;
    background-color: rgb(5, 114, 206);
    animation: indeterminateAnimation 1s infinite linear;
    transform-origin: 0 50%;
}

@keyframes indeterminateAnimation {
    0% {
        transform:  translateX(0) scaleX(0);
    }
    40% {
        transform:  translateX(0) scaleX(0.4);
    }
    100% {
        transform:  translateX(100%) scaleX(0.5);
    }
}



.modal-label {
    font-size: 13px;
    color: rgb(128, 128, 128);
    margin-bottom: 2px;
    margin-right: 10px;
}
.modal-input {
    font-size: 17px;
    background: #f7f7f7;
    border: 1px solid #dddddd;
    border-radius: 360px;
    padding: 4px 12px;
}


.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked + .slider {
    background: #2196f3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.slidecontainer {
    width: 100%;
}

.rangeslider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: 0.2s;
    transition: opacity 0.2s;
    margin-top: 14px;
}

.rangeslider:hover {
    opacity: 1;
}

.rangeslider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #202020;
    cursor: pointer;
}

.rangeslider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #202020;
    cursor: pointer;
}

hr {
    border-top: 1px dashed rgb(117, 117, 117);
}


.switch-toggle {
    float: left;
    background: #242729;
}

.switch-toggle input {
    position: absolute;
    opacity: 0;
}

.switch-toggle input + label {
    padding: 7px;
    float: left;
    color: #fff;
    cursor: pointer;
}

.switch-toggle input:checked + label {
    background: green;
}


.grid-container1 {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 30px;
    background: #eeeeee;
    border-radius: 16px;
    padding: 20px;
}

.grid-container1-mini {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 16px;
    background: #eeeeee;
    border-radius: 16px;
    padding: 10px;
}

.grid-container1-mini-transparent {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 16px;
    background: #0000;
    border-radius: 16px;
    padding: 20px;
}

.grid-container2 {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 30px;
    background: #eeeeee;
    border-radius: 16px;
    padding: 20px;
}

.grid-container3 {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 30px;
    background: #eeeeee;
    border-radius: 16px;
    padding: 20px;
}

.grid-container4 {
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-gap: 30px;
    background: #eeeeee;
    border-radius: 16px;
    padding: 20px;
}


/*.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open>.dropdown-toggle.btn-primary {
    color: #fff;
    background-color: #00000000;
    border-color: #00000000; !*set the color you want here*!
}*/

.round-button {
    width: 60px;
}

.round-button-circle {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #2196F3;
    box-shadow: 0 0 3px rgb(128, 128, 128);
}

.round-button-circle:hover {
    background: #30588e;
}

.round-button a {
    display: block;
    float: inside;
    width: 100%;
    padding-top: 50%;
    padding-bottom: 50%;
    line-height: 1em;
    margin-top: -0.5em;
    text-align: center;
    color: #e2eaf3;
    font-family: Verdana;
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
}


.round-button-power-off {
    display: block;
    width: 60px;
    height: 60px;
    overflow: hidden;
    background: #3c3c3c;
}

.round-button-power-off:hover {
    background-color: #222222;
}

.round-button-power-off:focus {
    box-shadow: 0 0 0 .2rem #aaaaaa;
}

.round-button-power-on {
    display: block;
    width: 60px;
    height: 60px;
    overflow: hidden;
    background: #2196F3;
}

.round-button-power-on:hover {
    background-color: #1b8ae3;
}

.round-button-power-on:focus {
    box-shadow: 0 0 0 .2rem #76c1ff;
}


.fa-spin.high {
    -webkit-animation: fa-spin 2s linear infinite;
    animation: fa-spin 1s linear infinite;
    animation-duration: .5s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    animation-name: fa-spin;
}

.fa-spin.low {
    animation-duration: 1.2s;
}


.button-trans {
    width: auto;
    height: auto;
    font-size: 18px;
    color: #0007;
    cursor: pointer;
    background: #0000;
    border: none;
    border-radius: 50%;
}

.button-trans:hover {
    background: #0002;
}

.button-trans:active {
    background: #0005;
}