.ss-main {
  position: relative;
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #666666;
  width: 100%;
}
.ss-main .ss-single-selected {
  display: flex;
  cursor: pointer;
  width: 100%;
  height: 30px;
  padding: 6px;
  border: 1px solid #dcdee2;
  border-radius: 4px;
  background-color: #ffffff;
  outline: 0;
  box-sizing: border-box;
  transition: background-color 0.2s;
}
.ss-main .ss-single-selected.ss-disabled {
  background-color: #dcdee2;
  cursor: not-allowed;
}
.ss-main .ss-single-selected.ss-open-above {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.ss-main .ss-single-selected.ss-open-below {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.ss-main .ss-single-selected .placeholder {
  display: flex;
  flex: 1 1 100%;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
  width: calc(100% - 30px);
  line-height: 1em;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.ss-main .ss-single-selected .placeholder * {
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: auto;
}
.ss-main .ss-single-selected .placeholder .ss-disabled {
  color: #dedede;
}
.ss-main .ss-single-selected .ss-deselect {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 1 auto;
  margin: 0 6px 0 6px;
  font-weight: bold;
}
.ss-main .ss-single-selected .ss-deselect.ss-hide {
  display: none;
}
.ss-main .ss-single-selected .ss-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 1 auto;
  margin: 0 6px 0 6px;
}
.ss-main .ss-single-selected .ss-arrow span {
  border: solid #666666;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transition: transform 0.2s, margin 0.2s;
}
.ss-main .ss-single-selected .ss-arrow span.arrow-up {
  transform: rotate(-135deg);
  margin: 3px 0 0 0;
}
.ss-main .ss-single-selected .ss-arrow span.arrow-down {
  transform: rotate(45deg);
  margin: -3px 0 0 0;
}
.ss-main .ss-multi-selected {
  display: flex;
  flex-direction: row;
  cursor: pointer;
  min-height: 30px;
  width: 100%;
  padding: 0 0 0 3px;
  border: 1px solid #dcdee2;
  border-radius: 4px;
  background-color: #ffffff;
  outline: 0;
  box-sizing: border-box;
  transition: background-color 0.2s;
}
.ss-main .ss-multi-selected.ss-disabled {
  background-color: #dcdee2;
  cursor: not-allowed;
}
.ss-main .ss-multi-selected.ss-disabled .ss-values .ss-disabled {
  color: #666666;
}
.ss-main .ss-multi-selected.ss-disabled .ss-values .ss-value .ss-value-delete {
  cursor: not-allowed;
}
.ss-main .ss-multi-selected.ss-open-above {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.ss-main .ss-multi-selected.ss-open-below {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.ss-main .ss-multi-selected .ss-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex: 1 1 100%;
  width: calc(100% - 30px);
}
.ss-main .ss-multi-selected .ss-values .ss-disabled {
  display: flex;
  padding: 4px 5px;
  margin: 2px 0px;
  line-height: 1em;
  align-items: center;
  width: 100%;
  color: #dedede;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@-webkit-keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes scaleOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
@keyframes scaleOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
.ss-main .ss-multi-selected .ss-values .ss-value {
  display: flex;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: center;
  font-size: 12px;
  padding: 3px 5px;
  margin: 3px 5px 3px 0px;
  color: #ffffff;
  background-color: #5897fb;
  border-radius: 4px;
  -webkit-animation-name: scaleIn;
          animation-name: scaleIn;
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.ss-main .ss-multi-selected .ss-values .ss-value.ss-out {
  -webkit-animation-name: scaleOut;
          animation-name: scaleOut;
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}
.ss-main .ss-multi-selected .ss-values .ss-value .ss-value-delete {
  margin: 0 0 0 5px;
  cursor: pointer;
}
.ss-main .ss-multi-selected .ss-add {
  display: flex;
  flex: 0 1 3px;
  margin: 9px 12px 0 5px;
}
.ss-main .ss-multi-selected .ss-add .ss-plus {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #666666;
  position: relative;
  height: 10px;
  width: 2px;
  transition: transform 0.2s;
}
.ss-main .ss-multi-selected .ss-add .ss-plus:after {
  background: #666666;
  content: "";
  position: absolute;
  height: 2px;
  width: 10px;
  left: -4px;
  top: 4px;
}
.ss-main .ss-multi-selected .ss-add .ss-plus.ss-cross {
  transform: rotate(45deg);
}

.ss-content {
  position: absolute;
  width: 100%;
  margin: -1px 0 0 0;
  box-sizing: border-box;
  border: solid 1px #dcdee2;
  z-index: 1010;
  background-color: #ffffff;
  transform-origin: center top;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0;
  transform: scaleY(0);
}
.ss-content.ss-open {
  display: block;
  opacity: 1;
  transform: scaleY(1);
}
.ss-content .ss-search {
  display: flex;
  flex-direction: row;
  padding: 8px 8px 6px 8px;
}
.ss-content .ss-search.ss-hide {
  height: 0px;
  opacity: 0;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
}
.ss-content .ss-search.ss-hide input {
  height: 0px;
  opacity: 0;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
}
.ss-content .ss-search input {
  display: inline-flex;
  font-size: inherit;
  line-height: inherit;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0px;
  height: 30px;
  padding: 6px 8px;
  margin: 0;
  border: 1px solid #dcdee2;
  border-radius: 4px;
  background-color: #ffffff;
  outline: 0;
  text-align: left;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: textfield;
}
.ss-content .ss-search input::-moz-placeholder {
  color: #8a8a8a;
  vertical-align: middle;
}
.ss-content .ss-search input::placeholder {
  color: #8a8a8a;
  vertical-align: middle;
}
.ss-content .ss-search input:focus {
  box-shadow: 0 0 5px #5897fb;
}
.ss-content .ss-search .ss-addable {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 22px;
  font-weight: bold;
  flex: 0 0 30px;
  height: 30px;
  margin: 0 0 0 8px;
  border: 1px solid #dcdee2;
  border-radius: 4px;
  box-sizing: border-box;
}
.ss-content .ss-addable {
  padding-top: 0px;
}
.ss-content .ss-list {
  max-height: 200px;
  overflow-x: hidden;
  overflow-y: auto;
  text-align: left;
}
.ss-content .ss-list .ss-optgroup .ss-optgroup-label {
  padding: 6px 10px 6px 10px;
  font-weight: bold;
}
.ss-content .ss-list .ss-optgroup .ss-option {
  padding: 6px 6px 6px 25px;
}
.ss-content .ss-list .ss-optgroup-label-selectable {
  cursor: pointer;
}
.ss-content .ss-list .ss-optgroup-label-selectable:hover {
  color: #ffffff;
  background-color: #5897fb;
}
.ss-content .ss-list .ss-option {
  padding: 6px 10px 6px 10px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ss-content .ss-list .ss-option * {
  display: inline-block;
}
.ss-content .ss-list .ss-option:hover, .ss-content .ss-list .ss-option.ss-highlighted {
  color: #ffffff;
  background-color: #5897fb;
}
.ss-content .ss-list .ss-option.ss-disabled {
  cursor: not-allowed;
  color: #dedede;
  background-color: #ffffff;
}
.ss-content .ss-list .ss-option:not(.ss-disabled).ss-option-selected {
  color: #666666;
  background-color: rgba(88, 151, 251, 0.1);
}
.ss-content .ss-list .ss-option.ss-hide {
  display: none;
}
.ss-content .ss-list .ss-option .ss-search-highlight {
  background-color: #fffb8c;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #161e2e;
  background: #edf2f6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #252f3f;
}

.center-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
@media (max-width: 767.98px) {
  .center-body {
    padding: 24px;
  }
}

.icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: middle;
}

.container {
  max-width: 1264px;
  padding: 0 24px;
  margin: auto;
  width: 100%;
  display: flex;
}

.wrap {
  flex-wrap: wrap;
}

.right-align {
  text-align: right;
}

.main-content {
  flex-direction: column;
  padding: 40px 24px 75px;
  position: relative;
}

.segment {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.segment:not(:last-child) {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(210, 214, 220, 0.5);
}
.segment__left {
  max-width: 358px;
}
.segment__left h2 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 4px;
}
.segment__left p {
  font-size: 14px;
  color: #4b5563;
  margin: 0;
}
@media (max-width: 767.98px) {
  .segment__left {
    max-width: none;
  }
  .segment__left p {
    margin-bottom: 20px;
  }
}
.segment__right {
  max-width: 800px;
  width: 100%;
  font-size: 14px;
}
@media (max-width: 767.98px) {
  .segment__right {
    max-width: none;
  }
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed !important;
}

.button {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 6px;
  border: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  color: white;
  background: #252f3f;
  transition: background 0.3s ease;
  text-decoration: none;
}
.button:hover, .button:focus {
  background: #38475f;
  transition: background 0.3s ease;
}
.button:disabled {
  background: #f1f1f4;
}

.button--light {
  background: #3e83f8;
}
.button--light:hover, .button--light:focus {
  background: #6fa3fa;
  transition: background 0.3s ease;
}

.button--secondary {
  background: #edf2f6;
  color: #252f3f;
}
.button--secondary:hover, .button--secondary:focus {
  background: white;
  transition: background 0.3s ease;
}

.button--control {
  background: #edf2f6;
  color: #252f3f;
}
.button--control:hover, .button--control:focus {
  background: #edf2f6;
}
.button--control .icon {
  margin-left: 8px;
}

.button--warning {
  color: white;
  background: #d40d0d;
}
.button--warning:hover, .button--warning:focus {
  background: #f12323;
  transition: background 0.3s ease;
}

.button-delete {
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #d40d0d;
  border: 0;
  background: transparent;
}

.link-text {
  color: #4b5563;
  font-size: 14px;
}
.link-text:hover, .link-text:focus {
  text-decoration: none;
  color: #616e80;
  transition: color 0.3s ease;
}

.button-back {
  font-size: 12px;
  font-weight: 600;
  color: #161e2e;
  text-decoration: none;
  margin-top: 38px;
  margin-bottom: 24px;
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.button-back:focus {
  outline: 0;
}
.button-back .icon {
  transform: rotate(180deg);
  margin-right: 8px;
}

.form-input {
  position: relative;
  margin-bottom: 24px;
  max-width: 495px;
}
.form-input a {
  color: #3e83f8;
  text-decoration: none;
}

input[type=text],
input[type=number],
input[type=password],
input[type=email] {
  font-size: 14px;
  width: 100%;
  border-radius: 6px;
  border: solid 1px #f1f1f4;
  padding: 8px 12px;
}
input[type=text]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=email]:focus {
  border: solid 1px #3e83f8;
  box-shadow: 0px 0px 2px 2px rgba(62, 131, 248, 0.3);
  outline: none;
}
input[type=text]:-moz-read-only, input[type=number]:-moz-read-only, input[type=password]:-moz-read-only, input[type=email]:-moz-read-only {
  background: #f1f1f4;
  outline: none;
}
input[type=text]:read-only,
input[type=number]:read-only,
input[type=password]:read-only,
input[type=email]:read-only {
  background: #f1f1f4;
  outline: none;
}
input[type=text]:-moz-read-only:focus, input[type=number]:-moz-read-only:focus, input[type=password]:-moz-read-only:focus, input[type=email]:-moz-read-only:focus {
  border-color: transparent;
  box-shadow: none;
}
input[type=text]:read-only:focus,
input[type=number]:read-only:focus,
input[type=password]:read-only:focus,
input[type=email]:read-only:focus {
  border-color: transparent;
  box-shadow: none;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
  line-height: normal;
}

.invalid_feedback {
  font-size: 12px;
  color: #d40d0d;
  margin-top: 5px;
  display: block;
}

.success_feedback {
  font-size: 14px;
  color: #3e83f8;
  margin-bottom: 24px;
}

.form-input--checkbox label {
  cursor: pointer;
  padding-left: 24px;
  margin: 0;
  font-weight: normal;
}
.form-input--checkbox label:hover:before, .form-input--checkbox label:focus:before {
  border-color: #3e83f8;
}
.form-input--checkbox label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  border: 1px solid #f1f1f4;
  width: 16px;
  height: 16px;
  border-radius: 4px;
}
.form-input--checkbox--longtext:before {
  top: 5px;
}
.form-input--checkbox input {
  height: 40px;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 40px;
}
.form-input--checkbox input:checked + label:before {
  background-color: #3e83f8;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='7' viewBox='0 0 8 7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.765 2.13l-4.22 4.22a.8.8 0 01-1.132 0L.234 4.17A.8.8 0 011.366 3.04L2.98 4.65 6.633.997A.8.8 0 017.765 2.13z' fill='%23FFF' fill-rule='nonzero'/%3E%3C/svg%3E");
  border-color: #3e83f8;
}

.form-input--password svg {
  position: absolute;
  width: 15px;
  height: 10px;
  top: 30px;
  right: 15px;
  cursor: pointer;
  fill: #d2d6dc;
}
.form-input--password svg:hover {
  fill: #161e2e;
}

.form-input--copy input {
  padding-right: 90px;
  text-overflow: ellipsis;
}
.form-input--copy button {
  position: absolute;
  bottom: 11px;
  right: 12px;
  padding: 0;
  background: none;
  border: 0;
  font-size: 10px;
  cursor: pointer;
}
.form-input--copy button:focus, .form-input--copy button:hover {
  outline: none;
  color: #273551;
}
.form-input--copy button .icon {
  width: 11px;
  height: 11px;
  margin-right: 5px;
}

.form-input--select .ss-main {
  font-size: 14px;
  color: #161e2e;
}
.form-input--select .ss-main .ss-single-selected {
  height: 40px;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #f1f1f4;
}
.form-input--select .ss-main .ss-single-selected .ss-open-below {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.form-input--select .ss-main .ss-single-selected .ss-arrow span {
  border-color: #6b7280;
}
.form-input--select .ss-content {
  top: calc(100% + 5px);
  border-radius: 6px;
  border: 1px solid #f1f1f4;
  box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.15);
  transition: opacity 0.2s ease;
  margin: 0;
}
.form-input--select .ss-content .ss-list {
  border: 1px solid #f1f1f4;
  border-radius: 6px;
  box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.15);
}
.form-input--select .ss-content .ss-list .ss-option {
  padding: 9px 12px;
}
.form-input--select .ss-content .ss-list .ss-option:hover {
  background-color: #6fa3fa;
  color: white;
}
.form-input--select .ss-content .ss-list .ss-disabled {
  color: #161e2e;
  opacity: 0.5;
}
.form-input--select .ss-content .ss-list .ss-option-selected {
  color: white;
  font-weight: 500;
  background-color: #3e83f8;
  background-position: right 12px center;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='8px' height='7px' viewBox='0 0 8 7' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3EPath%3C/title%3E%3Cg id='Docent---Prototype' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='D.-Docent---Account-aanmaken-' transform='translate(-532.000000, -673.000000)' fill='%23FFFFFF' fill-rule='nonzero'%3E%3Cpath d='M539.765169,675.12978 L535.544838,679.349815 C535.232317,679.662395 534.72536,679.662395 534.412543,679.349815 L532.233979,677.171093 C531.92134,676.858514 531.92134,676.351497 532.233979,676.038858 C532.546678,675.726159 533.053596,675.726159 533.366156,676.038739 L534.978858,677.651462 L538.632815,673.997486 C538.945513,673.684787 539.452471,673.685024 539.76505,673.997486 C540.07763,674.310125 540.07763,674.816964 539.765169,675.12978 Z' id='Path'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 14px;
  opacity: 1;
}

.notice {
  margin: 0 auto;
  width: 100%;
  max-width: 448px;
  border-radius: 6px;
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #f1f1f4;
  background-color: #ffffff;
  padding: 24px 32px;
}
.notice h2 {
  font-size: 18px;
  margin: 0;
}

.notice__title {
  margin-bottom: 24px;
}

.notice__footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.notice__footer :last-child {
  margin-left: 18px;
}

.notice__segment {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(210, 214, 220, 0.5);
}
.notice__segment h2 {
  margin: 0 0 8px;
}
.notice__segment p {
  margin: 0 0 24px;
  color: #252f3f;
}

.notice__sub-footer {
  color: #b0adc5;
  text-align: center;
  margin-top: 24px;
}

.logo img {
  max-width: 195px;
}

.menu {
  background: white;
}

.topmenu {
  border-bottom: solid 2px #f1f1f4;
}
.topmenu .container {
  justify-content: space-between;
}

.topmenu__item {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  padding: 25px 0;
}
.topmenu__item:last-child {
  display: flex;
  justify-content: flex-end;
  min-width: 190px;
}
.topmenu__item button {
  display: flex;
  align-items: center;
  color: #6b7280;
  background: transparent;
  padding: 0;
  border: 0;
  cursor: pointer;
  transition: color 0.3s ease;
}
.topmenu__item button:hover, .topmenu__item button:focus {
  outline: none;
  color: #4b5f7f;
  transition: color 0.3s ease;
}
.topmenu__item button .icon {
  margin-left: 5px;
  width: 10px;
  height: 6px;
}
.topmenu__item .is-active .icon {
  transform: rotate(180deg);
}
.topmenu__item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: calc(100% - 13px);
  right: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: 6px;
  border: 1px solid #f1f1f4;
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
  background: white;
  z-index: 999;
}
.topmenu__item ul li:not(:last-child) {
  border-bottom: 1px solid #f1f1f4;
}
.topmenu__item li {
  padding: 18px 105px 18px 18px;
}
.topmenu__item a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 200;
}
.topmenu__item a:hover, .topmenu__item a:focus {
  color: #4b5f7f;
  transition: color 0.3s ease;
}

.topmenu__item--big {
  font-size: 20px;
  font-weight: 600;
  padding: 25px 0;
}
@media (max-width: 767.98px) {
  .topmenu__item--big {
    font-size: 16px;
  }
}
.topmenu__item--big button {
  color: #252f3f;
}
.topmenu__item--big button:hover, .topmenu__item--big button:focus {
  color: #38475f;
  transition: color 0.3s ease;
}
.topmenu__item--big button .icon {
  margin-left: 8px;
}
.topmenu__item--big ul {
  top: calc(100% - 8px);
  left: 0;
  right: initial;
}
.topmenu__item--big ul li:last-child {
  font-size: 16px;
}
.topmenu__item--big li {
  padding: 24px 48px 24px 24px;
}
@media (max-width: 767.98px) {
  .topmenu__item--big li {
    padding: 18px 24px 18px 24px;
  }
}

.secondary-menu {
  padding: 18px 0 19px;
}
.secondary-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.secondary-menu li {
  opacity: 0.5;
  margin-right: 28px;
}
.secondary-menu a {
  text-decoration: none;
  color: inherit;
}
.secondary-menu .is-active {
  opacity: 1;
}

.contentbox {
  border-radius: 6px;
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.03);
  background-color: #ffffff;
}
.contentbox p {
  margin: 0 0 24px;
  max-width: 495px;
}

.contentbox--inner {
  padding: 24px;
}
.contentbox--inner .form-input:last-child {
  margin-bottom: 0;
}

.contentbox__footer {
  background: #f7fafc;
  padding: 12px 24px;
  display: flex;
  justify-content: flex-end;
}

.resourcebox:not(:last-child) {
  border-bottom: 1px solid #f1f1f4;
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.resourcebox__title {
  margin-bottom: 8px;
  margin-top: 0px;
}

.contentbox .resourcebox__description {
  color: #4b5563;
  padding-bottom: 16px;
  margin-bottom: 0;
}

.contenttable-wrapper {
  border-radius: 6px;
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.03);
}

@media (max-width: 767.98px) {
  .contenttable__table-wrapper {
    overflow-x: auto;
  }
}

.contenttable__footer {
  padding: 12px 24px;
  display: flex;
  justify-content: flex-end;
  background-color: #f7fafc;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}
@media (max-width: 767.98px) {
  .contenttable__footer {
    justify-content: center;
  }
}

.contenttable {
  text-align: left;
  border-radius: 6px;
  border: none;
  border-collapse: collapse;
  overflow: hidden;
  width: 100%;
}
.contenttable thead {
  color: #6b7280;
  text-transform: uppercase;
  background-color: #f7fafc;
}
.contenttable thead th {
  font-size: 12px;
  font-weight: normal;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(210, 214, 220, 0.5);
}
@media (max-width: 767.98px) {
  .contenttable thead th {
    white-space: nowrap;
  }
}
.contenttable tbody {
  background: white;
  font-size: 14px;
}
.contenttable tbody td {
  padding: 24px;
}
.contenttable tbody tr:not(:last-child) {
  border-bottom: 1px solid rgba(210, 214, 220, 0.5);
}
.contenttable tbody button {
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.contenttable tbody .edit-button {
  color: #3e83f8;
  text-decoration: none;
}
.contenttable tbody .edit-button:hover, .contenttable tbody .edit-button:focus {
  color: #6fa3fa;
}
.contenttable tbody .delete-button {
  color: #d40d0d;
}
.contenttable tbody .delete-button:disabled {
  color: #161e2e;
  opacity: 0.35;
  cursor: not-allowed;
}
.contenttable tbody .incomplete {
  opacity: 0.5;
}
.contenttable tbody .status {
  display: block;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #0dd424;
}
.contenttable tbody .not-completed {
  background: #d40d0d;
}
.contenttable tbody .fitcell {
  white-space: nowrap;
  width: 1%;
  padding: 24px 24px 24px 16px;
}
.contenttable tbody .fitcell--bigger {
  padding: 24px;
}

.contenttable--planets {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.contenttable--planets tbody td {
  vertical-align: top;
}
.contenttable--planets .planet {
  display: block;
  width: 42px;
  height: 42px;
}
.contenttable--planets .planet .c-planet {
  height: 100%;
  width: 100%;
}
.contenttable--planets .planet__name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.contenttable--planets .planet__teammembers {
  color: #4b5563;
}

.modalwrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
  align-items: center;
  justify-content: center;
}
.modalwrapper.show {
  display: flex;
}
@media (max-width: 767.98px) {
  .modalwrapper {
    padding: 24px;
  }
}

.modal {
  position: relative;
  max-width: 448px;
  width: 100%;
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #f1f1f4;
  border-radius: 6px;
  background: white;
}
.modal h1 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px;
}
.modal p {
  font-size: 14px;
  margin: 0;
  color: #4b5563;
}
.modal .bottom-space {
  margin-bottom: 24px;
}
.modal .bottom-space--half {
  margin-bottom: 12px;
}
.modal__header {
  padding: 24px 32px;
  border-bottom: 1px solid rgba(210, 214, 220, 0.5);
}
.modal__footer {
  text-align: center;
  padding: 24px;
  border-top: 1px solid rgba(210, 214, 220, 0.5);
}

.modal-close {
  border: 0;
  background: none;
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
}

.modal__content {
  padding: 24px 32px;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  background-color: #000;
  transition: opacity 0.15s linear 0s, visibility 0s linear 0.15s;
}
.modal-backdrop.show {
  visibility: visible;
  opacity: 0.35;
  transition: opacity 0.15s linear 0.1s, visibility 0s linear 0s;
}

.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

p.modal__help-text {
  margin: 0 0 12px 0;
  color: #161e2e;
  font-size: 14px;
}

.flash-message {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 6px;
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.03);
  padding: 10px 18px;
  color: #fff;
  background: #3e83f8;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.flash-close {
  color: white;
  background: transparent;
  border: 0;
  margin-left: 8px;
}
.flash-close .icon {
  width: 9px;
  height: 9px;
}

.alert {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}
.alert-success {
  color: #3e83f8;
}

.c-station-detail {
  display: flex;
  flex-wrap: wrap;
}

.c-station-slide__next {
  margin-top: 12px;
}

.c-controller {
  margin-bottom: 50px;
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.03);
  background-color: #ffffff;
}
.c-controller h2 {
  padding: 0 24px;
  margin: 24px 0 0;
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .c-controller h2 {
    font-size: 20px;
    border-bottom: 1px solid #f1f1f4;
    padding-bottom: 24px;
  }
}

.c-controller-row {
  position: relative;
  display: flex;
  padding: 24px;
  font-size: 16px;
}
@media (max-width: 767.98px) {
  .c-controller-row {
    display: block;
  }
}
.c-controller-row:last-child:after {
  display: none;
}
.c-controller-row:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  height: 1px;
  opacity: 0.5;
  background-color: #d2d6dc;
}
.c-controller-row.active .c-controller-content {
  display: block;
}
.c-controller-row.active .c-controller-indicator {
  border: solid 1px #3e83f8;
}
.c-controller-row.active .c-controller-indicator:after {
  background: #3e83f8;
}

.c-controller-indicator {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  min-width: 21px;
  margin-right: 24px;
  border-radius: 50%;
  border: solid 1px transparent;
}
.c-controller-indicator:after {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #d8d8d8;
}
.c-controller-indicator.completed:after {
  background: #3e83f8;
}
@media (max-width: 767.98px) {
  .c-controller-indicator {
    margin-right: 15px;
  }
}

.c-controller-content {
  display: none;
}

.c-controller-column {
  width: 71%;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .c-controller-column {
    width: 100%;
  }
}

.c-controller-column__title {
  margin: 0;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .c-controller-column__title {
    margin-bottom: 10px;
  }
}

.c-controller-column__list {
  margin: 8px 0 24px;
  line-height: 1.4;
  font-weight: normal;
}
@media (max-width: 767.98px) {
  .c-controller-column__list {
    padding-left: 20px;
  }
  .c-controller-column__list li {
    margin: 5px 0;
  }
}

.c-controller-column--small {
  width: 29%;
  display: flex;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .c-controller-column--small {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
}

.c-controller-column--time {
  width: 10%;
  display: flex;
  font-weight: 500;
  color: #8197c3;
}

.c-controller-column-button {
  -webkit-appearance: none;
  border: none;
  background: transparent;
  display: inline-flex;
  cursor: pointer;
  font-weight: 500;
  text-align: left;
}
.c-controller-column-button:focus {
  outline: 0;
}
@media (max-width: 767.98px) {
  .c-controller-column-button {
    padding: 0;
    font-size: 18px;
    width: 100%;
  }
}

.c-controls {
  display: flex;
  margin-top: 24px;
}

.c-controls__group select {
  padding: 4px 4px;
  border-color: #252f3f;
  border-radius: 6px;
}
.c-controls__group + .c-controls__group {
  margin-left: 24px;
}

.c-controls__group--mb {
  margin-bottom: 24px;
}

.c-controls__rule {
  display: block;
  height: 1px;
  opacity: 0.5;
  background-color: #d2d6dc;
  border: none;
  margin: 24px 0;
}

.c-controls__label {
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin: 0 0 8px 0;
}

.c-controls__button {
  margin-top: 12px;
}

.c-controls__text {
  line-height: 1.4;
  font-weight: normal;
}

.c-videocontrols {
  display: flex;
}
.c-videocontrols button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 6px;
  border: 0;
  padding: 0;
  background: transparent;
  margin-right: 8px;
}
.c-videocontrols button:hover {
  cursor: pointer;
}
.c-videocontrols button .icon {
  height: 100%;
  width: 100%;
}

.c-slidecontrols {
  display: flex;
}
.c-slidecontrols .c-slidecontrols__prev {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 6px;
  border: 0;
  padding: 0;
  background: transparent;
  margin-right: 8px;
}
.c-slidecontrols .c-slidecontrols__prev:hover {
  cursor: pointer;
}
.c-slidecontrols .c-slidecontrols__prev .icon {
  height: 100%;
  width: 100%;
}

.c-team-status {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  list-style: none;
  margin: 0;
}

.c-team-status__item {
  padding: 8px 0;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
}
.c-team-status__item:before {
  content: "";
  background-color: #d40d0d;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
}
.c-team-status__item.team-finished:before {
  background-color: #0dd424;
}

.online-indicator {
  padding: 0 12px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  margin: 0;
}

.online-indicator__status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #d40d0d;
  transition: background-color 0.15s;
  margin-right: 8px;
}
.status-online .online-indicator__status {
  background-color: #0dd424;
}

.c-screen-indicator {
  font-size: 12px;
  font-weight: normal;
  line-height: normal;
  padding: 0 12px;
  height: 32px;
  border-radius: 6px;
  border: solid 1px #d2d6dc;
  background-color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  color: #161e2e;
  position: absolute;
  right: 24px;
  top: -44px;
}
@media (max-width: 767.98px) {
  .c-screen-indicator {
    top: 68px;
  }
}
.c-screen-indicator:hover {
  background-color: rgba(210, 214, 220, 0.5);
}

.stations {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  row-gap: 24px;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media (max-width: 1100px) {
  .stations {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 767.98px) {
  .stations {
    display: block;
  }
}

.station {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 6px;
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.03);
  background-color: #ffffff;
  min-height: 300px;
}
.station h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.station p {
  margin: 6px 0 0;
  color: #6b7280;
  font-size: 14px;
}
@media (max-width: 767.98px) {
  .station {
    min-height: 180px;
  }
  .station + .station {
    margin-top: 20px;
  }
}

.station__start-button {
  align-self: flex-end;
}

.c-planet {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.c-planet__3d {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-planet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #000;
  border-radius: 8px;
  border: solid 1px #ffffff;
  padding: 0 20px;
}

.c-planet-item {
  padding: 20px;
  padding-left: 0;
  display: flex;
  flex-direction: row;
}
.c-planet-item .c-planet {
  width: 42px;
  height: 42px;
}
.c-planet-item + .c-planet-item {
  border-top: 1px solid #fff;
}

.c-planet-item__shape {
  width: 42px;
  height: 42px;
  flex-grow: 0;
  position: relative;
}

.c-planet-item__info {
  margin-left: 20px;
  flex: 1;
  font-size: 12px;
  line-height: 1.23;
}

.c-planet-item__name {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 5px;
}

.c-big-planet {
  width: 320px;
  height: 320px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.c-big-planet .c-planet {
  flex-grow: 1;
}

.c-big-planet__name {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  line-height: normal;
}

.c-big-planet__type {
  text-align: center;
  margin: 8px 0 32px 0;
}

.connection-warning {
  position: absolute;
  top: 20px;
  text-align: center;
  font-size: 11px;
  padding: 20px;
  background: #333;
  font-weight: bold;
  display: none;
  width: 100%;
  z-index: 100;
  color: white;
  font-family: "Roboto Mono", monospace;
}

body.not-connected .connection-warning {
  display: block !important;
}

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