@charset "ISO-8859-1";

.avatar-upload {
  position: relative;
  
  /*max-width: 5px;*/
  /*margin: 0px auto;*/
}
/*Faz um círculo com borda branca e sombra no objeto */
/* FINAL: Define a formatação dos objetos (label, img, div) dentro da div meu-upload */
.avatar-upload .avatar-edit {
  position: absolute;
  /*right: 12px;*/
  z-index: 1;
  /*top: 10px;*/
}

/* DESAPARECE O COMANDO UPLOAD*/
.avatar-upload .avatar-edit input[type=file] {
  display: none;
}

/* DESENHA A FORMA EM VOLTA DO LAPIS */
.avatar-upload .avatar-edit input + label {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  border-radius: 100%;
  background: #FFFFFF;
  border: 1px solid transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}
/* MUDAR DE COR QUANDO O MOUSE PASSA POR CIMA */
.avatar-upload .avatar-edit input + label:hover {
  background: #f1f1f1;
  border-color: #d6d6d6;
}

/* DESENHA O LAPIS PARA EDITAR */
.avatar-upload .avatar-edit input + label:after {
  content: "\f040";
  font-family: 'FontAwesome';
  color: #757575;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
}
