.db-wa-button {
    --db-wa-icon-box-width: 130px;
    --db-wa-radius: 0px;
    --db-wa-font-size: 32px;
    --db-wa-font-weight: 400;
    --db-wa-content-px: 40px;
    --db-wa-icon-size: 52px;
    --db-wa-left-bg: #1fb954;
    --db-wa-right-bg: #2dd15d;
    --db-wa-text-color: #ffffff;
    --db-wa-icon-color: #ffffff;
    --db-wa-hover-scale: 1.01;

    position: relative;
    display: flex;
    align-items: stretch;
    text-decoration: none;
    border-radius: var(--db-wa-radius);
    overflow: hidden;
    transform: translateZ(0);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.db-wa-button__iconbox {
    width: 70px;
    min-width: 70px;
    background: var(--db-wa-left-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    color: var(--db-wa-icon-color);
}

.db-wa-button__content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 24px;
    background: var(--db-wa-right-bg);
    color: var(--db-wa-text-color);
    min-width: 0;
}

.db-wa-button__content:hover {
    background: #46494f;
}

.db-wa-button:hover .db-wa-button__iconbox {
    background: #2c2c34;
}

.db-wa-button__text {
    display: block;
    font-size: var(--db-wa-font-size);
    font-weight: var(--db-wa-font-weight);
    line-height: 1.2;
    letter-spacing: 0;
    color: inherit;
}

.db-wa-button__svg {
    display: block;
    width: var(--db-wa-icon-size);
    height: var(--db-wa-icon-size);
}

.db-wa-button__iconbox svg {
    width: var(--db-wa-icon-size);
    height: var(--db-wa-icon-size);
    display: block;
    fill: currentColor;
}

.db-wa-button__img {
    display: block;
    width: var(--db-wa-icon-size);
    height: var(--db-wa-icon-size);
    object-fit: contain;
}

@media (max-width: 991px) {
    .db-wa-button {
        --db-wa-height: 110px;
        --db-wa-icon-box-width: 110px;
        --db-wa-font-size: 24px;
        --db-wa-content-px: 24px;
        --db-wa-icon-size: 44px;
    }
}

@media (max-width: 767px) {
    .db-wa-button {
        --db-wa-height: 84px;
        --db-wa-icon-box-width: 84px;
        --db-wa-font-size: 18px;
        --db-wa-content-px: 18px;
        --db-wa-icon-size: 34px;
    }

    .db-wa-button__text {
        line-height: 1.25;
    }
}