.button {
    border: 1px solid #FCC419;
    background: #FCC419;
    /* box-shadow: 0 1px 5px 0px #C39506 inset, 0 -1px 5px 0px #C39506 inset; */
    padding: 8px 13px 8px 12px;
    color: #1F1F1F;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    display: inline-block;
    text-align: center;
    user-select: none;
    border-radius: 800px;
    position: relative;
    /* overflow: hidden; */
    transition: all 0.3s ease 0s;
}

.button:hover, .button:focus {
    background: none;
    color: #FCC419;
}

.button--white {
    border-color: #ffffff;
    background: #ffffff;
}

.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%;
}
