.dashboard-container {
    margin: 0 auto;
    position: relative;
    background-color: #f6f8fa;
    box-shadow: 0px 5px 30px #003e60;
    border-radius: 1px;
    max-width: 500px;
    width: 100%;
    overflow: hidden;
}


.dashboard-container i {
    font-size: 1.25rem;
}


/* switch */
.switch {
    width: 37px;
    position: relative;
}

.switch input[type="checkbox"] {
    visibility: hidden;
}

.switch input[type="checkbox"]:checked+label {
    background-color: #f3a978;
}

.switch input[type="checkbox"]:checked+label:after {
    left: 20px;
}

.switch label {
    width: 100%;
    height: 21px;
    border-radius: 50px;
    background-color: #5a6676;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}

.switch label:after {
    content: "";
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: white;
    position: absolute;
    top: 4px;
    left: 4px;
    transition: all 0.1s;
}

/* dashboard */
.dashboard>* {
    padding: 1rem;
}

.dashboard {
    margin-bottom: 1rem;
    text-align: center;
}

/* meter */
.meter {
    display: flex;
    flex-direction: column;
    color: white;
    text-shadow: 1px 1px 5px gray;
    background: linear-gradient(43deg, #192355, #c850c0, #ffcc70, #4158d0);
    background-size: 400% 400%;
    animation: moverGradiente 20s ease infinite;
}

/* animação do gradiente */
@keyframes moverGradiente {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.meter .date {
    font-size: 1rem;
    text-align: right;
}

.meter .date .time {
    margin-left: 16px;
}

.meter ul {
    margin: 24px 0;
    display: flex;
    flex-grow: 1;
}

.meter li {
    flex-grow: 1;
    width: 33.3%;
    text-align: center;
    position: relative;
}

.meter li i {
    position: absolute;
    top: 8px;
    left: 10px;
}

.meter li .number {
    margin-bottom: 16px;
    font-size: 2.25rem;
    font-weight: bold;
    position: relative;
}

.meter li .number .symbol {
    position: relative;
    top: -20px;
    left: 5px;
    font-size: 0.75rem;
}

.meter li .unit {
    text-transform: uppercase;
}

/* controls */
.controls ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.controls li {
    text-align: center;
}

.controls li .item {
    margin: 8px 0;
    font-weight: bold;
}

.controls li .switch {
    margin: auto;
}

.cta-dashboard {
    font-size: 1rem;
    color: var(--color-alphasirius-dark);
    padding: 0.5rem;
}

.cta-dashboard:hover {
    color: var(--color-alphasirius-gold);
}