/* Modal import excel */
.input-file-excel {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
  }
  .input-file-excel + label {
      background: transparent;
      color:Green;
      padding: 5px 10px;
      border: 1px solid green;
      border-radius: 5px;
      cursor: pointer;

  }

  .input-file-excel:focus + label,
  .input-file-excel + label:hover {
        color:#fff;
        background-color: green;
        transition: all .2s linear;
  }
  .info-box{
      min-height:130px;
      color:#212529;
  }
  .info-box .info-box-icon{
      min-width: 100px;
  }
  /* .info-box:hover {
    background: rgba(0,0,0,0.05);
    color:#212529;
    font-size: 1.2rem!important;
    transition: all linear 0.1s;

  } */
  .info-box:hover .info-box-icon img{
      /* transform: rotate(turn); */
      animation: inforboxHover 0.5s linear;
  }
  /* End modal inport excel */
