.button {
    border: 1px solid #FE0359;
    border-radius: 4px;
    background: #FE0359;
    padding: 7px 6px 6px 6px;
    min-width: 120px;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    display: inline-block;
    min-height: 32px;
    text-align: center;
    user-select: none;
    position: relative;
    /* overflow: hidden; */
    transition: all 0.3s ease 0s;
}

.button svg * {
    transition: all 0.3s ease 0s;
}
.button svg,
.button img {
    margin-right: 8px;
    vertical-align: middle;
}

.button:hover, .button:focus {
    background: none;
    color: #FE0359;
}


.button:hover svg *, .button:focus svg * {
    fill: #FE0359;
}

.button--white {
    border-color: #ffffff;
    background: #ffffff;
    color: #1F1F1F;
}

.button--white:hover, .button--white:focus {
    color: #ffffff;
    background: none;
}

.ps-row {
    --bs-gutter-x: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(-.5* var(--bs-gutter-x));
    margin-left: calc(-.5* var(--bs-gutter-x));
}

.ps-row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x)* .5);
    padding-left: calc(var(--bs-gutter-x)* .5);
}

.ps-col {
    flex: 1 0 0%;
}
