/* ----- main button ----- */
.jbtn {
  width: fit-content;
  /* padding: 4px 8px; */
  padding: 8px 16px;
  text-transform: uppercase;
  text-align: center;
  background: black;
  border: black solid 1px;
  color: white;
}
.jbtn:hover {
  text-decoration: none;
  background: white;
  border: black solid 1px;
  color: black;
}

/* ----- full color buttons ----- */
.jbtn-black {
  background: black;
  border: black solid 1px;
  color: white;
}
.jbtn-black:hover {
  background: white;
  border: black solid 1px;
  color: black;
}

.jbtn-white {
  background: white;
  border: white solid 1px;
  color: black !important;
}
.jbtn-white:hover {
  background: black;
  border: white solid 1px;
  color: white !important;
}

/* outline buttons */
.jbtn-outline-black {
  background: transparent;
  border: black solid 1px;
  color: black;
}
.jbtn-outline-black:hover {
  background: black;
  border: black solid 1px;
  color: white;
}

.jbtn-outline-white {
  background: transparent;
  border: white solid 1px;
  color: white !important;
}
.jbtn-outline-white:hover {
  background: white;
  border: white solid 1px;
  color: black !important;
}

/* ----- scale on hover ----- */
.jbtn-white-h-scale:hover {
  background: white;
  border: white solid 1px;
  color: black !important;
  transform: scale(1.1);
}

/* ----- filter buttons ----- */


/* -------------------- from main -------------------- */
.btn-outline {
  padding: 4px 8px;
  background: white;
  border: black solid 1px;
  text-transform: uppercase;
  color: black;
  text-align: center;
}

.btn-outline:hover {
  text-decoration: none;
  background: black;
  border: none;
  color: white;
  border: black solid 1px;
}

.btn-outline-big {
  padding: 4px 8px;
  background: white;
  border: black solid 1px;
  text-transform: uppercase;
  color: black;
  text-align: center;
}

.btn-outline-black {
  padding: 4px 8px;
  background: black;
  border: white solid 1px;
  text-transform: uppercase;
  color: white;
  text-align: center;
}

.btn-outline-black:hover {
  background: white;
  color: black;
  border: white solid 1px;
}

.btn-black {
  padding: 4px 8px;
  background: black;
  border: black solid 1px;
  text-transform: uppercase;
  color: white;
  text-align: center;
}

.btn-black:hover {
  background: white;
  border: black solid 1px;
  color: black;
}

.btn-white {
  padding: 4px 8px;
  background: white;
  border: white solid 1px;
  text-transform: uppercase;
  color: black !important;
  text-align: center;
}

.btn-white:hover {
  text-decoration: none !important;
  transform: scale(1.1);
}
