@font-face {
  font-family: logo;
  src: url("../../rg/fonts/Mont-HeavyDEMO.otf");
}
@font-face {
  font-family: r;
  src: url("../../rg/fonts/Roboto-Regular.ttf");
}
@font-face {
  font-family: b;
  src: url("../../rg/fonts/Roboto-Black.ttf");
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  display: none;
}

.usuario .img_avatar{
  cursor: pointer;
  user-select: none;
}

.item_mlc {
  cursor: pointer;
}
.menu_lc {
  border-radius: 10px;
  overflow: hidden;
  /* background-color: #e1b783; */
}

/* modal avatar */
.modal {
  width: 60%;
}

.contenedor_avatar_h .modal-body .form {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
}

.contenedor_avatar_h .avatar_img_h {
  width: 70px;
  height: 70px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #dfe2e4;
  transition: 0.2s all;
  cursor: pointer;
}

.contenedor_avatar_h .avatar_img_h img {
  width: 50px;
  height: 50px;
}

.contenedor_avatar_h .avatar_img_h.avatar_activo_h {
  background-color: #e1b783;
  border: 2px solid #e1b783;
}

.contenedor_avatar_h .avatar_img_h:hover {
  background-color: #e1b783;
  border: 2px solid #e1b783;
}

/* Modern Alert System */
#pg_alerta {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  padding: 12px 24px;
  border-radius: 12px;
  background: rgba(33, 50, 66, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(225, 183, 131, 0.4);
  color: #ffffff;
  font-family: r;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  display: flex !important;
  align-items: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#pg_alerta.active {
  opacity: 1;
  top: 40px;
  pointer-events: all;
}

.alerta-title {
  color: #e1b783;
  font-family: b;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.alerta-msg {
  font-size: 14px;
}

.alerta-msg {
  font-size: 14px;
}

