@font-face {
    font-family: 'majalla';
    src: url('../fonts/majalla.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: 'esf';
    src: url('../fonts/BEsfhnBd.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

  body
  {
      font-family: majalla;
      overflow: hidden;
  }

  

  
.app
{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.app-input
{

}

.tabs-content > div, .tabs-content > fieldset
{
    display: flex;
    padding: 2px;
    /* margin: 3px; */
    border: 1px solid #6b6b6b;
    box-shadow: 0px 1px 3px 1px #888888;
    background: white;
    margin: 5px 0;
    width: 100%;
}

.app-input > textarea
{
    border: 1px solid #808080;
    margin: 5px;
    height: 30px;
    padding: 4px;
    transition: all 0.5s ease;
    font-size: 16px;
    width: 100%;
}

.app-input > div
{
    padding: 4px;
}

.app-input > textarea:focus
{
    height: 60px;
    border: 1px solid #ba1e1e;
    outline: none;
}

.app-circle
{
    height: 90px;
    flex-wrap: wrap;
}

.app-tool-bar
{
    display: flex;
    width: 100%;
    height: 60px;
    color: white;
    background-color: var(--window-active-background);
}

.app-center
{
    flex: 1;
    width: 100%;
    display: flex;
    background-color: var(--window-background);
}

.app-content
{
    width: 100%;
}

.tabs-content
{
    height: calc(100% - 160px);
    flex: 1;
    overflow: scroll;
    padding: 6px 12px;
}

.app-menu
{
    position: absolute;
    background-color: #e7e7e7;
    width: 150px;
    transition: right .5s;
    box-shadow: -4px 4px 8px 3px #cccccc;
    right: -160px;
    height: 100%;
    z-index: 100;
}

.app-menu-visible
{
    right: 0px;
    transition: right .5s;
}

.app-status-bar
{
    height: 60px;
    background-color: #262627;
    color: white;
    font-size: 19px;
    text-align: center;
    line-height: 60px;
}

.counter
{
    font-weight: bold;
    float: left;
    background: cadetblue;
    padding: 0 10px;
    border-radius: 20px;
}

.listview
{
    border-top: solid 1px #565656;
}

.listview li
{
    border-bottom: solid 1px #565656;
}

.wrapper{

}
  .shadow{
    box-shadow: 0 1px 4px 0 rgba(0,0,0,0.14);
  }
  .form textarea {
    border: none;
    height: 40px;
    min-height: 40px;
    resize: none;
    line-height: 28px;
    transition: height 0.3s ease-in-out;
  }
  .form textarea:hover{
    box-shadow: none;
  }
  .form textarea:focus{
    border: 1px solid #ddd;
    height: 150px;
    line-height: 21px;
  }
  .form .btn{
    margin-top: 2px;
  }
  .item{
    float: left;
    width: 100%;
    margin: 15px 0;
  }
  .item .label{
    margin-top: -1px;
  }

  .topic-title
  {
    font-size: 20px;
    display: flex;
    padding: 2px;
  }

  .topic-name
  {
    margin: auto;
  }
  .topic-date
  {
    color: #545454;
    margin: auto 0;
  }

  .topic-user
  {
      height: 40px;
  }

  .app-feed
  {
      display: flex;
      flex-direction: column;
  }