.btn-wrapper {
    transform: translateZ(0);
    will-change: backdrop-filter;
    display: block;
    margin: 0;
    padding: 0;
}

.liquid-glass-btn {
    position: relative;
    padding: 0.6rem 1rem;
    display: block;
    background: rgba(245, 230, 200, 0.1);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(245, 230, 200, 0.3);
    border-radius: 12px;
    color: var(--white-color);
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    width: fit-content;
    height: fit-content;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
            0 4px 16px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* liquid effect inside */
.liquid-glass-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(
            circle,
            rgba(245, 230, 200, 0.4) 0%,
            transparent 70%
    );
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.liquid-glass-btn:hover::before {
    width: 300px;
    height: 300px;
}

.liquid-glass-btn:hover {
    background: rgba(245, 230, 200, 0.15);
    border-color: rgba(245, 230, 200, 0.5);
    color: #fff;
    transform: translateY(-2px);
    box-shadow:
            0 8px 24px rgba(245, 230, 200, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.liquid-glass-btn:active {
    transform: translateY(0);
}

.button-groups {
    display: flex;
}

.button-groups .liquid-glass-btn {
    border-radius: 0;
}

.button-groups .btn-wrapper:first-child .liquid-glass-btn  {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.button-groups .btn-wrapper:last-child .liquid-glass-btn {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.liquid-glass-btn.danger {
    background: rgba(245, 0, 0, 0.25);
}

.liquid-glass-btn.danger:hover {
    background: rgba(245, 0, 0, 0.4);
}

.liquid-glass-btn.success {
    background-color: rgba(25, 135, 84, 0.5);
}

.liquid-glass-btn.danger:hover {
    background: rgba(245, 0, 0, 0.4);
}

.buttons-row .col-4 .btn-wrapper:not(:first-child) {
    margin-left: 0.5rem;
}

.svg-button {
    width: 25px;
}