/* === === === Button === === === */

.JobThemeButton {
  position: relative;
  display: table;
  padding: 15px 55px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: background 250ms ease-in-out;
}

@media screen and (min-width: 601px) {

.JobThemeButton {
    padding: 12px 55px;
    font-size: 1.40625rem;
}
  }

a.JobThemeButton {
  cursor: pointer;
}

.JobThemeButton + .JobThemeButton {
  margin-top: 10px;
}

.JobThemeButton > svg {
  width: 18px;
  height: 16px;
  margin-right: 10px;
  margin-bottom: -2px;
  fill: #ffffff;
}

.JobThemeButton-arrow {
  margin-left: 8px;
}

.JobThemeButton--orange {
  background-color: var(--clr-orange);
  color: #ffffff;
}

.JobThemeButton--white {
  background-color: #ffffff;
  color: var(--clr-blue);
}

.JobThemeButton--blue {
  background-color: var(--clr-blue);
  color: #ffffff;
}

.JobThemeButton--left {
  display: table;
  margin-right: auto;
}

.JobThemeButton--center {
  display: table;
  margin-right: auto;
  margin-left: auto;
}

.JobThemeButton--right {
  display: table;
  margin-left: auto;
}
