.custom__btn {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0;
    border-radius: 4px;
    box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.24), -1px -1px 1px 0 rgba(0, 0, 0, 0.08);
    border: solid 1px transparent;
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.custom__btn:focus {
    box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.24), -1px -1px 1px 0 rgba(0, 0, 0, 0.08);
}

.large__btn {
    width: 128px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
}

.action__btn {
    color: #ffffff !important;
    background-color: #4146e0 !important;
    background-image: linear-gradient(#4146e0, #4146e0), linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.08)) !important;
    box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.24), -1px -1px 1px 0 rgba(0, 0, 0, 0.08) !important;
    border-radius: 4px !important;
    width: 100%;
    position: relative !important;
    overflow: hidden !important;
    transition: 500ms ease all;
}

.action__btn:before {
    content: '';
    position: absolute;
    top: -40%;
    right: 110%;
    width: 30px;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(20deg);
    box-sizing: border-box;
}

.action__btn:not(:disabled):not(.disabled):hover {
    background-color: #4146e0 !important;
    background-image: linear-gradient(#4146e0, #4146e0), linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.08)) !important;
    cursor: pointer;
}

.action__btn:not(:disabled):not(.disabled):hover:before {
    right: -50%;
    transition: 1s ease all;
    box-sizing: border-box;
}

.action__btn:disabled,
.action__btn.disabled {
    background-color: #ebebeb !important;
    background-image: linear-gradient(#ebebeb, #ebebeb), linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.08)) !important;
}
