<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --navy:                    #213C64;
  --dark-navy:               #0D1828;
  --blue:                    #3574E1;
  --highlight-blue:          #4C4CDD;
  --light-blue:              #C3D9F8;
  --highligt-light-blue:     #E0EDFE;
  --grey-blue:               #EBF1F9;
  --off-white:               #FAFCFF;
  --white:                   #FFFFFF;
  --light-grey:              #BFBFBF;
}

.activenow-trial-lesson-signup-panel-container {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif !important;
  font-size: .9rem;
  margin: 0;
  padding: 0;

  .section {
    border: 1px solid var(--light-grey);
    background-color: var(--white);
    border-radius: 10px;
    padding-bottom: 20px;
    margin-top: 1rem;
  }
  .section-content{
    margin: 1rem;
  }

  .hidden {
    display: none;
  }

  .soft-d-none {
    display: none;
  }

  .mt-4 {
    margin-top: 1.5rem !important;
  }

  .container {
    margin: 0 auto;
  }

  .section-header {
    font-size: 24px;
    font-weight: bold;
    padding-top: 10px;
    padding-left: 10px;
    padding-bottom: 20px;
  }

  .button {
    display: inline-block;
    padding: 12px 32px 12px 32px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;

    &amp;.primary {
      background-color: var(--blue);
      color: var(--white);
      border: none;

      &amp;:hover {
        background-color: var(--highlight-blue);
      }
    }

    &amp;.secondary {
      background-color: transparent;
      color: var(--blue);
      border: 1px solid var(--blue);

      &amp;:hover {
        color: var(--highlight-blue);
        border-color: var(--highlight-blue);
      }
    }
  }

  .filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    margin-bottom: 24px;

    .clear-filters-button {
      display: flex;
      align-self: flex-end;
      margin-bottom: 10px;
      padding: 10px;
      #js-activenow-signup-panel-clear-filters {
        margin: 0;
      }
    }

    .filter {
      width: 300px;
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
      margin-bottom: 10px;
      padding: 10px;
    }

    .filter-label {
      padding: 0px;
      margin: 0;
      font-size: 14px;
      font-weight: 500;
    }
  }

  .form-control {
    height: 42px;
    border: 1px solid #E2E2E2;
    border-radius: 4px;
    background-color: var(--white);
  }

  .trial-lesson-types-list {
    display: flex;
    flex-wrap: wrap;

    .trial-lesson-type-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      padding: 12px 16px;
      border-bottom: 1px solid #e0e0e0;

      .type-content {
        display: flex;
        justify-content: space-between;
        flex: 1;
        text-align: left;
        gap: 4px;
        width: 75%;

        p {
          margin: 4px 0 0;
        }
      }
      .type-content &gt; * {
        flex-basis: 33.33%;
      }

      &amp;.hidden {
        display: none;
      }
    }
  }

  .menu-row {
    display: flex;
    padding: 20px  10px 10px 10px;
    margin-bottom: 2rem !important;

    .header {
      font-size: 20px;
      font-weight: 600;
      padding-left: 10px;
      align-content: center;
    }
    .group {
      align-content: top;
    }
    .js-today-btn {
      padding: 8px;
      border-radius: 4px;
    }
  }

  .activenow-icon-arrow-left {
    color: var(--blue);
    font-size: 1.5rem;
    padding-left: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    &amp;:hover, &amp;:active, &amp;:focus {
      color: black;
    }
    &amp;:after {
      content: '\003C';
    }
  }

  .activenow-icon-arrow-right {
    color: var(--blue);
    font-size: 1.5rem;
    padding-left: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    &amp;:hover, &amp;:active, &amp;:focus {
      color: black;
    }
    &amp;:after {
      content: '\003E';
    }
  }

  .menu-section {
    display: flex;
    width: 100%;

    .arrows {
      width: 5%;
      padding: 0;
    }
    #js-available-slots-section {
      width: 90%;
      display: flex;
      flex: 1;

      .day-column {
        text-align: center !important;
        display: flex;
        flex: 1;
        flex-direction: column;

        .slot-container {
          padding: 10px;
          align-content: center;
          justify-content: center;
          display: flex;
        }

        .js-hour-to-select {
          font-size: 14px;
          font-weight: 500;
          border: 1px solid var(--light-grey);
          border-radius: 20px;
          padding: 12px 20px 12px 20px;
          width: auto;
          text-align: center;
          cursor: pointer;
          &amp;:hover {
            border-color: var(--blue);
          }
          &amp;.selected {
            background-color: var(--highligt-light-blue);
            border-color: var(--blue);
            color: var(--blue);
            font-weight: 600;
          }
        }

      }
      .day-header {
        font-size: 16px;
        font-weight: 600;
        align-content: center;
        padding-bottom: 20px;
      }
    }
  }

  .signup-section, .after-signup-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: var(--white);
    border: 1px solid var(--light-grey);
    margin-top: 1rem ;
    border-radius: 10px;
    overflow: hidden;

    .form-container {
      flex: 1;
      padding: 10px 0 10px 10px;
      min-width: 300px;
      background-color: var(--white);
      margin: 1rem;

      .section-header {
        padding: 0 0 10px 10px;
      }
      .group {
        margin-top: 1rem;
      }
    }

    .info-container {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 1;
      background-color: var(--light-blue);
      border-top-right-radius: 10px;
      padding: 2rem;

      .info-card {
        background-color: var(--white);
        border-radius: 10px;
        padding: 32px;
        width: 70%;

        .trial-lesson-name {
          color: var(--blue);
          font-size: 16px;
          font-weight: 600;
          margin-bottom: 1rem;
        }
        .info-row {
          display: flex;
          border-bottom: 1px solid #e0e0e0;
          padding: 0.8rem 0;

          .label {
            flex: 0 0 40%;
            font-size: 12px;
          }
          .info-value {
            font-weight: 600;
            font-size: 12px;
          }
        }
        .info-row:last-child {
          border-bottom: none;
          padding-bottom: 0;
        }
      }
    }
  }

  .checkmark-emoji {
    display: flex;
    justify-content: center;
    font-size: 40px;
    padding: 20px 0 10px 0;
  }

  .padded {
    padding: 10px;
  }

  .checkbox-label {
    margin-top: 0.5rem;
  }

  .activenow-class-label {
    color: $purple;
    position: relative;
    float: left;
    width: 30%;
    padding-left: 15px;
    padding-right: 15px;
    font-weight: 400;
  }

  .activenow-class-value {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
  }

  .activenow-title-section {
    display: flex;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 300;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .activenow-error {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAMAAADXqc3KAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAApVBMVEUAAADdACLYACfYACfXACjYACfYACfZACbYACfaACbYACfYACfYACfYACfYACfYACfZACbYACfZACb/AADYACfYACfXACjYACfVACvMADPYACfYACfVACvYACfYACfZACbYACfbACTXACjZACbXACjYACfSAC3XACjXACjaACXbACTXACjZACa/AEDYACfYACfYACffACDYACfYACfYACfYACcAAACec2HKAAAANXRSTlMAD2+szu8amfRE6nD95LCQcc1QA07JR5UGBY/sHpcun88HgIWH9hFTgSkxen4EVYLSCH3MkSMZ/egAAAABYktHRACIBR1IAAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAB3RJTUUH4QkSCiAag73H7AAAAP9JREFUKM91Uul6gkAMHDlERcGKUi20tFjwPqrm/V+tyR5Cv6/kR8jOsJPZ7AI6eo7r+b7nOj20ox8MyMQg6Df4cEStGA0tHo5lPYniOJpINZ6a/wV/mSVSJ/OFMKnSF53Xpd2+euNllnMVcPHO3w+YJEzBPtnP5xdQ0lrSN+9htaqGw/xGIKKtJGbm/Anhsp8Eu8btHgl7c+ERRSx8sHjJi4jIg08US9tjgyMm8p9EqYntkzBSpZVaWylpfvqvudg96+bK7gWYKbtywOsPcNMH5LS8qwOqkQTtkTz0SLqH2Dl2YNpxUUCata82S5tLz4vKwlWR/3kndaifT1gb4BdQmjgfR9t4cQAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAxNy0wOS0xOFQxMDozMjoyNiswMjowML6yBdgAAAAldEVYdGRhdGU6bW9kaWZ5ADIwMTctMDktMThUMTA6MzI6MjYrMDI6MDDP771kAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAAABJRU5ErkJggg==);
    background-size: 12px 12px;
    background-repeat: no-repeat;
    background-position: center center;
    width: 24px;
    min-width: 24px;
  }

  .form-group {
    margin: 0;
  }

  .form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    color: #495057;
  }

  .activenow-form-field {
    width: 90%;
    display: flex;

    a:link {
      color: black;
    }

    input, select {
      margin: 10px 2px;
      display: inline;
      padding: .45rem 1rem;
      border-radius: 5px;
      border: 1px solid #eee;
      font-size: .9rem;
    }

    label, input[type='checkbox'] {
      width: auto;
      display: inline;
      vertical-align: middle;
      height: -moz-min-content;
      height: min-content;
      margin-top: 3px;
    }

    label {
      align-self: start;
      margin: 0 5px;
      margin-top: 1px;
    }

    select, input {
      box-sizing: border-box;
      width: 100%;
      background-color: var(--white);
    }

    select {
      -webkit-appearance: none;
         -moz-appearance: none;
              appearance: none;
    }

    input.ios-device:after {
      color: #ccc;
      content: attr(placeholder);
    }
  }

  .text-center {
    text-align: center !important;
  }

  .activenow_table_loading_container {
    @include external_loading;
  }

  @media (max-width: 767px) {
    .section-header {
      padding-left: 0px;
    }
    .filters {
      flex-direction: column;
      align-items: stretch;
      padding-left: 0;
      padding-right: 0;
      .filter, .clear-filters-button {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        .group {
          width: 100%;
          button {
            width: 100%;
          }
        }
      }
    }

    .trial-lesson-type-row {
      flex-direction: column;
      text-align: left !important;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 10px;
      gap: 16px;
      align-items: flex-start !important;

      .type-content {
        flex-direction: column;
        align-items: flex-start !important;
        flex-basis: auto;
        width: 100% !important;

        .type-name {
          font-weight: bold;
        }
      }
      .group {
        width: 100%;
        button {
          width: 100%;
        }
      }
    }
    .menu-row {
      padding-left: 0;
      padding-right: 0;
      display: flex;
      justify-content: space-between;

      .group {
        order: 2;
      }
      .header {
        order: 1;
        padding-left: 0;
      }
    }

    #js-available-slots-section {
      .should-be-hidden-on-mobile {
        display: none !important;
      }
    }

    .js-hour-to-select {
      width: 100% !important;
    }

    .signup-section {
      flex-direction: column;

      .form-container {
        order: 2;
        padding: 10px 0 0 0;
        margin: 0;

        .form {
          margin: 1rem;
        }
        .section-header {
          padding-left: 0;
          padding-top: 10px;
          margin: 1rem 1rem 0 1rem;
        }
      }
      .info-container {
        order: 1;
        background-color: var(--white);
        padding: 0;

        .info-card {
          width: 100%;
          border: 1px solid #e0e0e0;
          border-radius: 8px;
          padding: 10px;
          margin: 1rem;
        }
      }
      .group {
        width: 100%;
        button {
          width: 100%;
        }
      }
    }

    .activenow-form-field {
      width:100%;
    }

    .after-signup-section {
      .form-container {
        margin: 0;
      }
      .section-header {
        padding: 10px !important;
      }

      .after-signup-message {
        padding: 10px;
      }

      .info-container {
        background-color: var(--white);
        padding: 0;

        .info-card {
          width: 100%;
          border: 1px solid #e0e0e0;
          border-radius: 8px;
          padding: 10px;
          margin: 1rem;

          .trial-lesson-name {
            text-align: center;
          }
        }
      }
      .button {
        width: 100%;
      }
      .group {
        width: 100%;
        button {
          width: 100%;
        }
      }
    }
  }
}
</pre></body></html>