.price {
  position: relative;
}

.price a.front-editor-edit-link {
  display: inline-block;
  position: absolute;
  right: 0;
  transform: translateY(-50%);
  top: 50%;
  background: rgba(35, 40, 45, 0.5);
  color: #eee;
  padding: 0 8px 0 7px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  box-shadow: none;
  font-size: 13px;
  font-weight: 400;
  line-height: 32px;

  &:hover {
    background: #32373c;
    color: #00b9eb;
    text-decoration: none;

    &:before {
      color: #00b9eb;
    }
  }

  &:before {
    content: "\f464";
    top: 2px;
    color: rgba(240, 245, 250, .6);
    position: relative;
    transition: all .1s ease-in-out;
    float: left;
    font: 400 20px/1 dashicons;
    speak: none;
    padding: 4px 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image: none !important;
    margin-right: 6px;
  }
}

.front-editor-dialog {
  background-color: #f9f9f9;
  padding: 0.5em;
  border: 1px solid #e1e1e1;
  color: #444;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 13px;
  line-height: 1.4em;

  & .ui-dialog-titlebar {
    display: none;

  }

  & .ui-dialog-buttonset {
    overflow: hidden;
  }

  & .ui-dialog-buttonset .ui-button {
    display: inline-block;
    text-decoration: none;
    font-size: 13px;
    line-height: 26px;
    height: 28px;
    margin: 0;
    padding: 0 10px 1px;
    cursor: pointer;
    border-width: 1px;
    border-style: solid;
    -webkit-appearance: none;
    border-radius: 3px;
    white-space: nowrap;
    box-sizing: border-box;
    color: #555;
    border-color: #cccccc;
    background: #f7f7f7;
    box-shadow: 0 1px 0 #cccccc;
    vertical-align: top;
    font-weight: normal;

    &:first-child {
      background: #0085ba;
      border-color: #0073aa #006799 #006799;
      box-shadow: 0 1px 0 #006799;
      color: #fff;
      text-decoration: none;
      text-shadow: 0 -1px 1px #006799, 1px 0 1px #006799, 0 1px 1px #006799, -1px 0 1px #006799;
      float: right;

    }
  }

}

#front-editor-form {
  & fieldset {
    font-size: 12px;
    border: 0;
    padding: 0 0.5em;
    margin: 0;
  }

  & label {
    display: block;
    margin: .2em 0;
    line-height: 2.5;
  }

  & .title {
    display: block;
    float: left;
    width: 6em;
    line-height: 2.5;
    font-style: italic;
    margin: 0;
    padding: 0;
    color: #555;
    font-weight: normal;
  }

  & .input-text-wrap {
    display: block;
    margin-left: 6em;
    position: relative;
    line-height: 2.5;
  }

  & input[type="text"] {
    width: 100%;
    border: 1px solid #ddd;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
    background-color: #fff;
    color: #32373c;
    outline: none;
    transition: 0.05s border-color ease-in-out;
    margin: 1px;
    font-size: 14px;
    padding: 3px 5px;
    border-radius: 0;
    box-sizing: border-box;
  }
}

.front-editor-result {
  position: relative;
  background: #fff;
  border-left: 4px solid #fff;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);

  &.success, &.error {
    margin: 5px 0 15px;
    padding: 12px;
  }

  &.success {
    border-left-color: #46b450;
  }

  &.error {
    border-left-color: #dc3232;
  }
}

