

.sbx-button-primary {
    /* Master Primary Button */

    display: inline-block;
    padding: 20px 38px;
    font-weight: 700;
    font-size: 18px;
    background: #25AF46;
    border: 1px solid #25AF46;
    border-radius: 90px;
    color: white;
}

.sbx-button-primary:disabled {
    /* Master Primary Button */
    background: #D3D3D3;
    border: 1px solid #D3D3D3;
    color: white;
}

.sbx-button-primary:disabled:hover {
    /* Master Primary Button */
    background: #cacaca;
    border: 1px solid #cacaca;
    color: white;
}

.sbx-button-primary:hover {
    /* Master Primary Button */
    background: #179535;
    color: white;
}

.sbx-button-secondary {
    /* Master Primary Button */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px 38px;
    gap: 6px;
    background: #fff;
    border-radius: 90px;
    color: #541B71;

    /* Button Text */

    font-weight: 700;
    font-size: 18px;



    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;

}

.sbx-button-secondary:hover {
    /* Master Primary Button */
    background: #ececec;
    color: #541B71;

}

.sbx-button-branded {
    /* Master Primary Button */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px 38px;
    gap: 6px;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    background: linear-gradient(to right, #c0105d, #441B71); /* Adjust the gradient colors as needed */
    border-radius: 90px;


}

.sbx-button-branded:hover {
    /* Master Primary Button */
    background: linear-gradient(to right, #c0105d, #2e124d); /* Adjust the gradient colors as needed */
    color: #dcdcdc;
}

.sbx-button-outline {
    /* Master Primary Button */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px 38px;
    gap: 6px;

    /* Button Text */

    font-weight: 700;
    font-size: 18px;
    color: #fff;
    border: 1px solid white;
    background: transparent;
    border-radius: 90px;
    transition-duration: 300ms;
}

.sbx-button-outline:hover {
    /* Master Primary Button */
    background: white;
    color: #000;
}

.sbx-button-outline-dark {
    /* Master Primary Button */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px 38px;
    gap: 6px;

    /* Button Text */

    font-weight: 700;
    font-size: 18px;
    color: #454545;
    border: 1px solid #454545;
    background: transparent;
    border-radius: 90px;
    transition-duration: 300ms;
}

.sbx-button-outline-dark:hover {
    /* Master Primary Button */
    background: rgba(69, 69, 69, 0.25);
    color: #000;
}

.sbx-button-small {
    padding: 10px 18px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.sbx-button-small-squared {
    padding: 8px 14px;
    font-weight: 700;
    font-size: 12px;
    line-height: 12px;
    border-radius: 6px;
}

.sbx-menu-link {
    /* Log In */

    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    text-align: center;
    padding-bottom: 5px; /* Adjust as needed for spacing */
    color: #454545;
    position: relative;
    display: inline-block;


}

.sbx-menu-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px; /* Thickness of the underline */
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, #E3136E, #441B71); /* Adjust the gradient colors as needed */
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.sbx-menu-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.sbx-menu-link:hover {

    color: #000000;
}

.text-branded {
    background: linear-gradient(to right, #441B71 20%, #E3136E 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.text-narrow {
    font-weight: 200;
}

.text-small {
    font-size: 12px;
}

.text-headline {
    font-family: "Nunito sans", sans-serif;
    font-weight: 700;
    font-size: 34px;
    margin: 0;
    padding: 0;

}

label {
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    color: #454545;
}

.link {
    font-weight: 700;
    color: #AD1670;
    text-decoration: underline !important;
}


/*FORMS*/

input {
    /* Input / Medium  */

    box-sizing: border-box;

    /* Auto layout */
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 10px 10px;


    background: #FFFFFF;
    border: 1px solid #BBBBBB;
    border-radius: 6px;

    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height, or 150% */

    /* Neutral / 900 */
    color: #212529;


    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 1;

}

input:disabled {
    background: #e5e5e5;
}

.card-brand-colors {

    /* Pricing Card  */
    color: white !important;
    display: flex;
    box-sizing: border-box;
    padding: 32px;
    /* Neutral/100 */
    background: linear-gradient(230.32deg, #E3136E 0%, #441B71 92.27%);
    /* Neutral/300 */
    border: 1px solid #EFF0F7;
    /* General/Shadow 02 */
    box-shadow: 0px 2px 12px rgba(20, 20, 43, 0.08);
    border-radius: 24px;
    width: 100%;
    margin-bottom: 25px;
}

.chip-darkgrey {
    /* Rectangle 4464 */
    background: rgba(51, 51, 51, 0.4);
    border-radius: 10px;
    padding: 5px 10px;
    color: white;
    font-weight: 900;
    text-transform: uppercase;
}

/*HR with text*/

.hr-with-text {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.hr-with-text::before,
.hr-with-text::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ccc;
}

.hr-with-text:not(:empty)::before {
    margin-right: .25em;
}

.hr-with-text:not(:empty)::after {
    margin-left: .25em;
}

.hr-with-text span {
    display: inline-block;
    padding: 10px 10px;
    margin: 0 20px;
    background: linear-gradient(to right, #800080, #ff007f);
    border-radius: 50%;
    color: white;
    font-weight: bold;
}