#gallery {
  margin-top:10px !important;
  padding-top: 20px;
}
.grid-container {
    columns: 5 200px;
    column-gap: 1.5rem;
    width: 90%;
    margin: 0 auto;
  }
  .grid-container a {
    width: 250px;
    margin: 0 1.5rem 1.5rem 0;
    display: inline-block;
    width: 100%;
    transition: all 0.25s ease-in-out;
    border-bottom: none;
    padding: 0%;
  }
  .grid-container a:hover {
    border-bottom: none;
  }

  .grid-container a img {
    width: 100%;
    filter: grayscale(100%);
    transition: all 0.25s ease-in-out;
  }
  .grid-container a:hover img {
    filter: grayscale(0);
  }

  .gal-edit {
    display: inline-block;
    width: 250px;
    margin:10px;
  }
  .gal-edit .img-edit {
    width: 250px;
    height: 250px;
    overflow: hidden;
  }
  .gal-edit .gal-act {
    clear:both;
    margin-top: 20px;
    text-align: center;
  }
  .gal-btn {
    margin-top:5px;
    margin-left:2px;
    font-size:12px !important;
  }
  .img-del {
    display: inline-block;
    padding: 2px 3px;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 3px;
    color: #fff!important;
    background-color: #d9534f;
    border-color: #d43f3a;
    height:27px !important;
  }

  .img-del:focus {
      color: #fff;
      background-color: #c9302c;
      border-color: #761c19
  }

  .img-del:hover {
      color: #fff;
      background-color: #c9302c;
      border-color: #ac2925
  }

  .active-folder {
    color: #ff914d;
  }

  @media screen and (max-width: 736px) {
    .grid-container a img {
      filter: grayscale(0);

    }
  }


