@charset "UTF-8";
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.2s;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}

.fade-down-enter-active,
.fade-down-leave-active {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-down-enter,
.fade-down-leave-to {
  opacity: 0;
  transform: translateY(-5px);
}

.fade-delay-enter-active,
.fade-delay-leave-active {
  transition-delay: 5s;
  transition: opacity 0.3s;
}

.fade-out-delay-enter,
.fade-out-delay-leave-to {
  opacity: 0;
}

.expand-right-enter-active,
.expand-right-leave-active {
  transition: all 0.3s ease;
}

.expand-right-enter-to, .expand-right-leave {
  width: 100%;
}

.expand-right-enter,
.expand-right-leave-to {
  transform: translateX(20px);
  opacity: 0;
  width: 0;
}

.expand-enter-active, .expand-leave-active {
  transition: all 0.3s ease;
  max-height: 1000px;
}

.expand-enter, .expand-leave-to {
  max-height: 0px;
  transition: all, 0.3s ease;
}

.slide-left-enter-active,
.slide-left-leave-active,
.slide-right-enter-active,
.slide-right-leave-active {
  transition: translate 0.4s ease, opacity, 0.4s ease;
}

.slide-left-enter {
  transform: translate(800px, 0);
  opacity: 1;
}

.slide-left-enter-to {
  transform: translate(0, 0);
}

.slide-left-leave-to {
  transform: translate(-800px, 0);
  opacity: 0;
}

.slide-right-enter {
  transform: translate(-800px, 0);
  opacity: 1;
}

.slide-right-enter-to {
  transform: translate(0, 0);
}

.slide-right-leave-to {
  transform: translate(800px, 0);
  opacity: 0;
}

.shake {
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  animation-iteration-count: infinite;
  transform: translate3d(0, 0, 0);
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}
[v-cloak] {
  display: none;
}

body,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul,
form, fieldset, legend,
figure,
table, th, td, caption,
hr {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-size: 62.5%;
  background-color: #0E0833;
  min-width: 320px;
}

p {
  font-family: "Rubik", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.8rem;
  color: #BDA4D9;
  font-style: normal;
}
p + p {
  padding: 1.4rem 0 0 0;
}
p + h1, p + h2, p + h3, p + h4, p + img {
  padding: 4rem 0 0 0;
}
p sup {
  margin-left: 1px;
  font-size: 1rem;
  line-height: 1.8rem;
  font-weight: 600;
}

.italic {
  font-style: italic;
}

blockquote {
  font-family: "Rubik", sans-serif;
  font-size: 3.4rem;
  font-weight: 100;
  line-height: 4.4rem;
  color: #BDA4D9;
  letter-spacing: 0.1rem;
}

span {
  font-family: "Rubik", sans-serif;
}

mark {
  background-color: #6A29A4;
  color: #fff;
  padding: 2px 10px;
}

time {
  font-family: "Rubik", sans-serif;
}

strong {
  font-weight: 600;
  color: #BDA4D9;
}

em {
  font-size: 1em;
  font-weight: 400;
  text-align: left;
  line-height: 2.8rem;
  color: #BDA4D9;
  font-style: italic;
}

table {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.8rem;
  color: #BDA4D9;
}

@media all and (max-width: 1024px) {
  html, body {
    font-size: 60%;
  }
}
.checkbox-wrap .checkbox input ~ .checkmark-box {
  border-width: 1px;
  border-style: solid;
  border-color: #BDA4D9;
}

.margin-t-15 {
  margin: 15px 0 0 0;
}

.margin-t-25 {
  margin: 25px 0 0 0;
}

.margin-t-50 {
  margin: 50px 0 0 0;
}

.margin-t-75 {
  margin: 75px 0 0 0;
}

.margin-t-100 {
  margin: 100px 0 0 0;
}

.margin-t-150 {
  margin: 150px 0 0 0;
}

.margin-t-200 {
  margin: 200px 0 0 0;
}

.margin-b-15 {
  margin: 0 0 15px 0;
}

.margin-b-25 {
  margin: 0 0 25px 0;
}

.margin-b-50 {
  margin: 0 0 50px 0;
}

.margin-b-75 {
  margin: 0 0 75px 0;
}

.margin-b-100 {
  margin: 0 0 100px 0;
}

.margin-b-150 {
  margin: 0 0 150px 0;
}

.margin-b-200 {
  margin: 0 0 200px 0;
}

.margin-tb-25 {
  margin: 25px 0;
}

.margin-tb-50 {
  margin: 50px 0;
}

.margin-tb-75 {
  margin: 75px 0;
}

.margin-tb-100 {
  margin: 100px 0;
}

.margin-tb-150 {
  margin: 150px 0;
}

.margin-tb-200 {
  margin: 200px 0;
}

.margin-l-25 {
  margin: 0 0 0 25px;
}

.padding-t-25 {
  padding: 25px 0 0 0;
}

.padding-t-50 {
  padding: 50px 0 0 0;
}

.padding-t-75 {
  padding: 75px 0 0 0;
}

.padding-t-100 {
  padding: 100px 0 0 0;
}

.padding-b-25 {
  padding: 0 0 25px 0;
}

.padding-b-50 {
  padding: 0 0 50px 0;
}

.padding-b-75 {
  padding: 0 0 75px 0;
}

.padding-b-100 {
  padding: 0 0 100px 0;
}

.padding-b-200 {
  padding: 0 0 200px 0;
}

.padding-b-150 {
  padding: 0 0 150px 0;
}

.padding-tb-25 {
  padding: 25px 0;
}

.padding-tb-50 {
  padding: 50px 0;
}

.padding-tb-75 {
  padding: 75px 0;
}

.padding-tb-100 {
  padding: 100px 0;
}

.padding-tb-150 {
  padding: 150px 0;
}

.padding-lr-50 {
  padding: 0 50px;
}

h1 {
  font-family: "Rubik", sans-serif;
  font-size: 7rem;
  font-weight: 900;
  line-height: 8rem;
  color: #CE89DF;
  letter-spacing: 0.1rem;
  text-shadow: #761968 1px 0 0;
  text-transform: uppercase;
}
h1 + h2, h1 + p, h1 + h3, h1 + h4 {
  padding: 15px 0 0 0;
}
@media all and (max-width: 768px) {
  h1 {
    font-size: 3rem;
    line-height: 4rem;
  }
  h1 span {
    font-size: 2.8rem;
  }
}
@media all and (max-width: 667px) {
  h1 {
    font-size: 3rem;
    line-height: 4rem;
  }
}

h2 {
  font-family: "Rubik", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 6rem;
  color: #CE89DF;
  letter-spacing: 0.1rem;
  text-shadow: #761968 1px 0 0;
  text-transform: uppercase;
}
h2 + h3, h2 + p, h2 + h2, h2 + h4 {
  padding: 1.4rem 0 0 0;
}
@media all and (max-width: 768px) {
  h2 {
    font-size: 3rem;
    line-height: 4rem;
  }
  h2 span {
    font-size: 2.8rem;
  }
}
@media all and (max-width: 667px) {
  h2 {
    font-size: 3rem;
    line-height: 4rem;
  }
}

h3 {
  font-family: "Rubik", sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 3.5rem;
  color: #CE89DF;
  letter-spacing: 0.1rem;
}
h3 + h3, h3 + p, h3 + h2, h3 + h4 {
  padding: 1.4rem 0 0 0;
}

h4 {
  font-family: "Rubik", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.6rem;
  color: #BDA4D9;
  letter-spacing: 0.1rem;
}
h4 + p, h4 + h1, h4 + h2 {
  padding: 1.4rem 0 0 0;
}

h5 {
  font-family: "Rubik", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.6rem;
  letter-spacing: 0.1rem;
  color: #BDA4D9;
  text-transform: uppercase;
  display: inline-block;
}
h5 + h1, h5 + h2 {
  padding: 1rem 0 0 0;
}

.small-caps h2 {
  font-variant: small-caps;
}

a {
  font-family: "Rubik", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6rem;
  text-decoration: underline;
  color: #CE89DF;
  font-weight: 400;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover {
  text-decoration: underline;
}

ul li, ol li {
  font-family: "Rubik", sans-serif;
  font-size: 1.6rem;
  color: #BDA4D9;
  line-height: 2.8rem;
  font-weight: 400;
  font-style: normal;
}
ul li sup, ol li sup {
  margin-left: 1px;
  font-size: 1rem;
  line-height: 1.8rem;
  font-weight: 600;
}

.form > input,
input[type=text],
input[type=password],
input[type=email],
input[type=name],
input[type=tel],
input[type=url],
textarea,
label {
  font-family: "Rubik", sans-serif;
  font-size: 1.4rem;
  line-height: 1.4rem;
  text-align: left;
  text-decoration: none;
  color: #BDA4D9;
  letter-spacing: 0.1rem;
  font-weight: 400;
  -webkit-appearance: none;
}

input[type=email]:invalid {
  outline: none;
  box-shadow: none;
}

label {
  font-weight: 400;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.form > input,
input[type=text],
input[type=password],
input[type=email],
input[type=name],
input[type=tel],
input[type=url],
textarea {
  background-color: #21204A;
  padding: 23px 14px 22px 14px;
  outline: none;
  box-sizing: border-box;
  border: 1px solid #21204A;
  border-radius: 10px;
  transition: all 0.2s ease-in;
}

input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=name]:focus,
input[type=tel]:focus,
input[type=url]:focus,
textarea:focus {
  border: 1px solid #CE89DF;
}

button {
  background-color: transparent;
}

label {
  float: left;
  margin-bottom: 14px;
  font-weight: 500;
  display: flex;
}
h3 + label, input + label, textarea + label {
  margin-top: 25px;
}
label i {
  font-size: 1.4rem;
  margin-left: 5px;
  cursor: pointer;
}

textarea {
  min-height: 150px;
  resize: none;
}

:required {
  box-shadow: none;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
}

.checkbox-wrap .checkbox {
  position: relative;
  padding-left: 35px;
  display: flex;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-weight: 400;
  line-height: 2rem;
  cursor: pointer;
  margin-bottom: 15px;
}
.checkbox-wrap .checkbox a:link,
.checkbox-wrap .checkbox a:visited {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2rem;
  margin: 0 5px;
}
.checkbox-wrap .checkbox .checkmark-box {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  border-radius: 5px;
  background-color: #21204A;
  margin-right: 20px;
  transition: all 0.2s ease-in;
}
.checkbox-wrap .checkbox .checkmark-box:after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 2px;
  width: 3px;
  height: 7px;
  border: solid #21204A;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  transition: all 0.2s ease-in;
}
.checkbox-wrap .checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox-wrap .checkbox input:checked ~ .checkmark-box:after {
  display: block;
}
.checkbox-wrap .checkbox input:checked ~ .checkmark-box {
  background-color: #CE89DF;
  border-color: #CE89DF;
}
.checkbox-wrap .checkbox input ~ .checkmark-box {
  background-color: #21204A;
}
.checkbox-wrap p {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2rem;
  margin-left: 35px;
}
.checkbox-wrap p a:link,
.checkbox-wrap p a:visited {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2rem;
}

input[type=text].code-input {
  background-color: #F9FCFD;
  font-weight: 500;
}

::-webkit-input-placeholder {
  color: #BDA4D9;
}

:-moz-placeholder {
  color: #BDA4D9;
  opacity: 1;
}

::-moz-placeholder {
  color: #BDA4D9;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #BDA4D9;
}

::-moz-focus-inner {
  border: 0;
}

.table, .table--sign-ups {
  max-width: 1000px;
  width: 100%;
  float: left;
  border-radius: 3px;
  box-sizing: border-box;
}
.table a:link, .table--sign-ups a:link, .table a:visited, .table--sign-ups a:visited {
  color: #BDA4D9;
}
.table a.table__delete-link, .table--sign-ups a.table__delete-link {
  margin-left: 5px;
  line-height: 2rem;
}

.table--sign-ups {
  max-width: 600px;
}

.table__header {
  width: 100%;
  float: left;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.table__header p {
  color: #fff;
  font-variant: small-caps;
  font-weight: 400;
  font-size: 1.6rem;
}

.table__header .table__item--sm {
  padding: 25px 0 25px 10px;
  min-height: auto;
}
.table__header .table__item--sm p {
  padding: 0;
}

.table__body {
  float: left;
  width: 100%;
}

.table__row {
  width: 100%;
  float: left;
  box-sizing: border-box;
  display: flex;
}
.table__item--xsm,
.table__item--sm,
.table__item--md,
.table__item--lg,
.table__item--xlg {
  position: relative;
  box-sizing: border-box;
  align-items: center;
  text-align: left;
  min-height: 120px;
  cursor: pointer;
}
.table__item--xsm p,
.table__item--sm p,
.table__item--md p,
.table__item--lg p,
.table__item--xlg p {
  padding: 10px 0 0 10px;
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 500;
}

.table__item--xsm {
  flex: 0.5;
}

.table__item--sm {
  flex: 1;
}

.table__item--md {
  flex: 2;
}

.table__item--lg {
  flex: 3;
}

.table__item--xlg {
  flex: 4;
}

.table__item--thumb {
  height: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 50%;
}

.table__item--link {
  text-decoration: none;
  transition: color, 0.2s, ease-in, -webkit-text-decoration;
  transition: color, text-decoration, 0.2s, ease-in;
  transition: color, text-decoration, 0.2s, ease-in, -webkit-text-decoration;
  color: #BDA4D9;
}
.table__item--link:hover, .table__item--link:focus {
  text-decoration: underline;
  color: #6A29A4;
}

.table--status-active,
.table--status-disabled {
  font-size: 1.3rem;
  padding: 2px 0px;
  border-radius: 25px;
  text-decoration: none;
}

.table--status-active {
  color: #fff;
  transition: background-color, 0.2s, ease-in;
  line-height: 2rem;
  vertical-align: middle;
  white-space: nowrap;
}

.table--status-disabled {
  color: #BDA4D9;
  transition: background-color, 0.2s, ease-in;
}

.table--mobile {
  display: none;
}
.table--mobile .table__row {
  flex-direction: column;
}
.table--mobile .table__item--xsm:first-of-type,
.table--mobile .table__item--sm:first-of-type,
.table--mobile .table__item--md:first-of-type,
.table--mobile .table__item--lg:first-of-type,
.table--mobile .table__item--xlg:first-of-type {
  padding: 15px 0 0 0;
}
.table--mobile .table__item--xsm:last-of-type,
.table--mobile .table__item--sm:last-of-type,
.table--mobile .table__item--md:last-of-type,
.table--mobile .table__item--lg:last-of-type,
.table--mobile .table__item--xlg:last-of-type {
  padding: 8px 0 15px 0;
}
.table--mobile .table__item--xsm,
.table--mobile .table__item--sm,
.table--mobile .table__item--md,
.table--mobile .table__item--lg,
.table--mobile .table__item--xlg {
  padding: 8px 0 0 0;
}

@media all and (max-width: 767px) {
  .table--hide {
    display: none;
  }
  .table__row:first-child {
    border: 1px solid #BDA4D9;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
  }
}
@media all and (max-width: 600px) {
  .table__row {
    flex-direction: column;
  }
  .table__row .table__item--sm + .table__item--sm {
    border: none;
    border-top: 1px solid #BDA4D9;
  }
  .table--mobile {
    display: block;
  }
  .table--mobile .table__item--xsm {
    flex: 0.5 0 auto;
  }
  .table--mobile .table__item--sm {
    flex: 1 0 auto;
  }
  .table--mobile .table__item--md {
    flex: 2 0 auto;
  }
  .table--mobile .table__item--lg {
    flex: 3 0 auto;
  }
  .table--mobile .table__item--xlg {
    flex: 4 0 auto;
  }
}
@media all and (max-width: 667px) {
  .table__header p {
    font-weight: 600;
    font-size: 1.8rem;
  }
  .table__item--lg + .table__item--sm {
    padding: 12px 0px 12px 10px;
  }
  .table__wrap {
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .table__scroll {
    width: 900px;
  }
}
.row {
  width: 100%;
  float: left;
}

.header h5 {
  font-weight: 400;
  background-image: linear-gradient(180deg, transparent 70%, rgba(13, 137, 240, 0.1) 0);
  font-style: italic;
  padding: 0 5px;
  display: inline-block;
}
.header h5 + h1 {
  padding: 1.4rem 0 0 0;
}

.flex {
  display: flex;
}

.flex--align {
  display: flex;
  align-items: center;
}
@media all and (max-width: 1024px) {
  .flex--align {
    display: inline-block;
  }
}

.flex--direction {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flex--img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex--space {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media all and (max-width: 768px) {
  .flex--space {
    flex-direction: column;
    justify-content: center;
  }
}

.flex--center {
  display: flex;
  justify-content: center;
}

@media all and (max-width: 768px) {
  .margin-t-150 {
    margin-top: 75px;
  }
}

@media all and (max-width: 768px) {
  .margin-b-100 {
    margin-bottom: 50px;
  }
}

@media all and (max-width: 768px) {
  .margin-b-150 {
    margin-bottom: 75px;
  }
}

@media all and (max-width: 768px) {
  .margin-b-200 {
    margin-bottom: 100px;
  }
}

@media all and (max-width: 768px) {
  .margin-tb-150 {
    margin: 75px 0;
  }
}

@media all and (max-width: 768px) {
  .margin-tb-200 {
    margin: 100px 0;
  }
}

@media all and (max-width: 667px) {
  .padding-lr-50 {
    padding: 0;
  }
}

@media all and (max-width: 768px) {
  .padding-tb-150 {
    padding: 75px 0;
  }
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.pull-left {
  float: left !important;
}

.pull-right {
  float: right !important;
}

.center--box {
  margin: auto;
}

.border-radius {
  border-radius: 10px;
}

.light-blue {
  background-color: #6F67D4;
}

.dust-purple {
  background-color: #BDA4D9;
}

.ligh-purple {
  background-color: #CE89DF;
}

.purple {
  background-color: #6A29A4;
}

.dark-purple {
  background-color: #21204A;
}

.base-color-60 {
  background-color: #0E0833;
}

.base-color-30 {
  background-color: #BDA4D9;
}

.base-color-10 {
  background-color: #6A29A4;
}

.white {
  background-color: #ffffff;
}

.pink {
  background-color: #FC3768;
}

.dark-blue {
  background-color: #0E0833;
}

.light-yellow {
  background-color: #FAC933;
}

.light-pink {
  background-color: #F77898;
}

.pink {
  background-color: #FC3768;
}

.light-green {
  background-color: #5BCEAE;
}

.lighter-gray {
  background-color: #EFF5FF;
}

.light-gray {
  background-color: #D7E4F0;
}

.gray {
  background-color: #8592A9;
}

.dark-gray {
  background-color: #29384D;
}

.gradient {
  background: rgb(33, 32, 74);
  background: linear-gradient(0deg, rgba(33, 32, 74, 0) 70%, rgb(14, 8, 51) 100%);
}

.img {
  max-width: 100%;
  width: 100%;
  display: block;
}

.box-shadow {
  box-shadow: 0px 10px 30px 2px rgb(230, 234, 238);
}

.border-radius {
  border-radius: 10px;
}

hr {
  width: 100%;
  border: 0 none;
  border-top: 1px dashed #B4BAC0;
  background: none;
  height: 0;
}

.min-height-400 {
  min-height: 400px;
}

.min-height-600 {
  min-height: 600px;
}

.max-width--sm {
  max-width: 500px;
}

.max-width--md {
  max-width: 625px;
}

.max-width--lg {
  max-width: 1024px;
}

@media all and (max-width: 768px) {
  .margin-tb-75 {
    margin: 35px 0;
  }
  .margin-b-100 {
    margin-bottom: 50px;
  }
  .margin-b-200 {
    margin-bottom: 100px;
  }
  .margin-t-200 {
    margin-top: 100px;
  }
  .margin-t-100 {
    margin-top: 50px;
  }
  .margin-tb-100 {
    margin: 50px 0;
  }
  .padding-b-200 {
    padding-bottom: 100px;
  }
}
.wrap, .wrap--xsm, .wrap--sm, .wrap--md, .wrap--lg, .wrap--xlg {
  width: 96%;
  box-sizing: border-box;
  margin: auto;
  position: relative;
}

.wrap--xlg {
  max-width: 1400px;
}

.wrap--lg {
  max-width: 1280px;
}

.wrap--md {
  max-width: 1080px;
}

.wrap--sm {
  max-width: 800px;
}

.wrap--xsm {
  max-width: 650px;
}

.wrap--xsm__left {
  float: left;
  width: 100%;
  max-width: 525px;
  box-sizing: border-box;
}

.wrap--sm__left {
  float: left;
  width: 100%;
  max-width: 800px;
  box-sizing: border-box;
}

.wrap--lg__left {
  float: left;
  width: 100%;
  max-width: 1280px;
  box-sizing: border-box;
}

.grid-row {
  width: 100%;
  float: left;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11 {
  float: left;
  margin-right: 2.85714286%;
}
.col-1:last-child,
.col-2:last-child,
.col-3:last-child,
.col-4:last-child,
.col-5:last-child,
.col-6:last-child,
.col-7:last-child,
.col-8:last-child,
.col-9:last-child,
.col-10:last-child,
.col-11:last-child {
  margin-right: 0;
}

.col-1 {
  width: 5.71428571%;
}

.col-2 {
  width: 14.28571429%;
}

.col-3 {
  width: 22.85714286%;
}

.col-4 {
  width: 31.42857143%;
}

.col-5 {
  width: 40%;
}

.col-6 {
  width: 48.57142857%;
}

.col-7 {
  width: 57.14285714%;
}

.col-8 {
  width: 65.71428571%;
}

.col-9 {
  width: 74.28571429%;
}

.col-10 {
  width: 82.85714286%;
}

.col-11 {
  width: 91.42857143%;
}

.col-12 {
  width: 100%;
  float: left;
  position: relative;
}

.image-grid {
  width: 100%;
  float: left;
  overflow: hidden;
}

.image-grid__content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 450px;
}
.image-grid__content img {
  max-width: 100%;
}

@media all and (max-width: 1250px) {
  .wrap, .wrap--xlg, .wrap--lg, .wrap--md, .wrap--sm, .wrap--xsm {
    width: 94%;
  }
}
@media all and (max-width: 768px) {
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11 {
    width: 100%;
    margin-right: 0;
  }
  .col-1:last-child,
  .col-2:last-child,
  .col-3:last-child,
  .col-4:last-child,
  .col-5:last-child,
  .col-6:last-child,
  .col-7:last-child,
  .col-8:last-child,
  .col-9:last-child,
  .col-10:last-child,
  .col-11:last-child {
    margin-right: 0;
  }
  .col-4 + .col-4 {
    margin-top: 30px;
  }
}
.btn, .btn--secondary, .btn--primary {
  font-family: "Rubik", sans-serif;
  font-size: 1.4rem;
  line-height: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  -webkit-appearance: none;
  cursor: pointer;
  display: inline-block;
  z-index: 1;
  position: relative;
}
.btn:focus, .btn--secondary:focus, .btn--primary:focus {
  outline: none;
}
@media all and (max-width: 768px) {
  .btn, .btn--secondary, .btn--primary {
    font-weight: 600;
  }
}

.btn + .btn, .btn--secondary + .btn, .btn + .btn--secondary, .btn--secondary + .btn--secondary, .btn--primary + .btn, .btn--primary + .btn--secondary, .btn + .btn--primary, .btn--secondary + .btn--primary, .btn--primary + .btn--primary {
  margin-left: 5px;
}

.btn--primary {
  box-sizing: border-box;
  color: #EFF1F5;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 10px;
  transition: color 0.2s ease-in;
  background: rgb(111, 103, 212);
  background: linear-gradient(0deg, rgb(111, 103, 212) 0%, rgb(106, 41, 164) 100%);
  border: 1px solid #8B65DE;
  box-shadow: 0 3px 0 #64459a;
}
.btn--primary:active, .btn--primary:focus, .btn--primary:hover {
  text-decoration: none;
  color: #BDA4D9;
}

.btn--secondary {
  box-sizing: border-box;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  transition: color 0.2s ease-in;
  background-color: #4E477D;
  border: 1px solid #545392;
  box-shadow: 0 3px 0 #414073;
  color: #FFF;
  text-shadow: 0px 1px 0px #1C2A4D;
}
.btn--secondary:active, .btn--secondary:focus, .btn--secondary:hover {
  color: #BDA4D9;
  text-decoration: none;
}

.btn--xsm {
  padding: 16px 8px;
}

.btn--sm {
  padding: 16px 10px;
}

.btn--md {
  padding: 16px 24px;
}

.btn--lg {
  padding: 16px 50px;
}

.btn--xlg {
  width: 100%;
  padding: 16px 0;
}

.btn--fixed {
  width: 115px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn--disabled {
  cursor: not-allowed;
  pointer-events: none;
}
.btn--disabled:hover {
  color: #BDA4D9;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
.btn--spinner {
  min-width: 16px;
  min-height: 16px;
  display: inline-block;
  margin-right: 10px;
}

.btn--spinner:before {
  content: "Loading…";
  width: 16px;
  height: 16px;
  display: block;
}

.btn--spinner:not(:required):before {
  content: "";
  border-radius: 50%;
  border-top: 2px solid #fff;
  border-right: 2px solid transparent;
  animation: spinner 0.6s linear infinite;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  overflow-y: scroll;
}
.overlay .close {
  position: absolute;
  top: 50px;
  right: 50px;
  cursor: pointer;
}
.overlay .close i {
  font-size: 3.4rem;
  color: #BDA4D9;
}

.modal-wrap {
  width: 100%;
  float: left;
  margin: 100px 0;
  display: flex;
  justify-content: center;
  align-content: center;
  height: calc(100vh - 200px);
}
.modal-wrap .icon--lg {
  font-size: 6rem;
}

.modal--video {
  position: relative;
}
.modal--video .close {
  position: absolute;
  top: -50px;
  right: -50px;
  cursor: pointer;
  color: #ffffff;
  text-decoration: none;
}
.modal--video .close i {
  font-size: 3.4rem;
  color: #ffffff;
  line-height: 3rem;
}
@media all and (max-width: 875px) {
  .modal--video .close {
    top: -50px;
    right: 0px;
  }
}

.modal--xsm,
.modal--sm,
.modal--md,
.modal--lg {
  width: 100%;
  margin: auto;
}

.modal--xsm {
  max-width: 400px;
}

.modal--sm {
  max-width: 700px;
}

.modal--md {
  max-width: 750px;
}

.modal--lg {
  max-width: 100%;
  padding: 1%;
  box-sizing: border-box;
}

.feedback, .feedback__info, .feedback__alert, .feedback__success {
  float: left;
  padding: 20px;
  box-sizing: border-box;
  background-color: #FFFFFF;
}

.feedback__success {
  width: 100%;
}
.feedback__success p, .feedback__success h2 {
  color: #CE89DF;
  font-size: 1.4rem;
  line-height: 1.4rem;
  font-weight: 500;
}

.feedback__alert {
  box-shadow: 0 5px 10px 0 rgb(230, 234, 238);
}
.feedback__alert p, .feedback__alert h2 {
  color: #CE89DF;
  font-size: 1.4rem;
  line-height: 1.4rem;
  font-weight: 500;
}

.feedback__alert--span {
  color: #E37674;
  display: block;
}

.feedback__info {
  vertical-align: middle;
  background-color: #FFFFFF;
  border-radius: 10px;
}
.feedback__info h2 {
  font-size: 1.6rem;
  font-weight: 500;
}
.feedback__info p {
  font-size: 1.6rem;
}
.feedback__info .alert {
  color: #E37674;
  font-weight: 500;
}

.pagination {
  width: 100%;
  float: left;
}
.pagination ul {
  list-style-type: none;
}
.pagination ul li {
  display: inline-block;
  line-height: 1.6rem;
}
.pagination ul li a:link,
.pagination ul li a:visited {
  color: #BDA4D9;
  text-decoration: none;
  transition: color, 0.2s, ease-in;
  font-size: 1.2rem;
  line-height: 1.4rem;
}
.pagination ul li a:focus,
.pagination ul li a:hover {
  text-decoration: underline;
}
.pagination ul li .disabled {
  opacity: 0.5;
  cursor: default;
}
.pagination ul li .disabled:hover {
  color: #BDA4D9;
}
.pagination ul .current p {
  font-size: 1.2rem;
  line-height: 1.4rem;
  font-weight: 500;
  text-decoration: underline;
}
.pagination ul li + li {
  margin-left: 10px;
  padding-left: 10px;
}

.tooltips {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-block;
  -webkit-transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
}
.tooltips img {
  width: 20px;
  height: 20px;
  display: block;
}

.tooltips:hover .tooltips__msg {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0px);
}

.tooltips__msg {
  position: absolute;
  width: 280px;
  box-sizing: border-box;
  left: -200px;
  bottom: 100%;
  z-index: 10;
  border-radius: 10px;
  background-color: #FFF;
  display: block;
  margin-bottom: 15px;
  opacity: 0;
  padding: 20px;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.25s ease-out;
  box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.3);
}
.tooltips__msg p {
  font-size: 1.2rem;
  line-height: 2rem;
  font-weight: 500;
}
.tooltips__msg ul {
  margin: 10px 10px 0 0;
}
.tooltips__msg ul li {
  margin-left: 10px;
  list-style-type: disc;
  font-size: 1.2rem;
  line-height: 2rem;
  font-weight: 500;
}
.tooltips__msg ul li + li {
  margin-top: 5px;
}

@media all and (max-width: 1100px) {
  .tooltips__msg {
    left: -250px;
  }
}
.progress-bar {
  width: 100%;
  max-width: 250px;
}
.progress-bar h4 {
  color: #AEBDCA;
  font-size: 1.4rem;
  line-height: 2.4rem;
  display: block;
  font-weight: 500;
  margin-top: 10px;
}
.progress-bar h2 {
  font-size: 7rem;
  line-height: 8rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.progress-bar .progress {
  width: 100%;
  float: left;
  border-radius: 5px;
  background-color: #E1E9F0;
  margin-top: 10px;
}
.progress-bar .progress .active {
  width: 100%;
  float: left;
  border-radius: 5px;
  transition: width 0.5s ease-out;
  transition-delay: 0.5s;
  background-color: #FC3768;
}
.progress-bar .progress .success {
  background-color: #00AC9C;
}
.progress-bar .progress .fail {
  background-color: #D5368F;
}
.progress-bar .progress--sm {
  height: 6px;
  max-width: 200px;
}
.progress-bar .progress--sm .active {
  height: 6px;
}
.progress-bar .progress--md {
  height: 8px;
  max-width: 600px;
}
.progress-bar .progress--md .active {
  height: 8px;
}

.icon--xsm {
  font-size: 1rem;
}

.icon--sm {
  font-size: 2rem;
}

.icon--md {
  font-size: 3rem;
}

.icon--lg {
  font-size: 4.5rem;
}

.icon--xlg {
  font-size: 5.5rem;
}

.mdi::before, .mdi-set {
  display: block !important;
}

.spinner {
  margin: auto;
  width: 35px;
}

.spinner--light {
  min-width: 20px;
  min-height: 20px;
  margin-right: 14px;
}

.spinner--light:before {
  content: "Loading…";
  width: 20px;
  height: 20px;
  display: block;
}

.spinner--light:not(:required):before {
  content: "";
  border-radius: 50%;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  border-left: 2px solid #ffffff;
  animation: spinner 0.6s linear infinite;
}

.spinner--blue {
  min-width: 35px;
  min-height: 35px;
  float: left;
}

.spinner--blue:before {
  content: "Loading…";
  width: 35px;
  height: 35px;
  display: block;
}

.spinner--blue:not(:required):before {
  content: "";
  border-radius: 50%;
  border-top: 3px solid rgb(0, 94, 171);
  border-right: 3px solid rgb(0, 94, 171);
  border-bottom: 3px solid rgb(0, 94, 171);
  border-left: 3px solid #ffffff;
  animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
.boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  -moz-column-gap: 25px;
       column-gap: 25px;
  row-gap: 25px;
}
@media all and (max-width: 1024px) {
  .boxes {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: inherit;
  }
}
@media all and (max-width: 667px) {
  .boxes {
    grid-template-columns: 1fr;
  }
}

.box {
  background: rgb(33, 32, 74);
  background: linear-gradient(0deg, rgb(33, 32, 74) 50%, rgb(53, 52, 95) 100%);
  border-radius: 15px;
  padding: 40px;
  box-sizing: border-box;
  border: 1px solid #39366F;
}
.box h3 {
  font-size: 2.4rem;
  line-height: 3rem;
  font-weight: 800;
  text-transform: none;
  position: relative;
}
.box h3 + p {
  padding: 0;
}
.box p {
  font-size: 1.4rem;
  line-height: 2.4rem;
  margin-top: 15px;
}
.box p + img {
  padding: 0;
}
.box img {
  max-width: 100%;
}

.box-1 {
  grid-row: 1/1;
  grid-column: 1/1;
}

.box-2 {
  grid-row: 1/1;
  grid-column: 2/4;
}
.box-2 h3 {
  max-width: 80%;
}
@media all and (max-width: 1024px) {
  .box-2 h3 {
    max-width: 100%;
  }
}
.box-2 .split {
  display: grid;
  grid-template-columns: 1fr auto;
}
.box-2 .split img {
  max-width: 225px;
}
@media all and (max-width: 1024px) {
  .box-2 .split img {
    margin: 25px auto;
  }
}
@media all and (max-width: 1024px) {
  .box-2 .split {
    grid-template-columns: 1fr;
  }
}
@media all and (max-width: 1024px) {
  .box-2 {
    grid-row: initial;
    grid-column: initial;
  }
}

.box-3 {
  grid-row: 1/3;
  grid-column: 4/4;
  background-image: url("/images/box-3-graphics-bg.png");
  background-color: #313059;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
}
@media all and (max-width: 1024px) {
  .box-3 {
    grid-row: initial;
    grid-column: 1/3;
    background-size: auto;
    text-align: center;
  }
}
@media all and (max-width: 1024px) and (max-width: 1024px) {
  .box-3 img {
    max-width: 300px;
    margin-top: 25px;
  }
}
@media all and (max-width: 667px) {
  .box-3 {
    grid-column: 1/1;
  }
}

.box-4 {
  grid-row: 2/2;
  grid-column: 3/1;
}
@media all and (max-width: 1024px) {
  .box-4 {
    grid-row: initial;
    grid-column: initial;
  }
}
.box-4 h3 {
  max-width: 80%;
}
@media all and (max-width: 1024px) {
  .box-4 h3 {
    max-width: 100%;
  }
}
.box-4 .split {
  display: grid;
  grid-template-columns: 1fr auto;
}
@media all and (max-width: 1024px) {
  .box-4 .split {
    grid-template-columns: 1fr;
  }
}
.box-4 .split img {
  max-width: 160px;
}
@media all and (max-width: 1024px) {
  .box-4 .split img {
    margin: 25px auto;
  }
}

.box-5 {
  grid-row: 2/2;
  grid-column: 3/3;
}
@media all and (max-width: 1024px) {
  .box-5 {
    grid-row: initial;
    grid-column: initial;
  }
}

.top-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  grid-column-gap: 40px;
  margin-top: 25px;
}
@media all and (max-width: 1200px) {
  .top-bar {
    grid-template-columns: auto 1fr;
  }
}

.logo {
  float: left;
}
.logo a {
  display: block;
}
.logo a img {
  width: 150px;
  border: none;
}

.logo--mobile {
  padding-left: 3%;
}

@media all and (max-width: 1200px) {
  .global-nav {
    display: none;
  }
}
.global-nav ul {
  text-align: center;
}
.global-nav ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
}
.global-nav ul li a:link,
.global-nav ul li a:visited {
  color: #BDA4D9;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5rem;
  padding-bottom: 27px;
  transition: color 0.2s ease-in;
}
.global-nav ul li a:hover {
  color: #CE89DF;
}
@media all and (max-width: 600px) {
  .global-nav ul li {
    float: none;
    display: block;
    text-align: right;
  }
}
.global-nav ul li + li {
  margin-left: 30px;
}
@media all and (max-width: 500px) {
  .global-nav ul li + li {
    margin-left: 15px;
  }
}

@media all and (max-width: 1200px) {
  .demo-btn {
    display: none;
  }
}

.global-nav__overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #0E0833;
  z-index: 999;
  overflow: auto;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  display: none;
}
@media all and (max-width: 1200px) {
  .global-nav__overlay {
    display: block;
  }
}
@media all and (max-width: 375px) {
  .global-nav__overlay {
    background: #fff;
  }
}

.global-nav__toggle {
  width: 40px;
  height: 38px;
  float: right;
  transition: margin 0.3s ease;
  display: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media all and (max-width: 1200px) {
  .global-nav__toggle {
    display: block;
  }
}
.global-nav__toggle p {
  float: left;
  font-size: 2rem;
  font-weight: 400;
  transition: color 0.3s ease;
}
.global-nav__toggle span,
.global-nav__toggle span:after,
.global-nav__toggle span:before {
  position: relative;
  width: 40px !important;
  height: 4px !important;
  padding: 0 !important;
  background-color: #BDA4D9;
  display: block;
  content: "";
  top: 16px;
  transition: transform 0.2s ease;
  transform: rotate(0deg);
  float: right;
  border-radius: 10px;
}
.global-nav__toggle span:before {
  top: -9px;
}
.global-nav__toggle span:after {
  top: 6px;
}
.global-nav__toggle.open span {
  transform: rotate(45deg);
  z-index: 1000;
}
.global-nav__toggle.open span:after,
.global-nav__toggle.open span:before {
  transform: rotate(-90deg);
  top: 0;
}
.global-nav__toggle.open span:after {
  top: -2px;
}

.z-index {
  float: right;
}
.z-index.open span {
  z-index: 0;
}

.global-nav--mobile h3 {
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 600;
}
.global-nav--mobile ul + h3 {
  margin-top: 25px;
}
.global-nav--mobile ul li {
  font-size: 2rem;
  line-height: 2rem;
  margin-top: 15px;
  font-weight: 600;
  list-style-type: none;
  display: block;
}
.global-nav--mobile ul li a:link,
.global-nav--mobile ul li a:visited {
  color: #BDA4D9;
  text-decoration: none;
  display: inline-block;
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 500;
  transition: color 0.1s ease-in;
  position: relative;
}
.global-nav--mobile ul li a:link span,
.global-nav--mobile ul li a:visited span {
  width: 12px;
  height: 12px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FC3768;
  color: #ffffff;
  font-size: 0.8rem;
  margin-left: 2px;
  position: absolute;
  right: -14px;
  top: -7px;
  font-style: normal;
}
.global-nav--mobile ul li a:hover,
.global-nav--mobile ul li a:active {
  color: #CE89DF;
}
.global-nav--mobile ul li ul {
  margin-left: 15px;
}
.global-nav--mobile ul li + li {
  margin-top: 20px;
}

.mobile--padding {
  padding: 0 3%;
  box-sizing: border-box;
}

.select {
  position: relative;
  float: left;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.select select {
  width: 0.5px;
  position: absolute;
  opacity: 0;
  left: 50%;
  bottom: 0;
  height: 100%;
  border: none;
  padding: 0;
  display: none;
}
.select .item {
  width: 100%;
  max-width: 220px;
  margin-bottom: 25px;
}
.select .item + .item {
  margin-left: 25px;
}
@media all and (max-width: 400px) {
  .select {
    flex-direction: column;
    align-items: center;
  }
  .select .item {
    width: 90%;
    max-width: 100%;
  }
  .select .item + .item {
    margin-left: 0px;
  }
}

.select__btn {
  padding: 18px 0 18px 18px;
  background-color: #0E0833;
  color: #BDA4D9;
  position: relative;
  text-align: left;
  width: 100%;
  border-radius: 10px;
  font-size: 1.5rem;
  line-height: 1.5rem;
}
.select__btn span {
  background-image: url("/static/images/arrow-icon.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 12px;
  display: inline-block;
  height: 7px;
  width: 13px;
  position: absolute;
  right: 15px;
  top: 45%;
}

.select__list {
  border-radius: 10px;
  width: 100%;
  position: absolute;
  top: 60px;
  display: block;
  background-color: #0E0833;
  box-sizing: border-box;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  z-index: 999;
  max-height: 250px;
  overflow: scroll;
}
.select__list ul {
  margin: 0;
}
.select__list ul li {
  list-style-type: none;
  padding: 0;
}
.select__list ul li a:link,
.select__list ul li a:visited {
  font-size: 1.4rem;
  line-height: 1.4rem;
  font-weight: 600;
  color: #BDA4D9;
  text-decoration: none;
  padding: 14px;
  transition: background-color, 0.2s ease-in;
  display: block;
}
.select__list ul li a:hover {
  background-color: #EDF2F7;
}

.search {
  width: 100%;
  float: left;
  display: flex;
  flex-direction: row;
}
.search input + button {
  margin-left: 50px;
}

.tips {
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
  color: #AEBDCA;
}

.search-result {
  width: 100%;
  float: left;
}
.search-result .filters {
  width: 100%;
  float: left;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.search-result .filters ul {
  display: flex;
  flex-direction: row;
  width: 100%;
  float: left;
}
.search-result .filters ul li {
  list-style-type: none;
  font-weight: 500;
  font-size: 1.5rem;
}
.search-result .filters ul li a:link,
.search-result .filters ul li a:visited {
  color: #BDA4D9;
  text-decoration: underline;
  font-size: 1.5rem;
  transition: color, 0.2s ease-in;
}
.search-result .filters ul li a:hover {
  color: #6A29A4;
}
.search-result .filters ul li a.active {
  color: #6A29A4;
}
.search-result .filters ul li + li {
  margin-left: 15px;
}
.search-result .item {
  width: 100%;
  float: left;
  padding: 40px;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 1px #BDA4D9;
  border-right: 8px solid #6A29A4;
  background-color: #FFF;
}
.search-result .item h1, .search-result .item h2, .search-result .item h3, .search-result .item p {
  padding: 0;
}
.search-result .item h2 span,
.search-result .item p span {
  font-size: 2rem;
  font-weight: 500;
  float: right;
}
.search-result .item p ~ h2 {
  margin: 50px 0 15px 0;
}
.search-result .item h1 + .list,
.search-result .item .list + p,
.search-result .item .list + h3 {
  margin-top: 25px;
}
.search-result .item .list li {
  list-style-type: none;
}
.search-result .no-result {
  width: 100%;
  float: left;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.search-result .no-result h4 {
  font-size: 2.8rem;
  line-height: 3.8rem;
  margin-top: 25px;
}
.search-result .no-result .icon--lg {
  font-size: 5rem;
}

.test-search {
  min-height: 400px;
}

.datepicker a:link,
.datepicker a:visited {
  font-size: 3rem;
  line-height: 4rem;
  font-weight: 300;
  color: #BDA4D9;
  transition: color, 0.2s ease-in;
}
.datepicker a:hover {
  text-decoration: none;
  color: #6A29A4;
}
.datepicker i {
  margin-right: 10px;
}

.datepicker-trigger {
  width: 300px;
  margin: auto;
}

.asd__wrapper {
  box-shadow: 0 10px 30px 0 rgb(230, 234, 238);
  box-sizing: border-box;
  font-family: "Rubik", sans-serif;
  color: #BDA4D9;
  border-radius: 10px;
  padding: 20px 0;
  height: 380px;
}

.asd__month-name {
  font-size: 2.2rem;
  line-height: 3.2rem;
  margin-bottom: 50px;
}

.asd__day-title {
  font-size: 1.7rem;
  margin: 15px 0 0 0;
}

.asd__change-month-button > button {
  background-color: #F3F6F9;
  border: none;
  border-radius: 5px;
  padding: 8px 6px;
  transition: background-color, 0.2s ease-in;
}

.asd__change-month-button > button:hover {
  background-color: rgb(226, 233.25, 240.5);
  border: none;
}

.asd__day-button {
  display: block;
  font-size: 1.5rem;
  background-color: transparent;
}

.asd__day-button:hover {
  background-color: #6A29A4;
  color: #fff;
  border-radius: 50px;
}

.asd__day--enabled {
  border-radius: 50px;
  border: none !important;
}

.asd__day--enabled:hover {
  background-color: transparent;
}

.banner {
  background-attachment: fixed;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  float: left;
  width: 100%;
  box-sizing: border-box;
}

.newsletter {
  text-align: center;
}
@media all and (max-width: 667px) {
  .newsletter {
    padding: 0 5%;
    box-sizing: border-box;
  }
}
@media all and (max-width: 375px) {
  .newsletter {
    padding: 0;
  }
}
.newsletter h5 {
  font-weight: 400;
  background-image: linear-gradient(180deg, transparent 70%, rgba(13, 137, 240, 0.1) 0);
  font-style: italic;
  padding: 0 5px;
  display: inline-block;
  margin-bottom: 10px;
}
.newsletter .form {
  width: 100%;
  float: left;
  display: grid;
  grid-template-columns: 1fr 1fr 150px;
  margin-bottom: 25px;
}
.newsletter .form input[type=text],
.newsletter .form label:first-child input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
  border-right: 0;
  padding: 18px 14px 17px 20px;
}
@media all and (max-width: 667px) {
  .newsletter .form input[type=text],
  .newsletter .form label:first-child input {
    border-radius: 999px;
    border: 1px solid #BDA4D9;
  }
}
.newsletter .form input[type=email] {
  border-radius: 0;
  border-right: 0;
  border-right: 0;
}
@media all and (max-width: 667px) {
  .newsletter .form input[type=email] {
    border-radius: 999px;
    border: 1px solid #BDA4D9;
  }
}
.newsletter .form input[type=submit] {
  line-height: 1.4rem;
}
.newsletter .form .btn--primary {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
@media all and (max-width: 667px) {
  .newsletter .form .btn--primary {
    border-radius: 999px;
  }
}
@media all and (max-width: 667px) {
  .newsletter .form {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-row-gap: 10px;
  }
}
.newsletter .recaptcha {
  max-width: 310px;
  width: 100%;
  margin: auto;
}
.newsletter p {
  font-size: 1.6rem;
  line-height: 1.6rem;
  color: #CE89DF;
}
.submit::-moz-focus-inner {
  border: 0;
}

.newsletter--modal {
  padding: 60px;
  background-color: #FFF;
  box-shadow: 0px 10px 30px 2px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  position: absolute;
}
@media all and (max-width: 667px) {
  .newsletter--modal {
    padding: 10% 5%;
    box-sizing: border-box;
  }
}
.newsletter--modal .link {
  text-decoration: underline;
  font-weight: 500;
}
.newsletter--modal .close-guide {
  position: absolute;
  right: 10px;
  top: 20px;
  z-index: 99;
}
.newsletter--modal .close-guide span {
  font-size: 3.5rem;
  display: block;
  color: #29384D;
}
.newsletter--modal .close-guide:hover {
  text-decoration: none;
}

.footer--bg {
  background-attachment: fixed;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  float: left;
  width: 100%;
  box-sizing: border-box;
  padding: 100px 0;
}
.footer--bg img {
  max-width: 175px;
}
.footer--bg ul li {
  list-style-type: none;
  font-size: 1.4rem;
  line-height: 2.2rem;
}
.footer--bg p {
  font-size: 1.4rem;
  line-height: 2.2rem;
}
.footer--bg p a {
  font-size: 1.4rem;
  line-height: 2.2rem;
}
.footer--bg p a:hover {
  text-decoration: none;
}

.cookie-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  overflow-y: scroll;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal {
  display: flex;
  flex-direction: column;
  margin: 5vh auto;
  border-radius: 10px;
  padding: 25px;
  box-sizing: border-box;
  background-color: #21204A;
  width: 100%;
}
@media all and (max-width: 450px) {
  .cookie-modal {
    width: 96%;
  }
}
.cookie-modal--sm {
  max-width: 400px;
}
.cookie-modal--md {
  max-width: 500px;
}
.cookie-modal--lg {
  max-width: 600px;
}
.cookie-modal p, .cookie-modal a:link {
  font-size: 1.4rem;
  line-height: 2.2rem;
}
.cookie-modal p + label {
  margin-top: 25px;
}
.cookie-modal .checkbox {
  position: relative;
  padding-left: 35px;
  font-weight: 400;
  line-height: 2rem;
  display: flex;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #BDA4D9;
  font-weight: 400;
  line-height: 2rem;
  cursor: pointer;
  margin-bottom: 15px;
}
.cookie-modal .checkbox .checkmark-box {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  border-radius: 5px;
  background-color: #BDA4D9;
  margin-right: 20px;
  transition: all 0.2s ease-in;
}
.cookie-modal .checkbox .checkmark-box:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  transition: all 0.2s ease-in;
}
.cookie-modal .checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.cookie-modal .checkbox input:checked ~ .checkmark-box:after {
  display: block;
}
.cookie-modal .checkbox input:checked ~ .checkmark-box {
  background-color: #6A29A4;
  border-color: #6A29A4;
}
.cookie-modal .checkbox input ~ .checkmark-box {
  background-color: #0E0833;
}
.cookie-modal .checkbox input:disabled ~ .checkmark-box {
  background-color: #0E0833;
  border-color: #0E0833;
}
.cookie-modal .cookie-modal__footer {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cookie-modal .cookie-modal__footer button {
  width: 50%;
  padding: 15px 0px;
}
.cookie-modal .cookie-modal__footer button + button {
  margin-left: 15px;
}
@media all and (max-width: 400px) {
  .cookie-modal .cookie-modal__footer {
    flex-direction: column;
  }
  .cookie-modal .cookie-modal__footer button {
    width: 100%;
    max-width: 180px;
  }
  .cookie-modal .cookie-modal__footer button + button {
    margin: 15px 0 0 0;
  }
}

.cookie-no-scroll {
  overflow: hidden;
  position: fixed;
}

.social-nav {
  position: relative;
  z-index: 10;
}
.social-nav h3 {
  margin-bottom: 25px;
}
.social-nav ul li {
  display: inline-block;
}
.social-nav ul li a:link,
.social-nav ul li a:visited {
  color: #BDA4D9;
  transition: color 0.2s ease-in;
  text-decoration: none;
}
.social-nav ul li a:hover {
  color: #CE89DF;
}
.social-nav ul li + li {
  margin-left: 10px;
}

.video-wrap {
  width: 100%;
  max-width: 1024px;
  min-height: 576px;
  margin: auto;
  position: relative;
  padding: 25px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-wrap img {
  max-width: 100%;
}
@media all and (max-width: 900px) {
  .video-wrap {
    width: 96%;
    text-align: center;
  }
}
.video-wrap a:link,
.video-wrap a:visited {
  text-decoration: underline;
  color: #29384D;
}
.video-wrap .play {
  width: 85px;
  height: 70px;
  display: inline-block;
  background-image: url("/images/play-btn.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 10;
}
@media all and (max-width: 600px) {
  .video-wrap .play {
    width: 60px;
    height: 50px;
  }
}
.video-wrap .hidden {
  display: none;
}
.video-wrap #myVideo {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
}

.sneak-peak {
  position: absolute;
  left: 0px;
  top: -140px;
  width: 150px;
  display: inline-block;
  z-index: 99;
}
@media all and (max-width: 900px) {
  .sneak-peak {
    left: 200px;
    top: -120px;
    width: 130px;
  }
}
@media all and (max-width: 500px) {
  .sneak-peak {
    left: 150px;
    top: -90px;
    width: 100px;
  }
}

.settings {
  display: grid;
  grid-template-columns: auto auto 1fr;
  grid-column-gap: 10px;
  align-items: center;
}
.settings .settings-icon {
  font-size: 2rem;
  color: #ADB4D1;
}
.settings a + .settings-icon {
  padding-left: 15px;
}

.settings--wrap {
  position: relative;
}
.settings--wrap .settings__link {
  font-weight: 500;
  color: #949BBA;
  align-items: center;
  display: flex;
}
.settings--wrap .settings__link:link, .settings--wrap .settings__link:hover {
  text-decoration: none;
}
.settings--wrap .settings__link i {
  font-size: 2rem;
  margin: 0 0 0 10px;
}
.settings--wrap .settings__container {
  position: absolute;
  top: 35px;
  right: 0;
  width: 220px;
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #FFF;
  z-index: 999;
}
.settings--wrap .settings__container ul li {
  list-style-type: none;
}
.settings--wrap .settings__container ul li a:link,
.settings--wrap .settings__container ul li a:visited {
  padding: 15px 20px;
  color: #BDA4D9;
  text-decoration: none;
  background-color: #FFF;
  font-size: 1.4rem;
  line-height: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}
.settings--wrap .settings__container ul li a:link i,
.settings--wrap .settings__container ul li a:visited i {
  font-size: 1.4rem;
  line-height: 1.4rem;
  margin-right: 10px;
  transition: all 0.1s ease;
  color: #BDA4D9;
}
.settings--wrap .settings__container ul li a:hover {
  background-color: #EDF2F7;
}
.settings--wrap .settings__container ul li .disabled {
  color: #C7D1DA !important;
}
.settings--wrap .settings__container ul li .disabled:hover {
  background-color: #fff;
}
.settings--wrap .settings__container ul li:first-child a:link,
.settings--wrap .settings__container ul li:first-child a:visited {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.settings--wrap .settings__container ul li:last-child a:link,
.settings--wrap .settings__container ul li:last-child a:visited {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.settings--right {
  align-self: center;
  justify-self: end;
}

.switch-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.switch-wrap p {
  font-size: 1.8rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 65px;
  height: 30px;
  margin: 0 20px;
}
.switch .switch__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0px;
  right: 0;
  bottom: 0;
  background-color: #FBFBFA;
  border-radius: 34px;
  transition: 0.4s;
}
.switch .switch__slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: #CFD2DA;
  border-radius: 50%;
  transition: all, 0.2s ease-in;
}
.switch input[type=checkbox] {
  display: none;
}
.switch input:focus + .switch__slider {
  box-shadow: 0 0 1px #ECE6DF;
}
.switch input:checked + .switch__slider:before {
  transform: translateX(35px);
  background-color: #6A29A4;
}

.test {
  height: 50px;
  width: 100%;
  float: left;
}

.badge--success,
.badge--error,
.badge--gray,
.badge--info,
.badge--procedure,
.badge--quiz,
.badge--theory {
  font-weight: 500;
  padding: 6px 8px;
  display: inline-block;
  border-radius: 5px;
  letter-spacing: 0.05rem;
}

.badge--success,
.badge--error,
.badge--info,
.badge--gray,
.badge--procedure,
.badge--quiz,
.badge--theory {
  text-transform: uppercase;
  font-size: 0.8rem;
  line-height: 0.8rem;
  font-weight: 600;
}

.badge--success {
  background-color: rgba(0, 172, 156, 0.1);
  color: #5BCEAE;
}

.badge--error {
  background-color: rgba(252, 55, 104, 0.1);
  color: #FC3768;
}

.badge--gray {
  background-color: #EFF5FF;
  color: #29384D;
  border: 1px solid rgb(218.7090909091, 230.5036363636, 241.3909090909);
}

.badge--info {
  background-color: #EFF5FF;
  color: #29384D;
  border: 1px solid rgb(218.7090909091, 230.5036363636, 241.3909090909);
}

.badge--procedure {
  background-color: #F3E5FF;
  color: #9F73B7;
}

.badge--quiz {
  background-color: #FEEDDB;
  color: #C58442;
}

.badge--theory {
  background-color: #ECF8FD;
  color: #4F6583;
}

.contact p + p {
  padding: 0;
}
.contact p i {
  display: inline-block;
  font-size: 2.6rem;
  margin-right: 5px;
}
.contact p:nth-child(2) {
  margin: 0 0 10px 32px;
}

.contact-team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 50px;
       column-gap: 50px;
  width: 100%;
  float: left;
}
@media all and (max-width: 667px) {
  .contact-team {
    grid-row-gap: 75px;
    grid-template-columns: 1fr;
  }
}
.contact-team .team__member {
  width: 100%;
  float: left;
}
.contact-team .team__member img {
  border: 5px solid #fff;
  border-radius: 50%;
  max-width: 150px;
  margin-bottom: 25px;
}
@media all and (max-width: 667px) {
  .contact-team .team__member img {
    max-width: 125px;
  }
}
.contact-team .team__member .list {
  display: flex;
  flex-direction: column;
}
.contact-team .team__member .list h1 {
  font-size: 2rem;
  line-height: 3rem;
}
.contact-team .team__member .list h4 {
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: #BDA4D9;
  margin-bottom: 10px;
}
.contact-team .team__member .list h1 + h4 {
  padding: 0;
}
.contact-team .team__member .list .link {
  color: #CE89DF;
  text-decoration: none;
}
.contact-team .team__member .list .link + .link {
  margin-top: 10px;
}
.contact-team .team__member ul {
  margin: 25px 0 0 0;
}
.contact-team .team__member ul li {
  display: inline-block;
}
.contact-team .team__member ul li a:link,
.contact-team .team__member ul li a:visited {
  color: #BDA4D9;
  transition: color 0.2s ease-in;
  text-decoration: none;
}
.contact-team .team__member ul li a:hover {
  color: #FC3768;
  text-decoration: none;
}
.contact-team .team__member ul li + li {
  margin-left: 10px;
}

.how-it-works {
  position: relative;
  min-height: 1170px;
}
@media all and (max-width: 900px) {
  .how-it-works {
    position: inherit;
    display: flex;
    align-items: center;
    flex-direction: column;
    min-height: auto;
    margin: 75px 0;
  }
}
.how-it-works .step {
  position: absolute;
  z-index: 12;
  max-width: 225px;
  width: 100%;
  text-align: center;
  margin: 0 10px;
  box-sizing: border-box;
}
@media all and (max-width: 900px) {
  .how-it-works .step {
    position: inherit;
  }
}
.how-it-works .step .number {
  width: 25px;
  height: 25px;
  background-image: url("/images/number-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -12px;
  left: 66px;
  color: #EFF1F5;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.5);
  font-weight: 500;
}
.how-it-works .step .number--sm {
  font-size: 1rem;
  line-height: 1rem;
}
.how-it-works .step .number--md {
  font-size: 1.4rem;
  line-height: 1.4rem;
}
.how-it-works .step .icon {
  width: 80px;
  height: 70px;
  display: inline-block;
}
.how-it-works .step .icon img {
  max-width: 80px;
}
.how-it-works .step h3 {
  font-size: 1.8rem;
  line-height: 1.8rem;
  font-weight: 700;
  margin-top: 15px;
}
.how-it-works .step h3 + p {
  padding: 10px 0 0 0;
}
.how-it-works .step p {
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 500;
}
@media all and (max-width: 900px) {
  .how-it-works .step + .step {
    margin-top: 50px;
  }
}
.how-it-works .pos-1 {
  top: 0;
  left: 90px;
}
@media all and (max-width: 1200px) {
  .how-it-works .pos-1 {
    left: 60px;
  }
}
@media all and (max-width: 1100px) {
  .how-it-works .pos-1 {
    left: 40px;
  }
}
@media all and (max-width: 900px) {
  .how-it-works .pos-1 {
    top: inherit;
    left: inherit;
  }
}
.how-it-works .pos-2 {
  top: 182px;
  right: 23%;
}
@media all and (max-width: 1100px) {
  .how-it-works .pos-2 {
    right: 26%;
  }
}
@media all and (max-width: 900px) {
  .how-it-works .pos-2 {
    top: inherit;
    right: inherit;
  }
}
.how-it-works .pos-3 {
  top: 475px;
  right: 14%;
}
@media all and (max-width: 900px) {
  .how-it-works .pos-3 {
    top: inherit;
    right: inherit;
  }
}
.how-it-works .pos-4 {
  bottom: 315px;
  left: 19%;
}
@media all and (max-width: 1200px) {
  .how-it-works .pos-4 {
    left: 18%;
  }
}
@media all and (max-width: 1100px) {
  .how-it-works .pos-4 {
    bottom: 300px;
  }
}
@media all and (max-width: 900px) {
  .how-it-works .pos-4 {
    bottom: inherit;
    left: inherit;
  }
}
.how-it-works .line, .how-it-works .star {
  position: absolute;
  z-index: 10;
}
.how-it-works .line-1 {
  top: 30px;
  left: 320px;
  max-width: 100%;
}
@media all and (max-width: 1200px) {
  .how-it-works .line-1 {
    top: 33px;
    left: 300px;
    max-width: 25%;
  }
}
@media all and (max-width: 1050px) {
  .how-it-works .line-1 {
    left: 235px;
  }
}
@media all and (max-width: 900px) {
  .how-it-works .line-1 {
    display: none;
  }
}
.how-it-works .line-2 {
  top: 224px;
  right: 6%;
  max-width: 100%;
}
@media all and (max-width: 1100px) {
  .how-it-works .line-2 {
    top: 210px;
  }
}
@media all and (max-width: 900px) {
  .how-it-works .line-2 {
    display: none;
  }
}
.how-it-works .line-3 {
  bottom: 420px;
  right: 38%;
  max-width: 100%;
}
@media all and (max-width: 1080px) {
  .how-it-works .line-3 {
    right: 34%;
  }
}
@media all and (max-width: 900px) {
  .how-it-works .line-3 {
    display: none;
  }
}
.how-it-works .line-4 {
  bottom: 109px;
  left: 5%;
  max-width: 100%;
}
@media all and (max-width: 1100px) {
  .how-it-works .line-4 {
    left: 10%;
  }
}
@media all and (max-width: 1000px) {
  .how-it-works .line-4 {
    left: 5%;
  }
}
@media all and (max-width: 900px) {
  .how-it-works .line-4 {
    display: none;
  }
}
.how-it-works .star-1 {
  top: 150px;
  left: 530px;
  max-width: 100%;
}
@media all and (max-width: 1200px) {
  .how-it-works .star-1 {
    left: 290px;
  }
}
@media all and (max-width: 1100px) {
  .how-it-works .star-1 {
    left: 270px;
  }
}
@media all and (max-width: 900px) {
  .how-it-works .star-1 {
    display: none;
  }
}
.how-it-works .star-2 {
  top: 380px;
  right: 100px;
  max-width: 100%;
}
@media all and (max-width: 1200px) {
  .how-it-works .star-2 {
    left: 290px;
  }
}
@media all and (max-width: 1100px) {
  .how-it-works .star-2 {
    left: 270px;
  }
}
@media all and (max-width: 900px) {
  .how-it-works .star-2 {
    display: none;
  }
}
.how-it-works .star-3 {
  bottom: 430px;
  right: 400px;
  max-width: 100%;
}
@media all and (max-width: 1200px) {
  .how-it-works .star-3 {
    left: 290px;
  }
}
@media all and (max-width: 1100px) {
  .how-it-works .star-3 {
    left: 270px;
  }
}
@media all and (max-width: 900px) {
  .how-it-works .star-3 {
    display: none;
  }
}
.how-it-works .star-4 {
  bottom: 190px;
  left: 390px;
  max-width: 100%;
}
@media all and (max-width: 1200px) {
  .how-it-works .star-4 {
    left: 290px;
  }
}
@media all and (max-width: 1100px) {
  .how-it-works .star-4 {
    left: 270px;
  }
}
@media all and (max-width: 900px) {
  .how-it-works .star-4 {
    display: none;
  }
}
.how-it-works .glove {
  position: absolute;
  z-index: 13;
  left: 13%;
  top: 27%;
  max-width: 245px;
  width: 100%;
}
@media all and (max-width: 1000px) {
  .how-it-works .glove {
    max-width: 250px;
  }
}
@media all and (max-width: 800px) {
  .how-it-works .glove {
    max-width: 200px;
  }
}
@media all and (max-width: 900px) {
  .how-it-works .glove {
    display: none;
  }
}

.rewards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.rewards img {
  max-width: 225px;
}
@media all and (max-width: 768px) {
  .rewards {
    margin: auto;
    max-width: 500px;
  }
  .rewards img {
    max-width: 150px;
  }
}
@media all and (max-width: 500px) {
  .rewards {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 25px;
  }
}

.single-line {
  min-height: 225px;
}
.single-line .line-5 {
  max-width: 100%;
}
.single-line .line-6 {
  max-width: 100%;
}

.partners img {
  max-width: 445px;
}
@media all and (max-width: 768px) {
  .partners img {
    max-width: 65%;
  }
}
@media all and (max-width: 667px) {
  .partners img {
    max-width: 75%;
  }
}
