.entry-content a, .entry-summary a, .widget a, .site-footer .widget-area a, .posts-navigation a, .widget_authors a strong {
  box-shadow: none;
}

.os_trigger_booking {
  cursor: pointer;
}

.latepoint-lightbox-w {
  background-color: rgba(0,0,0,0.4);
  position: fixed;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  z-index: 99999;
  display: none;
  
  button, input, select, textarea {
    font-family: $body-font-family;
    font-weight: $body-font-weight-normal;
    font-size: floor($font-size-base);
  }

  .latepoint-lightbox-i {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: $booking-form-width;
    .latepoint-booking-form-element {
      background-color: #fff;
      box-shadow: 0px 2px 4px rgba(0,0,0,0.2), 0px 20px 50px rgba(0,0,0,0.4);
    }
    z-index: 9999;
    border-radius: $border-radius-md;
    a {
      box-shadow: none;
      img {
        box-shadow: none;
      }
    }
  }
  &.latepoint-hide-side-panel {
    .latepoint-lightbox-i {
      width: $booking-form-width - $booking-side-panel-width;
    }
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: $headings-font-family;
    font-weight: $headings-font-weight-normal;
    color: $brand-primary;
    text-transform: none;
    letter-spacing: 0px;
    line-height: 1.45;
  }

  h5 {
    font-size: floor($headings-font-size * 1.1);
  }
}

.latepoint-w {
  line-height: 1.3;
  max-width: initial!important;

  strong, b {
    font-weight: $body-font-weight-bold;
  }
  ul {
    li {
      list-style: none;
    }
  }
}
.latepoint-w {
  &.latepoint-shortcode-booking-form {
    .latepoint-booking-form-element {
      box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.07), 0px 10px 25px rgba(0, 0, 0, 0.08);
      margin: 20px auto;
      max-width: $booking-form-width;
      .latepoint-lightbox-close {
        display: none!important;
      }
      .latepoint-heading-w {
        text-align: center;
      }
      .latepoint-form-w .latepoint-body {
        max-height: inherit;
      }
    }
  }
  &.latepoint-with-summary {
    .latepoint-lightbox-i {
      transition: all 0.4s cubic-bezier(0.05, 0.45, 0.1, 1);
    }
    .latepoint-booking-form-element {
      transition: all 0.4s cubic-bezier(0.05, 0.45, 0.1, 1);
    }
  }
  &.latepoint-hide-side-panel {
    .latepoint-booking-form-element {
      .latepoint-form-w .latepoint-heading-w {
        padding-top: 17px;
        padding-bottom: 17px;
        .os-heading-text {
          font-size: floor($headings-font-size * 1.5);
        }
      }

      .latepoint-summary-w h3.summary-header {
        padding: 17px 28px 14px 26px;
        font-size: 14px;
        .os-lines {
          top: 26px;
        }
      }
      .latepoint-form-w .latepoint-body:after {
        height: 80px;
      }
      &.hidden-buttons .latepoint-form-w .latepoint-body:after {
        height: 40px;
      }
      .latepoint-form-w {
        .latepoint-heading-w {
          padding-left: 40px;
          padding-right: 40px;
        }
        .latepoint-body {
          padding-top: 80px;
          padding-left: 40px;
          padding-right: 40px;
        }
        .latepoint-footer {
          .latepoint-progress {
            display: block;
          }
        }
      }
      .latepoint-side-panel {
        display: none;
      }
      .step-datepicker-w { 
        padding: 0px 15px;
      }
    }
    &.latepoint-shortcode-booking-form {
      .latepoint-booking-form-element {
        max-width: $booking-form-width - $booking-side-panel-width;
      }
    }
  }
}
.latepoint-w .latepoint-booking-form-element {
  display: flex;
  align-items: stretch;
  position: relative;
  h1, h2, h3, h4, h5 {
    color: $brand-primary;
  }

  a {
    text-decoration: none;
  }
  &.current-step-datepicker {
    .latepoint-side-panel .latepoint-timezone-selector-w {
      display: block;
    }
  }

  .latepoint-progress {
    text-align: center;
    color: $color-faded;
    font-size: floor($font-size-base);
    padding-top: 10px;
    margin-bottom: auto;

    ul {
      list-style: none;
      margin: 0px auto;
      padding: 0px;
      text-align: center;
      justify-content: center;
      display: flex;
      li {
        display: block;
        flex: 0 0 6px;
        margin: 0px;
        padding: 0px;
        margin: 0px 4px;
        .progress-item {
          height: 6px;
          width: 6px;
          background-color: rgba(0,0,0,0.07);
          display: block;
          color: $color-faded;
          text-decoration: none;
          position: relative;
          box-shadow: none;
          font-weight: $body-font-weight-bold;
          font-size: floor($font-size-base * 0.9);
          span {
            position: absolute;
            display: block;
            left: 50%;
            top: -5px;
            transform: translate(-50%, -150%);
            display: inline-block;
            background-color: $brand-primary;
            color: #fff;
            padding: 3px 6px;
            line-height: 1.1;
            visibility: hidden;
            opacity: 0;
            transition: all 0.2s ease;
            white-space: nowrap;
          }
          &:hover {
            background-color: rgba(0,0,0,0.15);
            span {
              opacity: 1;
              transform: translate(-50%, -105%);
              visibility: visible;
            }
          }
        }
        &.active, &.complete {
          .progress-item {
            background-color: rgba($brand-primary, 0.7);
            &:hover {
              background-color: $brand-primary;
            }
          }
        }
      }
    }
  }
  .info-box {
    background-color: #FFF3CB;
    margin-top: 20px;
    padding: 10px;
    font-size: floor($font-size-base * 0.9);
    color: #4e4841;
    .info-box-buttons {
      margin-top: 10px;
      a {
        background-color: #fff;
        color: $body-color;
        font-weight: $body-font-weight-bold;
        padding: 3px 8px;
        display: inline-block;
        text-decoration: none;
        box-shadow: 0px 1px 2px rgba(0,0,0,0.1);
      }
    }
  }

  .latepoint-summary-w {
    position: absolute;
    width: $summary-box-width;
    top: 0px;
    right: 0px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.05, 0.45, 0.1, 1);
    transform: translateX(-60px);
    background-color: #fff;
    z-index: 1;
    h3.summary-header {
      font-size: floor($headings-font-size * 0.95);
      line-height: 1.3;
      color: $brand-primary;
      font-weight: $headings-font-weight-bold;
      padding: 13px 28px 13px 26px;
      text-transform: uppercase;
      letter-spacing: 2px;
      position: relative;
      margin-bottom: 15px;
      text-align: right;
      border-bottom: 1px solid rgba(0,0,0,0.05);
      span {
        background-color: #fff;
        position: relative;
        z-index: 2;
        padding: 5px;
        display: inline-block;
      }
      .os-lines {
        position: absolute;
        top: 21px;
        left: 20px;
        right: 18px;
        z-index: 1;
        &:before {
          display: block;
          content: "";
          height: 6px;
          border-top: 2px dotted #b7c2e8;
          border-bottom: 2px dotted #b7c2e8;
          margin-bottom: 2px;
        }
        &:after {
          display: block;
          content: "";
          height: 6px;
          border-top: 2px dotted #b7c2e8;
        }
      }
    }
    .os-summary-lines {
      padding: 0px 20px 20px;
      display: flex;
      flex-wrap: wrap;
    }
    .os-summary-line {
      flex: 0 0 50%;
      padding: 5px 10px 10px 0px;
      margin-bottom: 5px;
      display: none;
      position: relative;
      &:after {
        bottom: 0px;
        left: 0px;
        right: 0px;
        content: "";
        display: block;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        position: absolute;
      }
      .os-summary-label {
        margin-bottom: 2px;
        color: $color-faded;
        font-size: floor($font-size-base * 0.75);
        text-transform: uppercase;
        font-weight: $body-font-weight-bold;
        letter-spacing: 1px;
      }
      .os-summary-value {
        line-height: 1.3;
        color: $brand-primary;
        font-weight: $body-font-weight-bold;
        font-size: floor($font-size-base);
        padding-bottom: 0px;
        position: relative;
        background-color: #fff;
        display: inline-block;
        z-index: 2;
      }
      &:last-child {
        border-bottom: none;
        .os-summary-value {
        }
      }
    }
    &.summary-dark {
      background-color: #191a2d;
      h3.summary-header {
        color: #fff;
        span {
          background-color: #191a2d;
        }
        .os-lines {
          border-color: #fff;
          &:before, &:after {
            border-color: #fff;
          }
        }
      }

      .os-summary-line {
        border-bottom: 1px dashed #515667;
        .os-summary-label {
          color: #8e97b3;
        }
        .os-summary-value {
          color: #fff;
        }
        &:last-child {
          .os-summary-value {
          }
        }
      }
    }
  }

  .latepoint-side-panel {
    flex: 0 0 $booking-side-panel-width;
    background-color: #fff;
    border-right: 1px solid rgba(0,0,0,0.1);
    padding: 15px 30px 25px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: $border-radius-md 0px 0px $border-radius-md;
    position: relative;

    .latepoint-timezone-selector-w {
      margin-top: 15px;
      display: none;
      position: relative;
      border-top: 1px solid rgba(0,0,0,0.1);
      padding-top: 10px;
      &.os-loading {
        &:before {
          @include loading-circle($color: $body-color,  $width: 12px);
          left: -13px;
          right: auto;
          top: auto;
          bottom: 1px;
          z-index: 9999;
        }
      }
      .os-form-group.os-form-select-group label {
        display: block!important;
        font-size: floor($font-size-base * 0.85)!important;
        color: $color-faded;
      }
      .os-form-group.os-form-select-group select.os-form-control {
        height: 26px!important;
        padding: 0px 3px!important;
        font-size: floor($font-size-base * 0.85)!important;
      }
      .os-form-group {
        margin-bottom: 0px!important;
      }
      select {
        text-align-last:center;
        text-align: center;
      }
    }


    .latepoint-step-desc-w {
      padding: 20px 0px 50px 0px;
      color: $color-faded;
      .latepoint-step-desc-library {
        display: none;
      }
      .latepoint-step-desc {
        .latepoint-desc-media {
          margin-top: 20px;
          width: 80px;
          height: 80px;
          background-size: contain;
          background-repeat: no-repeat;
          background-position: bottom center;
          display: inline-block;
          margin-bottom: 15px;
        }
        .latepoint-desc-title {
          padding-top: 0px;
          margin-bottom: 10px;
          font-size: floor($headings-font-size * 1.3);
          line-height: 1.2;
        }
        .latepoint-desc-content {
        }
      }
    }

    .latepoint-questions {
      color: $color-faded;
      margin-top: auto;

      h5 {
        margin: 0px;
        line-height: 1.4;
        margin-bottom: 5px;
        position: relative;
        font-size: floor($headings-font-size * 1.1);
      }
      p:last-child {
        margin-bottom: 0px;
      }
      a {
        text-decoration: underline;
      }
    }
  }
  .latepoint-form-w {
    flex: 1;
    max-width: $booking-form-width - $booking-side-panel-width;
    background-color: #fff;
    border-radius: 0px $border-radius-md $border-radius-md 0px;
    position: relative;
    z-index: 2;
    form {
      background-color: #fff;
      padding: 0px;
      min-height: 100%;
    }

    .select-total-attendies-w {
      display: none;
      align-items: center;
      padding: 30px 15px;
      justify-content: space-around;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;

      .select-total-attendies-label {
        padding-right: 20px;
        h4 {
          margin: 0px!important;
          padding: 0px!important;
          font-size: floor($headings-font-size * 1.4);
        }
        .sta-sub-label {
          font-size: floor($font-size-base * 0.9);
          color: $color-faded;
        }
      }
      .total-attendies-selector-w {
        background-color: #fff;
        display: flex;
        align-items: center;
        padding: 5px 10px;
        border: 1px solid $form-input-border-color;
        outline-style:none;
        &:hover {
        }
        input {
          text-align: center;
          border: none!important;
          padding: 0px 5px!important;
          font-size: floor($font-size-base * 1.5)!important;
          font-weight: $body-font-weight-bold;
          width: 50px!important;
          margin: 0px!important;
          &::placeholder {
            color: rgba(0,0,0,0.1);
          }
          &:focus {
            outline: none!important;
            box-shadow: none!important;
          }
        }
        .total-attendies-selector {
          cursor: pointer;
          color: rgba(0,0,0,0.8);
          font-size: 14px;
          background-color: #f3f4f9;
          border-radius: 4px;
          padding: 2px;
          line-height: 1;
          width: 20px;
          text-align: center;
          &:hover {
            color: #fff;
            background-color: $brand-primary;
          }
        }
      }
  

      &.style-centered {
        text-align: center;
        .total-attendies-selector-w {
          width: 150px;
          margin: 0px auto;
          justify-content: space-between;
          input {
            font-size: floor($font-size-base * 2.2)!important;
            width: 80px!important;
          }
        }
        .select-total-attendies-label {
          margin-bottom: 20px;
          padding: 0px;
          h4 {
            font-size: floor($headings-font-size * 1.8);
          }
          .sta-sub-label {
            font-size: floor($font-size-base * 1.2);
          }
        }
      }
    }

    .latepoint-form {
      display: flex;
      justify-content: stretch;
      flex-direction: column;
    }
  
    .latepoint-heading-w {
      position: absolute;
      z-index: 2;
      background-color: #fff;
      top: 0px;
      left: 0px;
      right: 0px;
      padding: 15px 30px;
      border-bottom: 1px solid rgba(0,0,0,0.05);
      .latepoint-lightbox-close {
        position: absolute;
        top: 50%;
        right: 28px;
        transform: translateY(-50%);
        color: #1e222b;
        font-size: 14px;
        box-shadow: none;
        display: block;
        line-height: 18px;
        z-index: 2;
        i {
          line-height: 1;
          display: block;
        }
      }
      .os-heading-text {
        margin: 0px;
        font-size: floor($headings-font-size * 1.3);
        line-height: 1.2;
      }
      .os-heading-text-library {
        display: none;
      }
    }
    .latepoint-body {
      padding: 80px 30px 0px;
      flex: 1;
      max-height: 84vh;
      overflow-y: scroll;
      transition: all 0.2s ease;
      position: relative;
      &:after {
          content: "";
          height: 85px;
          display: block;
      }
      h3, h4 {
        color: $headings-color;
      }
      .os-step-header {
        margin-top: 0px;
        margin-bottom: 25px;
      }
      h3 {
        font-size: floor($headings-font-size * 1.4);
      }
      h4 {
        font-size: floor($headings-font-size * 1.2);
        padding: 0px;
      }
    }
    .latepoint-footer {
      padding: 10px;
      border-top: 1px solid rgba(0,0,0,0.05);
      display: flex;
      justify-content: space-between;
      position: absolute;
      bottom: 0px;
      left: 0px;
      right: 0px;
      background-color: #fff;
      .latepoint-progress {
        display: none;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0px;
        ul li {
          flex: 0 0 5px;
          .progress-item {
            width: 5px;
            height: 5px;
          }
        }
      }

      .latepoint-next-btn {
        margin-left: auto;
        animation: 0.3s cubic-bezier(.45,1.1,.4,1.2) 0s both latepointNextBtn;

        &.disabled {
          display: none;
        }
      }
      .latepoint-prev-btn {
        animation: 0.3s cubic-bezier(.45,1,.4,1.2) 0s both latepointPrevBtn;

        &.disabled {
          display: none;
        }
      }
      .latepoint-btn {
        font-weight: $body-font-weight-bold;
        box-shadow: none;
        padding: 8px 14px;
        font-size: floor($font-size-base * 0.9);
        letter-spacing: 0.2px;
        &.disabled {
          background-color: #E3E6F0;
          color: #B5BAD2;
          span {
            color: #B5BAD2;
          }
          i {
            color: #B5BAD2;
          }
        }
        i {
          font-size: 9px;
          transition: transform 0.1s ease;
        }
        span {
        }
        i + span {
          margin-left: 5px;
        }
        span + i {
          margin-left: 5px;
        }
        &.latepoint-btn-white {
        }
        &:hover {
          &.latepoint-next-btn {
            i {
              transform: translateX(3px);
            }
          }
          &.latepoint-prev-btn {
            i {
              transform: translateX(-3px);
            }
          }
        }
      }
    }


    .os-agent-bio-popup {
      overflow-y: auto;
      position: absolute;
      z-index: 9999;
      background-color: #fff;
      top: -30px;
      left: -30px;
      right: -30px;
      bottom: -30px;
      display: none;
      &.active {
        display: block;
      }
      .os-agent-bio-close {
        position: absolute;
        top: 0px;
        right: 0px;
        background-color: #FF5151;
        color: #fff;
        padding: 10px;
        font-size: floor($font-size-base * 0.9);
        font-weight: $body-font-weight-bold;
        z-index: 9999;
        span, i {
          display: inline-block;
          vertical-align: middle;
          line-height: 1;
        }
        span {
          margin-right: 10px;
        }
      }
      .agent-bio-popup-head {
        background-size: cover;
        background-position: center center;
        padding: 80px 40px 40px 40px;
        position: relative;
        h3 {
          color: #fff;
          text-shadow: 0px 1px 2px rgba(0,0,0,0.2);
          font-size: floor($headings-font-size * 2);
          margin: 0px;
          z-index: 2;
          position: relative;
        }
        .agent-bio-title {
          margin-top: 5px;
          color: rgba(255,255,255,0.8);
          z-index: 2;
          position: relative;
          font-size: floor($font-size-base * 1.4);
        }
        &:before {
          content: "";
          position: absolute;
          top: 0px;
          left: 0px;
          bottom: 0px;
          right: 0px;
          background-image: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0.1));
          z-index: 1;
        }
      }
      .agent-bio-popup-content {
        padding: 40px;
        font-size: floor($font-size-base * 1.1);
        line-height: floor($font-size-base * 1.4);
        position: relative;
        z-index: 2;
        .bio-curve {
          position: absolute;
          top: 1px;
          left: 0px;
          right: 0px;
          bottom: 0px;
          transform: translateY(-100%);
          display: block;
          width: 100%;
          max-width: 100%;
          height: auto;
          z-index: 9999;
        }
        .agent-bio-popup-features {
          display: flex;
          justify-content: space-between;
          padding-bottom: 20px;
          margin-top: -15px;
          border-bottom: 1px solid rgba(0,0,0,0.05);
          margin-bottom: 30px;
          .agent-bio-popup-feature {
            flex: 1;
            padding: 0px 15px;
            &:first-child {
              padding-left: 0px;
            }
            &:last-child {
              padding-right: 0px;
            }
            .agent-bio-popup-feature-value {
              @include font-headers();
              font-size: floor($headings-font-size * 1.8);
              font-weight: $headings-font-weight-bold;
              line-height: 1.2;
              color: $brand-primary;
            }
            .agent-bio-popup-feature-label {
              font-size: floor($font-size-base * 0.9);
              color: $color-faded;
            }
            & + .agent-bio-popup-feature {
              border-left: 1px solid rgba(0,0,0,0.05);
            }
          }
        }
        .agent-bio-popup-content-i {

          &::first-letter{
            @include font-headers();
            font-size: floor($headings-font-size * 1.8);
            line-height: floor($font-size-base * 1.4);
            color: $brand-primary;
            font-weight: $headings-font-weight-bold;
            padding-right: 1px;
          }
        }
      }
    }
  }

  
  .latepoint-step-content {
    color: $color-faded;
    min-height: 200px;
    text-align: left;
    &.is-hidden {
      display: none;
    }
    .latepoint-step-content-text-centered {
      text-align: center;
      margin-bottom: 15px;
      > h4 {
        margin-bottom: 5px;
      }
    }
    .latepoint-step-content-text-left {
      > h4 {
        margin-bottom: 5px;
      }
    }
  }

  .lp-demo-mode-msg {
    padding: 5px 10px;
    background-color: #ffd534;
    color: #211f1a;
    font-size: $font-size-base;
    font-weight: $body-font-weight-bold;
    margin-bottom: 10px;
    text-align: center;
  }

  .step-payment-w {
    .payment-total-info {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #FDF2D9;
      padding: 5px 15px;
      color: #A38E7B;
      font-size: floor($font-size-base * 1.2);
      margin-top: 20px;
      div {
        white-space: nowrap;
      }
      .lp-price-value {
        font-weight: $body-font-weight-bold;
        color: #A45D00;
        > span {
          text-decoration: line-through;
          display: inline-block;
          margin-right: 3px;
          opacity: 0.5;
          font-size: floor($font-size-base * 1);
        }
      }
      a {
        color: #846337;
        display: block;
        text-decoration: none;
        background-color: rgba(255, 255, 255, 0.61);
        font-weight: $body-font-weight-bold;
        padding: 2px;
        border-radius: 2px 5px;
        font-size: floor($font-size-base * 0.9);
        margin-left: 30px;
      }
      .payment-deposit-price-w,
      .payment-total-price-w {
        padding: 4px 0px;
        margin: 0px auto; 
      }
      .payment-deposit-price-w{
        display: none;
      }
      &.paying-deposit {
        .payment-total-price-w {
          display: none;
        }
        .payment-deposit-price-w{
          display: block;
        }
      }
      .coupon-code-trigger-w {

      }
      .applied-coupon-code {
        display: none;
        padding: 4px 5px 4px 8px;
        line-height: 1;
        background-color: #fff;
        color: #111;
        border: 1px dashed #111;
        font-weight: $body-font-weight-bold;
        font-size: floor($font-size-base * 0.9);
        margin-left: 20px;
        text-transform: uppercase;
        vertical-align: middle;
        position: relative;
        .coupon-code-self {
          display: inline-block;
          vertical-align: middle;
          line-height: 1.1;
        }
        .coupon-code-clear {
          line-height: 1.1;
          display: inline-block;
          vertical-align: middle;
          margin-left: 3px;
          cursor: pointer;
          position: relative;
          &.os-loading {
            &:before {
              @include loading-circle($color: #111,  $width: 10px);
              right: -5px;
              left: auto;
            }
            i {
              opacity: 0;
            }
          }
        }
      }
      .coupon-code-input-w {
        display: none;
        position: relative;
        margin-left: 20px!important;
        &.os-loading {
          &:before {
            @include loading-circle(#A45D00, 12px);
            left: -13px;
          }
        }
        input.coupon-code-input {
          border: none!important;
          border: 1px solid #d0bca8!important;
          padding: 5px 7px!important;
          background-color: #fff!important;
          box-shadow: none!important;
          font-size: floor($font-size-base * 0.9)!important;
          line-height: 1.3!important;
          display: block!important;
          width: 135px!important;
          margin: 0px!important;
          border-radius: 0px!important;
          &:focus, &:active {
            box-shadow: none!important;
            outline: none!important;
          }
          &::placeholder {
            color: #A38E7B!important;
          }
        }
        .coupon-code-input-submit {
          position: absolute;
          top: 50%;
          right: 5px;
          transform: translateY(-50%);
          vertical-align: middle;
          background-color: $brand-primary;
          color: #fff;
          text-transform: uppercase;
          padding: 2px 5px;
          font-size: floor($font-size-base * 0.8);
          font-weight: $body-font-weight-bold;
          cursor: pointer;
        }
      }
      &.entering-coupon {
        .coupon-code-trigger-w {
          display: none;
        }
        .coupon-code-input-w {
          display: block;
        }
      }
      &.coupon-is-applied {
        .coupon-code-trigger-w {
          display: none;
        }
        .coupon-code-input-w {
          display: none;
        }
        .applied-coupon-code {
          display: block;
        }
      }
    }
    > h4 {
      margin-bottom: 10px;
    }
    .lp-payment-methods-w {
      display: none;
    }
    .lp-payment-portion-selection-w {
      display: none;
    }
    .lp-payment-times-w {
      display: none;
    }
    .lp-paypal-btn-trigger-w {
      display: none;
      text-align: center;
      .lp-paypal-demo-mode-trigger {
        display: inline-block;
        text-align: center;
        padding: 10px 20px;
        background-color: #fac555;
        border-radius: 40px;
        color: #111;
        margin-top: 15px;
        font-weight: $body-font-weight-bold;
        cursor: pointer;
        &:hover {
          box-shadow: 0px 0px 0px 2px #ffb011;
        }
        span {
          display: inline-block;
          vertical-align: middle;
          padding-left: 10px;
          margin-left: 10px;
          border-left: 1px solid rgba(0,0,0,0.1);
        }
        img {
          height: 20px;
          width: auto;
          display: inline-block;
          vertical-align: middle;
        }
      }
      .lp-paypal-btn-trigger {
        padding: 20px 0px 5px;
        position: relative;
        min-height: 60px;
        &:before {
          @include loading-circle($brand-primary, 20px);
          top: 35px;
        }
      }
    }
    .lp-card-chip {
      background-color: #ffe5b6;
      padding: 7px 1px;
      position: absolute;
      top: 20px;
      right: 20px;
      border-radius: 6px;
      &:before {
        content: "";
        position: absolute;
        top: 13px;
        left: 0px;
        width: 10px;
        height: 4px;
        box-shadow: 0px 1px 0px 0px #D4C7B9, 0px -1px 0px 0px #D4C7B9;
      }
      &:after {
        content: "";
        position: absolute;
        top: 13px;
        right: 0px;
        width: 10px;
        height: 4px;
        box-shadow: 0px 1px 0px 0px #D4C7B9, 0px -1px 0px 0px #D4C7B9;
      }
      .chip-i {
        height: 16px;
        width: 40px;
        box-shadow: 0px 1px 0px 0px #D4C7B9, 0px -1px 0px 0px #D4C7B9;
        &:before {
          content: "";
          position: absolute;
          top: 0px;
          left: 11px;
          width: 20px;
          bottom: 0px;
          box-shadow: 1px 0px 0px 0px #D4C7B9, -1px 0px 0px 0px #D4C7B9;
        }
      }
    }
    .lp-card-w {
      display: none;
      background-color: #FFFCF4;
      padding: 10px 30px 10px;
      // border: 2px dotted #ecd465;
      border-radius: 10px;
      .lp-card-i {
        background-color: #5a2dde;
        background: linear-gradient(45deg, #25272f 0%, #0a2275 58%, #102984 58%, #1b2856 100%);
        box-shadow: 0 10px 20px 0 rgba(207,140,51,0.50), 0 2px 3px 0 rgba(64,51,40,0.66);
        border-radius: 8px;
        border: 1px solid #000;
        border: 1px solid #051b67;
        padding: 15px 20px 10px;
        position: relative;

        .lp-card-header {
          color: #fff;
          margin: 0px;
          margin-bottom: 25px;
          font-size: 26px;
        }

        &:before {  
        }

        .os-form-group.os-form-textfield-group 
        .os-form-control.os-framed-field, 
        .os-form-group.os-form-textfield-group 
        input.os-form-control.os-framed-field {
          height: 29px !important;
        }
        
        .os-form-group {
          margin-bottom: 15px;
        }

        label {
          color: rgba(175, 184, 214, 0.5) !important;
          top: -10px!important;
          left: 0px!important;
        }

        .os-form-group.os-form-select-group .os-form-control, 
        .os-form-group.os-form-select-group input.os-form-control, 
        .os-form-group.os-form-textfield-group .os-form-control, 
        .os-form-group.os-form-textfield-group input.os-form-control {
          box-shadow: none !important;
          border: none!important;
          border-bottom: 1px solid rgba(255,255,255,0.3) !important;
          padding: 5px 0px 5px 0px !important;
          border-radius: 0px !important;
          background-color: transparent !important;
          color: #fff!important;
          &::placeholder {
            color: #7d89b1!important;
          }
        }
      }
    }
    .latepoint-secured-payments-label {
      font-size: 12px;
      margin-top: 10px;
      color: #A9814A;
      font-weight: $body-font-weight-bold;
      padding-left: 40px;
      padding-right: 40px;
      text-align: center;
      position: relative;
      &:after {
        position: absolute;
        @include latepointfont('\e913');
        font-size: 20px;
        top: 50%;
        left: 10px;
        color: #A9814A;
        transform: translateY(-50%);
      }
    }

    &.lp-show-pay-times {
      .lp-payment-times-w {
        display: block;
      }
    }
    &.lp-show-pay-methods {
      .lp-payment-methods-w {
        display: block;
      }
    }
    &.lp-show-pay-portion-selection {
      .lp-payment-portion-selection-w {
        display: block;
      }
    }
    &.lp-show-card {
      .lp-card-w{
        display: block;
      }
    }
    &.lp-show-paypal {
      .lp-paypal-btn-trigger-w{
        display: block;
      }
    }
  }


  .step-services-w {
    .latepoint-step-content-text-centered {
      display: none;
    }
    &.selecting-total-attendies {
      .os-services,
      .os-service-categories-holder {
        display: none!important;
      }
    }
    &.selecting-service-duration {
      .os-services .os-item .os-service-selector {
        display: none!important;
      }
      .os-service-category-info-w {
        display: none!important;
      }
      .os-service-category-w > .os-services .os-item {
        border: none!important;
      }
      .os-service-category-w.selected {
        box-shadow: none!important;
      }
    }
    &.selecting-total-attendies {
      .select-total-attendies-w {
        display: flex;
        &.style-centered {
          display: block;
        }
      }
    }
    &.selecting-service-duration {
      .latepoint-step-content-text-centered {
        display: block;
      }
    }
    .os-service-durations {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      list-style-type: none!important;
      margin: 0px;
      margin-top: 20px;
      padding: 0px;
      .os-item {
        position: relative;
        .os-duration-value {
          font-size: floor($font-size-base * 2.8);
          font-weight: $body-font-weight-bold;
          line-height: 1.1;
          color: $brand-primary;
        }
        .os-duration-label {
          color: $color-faded;
        }
        .os-duration-price {
          position: absolute;
          top: 0px;
          right: 0px;
          padding: 5px;
          color: #D09F1D;
          line-height: 1;
          font-size: floor($font-size-base * 1.3);
          font-weight: $body-font-weight-bold;
        }
      }
    }
    .os-services {
      + .os-service-categories-holder {
      }
    }
    .os-service-category-w {
      .os-service-category-info {
      }
      &:hover:not(.selected) {
        .os-service-category-info {
        }
        .os-service-category-name {
        }
      }
      > .os-services {
        display: none;
        .os-item {
          &.selected {
            position: relative;
            z-index: 2;
            > .os-service-selector {
              &:hover {
                border-color: $brand-primary;
              }
            }
          }
          &:hover {
            z-index: 2;
            position: relative;
          }
          a.os-service-selector {
            position: relative;
            .service-name-w .service-name {
              font-size: floor($font-size-base * 1.1);
            }
            &:hover {
              border-color: $brand-primary;
            }
          }
        }
      }
      .os-service-category-w {
        margin-top: 0px;
        box-shadow: none;
        .os-service-category-info-w {
          border: none;
        }
        .os-service-category-info-w {
          display: none;
        }
        & + .os-service-category-w {
        }
      }
      & + .os-service-category-w {
      }
      .os-service-category-info {
        .os-service-category-img-w {
          flex: 0 0 40px;
          height: 40px;
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center center;
          text-align: center;
          margin-right: 15px;
          display: block;
        }
        .os-service-category-name {
          display: block;
          font-weight: $body-font-weight-bold;
          font-size: floor($font-size-base * 1.2);
          display: block;
          margin-right: auto;
          flex: 1;
          transition: transform 0.2s ease;
        }
        .os-service-category-services-count {
          display: block;
          color: $color-faded;
          font-size: floor($font-size-base * 0.8);
          transform: translateX(-40px);
          transition: transform 0.2s ease;
        }
      }
      &.selected {
        box-shadow: none;
        > .os-service-category-info-w {
          display: block;
          border-bottom: 1px solid #E5E7EE;
          background-color: #F4F6F9;
          border-top: none;
          position: relative;
          &:last-child {
            border-bottom: none;
          }
          .os-service-category-img-w {
            opacity: 0;
          }
          .os-service-category-services-count {
            transform: translateX(0);
          }
          &:before {
            content: "";
            position: absolute;
            top: 50%;
            left: 25px;
            @include latepointfont("\e902");
            font-size: 10px;
            transform: translateY(-50%);
            color: $color-faded;
            transition: all 0.2s ease;
          }
          > .os-service-category-info {
            &:after {
              opacity: 0;
              transform: translate(5px, -50%);
            }
          }
          &:hover {
            &:before {
              transform: translate(-5px, -50%);
              color: $brand-primary;
            }
            .os-service-category-name {
              color: $brand-primary;
            }
          }
        }
        .os-service-category-w {
          &:hover {
          }
        }
        > .os-services {
          display: block;
        }
      }
    }
    .os-service-categories-holder {
      &.show-selected-only {
        > .os-services:not(.selected){
          display: none;
        }
        .os-service-category-info-w {
          display: none;
        }
        .os-service-category-w {
          &:not(.selected){
            border: none;
            & + .os-service-category-w {
            }
          }
          &.selected {
            > .os-service-category-info-w {
              display: none;
            }
           > .os-service-categories-holder  > .os-service-category-w {
              > .os-service-category-info-w {
                display: block;
              }
            }
            > .os-service-categories-holder {
              > .os-service-category-w,
              > .os-services {
                display: block;
                & + .os-service-category-w {
                }
              }
            }
          }
        }
      }
    }
    .os-services_ {
      list-style-type: none!important;
      margin: 0px!important;
      padding: 0px!important;

      .os-item {
        margin-bottom: 15px;
        list-style: none;
        .os-item-i {
          display: flex;
          background: #FFFFFF;
          border: 1px solid #E5E7EE;
          align-items: center;
          box-shadow: none;
          outline: none;
          padding: 10px 15px;
          color: $body-color;
          text-decoration: none;
          &:hover {
            border-color: $brand-primary;
            text-decoration: none;
          }
          .service-img-w {
            flex: 0 0 40px;
            height: 40px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center center;
            text-align: center;
            margin-right: 15px;
          }
          .service-name-w {
            padding: 10px 0px;
            margin-right: auto;
            .service-name {
              font-weight: $body-font-weight-bold;
              font-size: floor($font-size-base * 1.2);
              display: block;
            }
            .service-desc {
              color: $color-faded;
              font-size: floor($font-size-base * 0.9);
              display: block;
              margin-top: 3px;
            }
          }
          .service-price-w {
            border-left: 1px solid rgba(0,0,0,0.05);
            padding-left: 15px;
            margin-left: 10px;
            text-align: center;
            .service-price {
              display: block;
              color: #D09F1D;
              font-size: floor($font-size-base * 1.6);
              line-height: 1.1;
              font-weight: $body-font-weight-bold;
            }
            .service-price-label {
              display: block;
              color: $color-faded;
              font-size: floor($font-size-base * 0.8);
              white-space: nowrap;
            }
          }
        }
        &:last-child {
        }
        &.selected {
          .os-service-durations {
            display: flex;
          }
          > .os-item-i {
            border-color: $brand-primary;
          }
        }
        &.with-description {
          a .service-name-w {
            padding: 5px 0px;
          }
        }
      }
    }
  }

}

// CALENDAR - FULL MONTH
.os-weekdays {
  display: flex;
  align-items: center;
  justify-content: space-between;
  .weekday {
    text-transform: uppercase;
    font-size: floor($font-size-base * 0.7);
    color: lighten($brand-primary, 20%);
    font-weight: $body-font-weight-bold;
    letter-spacing: $letter-spacing-lg;
    width: 14.2%;
    text-align: center;
    padding: 5px 0px;
    &.weekday-6, &.weekday-7 {
      color: #ccb63b;
      background-color: #fffef2;
    }
  }
}

.os-current-month-label-w {
  position: relative;
  .os-month-prev-btn,
  .os-month-next-btn {
    position: absolute;
    border: none;
    font-size: 12px;
    background-color: transparent!important;
    box-shadow: none;
    outline: none;
    color: #111;
    top: 55%;
    transform: translateY(-50%);
    padding: 0px;
    margin: 0px;
    line-height: 1;
    vertical-align: middle;
    display: inline-block;
    cursor: pointer;
    &.os-loading {
      color: transparent!important;
      span, i {
        color: transparent!important;
      }
      &:after {
        display: block;
        content: "";
        width: 14px;
        height: 14px;
        border-bottom: 2px solid $body-color;
        border-left: 2px solid $body-color;
        border-top: 2px solid $body-color;
        border-right: 2px solid rgba(0,0,0,0);
        border-radius: 20px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: os-loading 700ms infinite linear;
      }
    }
    &:hover {
      color: $brand-primary;
    }
    &:focus {
      outline: none;
    }
    &.disabled {
      color: rgba(0,0,0,0.1);
    }
  }
  .os-month-prev-btn {
    left: 10px;
  }
  .os-month-next-btn {
    right: 10px;
  }
  .os-current-month-label {
    text-align: center;
    font-weight: $body-font-weight-bold;
    font-size: floor($font-size-base * 1.3);
    margin-bottom: 15px;
    color: $body-color;
    .current-year {
      display: inline-block;
      vertical-align: middle;
      color: rgba($body-color, 0.3);
      margin-left: 5px;
    }
    .current-month {
      display: inline-block;
      vertical-align: middle;
    }
  }
}


.os-monthly-calendar-days-w {
  display: none;
  &.active {
    display: block;
  }
}


.step-datepicker-w {
  padding: 0px 25px;
}
.os-monthly-calendar-days {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  .os-day {
    width: 14.2%;
    padding: 2%;
    text-align: center;
    font-size: floor($font-size-base * 1);
    font-weight: $body-font-weight-bold;
    cursor: pointer;
    &.week-day-6,
    &.week-day-7 {
      background-color: #fffef2;
    }
    &.os-day-next-month,
    &.os-day-prev-month {
      color: #B7BCCB;
      background-color: #fff;
    }
    &.os-day-current {
      .os-day-box {
        background-color: $calendar-day-box-bg;
        // border: 1px solid #ececf1;
      }
    }
    &.os-day-passed {
      .os-day-box {
        background-color: transparent;
        .os-day-number {
          color: #bdc5da;
        }
      }
    }
    &.os-not-in-allowed-period {
      .os-day-box {
        background-color: #f7f8fb;
        .os-day-number {
          color: #bdc5da;
        }
      }
    }
    &.os-today {
      .os-day-box {
        background-color: #fff6cb;
        border-color: #fff6cb;
      }
    }

    // MONTH SETTINGS
    &.os-month-next,
    &.os-month-prev {
      .os-day-box {
        opacity: 0.6;
        &:hover {
          opacity: 1;
        }
      }
    }

    .os-day-box {
      padding-bottom: 100%;
      // border: 1px solid #ececf1;
      position: relative;
    }
    .os-day-number {
      position: absolute;
      top: 46%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #424754;
      transition: all 0.1s ease;
    }
    .os-day-status {
      transition: height 0.1s ease;
    }
    &:hover {
      .os-day-box {
        .os-day-number {
          color: $brand-primary;
          top: 39%;
          font-size: floor($font-size-base * 1.3);
          white-space: nowrap;
        }
      }
      .os-day-status {
        height: 7px;
      }
    }
    &.selected {
      .os-day-box {
        background-color: $brand-primary;
        border-color: transparent;
        color: #fff;
        opacity: 1;
        .os-day-number {
          top: 50%;
          color: #fff;
          font-size: floor($font-size-base * 1.3);
        }
        .os-day-status {
          display: none;
        }
      }
    }
  }
}


.os-day-status {
  margin: 0px;
  height: 4px;
  position: absolute;
  border-radius: 2px;
  overflow: hidden;
  bottom: 3px;
  left: 3px;
  right: 3px;
  background-color: $calendar-timeline-off-bg;
  .day-available {
    background-color: $timeblock-available-bg;
    top: 0px;
    bottom: 0px;
    position: absolute;
    z-index: 1;
    min-width: 3px;
  }
}

// TIME SLOTS

.time-selector-w {
  display: none;
  padding-bottom: 30px;
  margin-top: 20px;
  margin-left: -2px;
  margin-right: -2px;
}

.times-header {
  color: #16171d;
  font-size: floor($font-size-base * 1);
  font-weight: $body-font-weight-bold;
  text-align: center;
  padding-bottom: 10px;
  span {
    color: $brand-primary;
    border-bottom: 1px dotted $brand-primary;
  }
}

.os-dates-w {
  margin: 0px -2.2%;
}
.os-times-w {
  position: relative;
}
.timeslots {
  display: flex;
  justify-content: space-between;

  .not-working-message {
    flex: 1;
    padding: 3px 5px;
    text-align: center;
    background-color: #ffd4d4;
    color: #752f2f;
    font-weight: $body-font-weight-bold;
  }
}
.dp-timeslot {
  height: $timeblock-tick-height;
  flex-grow: 1;
  margin: 0px;
  box-shadow: inset 1px 0px 0px 0px #fff, inset -1px 0px 0px 0px #fff;
  border-radius: 0px;
  position: relative;
  cursor: pointer;
  background-color: $timeblock-available-bg;
  &:first-child {
  }
  &:last-child {
  }
  &:first-child {
    &:last-child {
    }
  }
  .dp-tick {
    position: absolute;
    display: block;
    top: $timeblock-tick-height + 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: floor($font-size-base * 0.55);
    text-align: center;
    color: rgba(0,0,0,0.4);
    text-transform: uppercase;
    line-height: 1.4;
    font-weight: $body-font-weight-bold;
    letter-spacing: 1px;
    strong {
      display: block;
      color: rgba(0,0,0,1);
      font-size: floor($font-size-base * 0.75);
      line-height: 1;
      letter-spacing: 0px;
      white-space: nowrap;
    }
  }
  .dp-success-label {
    color: rgba(255,255,255,0.8);
    display: block;
    text-align: center;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: floor($font-size-base * 0.7);
  }
  .dp-label {
    display: none;
    text-align: center;
    padding: 7px 8px 7px 8px;
    line-height: 1;
    background-color: #04bb03;
    color: #fff;
    font-size: floor($font-size-base * 0.85);
    font-weight: $body-font-weight-bold;
    position: absolute;
    left: 50%;
    top: -8px;
    transform: translate(-50%, -100%);
    white-space: nowrap;
    transition: all 0.2s ease;
    z-index: 10;
  }
  &.selected:not(.is-booked),
  &.selected:not(.is-off) {
    background-color: $brand-primary;
    z-index: 4;
    &:hover {
      background-color: $brand-primary;
    }
    &:after {
      content: "";
      position: absolute;
      width: 1px;
      left: 50%;
      transform: translateX(-50%);
      top: 0px;
      bottom: 0px;
      background-color: $brand-primary;
      display: none;
    }
    .dp-label {
      top: -3px;
      background-color: $brand-primary;
      color: #fff;
      display: block;
    }
    &:before {
      background-color: $brand-primary;
      display: block;
      width: 10px;
      height: 10px;
      transform:  translateX(-50%) rotate(45deg);
      top: -12px;
      left: 50%;
    }
  }
  &:not(.is-off),
  &:not(.is-booked) {
    &:hover {
    }
  }
  &.is-booked {
    background-color: $calendar-timeline-off-bg;
    margin: 0px;
    cursor: not-allowed;
    + .dp-timeslot:not(.is-booked) {
    }
    &:before {
      background-color: #E42806;
    }
    .dp-label {
      background-color: #E42806;
    }
    &:hover {
      background-color: #E42806;
    }
  }
  &.is-off {
    background-color: $calendar-timeline-off-bg;
    margin: 0px;
    border-color: #fff;
    max-width: 25%;
    cursor: not-allowed;
    + .dp-timeslot:not(.is-booked) {
    }
    &:before {
      background-color: #E42806;
    }
    .dp-label {
      background-color: #E42806;
    }
    &:hover {
      background-color: $calendar-timeline-off-bg;
      .dp-label {
        display: none;
      }
    }
  }
  &.with-tick {
    &:after {
      content: "";
      position: absolute;
      width: 1px;
      left: 50%;
      height: 3px;
      bottom: -7px;
      background-color: rgba(0,0,0,0.4);
    }
  }
  &:hover {
    background-color: #04bb03;
    &:before {
      top: 0px;
    }
    .dp-label {
      display: block;
    }
  }
}



// Verify
.latepoint-booking-form-element {
  .step-verify-w {
    .payment-summary-info {
      .confirmation-info-w {
        margin-top: 0px;
      }
    }
  }
}


// Confirmation
.latepoint-booking-form-element {
  .step-confirmation-w {
    .confirmation-head-info {
      margin-bottom: 25px;
      position: relative;
    }

    .qr-code-on-confirmation {
      &.show-vevent-qr-code {
        .qr-code-vevent {
          display: block;
          margin: 0px auto 30px auto;
          padding-bottom: 20px;
          border-bottom: 1px dashed rgba(0,0,0,0.1);
        }
        .qr-show-trigger {
          display: none;
        }
      }
      .qr-show-trigger {
        float: right;
        width: 100px;
        text-align: center;
        padding-top: 10px;
        cursor: pointer;
        &:hover {

        }
        .latepoint-icon {
          font-size: 45px;
          color: #111;
        }
        .qr-code-trigger-label {
          display: inline-block;
          line-height: 1.2;
          color: #111;
          border-bottom: 1px solid #777;
          font-weight: $body-font-weight-bold;
          letter-spacing: 0.5px;
          margin-top: 10px;
          font-size: floor($font-size-base * 0.8);
          text-transform: uppercase;
        }
      }
      .qr-code-booking-info {
        display: none;
      }
      .qr-code-vevent {
        display: none;
        img {
          display: block;
          margin: 0px auto;
        }
        .qr-code-label {
          text-align: center;
          font-size: floor($font-size-base * 0.9);
          font-weight: $body-font-weight-bold;
          text-align: center;
          font-weight: 500;
          padding: 10px 15px;
          background: #fff1af;
          line-height: 1.4;
          color: #000;
        }
      }
    }
    .payment-summary-info {
      .confirmation-info-w {
        margin-top: 0px;
      }
    }
    .confirmation-header {
      margin-bottom: 0px;
      margin-top: 0px;
    }
    .confirmation-number {
      color: $color-faded;
      padding-top: 0px;
      margin-bottom: 8px;
      font-size: floor($font-size-base * 0.9);
      letter-spacing: 0.5px;
      text-transform: uppercase;
      font-weight: $body-font-weight-bold;
      strong {
        font-size: floor($font-size-base * 2.6);
        letter-spacing: normal;
        color: $headings-color;
        display: block;
        line-height: 1.1;
      }
    }
    .print-booking-btn,
    .ical-download-btn {
      margin-bottom: 5px;
      padding: 2px 7px 3px 6px;
      border: 1px solid #ad3d12;
      text-decoration: none;
      color: #ad3d12;
      border-radius: 4px;
      display: inline-block;
      font-size: floor($font-size-base * 0.95);
      font-weight: $body-font-weight-bold;
      span, i {
        display: inline-block;
        vertical-align: middle;
      }
      i {
      }
      span {
        margin-left: 7px;
      }
      & + a {
      }
    }
    .ical-download-btn {
      margin-right: 5px;
    }
    .print-booking-btn {
      border-color: #111;
      color: #111;
    }
    .step-confirmation-set-password {
      margin-top: 20px;
      display: none;

      h4 {
        margin-bottom: 10px;
      }
      .set-password-fields {
        display: flex;
        align-items: center;
        .os-form-group {
          flex: 1;
          margin: 0px;
          margin-bottom: 0px!important;
          margin-right: 10px;
          &.os-form-textfield-group.has-value label {
            display: none!important;
          }
          &.os-form-textfield-group input.os-form-control {
            padding: 7px 10px 7px 10px !important;
          }
        }
        .latepoint-btn {
          flex: 0;
          white-space: nowrap;
          display: block;
          text-align: center;
          padding: 9px 20px;
        }
      }
    }
    .confirmation-cabinet-info {
      background-color: #F5F6FF;
      margin-top: 20px;
      text-align: center;
      padding:  20px 40px;
      display: none;
      .confirmation-cabinet-text {
        color: $headings-color;
        margin-bottom: 10px;
        font-size: floor($font-size-base * 1.2);
        font-weight: $body-font-weight-bold;
      }
      .confirmation-cabinet-link-w {
      }
      .confirmation-cabinet-link {
        font-size: floor($font-size-base);
        background-color: $brand-primary;
        color: #fff!important;
        padding: 8px 15px!important;
        font-weight: $body-font-weight-bold;
        text-decoration: none!important;
        border: none!important;
        display: inline-block!important;
      }
    }
  }
}

// Confirmation & Verification list of label-value pairs
.confirmation-info-w {
  margin-top: 20px;
  .confirmation-app-info {
  }
  .confirmation-customer-info {
  }

  ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-wrap: wrap;
    li {
      flex: 0 0 50%;
      list-style-type: none;
      margin: 0px;
      color: $color-faded;
      font-weight: $body-font-weight-bold;
      padding: 7px 10px 7px 0px;
      line-height: 1.4;
      font-size: floor($font-size-base * 0.75);
      letter-spacing: 0.6px;
      text-transform: uppercase;
      border-bottom: 1px solid rgba(0,0,0,0.05);
      strong {
        text-transform: none;
        letter-spacing: normal;
        color: $body-color;
        display: block;
        font-size: $font-size-base;
      }
    }
  }
  .confirmation-section-heading {
    font-size: floor($headings-font-size * 1.3);
    display: block;
    border-bottom: 1px solid $brand-primary;
    margin: 15px 0px 5px 0px;
    color: $brand-primary;
  }
}


.latepoint-booking-form-element {
  &.hidden-buttons {
    .latepoint-form-w .latepoint-body {
      &:after {
        height: 40px;
      }
    }
    .latepoint-form-w .latepoint-footer {
      display: none;
    }
  }
  .os-social-or {
    color: $brand-primary;
    text-align: center;
    margin-bottom: 15px;
    font-weight: $body-font-weight-bold;
    font-size: floor($font-size-base * 1.2);
    span {
      display: inline-block;
      position: relative;
      &:before,
      &:after {
        content: "";
        position: absolute;
        top: 50%;
        height: 1px;
        background-color: #E2E5EF;
        width: 20px;
        left: -30px;
      }
      &:after {
        left: auto;
        right: -30px;
      }
    }
  }
  .os-social-login-options {
    display: flex;
    justify-content: space-between;
    .os-social-login-option {
      padding: 5px 10px 5px 10px;
      border-radius: 6px;
      border: 1px solid $brand-primary;
      display: block;
      flex: 0 0 49%;
      color: $brand-primary;
      text-decoration: none;
      font-weight: $body-font-weight-bold;
      white-space: nowrap;
      cursor: pointer;
      i, span {
        display: inline-block;
        vertical-align: middle;
      }
      i {
        margin-right: 10px;
      }
      span {

      }
      &.os-social-login-google {
        color: #C02A2A;
        border-color: #C02A2A;
      }
      &.os-social-login-facebook {
        color: #465499;
        border-color: #465499;
      }
    }
  }
  .os-step-tabs {
    display: flex;
    color: #898C98;
    margin-bottom: 20px;
    font-weight: $body-font-weight-bold;
    font-size: floor($font-size-base);
    line-height: floor($font-size-base);
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E2E5EF;
    height: floor($font-size-base + 20);
    .os-step-tab {
      transition: all 0.2s ease;
      text-align: center;
      padding: 8px 0px;
      position: relative;
      line-height: floor($font-size-base);
      font-size: floor($font-size-base);
      &:hover {
        cursor: pointer;
        color: $body-color;
      }
      &:before {
        position: absolute;
        content: "";
        background-color: $brand-primary;
        height: 2px;
        left: 0px;
        bottom: -1px;
        width: 0%;
        transition: all 0.2s ease;
      }
      &.active {
        color: $body-color;
        font-size: floor($font-size-base * 1.2);
        line-height: floor($font-size-base);
        padding-bottom: 12px;
        padding-top: 8px;
        &:before {
          width: 100%;
        }
      }
    }
  }
  .step-contact-logged-in-header-w {
    display: flex;
    color: #898C98;
    margin-bottom: 20px;
    font-weight: $body-font-weight-bold;
    font-size: floor($font-size-base);
    line-height: floor($font-size-base);
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E2E5EF;
    height: floor($font-size-base + 20);
    span {
      display: block;
      margin-right: 5px;
      margin-left: auto;
    }
    a {
      display: block;
      color: $brand-primary;
      text-decoration: underline;
    }
    div {
      color: $body-color;
      font-size: floor($font-size-base * 1.1);
      line-height: floor($font-size-base);
      padding-bottom: 12px;
      padding-top: 8px;
      position: relative;
      &:before {
        position: absolute;
        content: "";
        background-color: $brand-primary;
        height: 2px;
        left: 0px;
        bottom: -1px;
        width: 100%;
        transition: all 0.2s ease;
      }
    }
  }
  .os-form-buttons {
    align-items: flex-start;
  }
  .os-password-reset-form-holder {
    .os-password-reset-form-w {
      padding: 20px;
      border: 1px solid #aaa;
      box-shadow: 0px 1px 2px rgba(0,0,0,0.1), 0px 5px 10px rgba(0,0,0,0.05);
      margin-bottom: 15px;
    }
    h4 {
      margin: 0px;
      margin-bottom: 5px;
      padding: 0px;
    }
    p {
      margin-bottom: 10px;
    }
    .os-form-message-w {
      margin-bottom: 10px;
      margin-top: 10px;
    }
  }
  .os-step-existing-customer-login-w {
    margin-bottom: 10px;
    .step-forgot-password-btn {
      text-decoration: underline;
      padding-top: 0px;
      padding-bottom: 0px;
    }
    .step-login-existing-customer-btn {
      padding: 12px 25px;
      font-size: floor($font-size-base * 1.1);
      position: relative;
      i {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 22px;
      }
    }
  }
}

.latepoint-message {
  border-radius: $border-radius;
  &.latepoint-message-success {
    padding: 10px 15px;
    font-weight: $body-font-weight-bold;
    margin-bottom: 15px;
    background: #aeffbe;
    color: #258432;
    text-align: center;
    border: 1px solid #54e665;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.05);
  }
  &.latepoint-message-error {
    padding: 10px;
    font-weight: $body-font-weight-bold;
    margin-bottom: 15px;
    background: #ff9999;
    color: #750e0e;
    text-align: center;
    border: 1px solid #c11a18;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.05);
  }
  &.latepoint-message-info {
    padding: 10px;
    font-weight: $body-font-weight-bold;
    margin-bottom: 15px;
    background: #d5dcff;
    color: #181b2d;
    text-align: center;
  }
}


.os-booking-limit-reached {
  position: absolute;
  top: 10px;
  right: 10px;
  left: 10px;
  bottom: 10px;
  background-color: #fff0f0;
  border: 1px solid #b95252;
  color: #b95252;
  font-size: floor($font-size-base * 1.2);
  text-align: center;
  padding: 30px;
  display: flex;
  align-items: center;
  .os-booking-limit-icon-w {
    margin-bottom: 10px;
    font-size: 40px;
    color: #d8adb0;
    line-height: 1;
  }
  h3 {
    color: #5f1b1b;
    margin-bottom: 10px;
    margin-top: 0px;
    padding: 0px;
  }
}


// PRINT BOOKING CONFIRMATION
.latepoint-print-confirmation-w {
  padding: 40px;
  max-width: 800px;
  margin: 0px auto;
  .confirmation-head-info {
    margin-bottom: 50px;
    position: relative;
  }
  .qr-code-on-confirmation {
    .qr-show-trigger {
      display: none;
    }
    .qr-code-booking-info {
      display: none;
    }
    .qr-code-vevent {
      margin-bottom: 40px;
      padding-bottom: 30px;
      border-bottom: 1px dashed #eee;
      img {
        width: 300px;
        height: 300px;
        display: block;
        margin: 0px auto;
      }
      .qr-code-label {
        text-align: center;
        font-size: floor($font-size-base * 1);
        font-weight: $body-font-weight-bold;
        text-align: center;
        font-size: 14px;
        font-weight: 500;
        padding: 10px 15px;
        background: #fff1af;
        color: #423d26;
      }
    }
  }
  .payment-summary-info {
    .confirmation-info-w {
      margin-top: 0px;
    }
  }
  .confirmation-header {
    margin-bottom: 0px;
    margin-top: 0px;
  }
  .confirmation-number {
    color: $color-faded;
    padding-top: 0px;
    margin-bottom: 8px;
    font-size: floor($font-size-base * 0.9);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: $body-font-weight-bold;
    strong {
      font-size: floor($font-size-base * 2.6);
      letter-spacing: normal;
      color: $headings-color;
      display: block;
      line-height: 1.1;
    }
  }
}
