.button-primary {
    height: 46px;
    background: #000000;
    border: unset;
    outline: none;
    text-align: center;
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    padding: 8px 16px;
    min-width: 120px;
    transition: transform 0.2s ease, background 0.2s ease;
}
.button-primary:active {
    background: #212529;
}
.button-primary:not([disabled]):hover {
    transform: scale(0.92);
}
.button-primary[disabled] {
    opacity: 0.3;
    height: 46px !important;
    pointer-events: none;
    background: #000000;
}

.searchform-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.search-list-matches {
    margin-top: 56px;
}

.search-list-matches a.search-list {
    color: #6C757D;
    margin: 0;
    font-weight: 350;
    font-size: 40px;
    font-family: Gravity;
    cursor: pointer;
    text-decoration: unset;
    display: block;
}
.search-list-matches a.search-list .search-text {
    font-weight: 700;
    color: #000000;
}
.search-list-matches a.search-list:not(:last-child) {
    margin-bottom: 29px;
}
@media (max-width: 600px) {
    .search-list-matches a.search-list {
        font-size: 20px;
    }
}
