/**
 * #.# Editor Styles
 *
 * CSS for just Backend enqueued after style.scss
 * which makes it higher in priority.
 */

.lb24-wp-login {
  width:540px;
  height:282px;
  background:#C1D0E2;
  border-radius:4px;
  border:1px solid rgba(193,208,226,1);
  margin: 0 auto;
  text-align: center;

  .lb24-wp-login-logo {
    width:300px;
    height:36px;
    display:block;
    margin:64px auto;
  }

  .lb24-wp-login-email-label, .lb24-wp-login-password-label {
    color: #171338;
    font-size:14px;
    font-weight:400;
    line-height:20px;
    display: block;
    margin-bottom: 8px;
    text-align: left;
  }

  .lb24-wp-login-email, .lb24-wp-login-password {
    width: 316px;
    height: 40px;
    background: rgba(255,255,255,1);
    border-radius: 4px;
    border: 1px solid rgba(193,208,226,1);
    margin-bottom: 20px;
    padding: 10px 16px;
  }

  .lb24-wp-login-btn {
    margin:32px auto;
    display:block;
    width:200px;
    height:36px;
    background:rgba(0,85,255,1);
    border-radius:4px;
    cursor: pointer;
    color: #fff;
    font-size:14px;
    line-height:36px;
    border: none;
    box-shadow: none!important;

    &:hover {
      color: #fff;
    }
  }

  .lb24-wp-login-desc{
    font-size: 12px;
    color: #171338;
    margin-top: 12px;
    display: inline-block;

    .lb24-wp-login-portal {
      color: #0055ff;
      box-shadow: none;
      border-bottom: 1px solid #0055ff;

      &:hover {
        box-shadow: none;
      }
    }
  }
}

.lb24-wp-loggedin {
  width: 100%;
  max-width: 640px;
  min-width: 320px; 
  height:312px;
  background:rgba(229,235,242,1);
  border-radius:4px;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
  padding-top: 64px;

  a {
    text-decoration: none;
  }

  .lb24-wp-loggedin-logo {
    width:300px;
    height:36px;
    display:block;
    margin:0 auto;
  }

  .lb24-wp-select-liveblog-btn {
    margin-top: 12px;
    width:316px;
    height:36px;
    background:rgba(0,85,255,1);
    border-radius:4px;
    cursor: pointer;
    color: #fff;
    font-size:14px;
    line-height:20px;
    border: none;
    display: block;
    margin: 48px auto 0;
  }

  .lb24-wp-create-new-btn {
    margin-top: 12px;
    width:316px;
    height:36px;
    background:rgba(0,85,255,1);
    border-radius:4px;
    cursor: pointer;
    color: #fff;
    font-size:14px;
    line-height:36px;
    border: none;
    display: block;
    margin: 16px auto;
    box-shadow: none!important;

    &:hover {
      color: #fff;
    }
  }
}

#lb24-wp-event-list-modal {
  visibility: hidden;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #999;


  .lb24-wp-event-lists > * {
    box-sizing: border-box;
  }

  .lb24-wp-event-lists {
    width: 800px;
    background: rgba(255,255,255,1);
    box-shadow: 0px 4px 20px 0px rgba(0,48,144,0.15);
    border-radius: 4px;
    box-sizing: border-box;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;

    .lb24-wp-label {
      width: 100%;
      height: 56px;
      background: rgba(229,235,242,1);
      border-radius: 4px 4px 0px 0px;
      padding: 0 24px;

      .lb24-wp-title {
        font-size: 16px;
        font-family: Lato-Regular,Lato;
        font-weight: 400;
        color: rgba(23,19,56,1);
        line-height: 56px;
      }

      .lb24-wp-close {
        float: right;
        position: relative;
        top: 20px;
        cursor: pointer;
      }
    }

    .lb24-wp-container {
      box-sizing: border-box;
      padding: 0 24px 24px;

      .lb24-wp-header {
        width: 100%;
        height: 88px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #E5EBF2;

        .lb24-wp-logo {
          width: 130px;
          height: 16px;
        }

        .lb24-wp-input {
          position: relative;
          margin-left: 16px;

          .lb24-wp-input-text {
            width: 352px;
            height: 40px;
            background: rgba(255,255,255,1);
            border-radius: 4px;
            border: 1px solid rgba(193,208,226,1);
            padding: 0 16px;
          }

          .lb24-wp-input-text:focus{
            border: 1px solid #0055ff !important;
            box-shadow: none !important;
            outline: none !important;
          }

          .lb24-wp-search {
            position: absolute;
            right: 8px;
            top: 12px;
            cursor: pointer;
          }
        }

        .lb24-wp-reload {
          margin-left: auto;
          cursor: pointer;
        }
      }

      #lb24-wp-event-loading {
        width: 16px;
        height: 16px;
        vertical-align: middle;
        color: #fff;
        position: relative; top: -2px;
        animation: lb24-wp-event-loading-more 2s linear infinite;
        display: block;
        margin: 200px auto;
      }

      @keyframes lb24-wp-event-loading-more {
        0% {
          transform: rotate(0deg);
        }
        100% {
          transform: rotate(360deg);
        }
      }

      .lb24-wp-event {
        width: 100%;
        border-bottom: 1px solid #E5EBF2;
        padding: 16px 0;

        .lb24-wp-event-info {
          display: flex;
          align-items: center;

          .lb24-wp-event-cover {
            height: 88px;
            width: 88px;
            border-radius: 4px;
          }

          .lb24-wp-event-text {
            margin-left: 24px;

            .lb24-wp-event-title {
              font-size: 16px;
              font-family: Lato-Regular,Lato;
              font-weight: 400;
              color: rgba(23,19,56,1);
              line-height: 24px;
              max-width: 442px;
              overflow: hidden;
              text-overflow: ellipsis;
              white-space: nowrap;
              margin: 0 0 9px;
            }

            .lb24-wp-event-created {
              font-size: 12px;
              font-family: Lato-Regular,Lato;
              font-weight: 400;
              color: rgba(99,114,128,1);
              line-height: 18px;
            }
          }

          .lb24-wp-event-action {
            margin-left: auto;

            .lb24-wp-event-embed {
              font-size: 12px;
              height: 36px;
              color: #171338;
              outline: none;
              box-shadow: none;
              padding: 0 30px 0 20px!important;
              border: 1px solid #000;

              &:hover {
                border: 1px solid #0055ff;
              }
            }

            .lb24-wp-event-embed:focus{
              border: 1px solid #0055ff;
            }

            .lb24-wp-event-add {
              width: 58px;
              height: 36px;
              border-radius: 4px;
              border: 1px solid rgba(0,85,255,1);
              color: rgba(0,85,255,1);
              cursor: pointer;
              margin-left: 12px;
              font-size: 12px;
              background: rgba(255,255,255,1);
            }
          }
        }

        .lb24-event-size {
          display: flex;
          align-items: center;
          height: 36px;
          flex-flow: row-reverse;

          .lb24-event-size-height {

            .lb24-event-size-height-label {
              font-size: 12px;
              font-weight: 400;
              color: rgba(23,19,56,1);
              line-height: 18px;
            }

            .lb24-event-size-height-value {
              width: 64px;
              height: 36px;
              margin-left: 8px;
            }

            .lb24-event-size-height-value:focus{
              border: 1px solid #0055ff !important;
              box-shadow: none !important;
              outline: none !important;
            }
          }

          .lb24-event-size-width {

            .lb24-event-size-width-label {
              font-size: 12px;
              font-weight: 400;
              color: rgba(23,19,56,1);
              line-height: 18px;
            }

            .lb24-event-size-width-value {
              width: 64px;
              height: 36px;
              margin: 0 32px 0 8px;
            }

            .lb24-event-size-width-value:focus{
              border: 1px solid #0055ff !important;
              box-shadow: none !important;
              outline: none !important;
            }
          }
        }
      }

      .lb24-wp-event-pagination {
        margin: 30px auto 0;
        width: 100px;

        .lb24-wp-event-previous-page {
          cursor: pointer;
          display: inline-block;
        }

        .lb24-wp-event-next-page {
          cursor: pointer;
          margin-left: 40px;
          display: inline-block;
        }
      }
    }
  }
}

.lb24-wp-edit-event {
  width: 640px;
  height: 543px;
  background: rgba(229,235,242,1);
  border-radius: 4px;
  padding: 64px 24px 32px;
  text-align: center;

  .lb24-wp-logo {
    width: 388px;
    height: 48px;
  }

  .lb24-wp-event-body {
    margin-top: 24px;
    width: 592px;
    height: 368px;
    background: rgba(255,255,255,1);
    border-radius: 4px;
    padding: 16px;

    .lb24-wp-selected-cover {
      width: 560px;
      height: 288px;
      margin: 0 auto;
      padding-top: 100px;
      border-radius: 4px;

      .lb24-wp-view, .lb24-wp-edit {
        width: 316px;
        height: 36px;
        background: rgba(0,85,255,1);
        border-radius: 4px;
        display: inline-block;
      }

      .lb24-wp-view {
        margin: 0 auto;
        color: #fff;
        line-height: 36px;
        font-size: 14px;
      }

      .lb24-wp-edit {
        margin: 16px auto;
        color: #fff;
        line-height: 36px;
        font-size: 14px;
      }
    }

    .lb24-wp-title {
      font-size: 16px;
      font-family: Lato-Regular,Lato;
      font-weight: 400;
      color: rgba(23,19,56,1);
      line-height: 24px;
      display: inline-block;
      margin-top: 16px;
      overflow: hidden;
        max-width: 100%;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
  }
}