/* src/styles.scss */
@font-face {
  font-family: "Jersey";
  src: url("./media/Jersey10-Regular.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins Regular";
  src: url("./media/Poppins-Regular.otf") format("opentype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins Medium";
  src: url("./media/Poppins-Medium.otf") format("opentype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins SemiBold";
  src: url("./media/Poppins-SemiBold.otf") format("opentype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins Bold";
  src: url("./media/Poppins-Bold.otf") format("opentype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins ExtraBold";
  src: url("./media/Poppins-ExtraBold.otf") format("opentype");
  font-style: normal;
  font-display: swap;
}
.Jersey {
  font-family: "Jersey", sans-serif;
}
.Poppins-Regular {
  font-family: "Poppins Regular", serif;
}
.Poppins-Medium {
  font-family: "Poppins Medium", serif;
}
.Poppins-SemiBold {
  font-family: "Poppins SemiBold", serif;
}
.Poppins-Bold {
  font-family: "Poppins Bold", serif;
}
.Poppins-ExtraBold {
  font-family: "Poppins ExtraBold", serif;
}
:root {
  --black: #1A1023;
  --white: #FFFFFF;
}
html,
body {
  touch-action: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
img {
  width: 100%;
  max-width: 100%;
}
body {
  font-family: "Poppins Regular", sans-serif;
  font-size: 12px;
  line-height: 18px;
  color: #1A1023;
}
button {
  font-family: "Poppins Bold", sans-serif;
  background: transparent;
  color: #1A1023;
  border: none;
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none !important;
}
strong {
  font-family: "Poppins Bold", sans-serif;
}
.mini-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins Bold", serif;
  font-size: 18px;
  color: rgb(26, 16, 35);
  width: 140px;
  height: 43px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.mini-btn.grey {
  background-image: url(/assets/images/mini-grey-btn.png);
}
.mini-btn.red {
  background-image: url(/assets/images/mini-red-btn.png);
}
.mini-btn:active {
  background-image: url(/assets/images/mini-btn-pressed.png);
  color: #fff;
}
.modal-component {
  width: 100%;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
