.twb-button {
    padding: 17px 25px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    cursor: pointer;
}
.twb-button-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.twb-button-floating.bottomLeft {
    right: auto;
    left: 20px;
    top: auto;
    bottom: 20px;
}

.twb-button-floating.bottomRight {
    right: 20px;
    left: auto;
    top: auto;
    bottom: 20px;
}

.twb-button-floating.topLeft {
    right: auto;
    left: 20px;
    top: 20px;
    bottom: auto;
}

.twb-button-floating.topRight {
    right: 20px;
    left: auto;
    top: 20px;
    bottom: auto;
}

.twb-style-rounded {
    border-radius: 999px;
}

.twb-style-square {
    border-radius: 0;
}