@import url(https://fonts.googleapis.com/css?family=Open+Sans&display=swap);
@import url(https://fonts.googleapis.com/css2?family=PT+Sans&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap);
@import url(https://fonts.googleapis.com/css?family=Open+Sans&display=swap);
@import url(https://fonts.googleapis.com/css?family=Open+Sans&display=swap);
@import url(https://fonts.googleapis.com/css2?family=PT+Sans&display=swap);
@import url(https://fonts.googleapis.com/css2?family=PT+Sans&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap);
@import url(https://fonts.googleapis.com/css?family=Open+Sans&display=swap);
@import url(https://fonts.googleapis.com/css2?family=PT+Sans&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap);
/**
* FONT variables
*/
/*
    added null property so you can get away using only what you need from this mixin
    ex1: @include font($font-size: 10px, $line-height: 1em);
    ex2: @include font(10px, red,  center);
    you can use it without variables but you MUST keep the order
  */
/* GENERAL MIXINS */
/*
    on event like: hover, focus or active, execute style;
    ex: .element { color: red;   @include on_event { color: blue }}
  */
/*
    this is the most solid clearfix there is, it works even on IE6;
    ex: .container-with-floated-children { @extend %clearfix; }
  */
/*
  remove margin
*/
/*
    add margin values
  */
/*
  remove padding
*/
/*
      add padding values
    */
/*
    mixin for setting the possition;
    if you don't want to set set/right/top/bottom you can use it like:
    @include position(absolute);
    .element { @include position(absolute, 10px, 20px, 30px, 40px); }
    this is if you want to define top, right bottom, left in this exact order
    .element { @include position(absolute, $top: 10px, left: 20px); }
    this is if you don't keep the order
  */
/*
    mixin to vertically-align: center a selector;
      ex: .txt { @include vertical_center(absolute); }
    beware: gives position as param and adds top, left: 50%, and translates the container to center it.
  */
/*
      mixin to vertically-align: center and horizontal align: center a selector;
        ex: .txt { @include force_center(absolute); }
      beware: gives position as param and adds top, left: 50%, and translates the container to center it.
    */
/*
      added null property so you can get away using only what you need from this mixin
      ex: good: @include display($justify-content: center, $align-items: center);
    */
/*
  added null property so you can get away using only what you need from this mixin
  ex: good: @include size($width: 100%, $max-widht: 320px);
  bad: @include size(100px, 200px); works anyhow but it's difficult to maintain
*/
/*
      add calculated values for length units
      ex: calc(height, '100% - 41px')
    */
/*
    fallback mixin for any vendor prefix:
      ex: @include prefix(transform, rotate(42deg), webkit moz ms o);
    you don't have to include all 4 fallbacks, you have to include at least 1;
  */
.container-fluid {
  padding: 0 15px 15px 15px; }
  @media all and (max-width: 767px) {
    .container-fluid {
      padding: 0 25px 20px 25px; } }

.main-wrap {
  padding-top: 53px; }

.section-container {
  margin-bottom: 15px; }
  @media all and (max-width: 767px) {
    .section-container {
      margin-bottom: 10px; } }

.no-scroll {
  overflow: hidden; }

.hidden-scroll-bar::-webkit-scrollbar {
  display: none; }

p {
  margin-bottom: 10px;
  margin-top: 0; }

button:focus {
  outline: none; }

#__next {
  position: relative; }

.padding-bottom--30 {
  padding-bottom: 30px; }

.social-button {
  margin-right: 15px; }

/* Media queries breakpoints variables */
/* Z-index variables */
.verticalCenter {
  display: flex;
  align-items: center; }

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

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

.spaceBetween {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.directionColumn {
  display: flex;
  flex-direction: column; }

.directionRow {
  flex-direction: row; }

.resetToDirectionColumn {
  flex-direction: column; }

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

.personal-info-wrapper {
  width: 46%; }
  .personal-info-wrapper .input-wrapper {
    display: flex; }
  @media all and (max-width: 767px) {
    .personal-info-wrapper {
      width: 100%; }
      .personal-info-wrapper .input-wrapper {
        flex-direction: column; } }

.agree-checkbox-wrapper {
  margin-top: 15px; }

vt-checkbox-wrapper div * {
  margin-bottom: 10px; }
  vt-checkbox-wrapper div * .checkbox__radio-btn.sc-vt-checkbox {
    margin-left: 0; }

vt-general-section .section__title.sc-vt-general-section {
  flex: inherit; }

/**
* FONT variables
*/
/*
    added null property so you can get away using only what you need from this mixin
    ex1: @include font($font-size: 10px, $line-height: 1em);
    ex2: @include font(10px, red,  center);
    you can use it without variables but you MUST keep the order
  */
/* GENERAL MIXINS */
/*
    on event like: hover, focus or active, execute style;
    ex: .element { color: red;   @include on_event { color: blue }}
  */
/*
    this is the most solid clearfix there is, it works even on IE6;
    ex: .container-with-floated-children { @extend %clearfix; }
  */
/*
  remove margin
*/
/*
    add margin values
  */
/*
  remove padding
*/
/*
      add padding values
    */
/*
    mixin for setting the possition;
    if you don't want to set set/right/top/bottom you can use it like:
    @include position(absolute);
    .element { @include position(absolute, 10px, 20px, 30px, 40px); }
    this is if you want to define top, right bottom, left in this exact order
    .element { @include position(absolute, $top: 10px, left: 20px); }
    this is if you don't keep the order
  */
/*
    mixin to vertically-align: center a selector;
      ex: .txt { @include vertical_center(absolute); }
    beware: gives position as param and adds top, left: 50%, and translates the container to center it.
  */
/*
      mixin to vertically-align: center and horizontal align: center a selector;
        ex: .txt { @include force_center(absolute); }
      beware: gives position as param and adds top, left: 50%, and translates the container to center it.
    */
/*
      added null property so you can get away using only what you need from this mixin
      ex: good: @include display($justify-content: center, $align-items: center);
    */
/*
  added null property so you can get away using only what you need from this mixin
  ex: good: @include size($width: 100%, $max-widht: 320px);
  bad: @include size(100px, 200px); works anyhow but it's difficult to maintain
*/
/*
      add calculated values for length units
      ex: calc(height, '100% - 41px')
    */
/*
    fallback mixin for any vendor prefix:
      ex: @include prefix(transform, rotate(42deg), webkit moz ms o);
    you don't have to include all 4 fallbacks, you have to include at least 1;
  */
.container-fluid {
  padding: 0 15px 15px 15px; }
  @media all and (max-width: 767px) {
    .container-fluid {
      padding: 0 25px 20px 25px; } }

.main-wrap {
  padding-top: 53px; }

.section-container {
  margin-bottom: 15px; }
  @media all and (max-width: 767px) {
    .section-container {
      margin-bottom: 10px; } }

.no-scroll {
  overflow: hidden; }

.hidden-scroll-bar::-webkit-scrollbar {
  display: none; }

p {
  margin-bottom: 10px;
  margin-top: 0; }

button:focus {
  outline: none; }

#__next {
  position: relative; }

.padding-bottom--30 {
  padding-bottom: 30px; }

.social-button {
  margin-right: 15px; }

/* Media queries breakpoints variables */
/* Z-index variables */
.verticalCenter {
  display: flex;
  align-items: center; }

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

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

.spaceBetween {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.directionColumn {
  display: flex;
  flex-direction: column; }

.directionRow {
  flex-direction: row; }

.resetToDirectionColumn {
  flex-direction: column; }

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

.form-container .submit-button {
  text-align: center; }
  @media all and (max-width: 767px) {
    .form-container .submit-button {
      padding-bottom: 30px; } }
  .form-container .submit-button p {
    margin-top: 10px;
    font-weight: 600; }

.form-container .form-error-message {
  color: var(--error-message); }

/**
* FONT variables
*/
/*
    added null property so you can get away using only what you need from this mixin
    ex1: @include font($font-size: 10px, $line-height: 1em);
    ex2: @include font(10px, red,  center);
    you can use it without variables but you MUST keep the order
  */
/* GENERAL MIXINS */
/*
    on event like: hover, focus or active, execute style;
    ex: .element { color: red;   @include on_event { color: blue }}
  */
/*
    this is the most solid clearfix there is, it works even on IE6;
    ex: .container-with-floated-children { @extend %clearfix; }
  */
/*
  remove margin
*/
/*
    add margin values
  */
/*
  remove padding
*/
/*
      add padding values
    */
/*
    mixin for setting the possition;
    if you don't want to set set/right/top/bottom you can use it like:
    @include position(absolute);
    .element { @include position(absolute, 10px, 20px, 30px, 40px); }
    this is if you want to define top, right bottom, left in this exact order
    .element { @include position(absolute, $top: 10px, left: 20px); }
    this is if you don't keep the order
  */
/*
    mixin to vertically-align: center a selector;
      ex: .txt { @include vertical_center(absolute); }
    beware: gives position as param and adds top, left: 50%, and translates the container to center it.
  */
/*
      mixin to vertically-align: center and horizontal align: center a selector;
        ex: .txt { @include force_center(absolute); }
      beware: gives position as param and adds top, left: 50%, and translates the container to center it.
    */
/*
      added null property so you can get away using only what you need from this mixin
      ex: good: @include display($justify-content: center, $align-items: center);
    */
/*
  added null property so you can get away using only what you need from this mixin
  ex: good: @include size($width: 100%, $max-widht: 320px);
  bad: @include size(100px, 200px); works anyhow but it's difficult to maintain
*/
/*
      add calculated values for length units
      ex: calc(height, '100% - 41px')
    */
/*
    fallback mixin for any vendor prefix:
      ex: @include prefix(transform, rotate(42deg), webkit moz ms o);
    you don't have to include all 4 fallbacks, you have to include at least 1;
  */
.container-fluid {
  padding: 0 15px 15px 15px; }
  @media all and (max-width: 767px) {
    .container-fluid {
      padding: 0 25px 20px 25px; } }

.main-wrap {
  padding-top: 53px; }

.section-container {
  margin-bottom: 15px; }
  @media all and (max-width: 767px) {
    .section-container {
      margin-bottom: 10px; } }

.no-scroll {
  overflow: hidden; }

.hidden-scroll-bar::-webkit-scrollbar {
  display: none; }

p {
  margin-bottom: 10px;
  margin-top: 0; }

button:focus {
  outline: none; }

#__next {
  position: relative; }

.padding-bottom--30 {
  padding-bottom: 30px; }

.social-button {
  margin-right: 15px; }

/* Media queries breakpoints variables */
/* Z-index variables */
.verticalCenter {
  display: flex;
  align-items: center; }

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

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

.spaceBetween {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.directionColumn {
  display: flex;
  flex-direction: column; }

.directionRow {
  flex-direction: row; }

.resetToDirectionColumn {
  flex-direction: column; }

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

.motivation {
  display: none;
  user-select: none; }
  .motivation__buttons {
    position: absolute;
    right: 20px;
    bottom: 20px; }
  .motivation__closeBtn {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: transparent;
    border: none;
    opacity: 0.4;
    width: 20px; }
    .motivation__closeBtn:hover {
      cursor: pointer; }
  .motivation__content {
    height: 164px;
    max-width: 500px;
    position: relative;
    top: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    -webkit-animation: fadeIn 0.5s ease-in-out;
    -moz-animation: fadeIn 0.5s ease-in-out;
    -ms-animation: fadeIn 0.5s ease-in-out;
    -o-animation: fadeIn 0.5s ease-in-out;
    animation: fadeIn 0.5s ease-in-out;
    background-color: var(--neutral-0);
    z-index: 99;
    border-radius: 3px; }

@keyframes fadeIn {
  from {
    top: -15%; }
  to {
    top: 35%; } }
    @media all and (max-width: 767px) {
      .motivation__content {
        max-width: 98%; } }
    .motivation__content p {
      font-size: 18px;
      color: var(--text-medium-gray);
      text-align: left;
      line-height: 1.33;
      font-weight: 400;
      font-family: "Open Sans", sans-serif;
      letter-spacing: normal;
      font-strech: normal;
      margin: 33px 20px; }
    .motivation__content .secondary-button,
    .motivation__content .primary-button {
      font-weight: 300;
      text-transform: inherit;
      padding: 6px 10px;
      border: none;
      border-radius: 3px; }
      .motivation__content .secondary-button:hover,
      .motivation__content .primary-button:hover {
        cursor: pointer; }
    .motivation__content .secondary-button a {
      color: var(--primary-0);
      text-decoration: none; }
    .motivation__content .secondary-button:hover {
      background-color: var(--neutral-0); }
  .motivation__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 99; }
    .motivation__wrapper::before {
      height: 100%;
      width: 100%;
      position: absolute;
      top: 0;
      background-color: var(--dark);
      content: '';
      opacity: 0.9;
      z-index: 1; }

/**
* FONT variables
*/
/*
    added null property so you can get away using only what you need from this mixin
    ex1: @include font($font-size: 10px, $line-height: 1em);
    ex2: @include font(10px, red,  center);
    you can use it without variables but you MUST keep the order
  */
/* GENERAL MIXINS */
/*
    on event like: hover, focus or active, execute style;
    ex: .element { color: red;   @include on_event { color: blue }}
  */
/*
    this is the most solid clearfix there is, it works even on IE6;
    ex: .container-with-floated-children { @extend %clearfix; }
  */
/*
  remove margin
*/
/*
    add margin values
  */
/*
  remove padding
*/
/*
      add padding values
    */
/*
    mixin for setting the possition;
    if you don't want to set set/right/top/bottom you can use it like:
    @include position(absolute);
    .element { @include position(absolute, 10px, 20px, 30px, 40px); }
    this is if you want to define top, right bottom, left in this exact order
    .element { @include position(absolute, $top: 10px, left: 20px); }
    this is if you don't keep the order
  */
/*
    mixin to vertically-align: center a selector;
      ex: .txt { @include vertical_center(absolute); }
    beware: gives position as param and adds top, left: 50%, and translates the container to center it.
  */
/*
      mixin to vertically-align: center and horizontal align: center a selector;
        ex: .txt { @include force_center(absolute); }
      beware: gives position as param and adds top, left: 50%, and translates the container to center it.
    */
/*
      added null property so you can get away using only what you need from this mixin
      ex: good: @include display($justify-content: center, $align-items: center);
    */
/*
  added null property so you can get away using only what you need from this mixin
  ex: good: @include size($width: 100%, $max-widht: 320px);
  bad: @include size(100px, 200px); works anyhow but it's difficult to maintain
*/
/*
      add calculated values for length units
      ex: calc(height, '100% - 41px')
    */
/*
    fallback mixin for any vendor prefix:
      ex: @include prefix(transform, rotate(42deg), webkit moz ms o);
    you don't have to include all 4 fallbacks, you have to include at least 1;
  */
.container-fluid {
  padding: 0 15px 15px 15px; }
  @media all and (max-width: 767px) {
    .container-fluid {
      padding: 0 25px 20px 25px; } }

.main-wrap {
  padding-top: 53px; }

.section-container {
  margin-bottom: 15px; }
  @media all and (max-width: 767px) {
    .section-container {
      margin-bottom: 10px; } }

.no-scroll {
  overflow: hidden; }

.hidden-scroll-bar::-webkit-scrollbar {
  display: none; }

p {
  margin-bottom: 10px;
  margin-top: 0; }

button:focus {
  outline: none; }

#__next {
  position: relative; }

.padding-bottom--30 {
  padding-bottom: 30px; }

.social-button {
  margin-right: 15px; }

/* Media queries breakpoints variables */
/* Z-index variables */
.verticalCenter {
  display: flex;
  align-items: center; }

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

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

.spaceBetween {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.directionColumn {
  display: flex;
  flex-direction: column; }

.directionRow {
  flex-direction: row; }

.resetToDirectionColumn {
  flex-direction: column; }

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

.milestone-contributor-name:first-of-type {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px; }
  .milestone-contributor-name:first-of-type input[type='text'] {
    -webkit-padding-start: 5px 0;
    padding: 5px 0;
    text-align: center; }
    .milestone-contributor-name:first-of-type input[type='text']::placeholder {
      font-size: 16px;
      color: var(--text-primary);
      text-align: center;
      font-weight: 600; }
      @media all and (max-width: 767px) {
        .milestone-contributor-name:first-of-type input[type='text']::placeholder {
          font-size: 12px; } }
  .milestone-contributor-name:first-of-type .checkbox__radio-btn {
    margin-left: 0; }
    @media all and (max-width: 767px) {
      .milestone-contributor-name:first-of-type .checkbox__radio-btn {
        margin-left: 3px; } }
  .milestone-contributor-name:first-of-type .checkbox__input {
    right: 0px; }
  .milestone-contributor-name:first-of-type .checkbox__label p {
    top: 10px; }
    @media all and (max-width: 767px) {
      .milestone-contributor-name:first-of-type .checkbox__label p {
        top: 10px;
        left: 5px; }
        @supports not (-webkit-touch-callout: none) {
          .milestone-contributor-name:first-of-type .checkbox__label p {
            top: 18px;
            left: 5px; } } }
  @media all and (max-width: 767px) {
    .milestone-contributor-name:first-of-type .input-container {
      margin-right: 15px; } }

@media all and (max-width: 767px) {
  .input-milestone {
    margin-bottom: 15px; } }

.input-milestone .input-position {
  width: 100vh; }
  @media all and (max-width: 767px) {
    .input-milestone .input-position {
      width: inherit; } }
  .input-milestone .input-position textarea {
    resize: none;
    width: 96%; }

.input-milestone #MilestoneContributorName {
  text-align: center; }
  @media all and (max-width: 767px) {
    .input-milestone #MilestoneContributorName::placeholder {
      font-size: 11px; } }

.contribute-milestone ul li {
  margin: 8px 0;
  font-weight: 600; }
  .contribute-milestone ul li:first-of-type {
    margin-top: 0; }
  .contribute-milestone ul li:last-of-type {
    margin-bottom: 0; }
  .contribute-milestone ul li img {
    width: 10px; }

@media all and (max-width: 767px) {
  .milestone-details {
    padding-top: 20px;
    width: 95%; } }

.milestone-details h1 {
  margin-bottom: 30px; }

.milestone-details p {
  margin-bottom: 20px; }
  .milestone-details p:last-of-type {
    margin: 0; }

.textarea-error {
  top: 102px !important; }

@media all and (max-width: 767px) {
  .agree-checkbox-wrapper {
    margin-left: 3px; } }

