﻿.swicth {
    border: 1px solid gray;
    width: fit-content;
    display: flex;
    justify-content: space-between;
}

.switch-element {
    display: inline-block;
    position: relative;
    cursor: pointer;
    color: gray;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    margin-bottom: 0;
}

    .switch-element input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.checkmark-switch {
    display: inline-block;
    min-width: 105px;
    /*max-width: 105px;*/
    padding: 5px 5px;
}

.switch-element input:checked ~ .checkmark-switch {
    color: white;
    background-color: gray;
}

.centerGraficos {
    justify-content: center;
    display: flex;
}
@media (max-width: 1500px){
    .centerGraficos {
        justify-content: center;
        display:block;
    }
}
