/* ----- BUTTONS ----- */
/* Default */
a.btn, button {
  display: inline-block;
  min-width: 150px;
  margin: 0px;
  padding: 18px 40px 18px 40px;
  background: rgba(255, 255, 255, 0.6);
  font: 700 14px/14px "Montserrat", Helvetica, Arial, san-serif;
  text-transform: uppercase;
  text-align: center;
  text-shadow: none;
  position: relative;
  cursor: pointer;
  color: #de6463;
  white-space: nowrap;
  letter-spacing: 1px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-box-shadow: 0 0 0 1px #de6463;
  -moz-box-shadow: 0 0 0 1px #de6463;
  box-shadow: 0 0 0 1px #de6463;
  transition: all .3s ease-in-out;
}
a.btn:after, a.btn:before {
  display: none;
  border-bottom: none;
}
a.btn:hover, button:hover {
  color: #fff;
  background: #f26e6d;
  /*-webkit-box-shadow: 0 0 0 3px #f26e6d;
	-moz-box-shadow: 0 0 0 3px #f26e6d;
	box-shadow: 0 0 0 3px #f26e6d;	*/
}
a.btn:after, button:after {
  display: none;
}
a.btn + a.btn, button + button {
  margin-left: 7px;
}
/* ----- BUTTON STYLES ----- */
a.btn.round, button.round {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}
a.btn.bubble, button.bubble {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
}
a.btn.sm, button.sm {
  text-transform: capitalize;
  min-width: auto;
  padding: 8px 25px 8px 25px;
}
/* ----- BUTTON COLORS ----- */
a.btn.mint {
  color: #fff;
  background: #3cd2ac;
  /*border: 2px solid #3cd2ac;*/
}
a.btn.mint:hover {
  color: #fff;
  background: #69f5c6;
  /*border: 2px solid #69f5c6;*/
}
a.btn.red {
  color: #94192b;
  border: 2px solid #94192b;
  box-shadow: 0 0 0 1px #94192b;
}
a.btn.red:hover {
  color: #fff;
  background: #94192b;
  border: 2px solid #94192b;
}
a.btn.green {
  color: rgba(158, 209, 0, 1.0);
  border: 2px solid rgba(158, 209, 0, 1.0);
}
a.btn.green:hover {
  color: #fff;
  background: rgba(158, 209, 0, 1.0);
  border: 2px solid rgba(158, 209, 0, 1.0);
}
a.btn.blue {
  color: rgba(0, 177, 255, 1.0);
  border: 2px solid rgba(0, 177, 255, 1.0);
}
a.btn.blue:hover {
  color: #fff;
  background: rgba(23, 168, 226, 1.0);
  border: 2px solid rgba(23, 168, 226, 1.0);
}
a.btn.pink {
  color: #fff;
  background: #de6463;
  -webkit-box-shadow: 0 0 0 1px #de6463;
  -moz-box-shadow: 0 0 0 1px #de6463;
  box-shadow: 0 0 0 1px #de6463;
}
a.btn.pink:hover {
  color: #fff;
  background: #f26e6d;
}
a.btn.orange {
  color: #e85034;
  border: 2px solid #e85034;
}
a.btn.orange:hover {
  color: #fff;
  background: #e85034;
  border: 2px solid #e85034;
}
a.btn.lhtgry {
  color: rgba(236, 236, 236, 1.0);
  border: 2px solid rgba(236, 236, 236, 1.0);
}
a.btn.lhtgry:hover {
  color: #fff;
  background: rgba(236, 236, 236, 1.0);
  border: 2px solid rgba(236, 236, 236, 1.0);
}
a.btngry {
  color: rgba(76, 76, 76, 1.0);
  border: 2px solid rgba(76, 76, 76, 1.0);
}
a.btngry:hover {
  color: #fff;
  background: rgba(76, 76, 76, 1.0);
  border: 2px solid rgba(76, 76, 76, 1.0);
}
a.btnmedgry {
  color: rgba(59, 59, 59, 1.0);
  border: 2px solid rgba(59, 59, 59, 1.0);
}
a.btnmedgry:hover {
  color: #fff;
  background: rgba(59, 59, 59, 1.0);
  border: 2px solid rgba(59, 59, 59, 1.0);
}
a.btndrkgry {
  color: rgba(34, 34, 34, 1.0);
  border: 2px solid rgba(34, 34, 34, 1.0);
}
a.btndrkgry:hover {
  color: #fff;
  background: rgba(34, 34, 34, 1.0);
  border: 2px solid rgba(34, 34, 34, 1.0);
}
a.btnwht {
  color: rgba(255, 255, 255, 1.0);
  border: 2px solid rgba(255, 255, 255, 1.0);
}
a.btnwht:hover {
  color: rgba(59, 59, 59, 1.0);
  background: rgba(255, 255, 255, 1.0);
  border: 2px solid rgba(255, 255, 255, 1.0);
}
a.btnblk {
  color: rgba(0, 0, 0, 1.0);
  border: 2px solid rgba(0, 0, 0, 1.0);
}
a.btnblk:hover {
  color: #fff;
  background: rgba(0, 0, 0, 1.0);
  border: 2px solid rgba(0, 0, 0, 1.0);
}
/* ----- MATERIAL DESIGN RIPPLE EFFECT ----- */
.ripple {
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  transform: translate3d(0, 0, 0);
}
.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  user-select: none;
  pointer-events: none;
  padding: 0;
  margin: 0;
  opacity: 0.6;
  transform: translate3d(-50%, -50%, 0);
}
.btn-donate a {
  display: inline-block;
  min-width: 100px;
  padding: 12px 20px 12px 20px;
  margin: 22px 20px 0px 0px;
  background: #de6463;
  font: 700 12px/12px "Montserrat", Helvetica, Arial, san-serif;
  text-transform: uppercase;
  text-align: center;
  text-shadow: none;
  position: relative;
  cursor: pointer;
  color: #fff;
  float: right;
  white-space: nowrap;
  letter-spacing: 1px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-box-shadow: 0 0 0 1px #de6463;
  -moz-box-shadow: 0 0 0 1px #de6463;
  box-shadow: 0 0 0 1px #de6463;
  transition: all .3s ease-in-out;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}
.btn-donate a:hover {
  color: #fff;
  background: #f26e6d;
}
@media screen and (max-width: 1024px) {
  .btn-donate a {
    display: none;
  }
}
/* MIN-WIDTH 320px - MAX-WIDTH 480px */
@media screen and (min-width: 320px) and (max-width: 480px) {
  a.btnred.spacer, a.btngreen.spacer, a.btnblue.spacer, a.btnpink.spacer, a.btnorange.spacer, a.btnlhtgry.spacer, a.btngry.spacer, a.btnmedgry.spacer, a.btndrkgry.spacer, a.btnwht.spacer, a.btnblk.spacer {
    margin: 0px 5px 10px 5px;
  }
}