/* =========================================================
   LINKCARDS - BOTONES PRINCIPALES
========================================================= */

.lc-spam-buttons{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
}

.lc-icon-btn{
  width:58px;
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-sizing:border-box;
  border:3px solid #d8b477;
  border-radius:50%;
  background:#3f5131;
  color:#ffffff!important;
  font-size:24px;
  line-height:1;
  text-decoration:none!important;
  box-shadow:0 6px 14px rgba(63,81,49,.22);
  transition:
    background-color .25s ease,
    color .25s ease,
    transform .25s ease;
}

.lc-icon-btn:hover,
.lc-icon-btn:focus{
  background:#d8b477;
  color:#3f5131!important;
  text-decoration:none!important;
  transform:translateY(-3px);
}

@media(max-width:991px){

  .lc-icon-btn{
    width:53px;
    height:53px;
    font-size:22px;
  }

}

@media(max-width:767px){

  .lc-icon-btn{
    width:48px;
    height:48px;
    border-width:2px;
    font-size:21px;
  }

}

@media(max-width:360px){

  .lc-icon-btn{
    width:44px;
    height:44px;
    font-size:19px;
  }

}