.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  font-weight: 300;
  text-decoration: none;
  padding: 0 1rem;
  justify-content: center;
  min-height: 40px;
  height: 1px;
  cursor: pointer;
  border: none;
}
.button:hover {
  text-decoration: none;
}
.button:hover:before {
  opacity: 1;
}
.button:focus {
  text-decoration: none;
  color: white;
  outline: none;
}
.button-border {
  position: absolute;
  opacity: 0;
  border-style: solid;
  border-width: 2px;
}
.button:hover .button-border {
  opacity: 1;
}
.button .icon-margin {
  margin-right: 5px;
}
.block {
  display: flex;
}
.red {
  color: white;
  background: #ce1126;
}
.red:hover {
  color: white;
}
.red.transparent {
  color: #ce1126;
}
.red.transparent:hover {
  color: #ce1126;
}
.pink {
  color: white;
  background: #d40f7d;
}
.pink:hover {
  color: white;
}
.black {
  color: white;
  background: black;
}
.black:hover {
  color: white;
}
.black.transparent {
  color: black;
}
.black.transparent:hover {
  color: black;
}
.white {
  color: black;
  background: white;
}
.white:hover {
  color: black;
}
.white.transparent {
  color: white;
}
.white.transparent:hover {
  color: white;
}
.gray {
  color: black;
  background: #d7d7d7;
}
.gray:hover {
  color: black;
}
.gray.transparent {
  color: black;
}
.gray.transparent:hover {
  color: black;
}
.opaque .button-border {
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;
}
.transparent {
  background: transparent;
  border-width: 1px;
  border-style: solid;
}
.transparent .button-border {
  border-width: 1px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.disabled {
  composes: gray;
  cursor: not-allowed;
  color: #b3b2b3;
}
.disabled:hover {
  color: #b3b2b3;
}
.disabled .button-border {
  border-width: 0;
}
.small {
  font-size: 0.75rem;
  padding: 0 0.75rem;
  min-height: 30px;
}
.medium {
  font-size: 0.875rem;
  padding: 0 1rem;
  min-height: 40px;
}
.big {
  font-size: 1rem;
  padding: 0 1rem;
  min-height: 50px;
}
@media (min-width: 768px) {
  .big {
    font-size: 1.75rem;
    padding: 0 1.75rem;
    min-height: 80px;
  }
}
.chevron-right {
  justify-content: space-between;
}
.chevron-right:after {
  font-family: "icomoon";
  content: "\e608";
  position: relative;
  display: block;
  align-self: center;
  margin-left: 20px;
}
.chevron-left {
  justify-content: space-between;
}
.chevron-left:before {
  font-family: "icomoon";
  content: "\e616";
  position: relative;
  display: block;
  align-self: center;
  margin-right: 20px;
}
