.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 !important;
        bottom: 25px !important;
        bottom: calc(25px + env(safe-area-inset-bottom, 0px)) !important;
        right: 25px !important;
        right: calc(25px + env(safe-area-inset-right, 0px)) !important;
        top: auto !important;
        left: auto !important;
        margin: 0 !important;
        background-color: #272c33;
        z-index: 1040 !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
        border-radius: 50%;
        width: 58px;
        height: 58px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .navigationButton.active {
        position: fixed !important;
        bottom: 25px !important;
        bottom: calc(25px + env(safe-area-inset-bottom, 0px)) !important;
        right: 25px !important;
        right: calc(25px + env(safe-area-inset-right, 0px)) !important;
        top: auto !important;
        left: auto !important;
        margin: 0 !important;
        width: 160px;
        height: 160px;
        border-radius: 24px;
        background-color: #272c33;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
        z-index: 1045 !important;
        padding: 5px;
    }

    .navigationButton.active .closeButton {
        color: #ffffff;
        box-shadow: 0px 0px 20px 6px rgba(183, 27, 168, 0.8);
        -webkit-box-shadow: 0px 0px 20px 6px rgba(183, 27, 168, 0.8);
        -moz-box-shadow: 0px 0px 20px 6px rgba(183, 27, 168, 0.8);
    }

    .closeButton {
        background-color: #b835b1c7;
        border-radius: 50%;
    }
}

@media only screen and (max-height: 600px) {
    .navigationButton {
        bottom: 15px !important;
        right: 15px !important;
        top: auto !important;
        left: auto !important;
        margin: 0 !important;
    }
    .navigationButton.active {
        bottom: 15px !important;
        right: 15px !important;
        top: auto !important;
        left: auto !important;
        margin: 0 !important;
        width: 140px;
        height: 140px;
    }
}