/* src/styles.scss */
.notifier__container * {
  box-sizing: border-box;
}
.notifier__container-list {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}
.notifier__notification {
  display: flex;
  align-items: center;
  position: fixed;
  visibility: hidden;
  z-index: 10000;
  will-change: transform;
  backface-visibility: hidden;
}
.notifier__notification--material {
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  cursor: default;
  padding-top: 11px;
  padding-right: 26px;
  padding-bottom: 10px;
  padding-left: 26px;
}
.notifier__notification--material .notifier__notification-message {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
  vertical-align: top;
  line-height: 32px;
  font-size: 15px;
}
.notifier__notification--material .notifier__notification-button {
  display: inline-block;
  transition: opacity 0.2s ease;
  opacity: 0.5;
  margin-right: -10px;
  margin-left: 10px;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
  padding: 6px;
  width: 32px;
  height: 32px;
  vertical-align: top;
}
.notifier__notification--material .notifier__notification-button:hover,
.notifier__notification--material .notifier__notification-button:focus {
  opacity: 1;
}
.notifier__notification--material .notifier__notification-button:active {
  transform: scale(0.82);
  opacity: 1;
}
.notifier__notification--default {
  background-color: #444;
  color: #fff;
}
.notifier__notification--default .notifier__notification-button-icon {
  fill: #fff;
}
.notifier__notification--error {
  background-color: #d9534f;
  color: #fff;
}
.notifier__notification--error .notifier__notification-button-icon {
  fill: #fff;
}
.notifier__notification--info {
  background-color: #5bc0de;
  color: #fff;
}
.notifier__notification--info .notifier__notification-button-icon {
  fill: #fff;
}
.notifier__notification--success {
  background-color: #5cb85c;
  color: #fff;
}
.notifier__notification--success .notifier__notification-button-icon {
  fill: #fff;
}
.notifier__notification--warning {
  background-color: #f0ad4e;
  color: #fff;
}
.notifier__notification--warning .notifier__notification-button-icon {
  fill: #fff;
}
@font-face {
  font-family: "Mark Pro";
  src: url("./media/MarkPro-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mark Pro";
  src: url("./media/MarkPro-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mark Pro";
  src: url("./media/MarkPro.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mark Pro";
  src: url("./media/MarkPro-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
.flex {
  display: flex;
}
.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}
.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.align-end {
  align-items: flex-end;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
* {
  margin: 0;
  padding: 0;
  word-wrap: break-word;
  box-sizing: border-box;
}
body {
  color: #999;
  font-size: 22px;
  overscroll-behavior-y: none;
  line-height: 1.2;
  font-family:
    "Mark Pro",
    "Arial",
    sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 1023px) {
  body {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 18px;
  }
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
}
a {
  outline: none;
  cursor: pointer;
  color: #d82dd3;
  text-decoration: none;
}
a:hover {
  color: #000;
}
img {
  height: auto;
  display: block;
  max-width: 100%;
}
:focus {
  outline: none;
}
::-ms-expand {
  display: none;
}
ul {
  list-style: none;
}
ul li {
  list-style: none;
}
.container {
  margin: 0 auto;
  max-width: 1060px;
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 1023px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.button {
  border: 0;
  gap: 10px;
  height: 50px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 700;
  appearance: none;
  padding: 5px 15px;
  border-radius: 50px;
  align-items: center;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  transition: 0.3s ease-in-out;
  background-color: #d82dd3;
}
.button:hover {
  color: #fff;
  background-color: rgb(198.6144578313, 36.8855421687, 193.8855421687);
}
.button.outline {
  color: #d82dd3;
  border: 1px solid #d82dd3;
  background-color: transparent;
}
.button.outline:hover {
  color: #fff;
  background-color: #d82dd3;
}
.button.disabled,
.button:disabled {
  color: #fff;
  pointer-events: none;
  background-color: #cccccc;
}
.button.sm {
  height: 30px;
  font-size: 14px;
  padding: 5px 12px;
}
.button.scale:hover {
  transform: scale(1.08);
}
.button.full {
  width: 100%;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-weight: 700;
  line-height: 1;
  margin-top: 0 !important;
  color: #000;
}
body h1,
body h2 {
  font-size: 40px;
}
@media (max-width: 1199px) {
  body h1,
  body h2 {
    font-size: 35px;
  }
}
@media (max-width: 1023px) {
  body h1,
  body h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  body h1,
  body h2 {
    font-size: 26px;
  }
}
body h3 {
  font-size: 30px;
}
@media (max-width: 1199px) {
  body h3 {
    font-size: 28px;
  }
}
@media (max-width: 1023px) {
  body h3 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  body h3 {
    font-size: 24px;
  }
}
body h4 {
  font-size: 28px;
}
@media (max-width: 1199px) {
  body h4 {
    font-size: 26px;
  }
}
@media (max-width: 1023px) {
  body h4 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  body h4 {
    font-size: 22px;
  }
}
body h5 {
  font-size: 25px;
}
@media (max-width: 1199px) {
  body h5 {
    font-size: 22px;
  }
}
@media (max-width: 1023px) {
  body h5 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  body h5 {
    font-size: 18px;
  }
}
body h6 {
  font-size: 20px;
}
@media (max-width: 1023px) {
  body h6 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  body h6 {
    font-size: 16px;
  }
}

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