#glrd-gallery .gallery-attachment {
  padding: 10% 0;
  text-align: center;
}
#glrd-gallery .gallery-attachment .attachment-manager {
  display: none;
}
#glrd-gallery .gallery-attachment:hover .attachment-manager {
  display: block;
}

#glrd-gallery .attachment-manager {
  top: 0;
}

#glrd-gallery .gallery-attachment img {
  transition: all .3s;
  max-width: 80%;
  height: unset;
  width: unset;
  box-shadow: 0 0 5px black;
}

#glrd-gallery .gallery-attachment:hover img {
  transform: scale(1.05);
}

@media screen and (max-width: 768px){
  #glrd-gallery {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
  }
  #glrd-gallery .gallery-attachment .attachment-manager {
	display: block;
  }
}

@media screen and (max-width: 500px){
  #glrd-gallery {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
  }
}

/**
* MODAL
*/
#glrd-attachment {
  display: flex;
  flex-wrap: wrap;
}

#glrd-attachment .attachment-image {
  flex: 1 1 calc(70% - 14px);
  margin: 0 6px;
}

#glrd-attachment .attachment-content {
  flex: 1 1 30%;
  background: #fbfbfb;
  position: relative;
  min-width: 250px;
}

#glrd-attachment .attachment-image .attachment-manager {
  position: relative;
  right: 0;
  top: 0;
}

#glrd-attachment .attachment-image img {
  width: 100%;
  object-fit: contain;
  height: auto;
  max-height: 70vh;
  margin-bottom: 12px;
}

#glrd-attachment .chat-messages {
  max-height: 365px;
}
#glrd-attachment .rcl-chat.chat-general {
  box-shadow: none;
}