/**
 * Get color function
 *
 * @param  {text} $color-name
 * @return {color}
 */
.button {
  box-sizing: border-box;
  transition: all 0.14s ease;
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  color: #FEFEFE;
  font-family: "Titillium Web", sans-serif;
  font-size: 16px;
  height: 38px;
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 0;
  border: 0;
  background: linear-gradient(92.67deg, #7834F9 0%, #67CFF9 100%);
  text-transform: uppercase;
}
.button * {
  box-sizing: border-box;
}
.button--secondary {
  background: #132D43;
}
.button--error {
  background: #FC6471;
}
.button--alt {
  background: #2B465C;
}
.button--alt[disabled] {
  color: #8AAABE;
}
.button--cover {
  width: 100%;
}
.button--square {
  height: 40px;
  width: 40px;
  padding: 0;
}
.button--icon {
  background: none;
  border: 0;
}
.button[disabled] {
  pointer-events: none;
}/**
 * Get color function
 *
 * @param  {text} $color-name
 * @return {color}
 */
.dropdown__wrapper {
  position: relative;
}
.dropdown__toggle {
  align-items: center;
  background: #2B465C;
  border-left: 1px solid #8AAABE;
  color: #FEFEFE;
  cursor: pointer;
  display: flex;
  font-size: 18px;
  height: 100%;
  justify-content: space-around;
  width: 160px;
}
.dropdown__toggle--selected {
  background-color: #D0F2FF;
  color: #132D43;
}
.dropdown__menu {
  position: absolute;
  right: 0;
  z-index: 2;
}
.dropdown__image-wrapper {
  transform: rotate(180deg);
  margin-top: 5px;
}
.dropdown__image-wrapper--clicked {
  transform: rotate(0deg);
  margin-bottom: 5px;
}/**
 * Get color function
 *
 * @param  {text} $color-name
 * @return {color}
 */
.icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.icon svg {
  fill: var(--ui-icon-fill);
  width: var(--ui-icon-size);
  height: var(--ui-icon-size);
}
.icon svg * {
  fill: var(--ui-icon-fill);
}
.icon--primary {
  color: #A97DFB;
}
.icon--secondary {
  color: #67CFF9;
}/**
 * Get color function
 *
 * @param  {text} $color-name
 * @return {color}
 */
.divider {
  box-sizing: border-box;
  max-height: 24px;
  min-height: 24px;
}
.divider * {
  box-sizing: border-box;
}
.divider--s {
  max-height: 12px;
  min-height: 12px;
}
.divider--l {
  max-height: 36px;
  min-height: 36px;
}
.divider--xl {
  max-height: 60px;
  min-height: 60px;
}
.divider--xxl {
  max-height: 120px;
  min-height: 120px;
}
.divider--vertical {
  max-height: 0;
  min-height: 0;
  max-width: 24px;
  min-width: 24px;
}
.divider--vertical.divider--s {
  max-width: 12px;
  min-width: 12px;
}
.divider--vertical.divider--l {
  max-width: 36px;
  min-width: 36px;
}
.divider--vertical.divider--xl {
  max-width: 60px;
  min-width: 60px;
}
.divider--vertical.divider--xxl {
  max-width: 120px;
  min-width: 120px;
}
.divider--flex {
  max-height: initial;
  min-height: initial;
  max-width: initial;
  min-width: initial;
  flex: 1;
}/**
 * Get color function
 *
 * @param  {text} $color-name
 * @return {color}
 */
.circle-progress {
  position: relative;
}
.circle-progress__content {
  color: #FEFEFE;
  font-family: "Titillium Web", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  max-width: 160px;
  line-height: 1.5em;
}
.circle-progress__circle--mask {
  transition: all 0.26s ease;
  stroke: #132D43;
  transform: rotate(-90deg) scaleY(-1);
  transform-origin: center;
}/**
 * Get color function
 *
 * @param  {text} $color-name
 * @return {color}
 */
.layout {
  box-sizing: border-box;
  display: flex;
}
.layout * {
  box-sizing: border-box;
}
.layout--sides {
  justify-content: space-between;
  align-items: center;
}
.layout--grid > * {
  flex: 1;
}
.layout--container {
  max-width: 1316px;
  padding: 0 48px;
  margin: auto;
  display: block;
}
.layout--justify-end {
  justify-content: flex-end;
}
.layout--justify-start {
  justify-content: flex-start;
}
.layout--justify-space-between {
  justify-content: space-between;
}
.layout--justify-center {
  justify-content: center;
}
.layout--align-end {
  align-items: flex-end;
}
.layout--align-start {
  align-items: flex-start;
}
.layout--align-center {
  align-items: center;
}
.layout--flex-direction-column {
  flex-direction: column;
}/**
 * Get color function
 *
 * @param  {text} $color-name
 * @return {color}
 */
.text {
  color: #FEFEFE;
  font-family: "Titillium Web", sans-serif;
  font-size: 18px;
  line-height: 32px;
}
.text--h1 {
  color: #67CFF9;
  font-family: "Titillium Web", sans-serif;
  font-size: 80px;
  text-transform: uppercase;
  letter-spacing: -0.03px;
  line-height: 90px;
}
.text--h2 {
  color: #67CFF9;
  font-family: "Titillium Web", sans-serif;
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: -0.03px;
  line-height: 48px;
}
.text--h3 {
  color: #67CFF9;
  font-family: "Titillium Web", sans-serif;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: -0.04px;
  line-height: 48px;
}
.text--h4 {
  color: #67CFF9;
  font-family: "Titillium Web", sans-serif;
  font-size: 28px;
  letter-spacing: -0.04px;
  line-height: 42px;
}
.text--h4-caps {
  text-transform: uppercase;
  color: #67CFF9;
  font-family: "Titillium Web", sans-serif;
  font-size: 28px;
  letter-spacing: -0.04px;
  line-height: 42px;
}
.text--caps {
  text-transform: uppercase;
  color: #FEFEFE;
  font-family: "Titillium Web", sans-serif;
  font-size: 18px;
  line-height: 32px;
}
.text--small {
  color: #FEFEFE;
  font-family: "Titillium Web", sans-serif;
  font-size: 14px;
  line-height: 16px;
}
.text--small-caps {
  text-transform: uppercase;
  color: #FEFEFE;
  font-family: "Titillium Web", sans-serif;
  font-size: 14px;
  line-height: 16px;
}
.text--link {
  color: #FEFEFE;
  font-family: "Titillium Web", sans-serif;
  font-size: 16px;
  line-height: 24px;
}
.text--link-bold {
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  color: #FEFEFE;
  font-family: "Titillium Web", sans-serif;
  font-size: 16px;
  line-height: 24px;
}
.text--link-caps {
  text-transform: uppercase;
  color: #FEFEFE;
  font-family: "Titillium Web", sans-serif;
  font-size: 16px;
  line-height: 24px;
}
.text--bold {
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
}
.text--highlight {
  color: #67CFF9;
}
.text--secondary {
  color: #D0F2FF;
}
.text--detail {
  color: #8AAABE;
}
.text--success {
  color: #55D6BE;
}
.text--error {
  color: #FC6471;
}
.text--clear {
  font: inherit;
  color: inherit;
  line-height: inherit;
  text-transform: inherit;
}
.text--clear-font {
  font: initial;
}
.text--clear-color {
  color: initial;
}
.text--clear-line-height {
  line-height: initial;
}
.text--clear-text-transform {
  text-transform: initial;
}

.text--heading {
  padding-bottom: 50px;
}
.text--heading.text--h1 {
  padding-top: 100px;
}
.text--underline {
  padding-bottom: 16px;
  border-bottom: 1px solid #8AAABE;
}
.text--alert {
  color: #67CFF9;
  font-family: "Titillium Web", sans-serif;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: -0.04px;
  line-height: 48px;
  border: 2px solid;
  color: #8AAABE;
  min-height: 72px;
  line-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.text--p + .text--p {
  margin-top: 24px;
}/**
 * Get color function
 *
 * @param  {text} $color-name
 * @return {color}
 */
.popup {
  box-sizing: border-box;
  padding: 120px;
  z-index: 9999;
  overflow: auto;
}
.popup * {
  box-sizing: border-box;
}
.popup, .popup__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.popup__overlay {
  background: rgba(19, 45, 67, 0.6);
}
@supports ((-webkit-backdrop-filter: blur(4px)) or (backdrop-filter: blur(4px))) {
  .popup__overlay {
    background: rgba(19, 45, 67, 0.5);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
  }
}
.popup__content {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
  background: #FEFEFE;
  position: relative;
  width: 100%;
  color: #132D43;
  text-align: center;
}
.popup__content-wrapper {
  align-items: center;
  justify-content: center;
  display: flex;
  min-height: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 512px;
  max-width: 512px;
  margin: auto;
}/**
 * Get color function
 *
 * @param  {text} $color-name
 * @return {color}
 */
.notification-popup__notification-popup {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 516px;
  padding: 105px 70px 40px;
  width: 512px;
}
.notification-popup__popup-text {
  color: #132D43;
  font-size: 18px;
  line-height: 32px;
  margin: "72px 0 25px";
}
.notification-popup__popup-buttons {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  width: 100%;
}/**
 * Get color function
 *
 * @param  {text} $color-name
 * @return {color}
 */
.markdown {
  box-sizing: border-box;
}
.markdown * {
  box-sizing: border-box;
}
.markdown__header {
  background: #255883;
  width: 910px;
  height: 45px;
  position: absolute;
  cursor: pointer;
}
.markdown__header img {
  position: absolute;
  padding: 10px;
  right: 60px;
}
.markdown__copy-text {
  position: absolute;
  right: 10px;
  padding: 10px;
  color: #67CFF9;
}
.markdown__content {
  background: #1C4263;
  width: 910px;
  height: 111px;
}
.markdown__snippet {
  width: 876px;
  height: 100px;
  color: #8AAABE;
  position: relative;
  top: 62px;
  left: 14px;
  font-size: 18px;
}.form__container {
  width: 100%;
}
.form__form-group--vertical label, .form__form-group--vertical input {
  display: block;
}
.form__form-group--vertical label {
  margin-bottom: 15px;
}
.form__form-group--horizontal label {
  margin-right: 15px;
}
.form__form-group label {
  font-size: 28px;
  font-family: "Titillium Web", sans-serif;
  color: #67CFF9;
}
.form__form-group textarea, .form__form-group input, .form__form-group select {
  background-color: #2B465C;
  color: #fff;
  width: 100%;
  padding: 16px;
  border: 0;
}
.form__form-group textarea::-moz-placeholder, .form__form-group input::-moz-placeholder, .form__form-group select::-moz-placeholder {
  color: #8AAABE;
}
.form__form-group textarea:-ms-input-placeholder, .form__form-group input:-ms-input-placeholder, .form__form-group select:-ms-input-placeholder {
  color: #8AAABE;
}
.form__form-group textarea::placeholder, .form__form-group input::placeholder, .form__form-group select::placeholder {
  color: #8AAABE;
}
.form__form-group textarea {
  height: 150px;
}
.form__form-add-item-container {
  display: flex;
}
.form__form-add-item-container input {
  flex-basis: 90%;
  justify-self: flex-start;
}
.form__form-add-item-container--add-button {
  height: 50px;
  flex-basis: 10%;
  justify-self: flex-end;
  font-size: 30px;
  padding-bottom: 4px;
}/**
 * Get color function
 *
 * @param  {text} $color-name
 * @return {color}
 */
.loader__background {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 300vh;
  opacity: 0.5;
  background: #2B465C;
  z-index: 3;
}
.loader__wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0.5;
  background: #2B465C;
  z-index: 3;
}
.loader__triangle-canvas {
  position: absolute;
  width: 100%;
  height: 100%;
}
.loader__triangle {
  fill: none;
  stroke: #fff;
  stroke-width: 15;
  transform-origin: center center;
  -webkit-animation: triangle-animation 10s linear infinite;
          animation: triangle-animation 10s linear infinite;
}
.loader__triangle-1 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.loader__triangle-2 {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}
.loader__triangle-3 {
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}
.loader__triangle-4 {
  -webkit-animation-delay: -1.5s;
          animation-delay: -1.5s;
}
.loader__triangle-5 {
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
}
.loader__triangle-6 {
  -webkit-animation-delay: -2.5s;
          animation-delay: -2.5s;
}
.loader__triangle-7 {
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
}
.loader__triangle-8 {
  -webkit-animation-delay: -3.5s;
          animation-delay: -3.5s;
}
.loader__triangle-9 {
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
}
.loader__triangle-10 {
  -webkit-animation-delay: -4.5s;
          animation-delay: -4.5s;
}
.loader__triangle-11 {
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
}
.loader__triangle-12 {
  -webkit-animation-delay: -5.5s;
          animation-delay: -5.5s;
}
.loader__triangle-13 {
  -webkit-animation-delay: -6s;
          animation-delay: -6s;
}
.loader__triangle-14 {
  -webkit-animation-delay: -6.5s;
          animation-delay: -6.5s;
}
.loader__triangle-15 {
  -webkit-animation-delay: -7s;
          animation-delay: -7s;
}
.loader__triangle-16 {
  -webkit-animation-delay: -7.5s;
          animation-delay: -7.5s;
}
.loader__triangle-17 {
  -webkit-animation-delay: -8s;
          animation-delay: -8s;
}
.loader__triangle-18 {
  -webkit-animation-delay: -8.5s;
          animation-delay: -8.5s;
}
.loader__triangle-19 {
  -webkit-animation-delay: -9s;
          animation-delay: -9s;
}
.loader__triangle-20 {
  -webkit-animation-delay: -9.5s;
          animation-delay: -9.5s;
}
@-webkit-keyframes triangle-animation {
  0% {
    transform: scale(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: scale(1.5) rotate(45deg);
    opacity: 0;
  }
}
@keyframes triangle-animation {
  0% {
    transform: scale(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: scale(1.5) rotate(45deg);
    opacity: 0;
  }
}/**
 * Get color function
 *
 * @param  {text} $color-name
 * @return {color}
 */
.spinner__spinner-container {
  display: flex;
  justify-content: center;
}
.spinner__loadspinner {
  display: flex;
  align-items: center;
}
.spinner__loadspinner--spinner {
  z-index: 1;
  -webkit-animation: rotate 1.5s linear infinite;
          animation: rotate 1.5s linear infinite;
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}