.bookit-feedback-modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  padding-top: 150px;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(255, 255, 255, 0.6 );

  .feedback-modal-content {
    position: relative;
    max-width: 500px;
    padding: 45px;
    margin: auto;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.16);
    background-color: #ffffff;

    .feedback-modal-close {
      position: absolute;
      top: 5px;
      right: -33px;
      font-size: 36px;
      font-weight: 300;
      line-height: 24px;
      cursor: pointer;
    }

    .feedback-thank-you {
      display: block;
      width: 70px;
      height: 69px;
      margin: 0 auto 25px;
      background: url('../icons/feedback/thank-you.svg') no-repeat;
    }

    h2 {
      font-size: 32px;
      font-weight: 400;
      margin: 0;
    }

    /** Rating Stars */
    .feedback-rating-stars {
      margin-top: 25px;
      ul {
        padding: 0;
        margin: 0;
        list-style-type: none;
        user-select: none;
        li {
          margin: 0;
          &.star {
            display: inline-block;
            &.disabled {
              opacity: 1;
            }
            &:not(.disabled):hover {
              opacity: 0.7;
            }
            i {
              display: block;
              width: 32px;
              height: 32px;
              cursor: pointer;
              background: url('../icons/feedback/star.svg') no-repeat;
            }
            &.selected {
              i {
                color: #d6981b;
                background: url('../icons/feedback/star-filled.svg') no-repeat;
              }
            }
          }
        }
      }
      .rating-text {
        display: block;
        color: #2f3138;
        font-size: 26px;
        font-style: italic;
        font-weight: 300;
        margin-top: 5px;
      }
    }

    .feedback-review-text {
      color: #2f3138;
      font-size: 15px;
      margin-top: 20px;
    }

    .feedback-extra {
      text-align: left;
      textarea {
        width: 100%;
        height: auto;
        resize: none;
        margin-top: 25px;
        padding: 14px;
        border-radius: 5px;
        border: 1px solid #cfcfcf;
        background-color: #f0f8f8;
        color: #2f3138;
        font-size: 16px;
        &:focus,
        &:active {
          outline: 0;
          box-shadow: none;
          border: 1px solid #11c482;
          background-color: #ffffff;
        }
        &::placeholder {
          opacity: 0.5;
          color: #2f3138;
          font-size: 14px;
        }
      }
      small {
        opacity: 0.8;
      }
    }

    .feedback-submit {
      width: 100%;
      display: block;
      color: #ffffff;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      text-decoration: none;
      margin-top: 20px;
      padding: 17px 0;
      border: none;
      border-radius: 5px;
      background-color: #00a0df;
      box-shadow: 0 6px 6px rgba(0, 0, 0, 0.12);
      &:focus {
        outline: 0;
      }
      .external-icon {
        display: inline-block;
        width: 17px;
        height: 16px;
        margin-left: 5px;
        vertical-align: text-top;
        background: url('../icons/feedback/external-link.svg') no-repeat;
        background-size: contain;
      }
    }

  }

}