* {
  /* Firefox */
  scrollbar-color: #d9deea #f1f1f1;
  scrollbar-width: thin;
}
*::-webkit-scrollbar {
  width: 12px;
  background-color: transparent;
}
*::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #e1e5ee;
}

.parent {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parent .column {
  flex-direction: column;
}

.child {
  width: 100%;
  max-width: 1220px;
}
.child.full {
  max-width: 1920px;
}

.container.flex-start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.container.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.container.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.container.flex-up {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.container.flex-down {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  /* Position */
  /* Size */
  /* Color */
}
.button a.base,
.button button.base,
.button input[type=submit].base {
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 18px;
  border-radius: 4px;
  text-align: center;
  color: #ffffff;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.button.group-left {
  justify-content: flex-start;
}
.button.group-center {
  justify-content: center;
}
.button.group-right {
  justify-content: flex-end;
}
.button .small {
  padding: 16px 12px;
}
.button .normal {
  padding: 16px 20px;
  margin: 1rem auto;
}
.button .large {
  padding: 16px 60px;
  margin: 1rem auto;
}
.button .gray {
  border: 1px solid #7b87a3;
  background-color: #7b87a3;
}
.button .pink {
  border: 1px solid #e83687;
  background-color: #e83687;
}
.button .orange {
  border: 1px solid #fec4b0;
  background-color: #fec4b0;
}

.label-tag {
  height: unset !important;
  padding: 10px 15px !important;
  font-size: 16px !important;
  border-radius: 5px;
  color: #ffffff;
  background-color: #7b87a3;
  transition: 0.2s background-color ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.label-tag:hover {
  background-color: #333333;
}
.label-tag.featured {
  background-color: #e83687;
}

.line {
  width: 100%;
  height: 2px;
  border: none;
  background-color: #fec4b0;
}

.message > p {
  margin-bottom: 20px;
}

.center {
  text-align: center;
}

.special-separator {
  gap: 0 5px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  justify-content: flex-start;
  width: 100%;
}
.special-separator:first-child ~ .special-separator {
  margin-top: 50px;
}
.special-separator .icon {
  width: 22px;
  height: auto;
}
.special-separator .text {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-weight: 600;
  font-size: 18px;
}
