  
  img{
    max-width: 100%;
    height: auto;
  }
  
  .drop__card, .drop__data{
    display: flex;
    align-items: center;
  }
  
  .drop__card{
    justify-content: space-between;
    padding: .75rem 1.25rem .75rem .75rem;
    background-color: #F8F8FC;
    box-shadow: 4px 4px 16px #E1E1E1, -2px -2px 16px #FFF;
    margin-bottom: 20px;
  }
  .drop__card:hover{
    cursor: pointer;
  }
  
  .drop__img{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 4px solid #cecece;
  }
  
  .drop__name{
    font-size: 1rem;
    color: #272A3A;
    font-weight: 500;
  }
  
  .drop__profession{
    font-size: .813rem;
    color: #8A8EAA;
  }
  
  .drop__social{
    margin: 0 .375rem;
    color: #8A8EAA;
    transition: .4s;
  }
  
  .drop__social:hover{
    color: #272A3A;
  }
  
  /* Class name for the chosen item */
  .sortable-chosen{
    box-shadow: 8px 8px 32px #E1E1E1;
  }
  
  /* Class name for the dragging item */
  .sortable-drag{
    opacity: 0;
  }
  

  .circulo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #cecece;
    display: flex;
    justify-content: center;
    padding: 8px;
  }
  
  .circulo > h2 {
    font-family: sans-serif;
    color: white;
    font-size: 12px;
    font-weight: bold;
  }
  

  /***Estilos para el boton de Eliminar**/
  .caja {
    display:inline;
    float:left;
    position:relative;
    }
    
    .barra {
    position:absolute;
    top:0;
    right:15px;
    display:none; 
    }
    .caja:hover .barra {
    display:block;
    background-color: rgba(0, 0, 0, .2);
    color: #333 !important;
    }
    .barra a.editar{
    display:block;
    padding:5px 25px 5px 20px;
    font-size:12px;
    color:#333;
    text-decoration:none;
    font-weight: bold;
    }
    
    .zmdi-delete{
    color: crimson;
    font-weight: bold;
    padding: 0px 10px 0px 0px;
    }
    
