/**
* Load fonts
* https://fonts.google.com/specimen/Jost
*/

/**
* Load fonts
* https://fonts.google.com/specimen/Jost
*/

@font-face {
  font-family: 'Jost';
  src: local( 'Jost' ),
    url( './fonts/Jost/Jost-Regular.woff2' ) format( 'woff2' ),
    url( './fonts/Jost/Jost-Regular.woff' ) format( 'woff' ),
    url( './fonts/Jost/Jost-Regular.ttf' ) format( 'truetype' );
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Jost';
  src: local( 'Jost' ),
    url( './fonts/Jost/Jost-Bold.woff2' ) format( 'woff2' ),
    url( './fonts/Jost/Jost-Bold.woff' ) format( 'woff' ),
    url( './fonts/Jost/Jost-Bold.ttf' ) format( 'truetype' );
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Jost';
  src: local( 'Jost' ),
    url( './fonts/Jost/Jost-Italic.woff2' ) format( 'woff2' ),
    url( './fonts/Jost/Jost-Italic.woff' ) format( 'woff' ),
    url( './fonts/Jost/Jost-Italic.ttf' ) format( 'truetype' );
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Jost';
  src: local( 'Jost' ),
    url( './fonts/Jost/Jost-BoldItalic.woff2' ) format( 'woff2' ),
    url( './fonts/Jost/Jost-BoldItalic.woff' ) format( 'woff' ),
    url( './fonts/Jost/Jost-BoldItalic.ttf' ) format( 'truetype' );
  font-weight: bold;
  font-style: italic;
}

/**
* Typography
*/

#cpt-admin,
.cpt-notice {
  font-family: Jost;
  font-variant-ligatures: common-ligatures;
}

#cpt-admin-header {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: 120px 1fr;
  margin-bottom: 15px;
}

  #cpt-admin-header * {
    align-self: center;
  }

  #cpt-admin-page-title p#cpt-client-status {
    font-size: 16px;
    line-height: 1.1;
    margin: 0;
  }

  #cpt-admin-page-title h1#cpt-page-title {
    font-size: 42px;
    font-weight: bold;
    line-height: 1.1;
    padding-top: 0;
  }

  #cpt-admin-page-title p#cpt-subtitle {
    color: gray;
    font-size: 26px;
    font-weight: bold;
    line-height: 1.1;
    margin: 0;
  }

#cpt-admin h2 {
  font-size: 23px;
}


/* Forms */
#cpt-admin .form-table th label small {
  font-weight: normal;
}

#cpt-delete-client-link {
  color: gray;
  cursor: pointer;
}

.cpt-admin-modal {
  box-sizing: border-box;
  display: grid;
  grid-template-areas: 'lbuffer modal rbuffer';
  grid-template-columns: minmax( 10px, 1fr ) minmax( 300px, 500px ) minmax( 10px, 1fr );
  margin: 0;
  max-height: 80%;
  overflow: scroll;
  padding: 0;
  position: fixed;
    left: 0;
    top: 10%;
  width: 100%;
  z-index: 100;
}

  .cpt-admin-modal-card {
    background-color: #fff;
    box-shadow:
      0 0 0 1px #ddd,
      1px 1px 3px rgba( 0, 0, 0, 0.2 )
    ;
    box-sizing: border-box;
    grid-area: modal;
    margin: 3px;
    padding: 30px;
    position: relative;
  }

    .cpt-admin-modal h2 {
      border: none;
      margin-top: 0;
      padding: 0;
    }

    #cpt_delete_client_button {
      display: inline-block;
    }

.cpt-admin-modal-screen {
  background-color: rgb( 0, 0, 0, .4 );
  height: 100%;
  position: fixed;
    left: 0;
    top: 0;
  width: 100%;
  z-index: 99;
}
