
body {
    background-color: #003b00;
}

#content {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px;
    box-sizing: border-box;
    justify-content: center;
}

.info-box {
    flex: 1 1 300px;
    max-width: 400px;
    margin-top: 20px;
    border-radius: 10px;
    padding: 0;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
    background-color: bisque;
}

.box-header {
    padding: 5px;
    background-color: darkseagreen;
    font-size: 200%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
}

.box-content {
    padding: 10px;
}

.big-value {
    text-align: center;
    margin-bottom: 5px;
}
.big-value span {
    display: block;
    font-size: 200%;
}

.slideThree {
    width: 110px;
    height: 26px;
    background: #333;
    margin: 20px auto;
    position: relative;
    border-radius: 50px;
    box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,0.2);
    &:after {
        content: 'SOLAR';
        color: green;
        position: absolute;
        right: 10px;
        z-index: 0;
        font: 12px/26px Arial, sans-serif;
        font-weight: bold;
        text-shadow: 1px 1px 0px rgba(255,255,255,.15);
    }
    &:before {
        content: 'SÍŤ';
        color: white;
        position: absolute;
        left: 10px;
        z-index: 0;
        font: 12px/26px Arial, sans-serif;
        font-weight: bold;
    }
    label {
        display: block;
        width: 50px;
        height: 20px;
        cursor: pointer;
        position: absolute;
        top: 3px;
        left: 3px;
        z-index: 1;
        background: #fcfff4;
        background: linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
        border-radius: 50px;
        transition: all 0.4s ease;
        box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
    }
    input[type=checkbox] {
        visibility: hidden;
        &:checked + label {
            left: 57px;
        }
    }
}
