@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700');

.settings_page_pb-seo-friendly-images #wpcontent {
  //background: #F1F5F9;
}

.pb-wp-app-wrapper {
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  padding: 10px;

  * {
    box-sizing: border-box;
  }

  p {
    font-size: 14px;
  }

  .pro-section {
    font-size: 26px;
    border-top: 1px solid #aaa;
    position: relative;
    text-align: center;
    margin: 55px 0 20px 0;

    span {
      top: -12px;
      position: relative;
      background: #f1f1f1;
      padding: 0 15px;
    }
  }

  .pb-wrapper {
    display: flex;

    .pb-main {
      width: calc(100% - 300px);
      padding-right: 30px;
      max-width: 1024px;

      .pb-custom-message {
        margin-bottom: 0;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
      }
    }

    .pb-sidebar {
      width: 300px;
      padding-top: 30px;

      h3:first-child {
        margin-top: 0;
        color: #888;
      }
    }

    .pb-plugin-box, .pb-support-box {
      background: #fff;
      padding: 15px 15px;
      opacity: .8;
      margin-bottom: 35px;
      -webkit-transition: opacity .5s;
      -moz-transition: opacity .5s;
      transition: opacity .5s;


      &:hover {
        opacity: 1;
      }

      h4 {
        margin-top: 0;
        display: flex;
        .icon {
          width: 50px;
          height: auto;

          img {
            max-width: 100%;
            height: auto;
          }
        }

        .text {
          padding: 7px 0 0 10px;
          width: calc(100% - 50px);
          display: flex;
          height: 50px;
        }
      }

      p:last-child {
        margin-bottom: 0;
      }

      .desc {

      }
    }
  }

  .pb-section-title {
    color: #23282d;
    font-weight: 600;
    background: #fff;
    padding: 15px 25px;
    margin-bottom: 0;
    display: inline-block;
  }

  h3.pb-section-title {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
  }

  .pb-section-wrap, .form-table {
    background: #fff;
    padding: 25px;
    margin-bottom: 25px;
    max-width: 1024px;

    &.no-margin-bottom {
      margin-bottom: 0;
      padding-bottom: 5px;
    }

    p:first-child {
      margin-top: 0;
    }

    p:last-child {
      margin-bottom: 0;
    }

    input[type="text"], textarea, select {
      box-sizing: border-box;
      width: 100%;
      margin-left: 0;
      border-radius: 4px;
      border: none;
      box-shadow: none;
      background: #F1F5F9;
      padding: 13px;
      font-size: 14px;
      color: #32373C;
      height: auto;
      font-family: 'Open Sans', sans-serif;
      font-size: 14px;
      margin-bottom: 0;
      -webkit-transition: background .5s;
      -moz-transition: background .5s;
      transition: background .5s;

      &:focus {
        background-color: #E0E5EA;
      }
    }

    input, textarea, select {
      &:disabled {
        cursor: not-allowed;
        opacity: .75;
      }
    }

    select {
      height: 39px;
      padding: 3px 7px;
    }

  }

  .pb-custom-message ~ .no-margin-bottom {
    padding-bottom: 25px !important;
  }

  .button.button-primary {
    text-shadow: none;
    -webkit-transition: background .5s;
    -moz-transition: background .5s;
    transition: background .5s;
    color: #FFF;
    cursor: pointer;
    background-color: #17a8e3;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: none;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 300;
    height: 53px;
    line-height: 53px;
    display: inline-block;
    text-decoration: none;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    position: relative;

    &:hover {
      background-color: darken(#17a8e3, 10);
    }
  }
}

.pb-custom-message {
  justify-content: space-between;
  font-family: 'Open Sans', sans-serif;
  box-sizing: border-box;
  border-radius: 4px;
  -ms-flex-align: center;
  align-items: center;
  background: #fff url("../img/icon.png") no-repeat left;
  background-size: contain;
  border: 0;
  display: -ms-flexbox;
  display: flex;
  min-height: 100px;
  padding: 15px 35px 15px 135px;
  -ms-flex-pack: justify;
  max-width: 1024px;
  margin-bottom: 25px;
  -moz-box-shadow: 2px 2px 6px 1px rgba(55,55,55,.2);
  -webkit-box-shadow:  2px 2px 6px 1px rgba(55,55,55,.2);
  box-shadow: 2px 2px 6px 1px rgba(55,55,55,.2);

  p {
    font-size: 14px;
  }

  &.code {
    background: #fff url("../img/code.png") no-repeat left;
    background-size: contain;
    -moz-box-shadow: none;
    -webkit-box-shadow:  none;
    box-shadow: none;
  }

  &.info {
    background: #fff url("../img/warning.png") no-repeat left;
    background-size: contain;
  }

  .pb-btn {
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    border: 0;
    border-radius: 4px;
    background-color: #17a8e3;
    color: #fff;
    padding: 15px 35px;
    text-transform: uppercase;
    margin-left: 20px;
    -webkit-transition: background .5s;
    -moz-transition: background .5s;
    transition: background .5s;

    &:hover {
      background-color: darken(#17a8e3, 10);
    }
  }
}