@charset "UTF-8";
.euler__notifications {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 260px;
  height: 100%;
  padding: 2rem 0;
  gap: 1rem;
  background-color: white;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
  overflow-y: scroll;
  overscroll-behavior-y: auto;
  -ms-scroll-snap-type: y proximity;
      scroll-snap-type: y proximity;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-animation-name: mostrarMenuNotificaciones;
          animation-name: mostrarMenuNotificaciones;
  -webkit-animation-timing-function: cubic-bezier(0.64, 0.01, 0.43, 1);
          animation-timing-function: cubic-bezier(0.64, 0.01, 0.43, 1);
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  /* Cambiamos el fondo y agregamos una sombra cuando esté en hover */
  /* Cambiamos el fondo cuando esté en active */
}
@-webkit-keyframes mostrarMenuNotificaciones {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@keyframes mostrarMenuNotificaciones {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.euler__notifications::-webkit-scrollbar {
  width: 8px; /* Tamaño del scroll en vertical */
  height: 8px; /* Tamaño del scroll en horizontal */
}
.euler__notifications::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.euler__notifications::-webkit-scrollbar-thumb:hover {
  background: #b3b3b3;
  -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}
.euler__notifications::-webkit-scrollbar-thumb:active {
  background-color: #999999;
}
.euler__notifications-back {
  width: auto;
  height: auto;
  margin-top: 1rem;
  margin-left: 2rem;
  border: none;
  outline: none;
  display: inline-block;
  background-color: transparent;
  color: rgb(190, 190, 190);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.euler__notifications-back > i {
  font-size: 2rem;
}
.euler__notifications-back:hover {
  cursor: pointer;
  outline: none;
  color: rgb(255, 45, 45);
}
.euler__notifications-back:focus {
  outline: none;
}
.euler__notifications-text {
  width: 100%;
  height: auto;
  margin-top: 1rem;
  padding: 0 2rem;
  text-align: left;
  font-family: "Schibsted Grotesk", serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: black;
}
.euler__notifications-empty {
  width: 100%;
  height: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.euler__notifications-empty > img {
  width: 80%;
  height: auto;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: inline-block;
  opacity: 0.9;
}
.euler__notifications-items {
  width: 100%;
  height: auto;
  margin: 0 auto;
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.euler__notifications-items-item {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  display: -ms-grid;
  display: grid;
  padding: 0.5rem 2rem;
  -ms-grid-columns: 2fr 0.5rem 10fr;
  grid-template-columns: 2fr 10fr;
  grid-auto-rows: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: black;
  -webkit-transition: all 0.05s ease-in;
  transition: all 0.05s ease-in;
}
.euler__notifications-items-item-pic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.euler__notifications-items-item-pic > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.euler__notifications-items-item-info {
  font-family: "Schibsted Grotesk", serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: black;
}
.euler__notifications-items-item-info-date {
  font-size: 1rem;
  font-weight: 400;
  color: rgb(146, 146, 146);
}
.euler__notifications-items-item:hover {
  background-color: rgb(238, 238, 238);
}
.euler__notifications-items-item-permalink {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}