.drag_area{
  position: relative;
  overflow: hidden;
  border: 1px solid #df2b7d;
  height: 190px;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.drag_area input {
  line-height: 200px;
  font-size: 200px;
  position: absolute;
  opacity: 0;
  z-index: 10; 
}
.drag_area label{
  position: absolute;
  z-index: 5;
  opacity: 0.8;
  cursor: pointer;
  background-color: #bdc3c7;
  width: 200px;
  height: 50px;
  font-size: 20px;
  line-height: 50px;
  text-transform: uppercase;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  text-align: center; 
}
.drag_content{
  position: absolute;
  z-index: 1;
  cursor: pointer;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.drag_image_preview{
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
/*  */


.drag_area.active{
  border: 2px solid #fff;
}
.drag_area .icon{
  font-size: 100px;
  color: #fff;
}
.drag_area header{
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin: 10px 0 0;
}
.drag_area p{
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin: 10px 0 0;
  text-align: center;
}
.drag_area img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.drag_area .dwn_img{
  width: 35px;
  height: auto;
  padding: 10px 0 5px;
}
.add_event_input_out .dwn_img_link{
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
.add_event_input_out .dwn_img_link span{
  color: #df2b7d;
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
}
@media(max-width:575.98px){
  .drag_area{height: 150px; }
  .drag_area p{margin: 0}
}
