.mercadoLibre,
.tiendaNube,
.credentials{
  font-family: 'Rubik', sans-serif;
  letter-spacing: -1.10px;
  font-weight: 700;
  text-transform: lowercase;
  margin-top: 25px;
  width: 400px;
  height: 50px;
  color: rgb(255, 255, 255);
  border: none;
  outline: none;
  border-radius: 3px;
  transition: .3s;
  position: relative;
  overflow: hidden;
}

.tiendaNubeLogo{
  vertical-align: middle;
  height: 30px;
}

#meliLogo{
  vertical-align: middle;
  height: 42px;
}

.mercadoLibre{ 
  background-color: #FFE700;
  /* display: flex;
  align-items: center;
  justify-content: center; */
}
.meliBtnContent{
  color:#27337F;
}
.mercadoLibre.disabled{
  opacity: .7;
  cursor: not-allowed;
}
.meliBtnContent.loading{
  color: transparent;
}
.mercadoLibre.loading {
  color: transparent;
}
.mercadoLibre:hover{
  opacity: .85;
}


.tiendaNube{
  background-color: #2C3357;
}
.tiendaNube.disabled{
  opacity: .7;
  cursor: not-allowed;
}
.tiendaNube:hover{
  opacity: .9;
}

.mercadoLibre.loading ::after,
.tiendaNube.loading ::after {
  opacity: 1;
}

.mercadoLibre ::after,
.tiendaNube ::after {
  content: '';
  display: block;
  width: 1.7em;
  height: 1.7em;
  position: absolute;
  left: calc(50% - 0.75em);
  top: calc(50% - 0.75em);
  border: 0.25em solid transparent;
  border-right-color: white;
  border-radius: 50%;
  animation: button-anim 0.7s linear infinite;
  opacity: 0;
}

span.ripple{
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 600ms linear;
  background-color: rgba(255, 255, 255, 0.521);
}

@keyframes button-anim {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/*
  @media for button responsivity
*/
@media (max-width : 410px) {
  .mercadoLibre,
  .tiendaNube{
    height: 60px;
  }
}
