@charset "UTF-8";
/* Globals */
/* Colors */
/* Z Indexes */
/* Font Styles */
/* Icons */
.home_page-container {
  display: none;
  overflow-y: hidden;
  overflow-x: hidden;
  margin-left: 90px;
}

#home_page {
  height: 100%;
}

.lp-logo {
  left: 10%;
  padding-top: 3rem;
  padding-bottom: 5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 100px !important;
  height: 50px !important;
}

.lp-logo svg {
  width: 60px !important;
  height: 60px !important;
  margin-left: 5%;
}

#sidebar.expanded .home-logo {
  width: 100% !important;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: start;
  outline: none;
}

#sidebar.expanded .home-logo .home-title {
  font-size: 23.0769230769px;
  margin-top: 1.1rem;
  padding-left: 2rem;
}

#sidebar.expanded .home-logo svg {
  margin: 1rem !important;
  margin-left: 2rem;
}

.home-logo {
  width: 65px !important;
  height: 65px !important;
  outline: none;
  padding-left: 0.5rem;
}

#sidebar.expanded .settings-logo {
  width: 100% !important;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: left;
      justify-content: left;
  padding-left: 0.5rem;
  outline: none;
}

#sidebar.expanded .settings-logo .settings-title {
  font-size: 23.0769230769px;
  margin-top: 1.1rem;
  padding-left: 2.2rem;
}

#sidebar.expanded .settings-logo svg {
  margin: 0.5rem !important;
}

.settings-logo {
  width: 65px !important;
  height: 65px !important;
  outline: none;
  padding-left: 1rem;
}

#sidebar.expanded .settings-logo:focus {
  outline: none;
  transition: background-color 1s ease;
  transition: box-shadow 1s ease;
}

#sidebar.expanded .logout-logo {
  width: 340px !important;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: start;
  bottom: 0;
  margin-bottom: 4rem;
  position: absolute;
}

#sidebar.expanded .logout-logo svg {
  margin: 1rem !important;
  margin-left: 2rem;
}

.logout-logo {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: start;
  width: 65px !important;
  height: 65px !important;
  padding-left: 0.5rem;
}

#sidebar.expanded .home-logo:focus {
  outline: none;
  transition: background-color 1s ease;
  transition: box-shadow 1s ease;
}

.logout-logo:focus {
  width: 65px !important;
  height: 65px !important;
  outline: none;
  transition: background-color 1s ease, transform 1s ease;
  transition: box-shadow 2s ease;
}

#sidebar.expanded .logout-logo .logoutt-title {
  font-size: 23.0769230769px;
  padding-left: 2.2rem;
  margin-top: 1rem;
}

.home-logo svg {
  cursor: pointer;
  margin-left: 20%;
  margin-top: 20%;
}

.config-logo {
  width: 65px !important;
  height: 65px !important;
  border-radius: 90px;
  border: 2px transparent solid;
}

.config-logo svg {
  cursor: pointer;
  width: 100px !important; /* Ancho del SVG en relación con el div */
  height: 100px !important;
  margin-left: 20%;
  margin-top: 20%;
}

#sidebar {
  z-index: 999;
  background: linear-gradient(180deg, #811926 0%, #1B0407 100%);
  width: 100px;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  color: #fff;
  overflow: hidden;
  transition: width 0.3s ease;
}
#sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  -ms-flex-align: center;
      align-items: center;
}

#sidebar ul li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  padding-top: 10px;
  padding-bottom: 10px;
  outline: none;
  transition: all 0.3s ease;
}

#sidebar.expanded ul li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: start;
}

#sidebar ul li.submenu:hover ul {
  display: block;
}

#sidebar.expanded {
  width: 350px !important;
}

#sidebar.expanded + #overlay {
  display: block;
}

#sidebar.expanded ul li {
  opacity: 1;
  transform: translateX(0);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
  animation: fadeIn 0.3s ease-in !important;
}

@keyframes glow {
  0% {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 10px rgb(255, 255, 255)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.7));
  }
  100% {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
  }
}
.glowing-svg {
  animation: glow 3s infinite;
  margin-top: 1rem !important;
  margin-right: 11.2rem !important;
  transition: filter 2s ease;
}

@keyframes slideRight {
  0% {
    left: -20%;
  }
  100% {
    left: 0;
  }
}
.glowing-svg svg {
  width: 200px !important;
  height: 200px !important;
  transition: width 1s ease;
  animation: slideRight 1s linear;
}

#sidebar ul li {
  margin-top: 0; /* Ajusta este valor para cambiar la distancia */
}

.dot-home {
  height: 10px;
  width: 10px;
  background-color: red;
  border-radius: 50%;
  display: inline-block;
}

.modal {
  display: none; /* Oculta el modal por defecto */
  position: fixed; /* Fija el modal en la pantalla */
  z-index: 1000; /* Coloca el modal sobre otros elementos */
  left: 0;
  width: 100%; /* Ancho total de la pantalla */
  height: 100%; /* Altura total de la pantalla */
  overflow: auto; /* Habilita el scroll si el contenido es demasiado largo */
  background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro semi-transparente */
  color: #fff;
}

/* Estilos para el contenido del modal */
.modal-content {
  position: relative;
  background-color: #2B2B2B;
  margin: 25% auto; /* Centra el modal verticalmente con margen superior e inferior */
  padding: 20px;
  border: 2px solid #646464; /* Borde de 2px de color #646464 */
  width: 80%; /* Ancho del contenido del modal */
  max-width: 500px; /* Ancho máximo del modal */
  border-radius: 10px; /* Bordes redondeados */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Sombra para el efecto de profundidad */
  animation: showModal 0.3s ease-out;
}

/* Animación para la aparición del modal */
@keyframes showModal {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Estilos para el título del modal */
#modal-title {
  margin: 0;
  font-size: 24px; /* Tamaño del texto del título */
  font-weight: bold;
  text-align: center;
}

/* Estilos para el texto del modal */
#modal-text {
  margin: 20px 0;
  font-size: 18px; /* Tamaño del texto del contenido */
  text-align: center;
}

/* Estilos para el botón de acción del modal */
.modal-button {
  display: block;
  width: 100px; /* Ancho del botón */
  margin: 0 auto;
  padding: 10px 20px;
  font-size: 16px; /* Tamaño del texto del botón */
  color: #fff;
  background-color: rgb(233, 80, 99); /* Color de fondo del botón */
  border: none;
  border-radius: 5px; /* Bordes redondeados */
  cursor: pointer; /* Cambia el cursor al pasar sobre el botón */
  text-align: center;
  transition: background-color 0.3s; /* Transición suave para el color de fondo */
  border: 2px solid white !important; /* Color de fondo más oscuro al pasar el cursor */
}

/* Cambio de color del botón al pasar el cursor */
.modal-button:hover,
.modal-button:focus {
  border: 2px solid orange !important; /* Color de fondo más oscuro al pasar el cursor */
}

.modal-exit {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  color: white;
}

.modal-exit-content {
  padding: 20px;
  background-color: #2B2B2B;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-exit-buttons {
  margin-top: 20px;
}

.modal-exit-buttons button {
  margin: 0 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.modal-exit-buttons .yes-btn {
  background-color: #dc3545;
  color: white;
  border: 2px solid transparent !important; /* Color de fondo más oscuro al pasar el cursor */
}

.modal-exit-buttons .no-btn {
  background-color: rgb(21, 12, 13); /* Color de fondo del botón */
  color: white;
  border: 2px solid transparent !important; /* Color de fondo más oscuro al pasar el cursor */
}

.yes-btn:hover,
.yes-btn:focus,
.no-btn:hover,
.no-btn:focus {
  border: 2px solid orange !important; /* Color de fondo más oscuro al pasar el cursor */
}

/* Video Selection Modal */
.modal-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

.modal-content {
  width: 80%;
  max-width: 600px;
  background-color: #2B2B2B;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: showModal 0.3s ease-out;
  border: 2px solid #646464; /* Borde de 2px de color #646464 */
  padding: 20px;
}

.modal-header {
  padding: 20px;
}

.modal-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.video-list {
  max-height: 400px;
  overflow-y: auto;
}

.video-option {
  padding: 20px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-bottom: 1px solid #333;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.video-option:hover, .video-option.focused {
  border: 2px solid white;
  background: var(--Primary-500, #E42D44);
}

.video-option:focus {
  outline: none;
  border: 2px solid white;
  background: var(--Primary-500, #E42D44);
}

.video-title {
  color: white;
  font-size: 18px;
  margin-left: 15px;
}

/* Scrollbar styles */
.video-list::-webkit-scrollbar {
  width: 8px;
}

.video-list::-webkit-scrollbar-track {
  background: #1a1a1a;
}

.video-list::-webkit-scrollbar-thumb {
  background-color: #333;
  border-radius: 4px;
}