#panel-header {
  text-align: left !important;
  width: 100%;
  height: 60px;
}

#panel-header span {
  margin: 30px;
  font-size: 30px;
  ;
}

#logo {
  width: 50px;
  height: 50px;
}

.display {
  display: none;
}

.block-title {
  margin: 8px 5px 5px 15px;
}

#dialog-list {
  margin-bottom: 0px;
}

.media-list {
  margin-top: 0px;
}

.demo-card-header-pic .card-header {
  height: 40vw;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.card-header:after {
  height: 0px;
}

.item-content {
  padding-left: 10px !important;
}

.item-inner {
  padding-bottom: 2px !important;
}

#comment-date {
  color: #8e8e93;
  padding: 0px 0px 10px 10px;
  margin-top: 15px;
}

#text {
  padding-left: 0px;
}

.delete-thread-dialog {
  background-color: red !important;
}

.red-text {
  color: red !important;
}

.float-left {
  margin-top: 10px;
  margin-right: 10px
}

#username {
  color: #303030;
  font-size: 11px;
  font-style: italic;
}

.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 50px;
  padding-top: 100px;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  background-color: rgb(0, 0, 0);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 700px;
}

.modal-content {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0)
  }

  to {
    -webkit-transform: scale(1)
  }
}

@keyframes zoom {
  from {
    transform: scale(0)
  }

  to {
    transform: scale(1)
  }
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: bold;
  transition: 0.3s;
}

@media only screen and (max-width: 700px) {
  .modal-content {
    width: 70%;
  }
}