.will-filter-bar-submit-button {
  width: auto;
  height: auto;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 12px;
  display: flex;
  align-items: center;
  user-select: none;
}

/* Submit button variants */
.will-filter-bar-submit-button.default {
  background-color: var(--will-primary);
  color: var(--will-white);
}

.will-filter-bar-submit-button.text {
  background-color: transparent;
  color: var(--will-black);
  text-decoration: underline;
  font-weight: 500;
  font-size: 15px;
  padding: 0 10px;
}

.will-filter-bar-submit-button span {
 margin-right: 10px;
 display: flex;
}

button.will-filter-bar-submit-button:disabled  {
  opacity: 0.5;
  cursor: not-allowed;
}


@media (max-width: 960px) {
  .will-filter-bar-submit-button {
    justify-content: center;
   
  }
}

/* --- */

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
