.hidden {
    display: none;
}

.outlined {
    border: 3px solid red;
}

.wide {
  width: 60%;
}

input[type="text"], input[type="password"] {
  border: 1px solid #d9d9d9;
}


html,body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    height: 100%;
    background-color: #fff;
  }
  /* .nav.is-dark {
    background-color: #232B2D;
    color: #F6F7F7;
  }
  .nav.is-dark .nav-item a, .nav.is-dark a.nav-item {
      color: #F6F7F7;
  }
  .nav.is-dark .nav-item a.button.is-default {
      color: #F6F7F7;
      background-color: transparent;
      border-width: 2px;
  }
  .nav.menu {
    border-bottom: 1px solid #e1e1e1;
  }
  .nav.menu .nav-item .icon-btn {
    border: 3px solid #B7C6C9;
    border-radius: 90px;
    padding: 5px 7px;
    color: #B7C6C9;
  }
  .nav.menu .nav-item.is-active .icon-btn {
    color: #2EB398;
    border: 3px solid #2EB398;
  }
  .nav.menu .nav-item .icon-btn .fa {
    font-size: 20px;
    color: #B7C6C9;
  }
  .nav.menu .nav-item.is-active .icon-btn .fa {
    color: #2EB398;
  } */
  .messages {
    display: block;
    background-color: #f9f9f9;
    border-right: 1px solid #DEDEDE;
    padding: 1.5em 1.5em;
  }
  #messagePane {
    overflow-y: auto;
    word-wrap: break-word;
    display: flex;
    flex-direction: column-reverse;
    height: 100vh;
    margin-bottom: 2em;
  }
  #messagePaneBlock {
    display: flex;
    height: 100%;
    flex-direction: column-reverse;
  }
  @media (max-width: 500px) {
    #messagePane {
      height: 100px;
    }
  }
  .title {
    color: #6F7B7E;
    font-size: 1.5em;
    font-weight: bold;
    text-transform: uppercase;
  }
  .message {
    display:block;
    background-color: #fff;
    padding: 40px 20px;
  }
  .inbox-messages {
    margin-top:60px;
  }
  .message-preview {
    margin-top: 60px;
  }
  .inbox-messages .card {
    width: 100%;
  }
  .inbox-messages strong {
    color: #5D5D5D;
  }
  .inbox-messages .msg-check {
    padding: 0 20px;
  }
  .inbox-messages .msg-subject {
    padding: 10px 0;
    color: #5D5D5D;
  }
  .inbox-messages .msg-attachment {
    float:right;
  }
  .inbox-messages .msg-snippet {
    padding: 5px 20px 0px 5px;
  }
  .inbox-messages .msg-subject .fa {
    font-size: 14px;
    padding:3px 0;
  }
  .inbox-messages .msg-timestamp {
    float: right;
    padding: 0 20px;
    color: #5D5D5D;
  }
  .message-preview .avatar {
    display: inline-block;
  }
  .message-preview .top .address {
    display: inline-block;
    padding: 0 20px;
  }
  .avatar img {
    width: 40px;
    border-radius: 50px;
    border: 2px solid #999;
    padding: 2px;
  }
  .address .name {
    font-size: 16px;
    font-weight: bold;
  }
  .address .email {
    font-weight: bold;
    color: #B6C7D1;
  }
  .card.active {
    background-color:#F5F5F5;
  }
.modal {
  position: fixed;
  display: block;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}
.modal-content {
  background-color: #dbdbdb;
  margin: 15% auto;
  padding: 2em;
  border: 4px solid black;
  max-width: 400px;
  box-shadow: 4px 4px 0 #000;
  border: 2px solid #000000;
  border-radius: 4px;
}