.lreb-button-wrap {
    display: flex;
    width: 100%;
}

.lreb-button-wrap,
.lreb-button,
.lreb-button * {
    box-sizing: border-box;
}

.lreb-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    padding: 20px 20px 20px 28px;
    background-color: #ffffff;
    border: 2px solid #00005A;
    border-radius: 50px;
    color: #00005A;
    gap: 16px;
    font-size: 1.2em;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.2;
    outline: none;
    transition-property: background-color, color, border-color, transform, box-shadow;
    transition-timing-function: ease;
}

.lreb-button:hover,
.lreb-button:focus {
    text-decoration: none;
}

.lreb-button--lift:hover,
.lreb-button--lift:focus {
    transform: translateY(-2px);
}

.lreb-button-text {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: anywhere;
}

.lreb-icon-wrap {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: #f0f0f0;
    border-radius: 50%;
}

.lreb-icon {
    width: 100%;
    height: 100%;
    background-color: #3B3666;
    color: #ffffff;
    border-radius: 50%;
}

.lreb-icon-wrap,
.lreb-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    transition-property: background-color, color, border-color, transform;
    transition-timing-function: ease;
}

.lreb-icon {
    width: 100%;
    height: 100%;
}

.lreb-icon svg {
    display: block;
    flex: 0 0 auto;
}

@media (max-width: 767px) {
    .lreb-button {
        width: 100%;
    }
}
