@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("https://unpkg.com/boxicons@2.1.1/css/boxicons.min.css");
*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif !important;
}
body{
    background: #efefef;
    display: flex;
    height: 100vh;
    align-items: center;
}
.btnQrShare{
    background: #141414;
    color: #ffff;
    height: 35px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 10px;
    font-size: 14px;
}
a{
    text-decoration: none !important;
}
/* ALERTA */
.alert-message {
    position: fixed;
    top: -110%;
    left: 50%;
    transform: translate(-50%,-50%);
    margin: 0 auto;
    background: #ffff;
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    transition: all 0.5s ease;
  }
  .alert-message p {
    font-size: 14px;
  }
header{
    border-radius: 0 30px 30px 0;
    background: #efefef;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    width: 270px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all .5s ease;
}
header .profile-top{
    width: 100%;
    display: flex;
    flex-direction: column;
      margin-bottom: 25px;
    align-items: center;
    
}
.menu_activated{
    display: none;
}


.imagen-perfil{
    height: 90px;
    width: 90px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 3px solid #d4d4d4;
    padding: 2px;
    object-fit: cover;
}
.imagen-perfil-avatar{
    height: 90px;
    width: 90px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 3px solid #d4d4d4;
    padding: 2px;
    display: flex;
    justify-content: center;
    background: rgb(38, 108, 169);
    font-size: 40px;
    color: #FFFF;
    align-items: center;
    font-weight: 600;
}
header .profile-top span{
    font-size: 25px;
    font-weight: 600;
}
header .profile-top p{
    font-size: 13px;
    text-align: center;
    margin:-3px 10px 20px 10px;
}
header .enlaces{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

}
header .enlaces .shop{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

header .enlaces .shop a{
    height: 50px;
    width: 80%;
    display: flex;
    align-items: center;
    border-radius: 8px;
    font-size: 16px;
    color: #141414;
    margin-bottom: 15px;
    font-weight: 600;
}
header .enlaces .shop a i{
    height: 100%;
    background: #FFFF;
    color: #141414;
    width: 50px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin-right: 15px;

}
header .enlaces .config-menu{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}
header .enlaces .config-menu a{
    height: 50px;
    width: 80%;
    display: flex;
    align-items: center;
    border-radius: 8px;
    font-size: 16px;
    color: #141414;
    margin-bottom: 15px;
    font-weight: 600;
}
header .enlaces .config-menu a i{
    height: 100%;
    background: #FFFF;
    color: #141414;
    width: 50px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin-right: 15px;

}
@media (max-width:860px){
  header{
      left: -110%;
  }
  
}