

.file-upload {
  
  max-width: 600px;
  /*margin: 0 auto;*/
  padding: 20px;
}
.result {
  background-color: #ffffff;
  width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.file-upload-btn {
  width: 95%;
  margin: 0;
  color: #fff;
  background: #85d2e0;
  border: none;
  padding: 10px;
  border-radius: 4px;
  /*border-bottom: 4px solid #ffff;*/
  transition: all 0.2s ease;
  outline: none;
  text-transform: uppercase;
  font-weight: 700;
}

.file-upload-btn:hover {
  
  color: #ffffff;
  transition: all 0.2s ease;
  cursor: pointer;
  opacity: 0.8;
}

.file-upload-btn:active {
  border: 0;
  transition: all 0.2s ease;
}
.send-btn {
  margin-top: 20px;
}

.file-upload-content {
  display: none;
  text-align: center;
}

.file-upload-input {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  outline: none;
  opacity: 0;
  cursor: pointer;
}

.image-upload-wrap {
  margin-top: 20px;
  border: 4px dashed #ffff;
  position: relative;
}

.image-dropping,
.image-upload-wrap:hover {
  background-color: #85d2e0;
  border: 4px dashed #ffffff;
}

.image-title-wrap {
  padding: 0 15px 15px 15px;
  color: #222;
}

.drag-text {
  text-align: center;
}

.drag-text h3 {
  font-weight: 100;
  text-transform: uppercase;
  color: #ffff;
  padding: 60px 0;
}

.file-upload-image {
  max-height: 200px;
  max-width: 200px;
  margin: auto;
  padding: 20px;
}

.remove-image {
  width: 200px;
  margin: 0;
  color: #fff;
  background: #cd4535;
  border: none;
  padding: 10px;
  border-radius: 4px;
  border-bottom: 4px solid #b02818;
  transition: all 0.2s ease;
  outline: none;
  text-transform: uppercase;
  font-weight: 700;
}

.remove-image:hover {
  background: #c13b2a;
  color: #ffffff;
  transition: all 0.2s ease;
  cursor: pointer;
}

.remove-image:active {
  border: 0;
  transition: all 0.2s ease;
}

/* image gallery */

.gallery {
  padding: 0 0 4rem 0;
}
.grid-row {
  /* width:30%; */
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  border-bottom: solid 1px rgb(138, 138, 138);
  margin-bottom: 10px;;
  align-items: center;
  justify-content: space-between;
}
.grid-item-grow{
  flex-grow:1;
}
.grid-item > .image-container >img{

  max-width: 250px;
  max-height: 96px;
  margin:15px;
  min-width: 70px;
}

.grid-item > h4{
  color: #79d8d0;
  font-size: 2rem;
  margin: 0 40px;
}
.img-container {
  width: 300px;
  height: 200px;
  cursor: pointer;
  overflow: hidden;
}

.star_container{
  display: flex;
}
.star_container >img{
  width: 1.5em;
  height: 2rem;
}

img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  border-radius: 41px;
  /* transform: scale(1); */
  /* transition: all 0.3s ease-in-out; */
}

@supports (display:flex) {
  .gallery .grid {
    grid-gap: 1rem;
  }
}

@media screen and (max-width: 1024px) {
  .img-container {
    height: 100%;
  }
  .img-content {
    display: block;
    padding: 1rem 0;
  }

  .grid-row {
    /* width:30%; */
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    border-bottom: solid 1px rgb(138, 138, 138);
    margin-bottom: 10px;;
    align-items: center;
    justify-content: space-between;
  }
}
