.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
  border-color: transparent;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s, box-shadow 0.3s;
}
.button.hotel {
  background-color: #365959;
  color: #ffffff;
}
.button.hotel:hover {
  background-color: #2b4747;
}
.button.hotel:active {
  background-color: #263e3e;
  color: #ffffff;
}
.button.hotel:disabled {
  background-color: #afbdbd;
  color: #fcfbfb;
  cursor: not-allowed;
}
.button.hotel svg use {
  fill: #ffffff;
  stroke: #ffffff;
}
.button.secondary {
  background-color: #ffffff;
  color: #db4131;
  border: 2px solid #db4131;
  border-radius: 6px;
}
.button.secondary:hover {
  background-color: #f5f0f0;
}
.button.secondary:active {
  background-color: #f5f0f0;
  color: #db4131;
}
.button.secondary:disabled {
  background-color: #ffffff;
  color: #f1b3ad;
  cursor: not-allowed;
}
.button.secondary svg use {
  fill: #db4131;
  stroke: #db4131;
}
.button.secondary-alternative {
  background-color: #ffffff;
  color: #2b121d;
  border: 2px solid #2b121d;
}
.button.secondary-alternative:hover {
  background-color: #f5f0f0;
}
.button.secondary-alternative:active {
  background-color: #f5f0f0;
  color: #2b121d;
}
.button.secondary-alternative:disabled {
  background-color: #ffffff;
  color: #9e9297;
  cursor: not-allowed;
}
.button.black {
  background-color: #55414a;
  color: #ffffff;
}
.button.black:hover {
  background-color: #402a34;
}
.button.black:active {
  background-color: #2b121d;
  color: #ffffff;
}
.button.black:disabled {
  background-color: #bfb8bb;
  color: #ffffff;
  cursor: not-allowed;
}
.button.black svg use {
  fill: #ffffff;
  stroke: #ffffff;
}
.button.primary {
  background-color: #db4131;
  color: #ffffff;
}
.button.primary:hover {
  background-color: #af3427;
}
.button.primary:active {
  background-color: #83271d;
  color: #ffffff;
}
.button.primary:disabled {
  background-color: #f1b3ad;
  color: #fcfbfb;
  cursor: not-allowed;
}
.button.primary svg use {
  fill: #ffffff;
  stroke: #ffffff;
}
.button.small {
  padding: 5px 8px;
}
.button.small .icon-right,
.button.small .icon-left {
  width: 13px;
  height: 13px;
}
.button.medium {
  padding: 6px 12px;
}
.button.medium .icon-left,
.button.medium .icon-right {
  width: 18px;
  height: 18px;
}
.button.large {
  padding: 10px 16px;
}
.button.large .icon-left,
.button.large .icon-right {
  width: 22px;
  height: 22px;
}
.button.align-left {
  justify-content: flex-start;
}
.button.align-center {
  justify-content: center;
}
.button.icon-button {
  padding: 15px;
  border-radius: 6px;
  border: 1px solid #807177;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #402a34;
  background: #f6f6f6;
  text-transform: none;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.03);
}
.button.icon-button:disabled {
  cursor: not-allowed;
}
.button.icon-button .icon-right,
.button.icon-button .icon-left {
  width: 30px;
  height: 30px;
}
.button.icon-button:hover {
  background: #f5f0f0;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.03);
}
.button .icon-left {
  margin-right: 8px;
}
@media only screen and (max-width: 1024px) {
  .button .icon-left {
    margin-right: 6px;
  }
}
.button .icon-right {
  margin-left: 8px;
}

/*# sourceMappingURL=button.css.map */
