.btn-kilo {
  background-color: hsl(0, 0%, 56%) !important;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#8e8e8e");
  background-image: -khtml-gradient(linear, left top, left bottom, from(#ffffff), to(#8e8e8e));
  background-image: -moz-linear-gradient(top, #ffffff, #8e8e8e);
  background-image: -ms-linear-gradient(top, #ffffff, #8e8e8e);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #8e8e8e));
  background-image: -webkit-linear-gradient(top, #ffffff, #8e8e8e);
  background-image: -o-linear-gradient(top, #ffffff, #8e8e8e);
  background-image: linear-gradient(#ffffff, #8e8e8e);
  border-color: #8e8e8e #8e8e8e hsl(0, 0%, 45%);
  font-weight: bold;
  color: #000000;
  text-shadow: 1px 2px 2px rgba(255, 255, 255, 0.45);
  -webkit-font-smoothing: antialiased;
  transition-property: font-family, bold ;
  transition-duration: 0.75s;

  &:hover{
    color:#171ed9 !important;
    font-family: inherit;
  }
}

.btn-container {
  padding:5px;
  height: 100%;
  padding: 1px 2px !important;
  margin: 0 !important;

  & button{
    height: 100%;
    width: 100%;
    padding: 2px;
  }
}

.btn-bit {
  display:block;
  padding:4px;
  width:2.65em;
  height:2.15em !important;
}

.mini-card {
  min-height:33em;
  height: 50%;
  padding: 3px;

  & .card {
    padding: 1px;
  }

  & .card-body {
   padding: 2px 3px;
  }

  & .card-header{
    min-height: 3em;
    padding: 6px 6px 3px 6px;
  }

  & .card-footer {
    height: 3em;
    padding: 6px 6px 3px 6px;
  }

  & .card-title {
    display: block;
    text-align: center;
    height: 100%;
    font-size-adjust: 0.48;
    padding: 1px;
    font-family: inherit;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }

  & .card-title,
  & .card-footer {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
}

.mini-card:hover > .card {
  border-color: var(--bs-danger) !important;
}


/*
=================================================
  clases para Input.html
=================================================
*/
.input-contain {
  min-height: var(--a-input-height);
  padding: 2px;

  & input{
    font-family: inherit;
    font-size: inherit;
    inset: 0;
  }
}

/*
=================================================
  clases para Button.html
=================================================
*/
.button-contain {
  padding: var( --a-padding );
  margin: none;
  width: 100%;
  height: 100%;
  min-height: inherit;
  max-height: inherit;

  & button {
    display: flex;
    justify-content: start;
    align-items: center;
    height: 100%;
    width: 100%;
  }
  & button:focus,
  & button:focus-visible,
  & button:focus-within,
  & button:hover {
   & .a-icon{
    filter: none;
    }
   & .button-caption {
    text-shadow: initial;
   }
  }
  & .button-caption{
    display: block;
    height:auto;
    font-weight: bold;
    text-transform: uppercase;
    font-size: calc(0.85em + 0.80vw);
    font-size-adjust: 0.38;
  }
}