.e-button,
.e-icon-button {
    position: relative;
    padding: 2.5px;
    border-radius: 7px;
    border: 1px solid var(--bs-primary);
    background: var(--bs-primary);
    box-sizing: border-box;
    width: fit-content;
    min-width: 64px;
    min-height: 36.5px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    overflow: hidden;
    outline: none;
    text-align: center;
    user-select: none;
    transition: transform 0.1s ease, background-color 0.3s ease;
    cursor: pointer;
    font-size: 1.2rem;
}

.e-icon-button {
    border-radius: 43.5px;
    min-height: unset;
    min-width: unset;
    width: 43.5px !important;
    height: 43.5px !important;
}

.e-icon-button > .icon{
    width: 33.5px !important;
    height: 33.5px !important;
}

.e-button.action {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    border-radius: 64px;
}

.e-button.small {
    padding: 2px;
    font-size: 1rem;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 44px;
}

.e-button:focus,
.e-button:active {
    outline: none;
    box-shadow: none;
    border: 1px solid var(--bs-primary);
}

.e-button.outlined , .e-icon-button.outlined {
    background: #ffffff;
    color: var(--bs-primary);
}

.e-button.text , .e-icon-button.text{
    background: none;
    color: var(--bs-primary);
    border: none;
}

.e-button .ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-animation 400ms linear;
    background-color: rgba(255, 255, 255, 0.301);
    pointer-events: none;
}

.e-button.outlined .ripple,
.e-button.text .ripple {
    background-color: rgba(var(--bs-primary-rgb), 0.301);
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}