<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * @file
 * Styles for Bartik's buttons.
 */

.button {
  border: 1px solid #000;
  color: #000;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  text-align: center;
  padding: 0 5px;
  border-radius: 10px;
  display: inline-block;
  line-height: normal;
}
/* .button:hover,
.button:active,
.button:focus {
  background: #dedede;
  color: #5a5a5a;
  text-decoration: none;
}
.button.is-disabled:hover,
.button.is-disabled:active,
.button.is-disabled:focus,
.button.is-disabled {
  background: #ededed;
  border-color: #bbb;
  color: #717171;
  cursor: default;
} */

.button a {
  color: #000;
}

.button a:hover, .button a:focus, .button .link:hover, .button .link:focus {
  color: #000;
}

.liqwrapper {
  display: -webkit-flex; /* Safari */
  display: flex;
  -webkit-flex-direction: row; /* Safari */
  flex-direction: row;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-justify-content: space-between; /* Safari */
  justify-content: space-between;
}

@media all and (max-width: 605px) {
  .liqwrapper {
    -webkit-justify-content: center; /* Safari */
    justify-content: center;
  }
}

.liqwrapper div {
  width: 280px;
  /* border: 1px solid; */
  margin-bottom: 20px;
}

.liqwrapper h3, .liqwrapper p {
  text-align: center;
}

.formliq {
  display: -webkit-flex; /* Safari */
  display: flex;
  -webkit-flex-direction: row; /* Safari */
  flex-direction: row;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-justify-content: space-around; /* Safari */
  justify-content: space-around;
}

.liq, .liq a {
  border: none !important;
  display:inline-block !important;
  text-align: center !important;
  padding: 7px 20px !important;
  color: #fff !important;
  font-size:16px !important;
  font-weight: 600 !important;
  font-family:OpenSans, sans-serif;
  cursor: pointer !important;
  border-radius: 2px !important;
  background: rgb(122,183,43) !important;
}

.liqdiv {
  display: -webkit-flex; /* Safari */
  display: flex;
  -webkit-flex-direction: row; /* Safari */
  flex-direction: row;
  -webkit-flex-wrap: nowrap; /* Safari */
  flex-wrap: nowrap;
  -webkit-justify-content: space-between; /* Safari */
  justify-content: space-between;
  margin-bottom: 25px;
}

.crypto img {
  width: 190px;
}</pre></body></html>