.action-button {
    background: #25A8E0;
    border: 2px solid #25A8E0;
    box-shadow: 0 2px 2px rgba(0,0,0,.1);
    color: #fff;
    border-radius: 50%;
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    position: relative;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    margin: 0 1px;
    outline: 0;
    transition: all .1s;
}
 
    .action-button:hover:not(.fab),
    .action-button:focus:not(.fab),
    .action-button.active:not(.fab) {
        background: #FFFFFF;
        border: 2px solid #25A8E0;
        color: #25A8E0;
        text-decoration: none;
        transition: all .1s;
    }

    .action-button:visited:not(.fab) {
        text-decoration: none;
    }

    .action-button.pickup {
        background-color: #37CA30;
        border-color: #37CA30;
    }

        .action-button.pickup:hover,
        .action-button.pickup:focus,
        .action-button.pickup:active,
        .action-button.pickup.active {
            background: #FFFFFF;
            border: 2px solid #37CA30;
            color: #37CA30;
        }

    .action-button.greenIcon {
        background-color: #37CA30;
        border-color: #37CA30;
    }

        .action-button.greenIcon:hover,
        .action-button.greenIcon:focus,
        .action-button.greenIcon:active,
        .action-button.greenIcon.active {
            background: #FFFFFF;
            border: 2px solid #37CA30;
            color: #37CA30;
        }

    .action-button.redIcon {
        background-color: #d2312d;
        border-color: #d2312d;
    }

        .action-button.redIcon:hover,
        .action-button.redIcon:focus,
        .action-button.redIcon:active,
        .action-button.redIcon.active {
            background: #FFFFFF;
            border: 2px solid #d2312d;
            color: #d2312d;
        }

    .action-button.orangeIcon {
        background-color: #ED9C28;
        border-color: #ED9C28;
    }

        .action-button.orangeIcon:hover,
        .action-button.orangeIcon:focus,
        .action-button.orangeIcon:active,
        .action-button.orangeIcon.active {
            background: #FFFFFF;
            border: 2px solid #ED9C28;
            color: #ED9C28;
        }


    .action-button.disabled {
        background-color: #70dc6b;
        border-color: #70dc6b;
        /*cursor:default;*/
    }

        .action-button.disabled:hover,
        .action-button.disabled:focus,
        .action-button.disabled:active,
        .action-button.disabled.active {
            background: #FFFFFF;
            border: 2px solid #70dc6b;
            color: #70dc6b;
        }

    .action-button.pickup[disabled],
    .action-button.pickup[disabled]:hover,
    .action-button.pickup[disabled]:focus,
    .action-button.pickup[disabled]:active {
        background-color: #afebac;
        border-color: #afebac;
    }

    .action-button.grey {
        background-color: #ABB4BE;
        border-color: #ABB4BE;
    }
.action-button.green {
    background-color: #47a447;
    border-color: #47a447;
}
    .action-button.green:hover,
    .action-button.green:focus,
    .action-button.green:active,
    .action-button.green.active {
        background: #FFFFFF;
        border: 2px solid #47a447;
        color: #47a447;
    }
        .action-button.grey:hover,
        .action-button.grey:focus,
        .action-button.grey:active,
        .action-button.grey.active {
            background: #FFFFFF;
            border: 2px solid #ABB4BE;
            color: #ABB4BE;
        }

    .action-button.archive {
        background-color: #8C192A;
        border-color: #8C192A;
    }

        .action-button.archive:hover,
        .action-button.archive:focus,
        .action-button.archive:active,
        .action-button.archive.active {
            background: #FFFFFF;
            border: 2px solid #8C192A;
            color: #8C192A;
        }

        .action-button.archive[disabled],
        .action-button.archive[disabled]:hover,
        .action-button.archive[disabled]:focus,
        .action-button.archive[disabled]:active {
            background-color: #e57081;
            border-color: #e57081;
        }

    .action-button.refresh {
        background-color: orange;
        border-color: orange;
    }

        .action-button.refresh:hover,
        .action-button.refresh:focus,
        .action-button.refresh:active,
        .action-button.refresh.active {
            background: #FFFFFF;
            border: 2px solid orange;
            color: orange;
        }

    .action-button.small {
        height: 30px;
        width: 30px;
        font-size: 15px;
        line-height: 34px;
    }

    .action-button.fab {
        top: auto;
        right: 15px;
        bottom: 15px;
        left: auto;
        position: fixed;
        z-index: 10000;
        line-height: 56px;
        min-width: 0;
        width: 56px;
        height: 56px;
        font-size: 15px;
        box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
        -ms-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        -webkit-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }

@media (max-width: 420px) {
    .action-button.fab {
        line-height: 48px;
        min-width: 0;
        width: 48px;
        height: 48px;
    }
}

.fab-down #fab-scroll-up,
.fab-up #fab-scroll-down {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.fab-down #fab-scroll-down,
.fab-up #fab-scroll-up {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

#fab-scroll-up .fas {
    position: relative;
    top: -2px;
}

.action-buttonGridClass {
    width: 24px;
    height: 24px;
    font-size: 14px;
    line-height: 26px;
}

button.action-buttonGridClass {
    padding: 0;
}

.action-button.action-button-xs {
    width: 18px;
    height: 18px;
    font-size: 10px;
    line-height: 20px;
}
    .action-button.action-button-xs i {
        left: -2px;
        position: relative;
        top: -3px;
    }
.action-button-disabled {
    cursor: not-allowed;
    background-color: lightgray;
    border: lightgray;
    color:  darkgrey;
}

.usedInCard {
    width: 14px;
    height: 22px;
}


    .action-button-disabled:hover,
    .action-button-disabled:focus,
    .action-button-disabled:active {
        background-color: lightgray !important;
        border: lightgray !important;
        color: darkgrey !important;
    }

.action-button[disabled],
.action-button[disabled]:hover,
.action-button[disabled]:focus,
.action-button[disabled]:active {
    box-shadow: none;
    opacity: .65;
    background-color: #8cd1ef;
    border-color: #8cd1ef;
    color: white;
}

.action-button.default {
    background-color: #FFF;
    border-color: #ccc;
    color: #333;
}

  .action-button.default:hover,
  .action-button.default:focus,
  .action-button.default:active,
  .action-button.default.active {
      background: #e6e6e6;
      border: 2px solid #adadad;
      color: #333;
  }

.action-button.btn-warning {
    border-color: #ed9c28;
}
    .action-button.btn-warning:hover,
    .action-button.btn-warning:focus,
    .action-button.btn-warning:active {
        background-color: #FFF;
        border-color: #ed9c28;
        color: #ed9c28;
    }

.action-button.btn-warning[disabled]:hover {
    background-color: #f5c786;
    border-color: #f5c786;
    color: #FFF;
}
.action-button.btn-danger {
    border-color: #d2322d;
}
    .action-button.btn-danger:hover,
    .action-button.btn-danger:focus,
    .action-button.btn-danger:focus {
        background-color: #FFF;
        border-color: #d2322d;
        color: #d2322d;
    }

.action-button.btn-failure {
    background-color: #777777;
    border-color: #777777;
    color: #FFF;
}

    .action-button.btn-failure:hover,
    .action-button.btn-failure:focus,
    .action-button.btn-failure:focus {
        background-color: #FFF;
        border-color: #777777;
        color: #777777;
    }
