body {
  background-color: rgba(0, 212, 145, 0.2);
  background-image: url("https://www.transparenttextures.com/patterns/type.png");
}

.dropzone {
  border: 2px dashed rgba(0, 212, 145, 1);
  border-radius: 5px;
  background: #f5f5f5;
  text-align: center;
  margin: 200px auto;

  -webkit-box-shadow: 0px 9px 10px 5px rgba(70, 69, 91, 0.34);
  -moz-box-shadow: 0px 9px 10px 5px rgba(70, 69, 91, 0.34);
  box-shadow: 0px 9px 10px 5px rgba(70, 69, 91, 0.34);
}

.dropzone img {
  width: 80%;
  text-align: center;
}

.dropzone .dz-message {
  color: rgba(0, 0, 0, .54);
  font-weight: 500;
  color: rgba(70, 69, 91, 0.7);
  font-size: 28px;
  margin-top: 0.5em;
}

#select-country {
  width: 150px;
  text-align: left !important;
}
/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
  .dropzone {
    width: 50vw;
  }
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {
  
  .dropzone {
    width: 50vw;
  }
  
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {
  
  .dropzone {
    width: 80vw;
  }
  
}