@charset "UTF-8";
fullscreen .hidden-section {
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  min-width: auto !important;
  width: auto !important;
  height: auto !important;
  text-align: inherit !important;
}
fullscreen .activated {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  backdrop-filter: blur(5px); /* Añade el efecto de desenfoque */
  -webkit-backdrop-filter: blur(5px); /* Soporte para navegadores WebKit */
}
fullscreen .not_activated {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}

fullscreenbtn .d_container {
  width: 32px;
  height: 32px;
  border: 1px solid transparent;
  border-radius: 5px;
  z-index: 7;
  cursor: pointer;
  display: flex;
  padding: 0px;
  justify-content: center;
  align-items: center;
  transition: border 0.3s ease;
}
fullscreenbtn .d_container:hover {
  border: 1px solid #A8A8A8;
}/*# sourceMappingURL=fullscreen.css.map */