body{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 100px;
    padding-left: 100px;
    background-color: #888888;
}
.wrapper{
    display: flex;
    flex-direction: column;
}
.wrapper-reverse{
    display: flex;
    flex-direction: row;    
    align-items: center;
}
.func-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
}
#title{
    margin: 0;
    margin-right: 30px;
    position: relative;
    top: 4px;
}
#dropUploadBtn{
    margin-left: 20px;
}
.container{
    display: flex;
    flex-direction: row;
}

.filebox .upload-name {
    display: inline-block;
    height: 40px;
    padding: 0 10px;
    vertical-align: middle;
    border: 1px solid #dddddd;
    width: 78%;
    color: #999999;
}

.filebox input[type="file"] {
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
}

#pastimage{
    max-width: 600px;
    border: 1px solid #ffffff;
}
#imagepath{
    width: 600px;
    outline: none;
    height: 34px;
}

.dropzone {
    width: 98%;
    margin: 1%;
    border: 2px dashed #3498db !important;
    border-radius: 5px;
    -webkit-transition: .2s;
    transition: .2s;
  }
  
  .dropzone.dz-drag-hover {
    border: 2px solid #3498db !important;
  }
  
  .dz-message.needsclick img {
    width: 50px;
    display: block;
    margin: auto;
    opacity: .6;
    margin-bottom: 15px;
  }
  
  span.plus {
    display: none;
  }
  
  .dropzone.dz-started .dz-message {
    display: inline-block !important;
    width: 120px;
    float: right;
    border: 1px solid rgba(238, 238, 238, 0.36);
    border-radius: 30px;
    height: 120px;
    margin: 16px;
    -webkit-transition: .2s;
    transition: .2s;
  }
  
  .dropzone.dz-started .dz-message span.text {
    display: none;
  }
  
  .dropzone.dz-started .dz-message span.plus {
    display: block;
    font-size: 70px;
    color: #AAA;
    line-height: 110px;
  }
  #dropupload{

  }
  #dropzone{
    width: 1200px;
  }

.gal-container{
    margin-top: 50px;
    width: 1600px;
    overflow-y: auto;
    height: 700px;
}
.image-wrapper{
    height: 250px;
    margin-bottom: 20px;
}
.images {
    width: 250px;
    height: 250px;
    display: inline-block;
    margin-right: 10px;
    position: relative;
}
.images img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img-overlay{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 250px;
    height: 250px;
    z-index: 100;
    background-color: aliceblue;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgb(236 236 236 / 62%);
    transition: .3s linear;
}
.hv:hover{
    background: rgba(0, 0, 0, 0.5);
}