

/** TinyMCE */
.mce_upload {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    background: rgba(0, 0, 0, 0.2);
  }

  .mce_upload_box {
    margin: auto;
    width: 400px;
    max-width: 90%;
    background: #FFFFFF;
    padding: 30px;
    text-align: center;
    border-radius: 4px;
  }

  .mce_upload_box label.legend {
    margin-bottom: 15px;
  }

  .mce_upload_box .btn {
    width: 100%;
  }

  textarea.mce {
    font-size: 0.875em;
  }

  .ajax_response {
    z-index: 6;
    position: fixed;
    padding: 20px 20px 0 0;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 100%;
  }
  .ajax_response .message {
    background: #333333;
    font-size: 0.8em;
    font-weight: 400;
    border-radius: 4px;
    color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 15px 15px 20px 15px;
    margin-bottom: 15px;
    position: relative;
    cursor: pointer;
  }
  .ajax_response .message:before {
    flex-basis: 0%;
    margin: -5px 15px 0 0 !important;
    font-size: 2.4em;
    color: rgba(0, 0, 0, 0.5);
  }
  .ajax_response .message.success {
    background: #36BA9B;
  }
  .ajax_response .message.info {
    background: #39AED9;
  }
  .ajax_response .message.warning {
    background: #F5B946;
  }
  .ajax_response .message.error {
    background: #D94352;
  }
  .ajax_response .message_time {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 4%;
    height: 5px;
    background: rgba(0, 0, 0, 0.5);
  }

  @media (max-width: 30em) {
    .ajax_response {
      width: 100%;
      padding: 20px 20px 0 20px;
    }
  }
