.custom-button-action {
    color: white;
    padding: 8px;
    background-color: #26282a;
    border-radius: 12px;
}
.accent-good{
    accent-color: green;
}
.accent-medium{
    accent-color: gold;
}
.accent-bad{
    accent-color: red;
}

/*fix tamaños home widget tamaños textos - edward*/
#admin-dhasboard-income-vs-expenses .ct-label {
    font-size: 7px;
    line-height: 0;
}
/*fix tamaños home widget tamaños textos - edward*/

/*nuevos css edward*/
.inputDesactivado{
    pointer-events: none;
}

/*nuevos css edward*/


.navigationButton{
    position: relative;
    width: 60px;
    height: 60px;
    background: #272c33;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    transition-delay: 0s;
    margin-top: -10px
}

.navigationButton.active{
    width: 150px;
    height: 150px;
    transition-delay: 0s;
    position: relative;
    border-radius: 24px;
    box-shadow: 1px 2px 3px 1px #171616;
    padding: 5px;
    z-index: 100;
}

.navigationButton span{
    position: absolute;
    width: 7px;
    height: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 50%;
    transform: translate(calc(14px * var(--x)), calc(14px * var(--y)));
    transition: transform 0.3s, width 0.3s, height 0.3s;
    transition-delay: calc(0.08s * var(--i));
}

.navigationButton.active span:hover {
    color: #ffffff !important;
    filter: drop-shadow(0 0 3px #20AEE3) drop-shadow(0 0 6px #20AEE3) drop-shadow(0 0 12px #20AEE3);
}

.navigationButton.active span {
    width: 30px;
    height: 30px;
    font-size: 20px;
    transform: translate(calc(45px * var(--x)), calc(45px * var(--y)));
    background: #656567;
}

.navigationButton.active .closeButton {
    width: 25px;
    height: 25px;
    display: flex;
    pointer-events: initial;
    transition-delay: 0.8s;
    color: #ffffff;
    z-index: 150;
    -webkit-box-shadow:0px 0px 32px 12px rgba(191,84,201,0.9);
    -moz-box-shadow: 0px 0px 32px 12px rgba(191,84,201,0.9);
    box-shadow: 0px 0px 32px 12px rgba(191,84,201,0.9);
}

.closeButton {
    position: absolute;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    background: #9a4395c7;
    transition: 0.5s;
    cursor: pointer;
    color: white;
}

.navigation-font-color{
   color: white; 
}

@media only screen and (max-width: 1100px) {
    .navigationButton{
        position: fixed;
        margin-top: 48vh;
        margin-left: 70%;
        background-color: #c97526;
        z-index: 100;
    }
    .navigationButton.active {
        position: fixed;
        margin-top: 36vh;
        margin-left: 50%;
    }

    .navigationButton.active .closeButton {
        color: white;
    }

    .closeButton {
        background-color: #b835b1c7;
    }

    .navigationButton.active .closeButton {
        box-shadow: 0px 0px 32px 12px rgba(183,27,168,0.9);
        -webkit-box-shadow:0px 0px 32px 12px rgba(183,27,168,0.9);
        -moz-box-shadow: 0px 0px 32px 12px rgba(183,27,168,0.9);
    }
}

@media only screen and (max-height: 600px) {
    .navigationButton{
        margin-top: -22vh;
        margin-left: 78%;
    }
    .navigationButton.active {
        margin-top: -27vh;
        margin-left: 69%;
    }
}