  strong {
    font-weight: 600;
  }
  
  #myDiv {
    padding: 1em;
    background: white;
    color: #888;
    transition: .3s ease-out;
    border: 2px solid transparent;
    text-align: center;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 101px;
  }
  #myDiv:after {
    content: "Arrastre las imagenes aquí";
    width: 100%;
    display: block;
    border: 1px dashed transparent;
    border-radius: 5px;
    padding: 0 .5em;
    max-height: 0;
    overflow: hidden;
    transition: .3s ease-out;
  }
  
  .dragActive #myDiv {
    border-color: #f77a0b;
  }
  .dragActive #myDiv:after {
    max-height: 500px;
    padding: .5em;
    margin-top: 1em;
    border-color: #888;
  }
  
  #myDiv.hover {
    border-color: #26a65b;
  }
  #myDiv.hover:after {
    background: #26a65b;
    border-color: white;
    color: white;
  }
  
  #file {
    display: none;
  }
  
  icon {
    font-family: fontawesome;
  }

  .title_section{
    text-align: center;
    font-weight: bold;
    font-size: 20px;
  }
  
  .title_section_subtitle{
    font-size: 16px;
    text-align: center;
    font-weight: bold;
  }

  .content_img{
      width: 33%;
    border: 1px solid #ccc;
    padding: 4px;
    border-radius: 3px;
    display: inline-block;
    margin-left: 3px;
    margin-bottom: 2px;
    height: 243px;
  }

  .content_img .img,  .content_img .img img
  {
    width:100%;
    height:89%;
  }
  
  .content_img .img button{
    margin: auto;
    display: block;
    margin-top: 7px;
    margin-bottom: 3px;
  }