* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  background: #f0f2f5;
  padding-top: 78px;
}

a {
  color: #000;
  text-decoration: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  background: #000;
}

/*ESTILOS HEADER PRINCPAL*/

header {
  background-color: #fff;
  border-bottom: 1px solid #dbdbdb;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
  transition: 0.3s ease all;
  height: 77px;
}

.contenido-header {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  height: 77px;
  display: flex;
  align-items: center;
}

.anuncio {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.contenido-header div {
  flex: auto;
}

.contenido-header .logo,
.login {
  text-align: center;
}

/*ESTILOS NUEVOS PARA MOSTAR IMAGEN 
DE PERFIL EN EL BOTON MENU NAV*/

.contenido-header .login{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

/*ESTILOS LOGO*/

.contenido-header .logo span a {
  color: #252525;
  font-family: "Pacifico", cursive;
  font-size: 32px;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
}

/*ESTILOS CAJA DE BUSQUEDA GLOBAL*/

.search form {
  position: relative;
  width: 645px;
  margin: auto;
}

.search form span {
  position: absolute;
  top: 16px;
  right: 0;
  padding-right: 30px;
  color: #999999;
  background: transparent;
  font-size: 18px;
}

.search form span i:hover {
  color: #3897f0;
  cursor: pointer;
}

.search input {
  width: 99%;
  box-sizing: border-box;
  outline: 0;
  padding: 17px 0px 17px 30px;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.0975);
  border: 1px solid rgba(0, 0, 0, 0.0975);
  border-radius: 10px;
}

.search input:focus {
  border: 1px solid #3897f0;
  box-shadow: 0 1px 6px 0 rgba(56, 151, 240, 0.7);
}

.search button {
  outline: 0;
  border: 0;
}

/*ESTILOS SECTION LIST*/
#list {
  margin-bottom: 80px;
}

/*ESTILOS BOTON MENU NAV*/
.btn-menu-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border: none;
  outline: none;
  background: #e4e6eb;
  color: #252525;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: 0.5s ease all;
}

.btn-menu-nav .text-premium{
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #3a3b3c;
    color: #fff;
    border-radius: 30px;
    padding: 5px;
    text-align: center;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
}

.btn-menu-nav .wrapper-img-profile{
  overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    background: #e4e6eb;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.btn-menu-nav img{
  width: 100%;
  object-fit: cover;
}

.btn-menu-nav:hover {
  background: #f0f0f0;
}

/*ESTILOS NUEVO MENU*/
.contenedor-menu {
  visibility: hidden;
  opacity: 0;
  background: #fff;
  position: fixed;
  top: 65px;
  right: 20px;
  width: 360px;
  height: 550px;
  border-radius: 5px;
  border: 1px solid #e6e6e6;
  text-align: center;
  overflow: auto;
  transition: 0.3s ease;
  padding-bottom: 20px;
  -webkit-box-shadow: 0px 15px 107px -66px rgba(0, 0, 0, 1);
  -moz-box-shadow: 0px 15px 107px -66px rgba(0, 0, 0, 1);
  box-shadow: 0px 15px 107px -66px rgba(0, 0, 0, 1);
}

.contenedor-menu.visible {
  visibility: visible;
  opacity: 1;
}

/*ESTILOS SCROLL DEL MENU*/
.contenedor-menu::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  display: none;
}

.contenedor-menu.active {
  display: block;
  opacity: 1;
}

.notification-container.active {
  right: 0px;
}

.contenedor-menu .top-menu {
  background: #fff;
  width: 100%;
  min-height: 130px;
}

.contenedor-menu .top-menu .fondo {
  width: 100%;
  background-image: linear-gradient(to right, #9c9cf6 0%, #d6b0ff 90%);
  min-height: 130px;
}

.contenedor-menu .top-menu .avatar {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  margin-top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  box-shadow: 0px 5px 5px rgba(182, 180, 180, 0.6);
  border-radius: 50%;
  background: #fff;
}

.contenedor-menu .top-menu .avatar img {
  width: 100%;
  object-fit: cover;
}

.contenedor-menu .top-menu .avatar span {
  font-size: 30px;
  font-weight: 600;
}

.contenedor-menu .top-menu .user {
  color: #b08cf9;
  font-weight: 600;
  font-size: 20px;
  margin-top: 50px;
  overflow: hidden;
  padding: 0px 20px;
}

.contenedor-menu .top-menu .user .no-init {
  width: 100%;
  color: #252525;
  font-weight: 600;
  font-size: 14px;
}

.contenedor-menu .top-menu .linea-menu {
  display: block;
  margin: 10px auto;
  width: 90%;
  height: 2px;
  background: #e6e6e6;
}

.contenedor-menu .top-menu .container-btn-dark-mode {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  font-weight: bold;
  font-size: 14px;
  margin-top: 25px;
}

.contenedor-menu .top-menu .container-btn-dark-mode button {
  background: #e4e6eb;
  position: relative;
  border: none;
  outline: none;
  width: 50px;
  height: 25px;
  border-radius: 1000px;
  cursor: pointer;
}

.contenedor-menu .top-menu .container-btn-dark-mode button::after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: #568ddb;
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 0;
  right: unset;
  transition: 0.6s linear all;
}

.contenedor-menu
  .top-menu
  .container-btn-dark-mode
  button.active-btn-dark::after {
  left: unset;
  right: 0;
}

.contenedor-menu .top-menu .container-btn-dark-mode button.active-btn-dark {
  background: #393a3b;
}

.contenedor-menu .top-menu .btns-log-reg {
  margin-top: 15px;
}

.contenedor-menu .top-menu .btn-login {
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  border: none;
  outline: none;
  background-image: linear-gradient(to right, #9c9cf6 0%, #d6b0ff 90%);
  cursor: pointer;
  font-weight: 400;
}

.contenedor-menu .top-menu .btn-register {
  color: #9c9cf6;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #9c9cf6;
  outline: none;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
}

.contenedor-menu .bottom-menu,
.contenedor-menu .back-to-old {
  margin-top: 30px;
  color: #868e96;
}

.contenedor-menu nav {
  text-align: left;
  margin-top: 10px;
}

.contenedor-menu nav ul li {
  list-style: none;
}

.contenedor-menu nav ul li a {
  color: #868e96;
  text-decoration: none;
  display: inline-block;
  border-bottom: 1px solid #e6e6e6;
  padding: 15px 10px;
  width: 100%;
  transition: 0.3s ease all;
}

.contenedor-menu nav ul li span {
  position: absolute;
  right: 0;
  padding-right: 15px;
}

.contenedor-menu nav ul li a:hover {
  color: #b08cf9;
  background: #e6e6e6;
}

/*ESTILOS NOTIFICACIONES*/
.contenedor-menu h2 {
  text-align: left;
  margin: 20px 0px 20px 20px;
  font-weight: 900;
}

.bottom-menu.bottom-notify {
  margin-top: -80px;
}

.bottom-menu .notification {
  padding: 10px 10px;
}

.bottom-menu .notification a {
  display: flex;
  padding: 10px 15px;
  color: #98a6ad !important;
}

.bottom-menu .img-notification {
  flex-grow: 0;
  flex-shrink: 0;
  text-align: center;
  font-size: 20px;
  border: none;
  outline: none;
  background: #0a728a;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  margin-right: 10px;
}

.bottom-menu .description-notification,
.fecha-notification {
  text-align: left;
}

.description-notification p span {
  font-size: 12px;
  font-weight: 900;
}

.fecha-notification {
  margin-top: 7px;
  color: #1876f2;
  font-size: 14px;
  font-weight: 900;
}

.bottom-menu .notification a:hover {
  background: #f3f7f9;
}

/*ESTILOS MODAL UP FILE*/

.modal-up-file {
  background: #fff;
  position: relative;
  border: 1px solid #e6e6e6;
  width: 100%;
  max-width: 600px;
  height: 400px;
  padding: 30px 40px;
}

.modal-up-file .top-modal-upFile {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-grow: 0;
  flex-shrink: 0;
  overflow: hidden;
  align-items: center;
  height: 60px;
  border-width: 0px 0px 1px;
  border-color: rgb(232, 233, 236);
  background-color: rgb(244, 244, 245);
  border-style: solid;
}
.modal-up-file .top-modal-upFile p {
  position: relative;
  display: inline;
  flex-grow: 1;
  flex-shrink: 1;
  overflow: hidden;
  white-space: pre-wrap;
  overflow-wrap: break-word;
  color: rgb(40, 47, 61);
  padding-left: 20px;
  font-size: 14px;
  font-weight: 900;
}

.modal-up-file .top-modal-upFile #close-modal-up-file {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 0;
  flex-shrink: 0;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  text-align: left;
  width: 60px;
  height: 60px;
  top: 1px;
  padding: 0px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  border: none;
  outline: none;
  background: none;
}

/*OCULTA EL INPUT FILE*/
.modal-up-file #subir-new {
  display: none;
}

.modal-up-file #lbl-subir-archivo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  font-size: 50px;
  border-width: 3px;
  border-radius: 5px;
  border-style: dashed;
  border-color: #e6e6e6;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal-up-file #lbl-subir-archivo.fadeOut {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bottom-modal-upFile {
  position: absolute;
  width: 100%;
  height: 60px;
  padding: 0px 20px;
  bottom: 0;
  left: 0;
  background: #f4f4f5;
}

.bottom-modal-upFile i {
  margin-right: 5px;
  font-size: 20px;
}

.bottom-modal-upFile label {
  font-size: 14px;
  line-height: 24px;
  cursor: pointer;
}

.bottom-modal-upFile button {
  position: absolute;
  right: 0;
  display: inline-block;
  margin-right: 20px;
  width: 110px;
  height: 40px;
  border-radius: 8px;
  background: #3897f0;
  color: #fff;
  outline: none;
  border: none;
  cursor: pointer;
  opacity: 0.5;
}

.bottom-modal-upFile button.active {
  opacity: 1;
}

.options-up-file {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
}

.options-up-file .other-file-up {
  display: flex;
}

/*AGREGA CLASE FLEX PARA CENTRAR EL CONTENIDO*/
.contenido-pdf .pdf.flex-up-file {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contenido-pdf.bg-up-file {
  background: rgba(0, 0, 0, 0.671);
}

/*ESTILOS DE LOS DETALLES DEL ARCHIVO A SUBIR*/

.container-details-file {
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
}

.container-details-file.visible {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.details-file {
  position: absolute;
  left: 0;
  width: 100%;
  margin-top: 50px;
  display: flex;
  align-items: center;
  padding: 0px 0px 0px 20px;
}

.details-file span {
  font-size: 30px;
  color: #c31264;
  margin-right: 10px;
}

.container-info-file {
  overflow: hidden;
  width: 100%;
  max-width: 470px;
}

.details-file .info-file-up {
  position: relative;
  display: inline-block;
  width: 400px;
  flex-grow: 0;
  flex-shrink: 1;
  overflow: hidden;
  white-space: nowrap;
  overflow-wrap: break-word;
  line-height: 24px;
  font-size: 13px;
  color: rgb(40, 47, 61);
  text-overflow: ellipsis;
  cursor: inherit;
}

.details-file .progreso-subida {
  width: 130px;
  height: 30px;
  text-align: center;
  font-size: 14px;
  line-height: 32px;
  font-weight: 900;
}

.progreso-subida i {
  font-size: 18px;
  color: #114b19;
}

/*RESPONSIVE MODAL UPLOADFILE*/
@media (max-width: 640px) {
  .modal-up-file {
    height: 100%;
    width: 100%;
  }
}

/*ESTILOS NUEVA CAJA DE BUSQUEDA RESPONSIVE*/
.contenido-search-box {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  padding: 10px 15px;
  background: #fff;
  z-index: 2;
  border-left: 5px solid #9c9cf6;
  transition: 0.6s linear all;
}

.contenido-search-box.active {
  left: 0;
}

.contenido-search-box .search-box {
  width: 100%;
  margin: auto;
  position: relative;
}

.contenido-search-box .search-box input {
  width: 100%;
  height: 50px;
  border: 1px solid #868e96;
  outline: none;
  background: #fff;
  border-radius: 10px;
  line-height: 40px;
  padding: 0px 35px 0px 35px;
}

.contenido-search-box .search-box input:focus {
  box-shadow: 0 2px 8px 0 rgba(214, 176, 255, 0.589);
}

.contenido-search-box .btn-search:active,
.contenido-search-box .btn-left:active {
  background: transparent;
}

.contenido-search-box .btn-search {
  background: none;
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  font-size: 18px;
  color: #868e96;
  margin-left: 25px;
}

.contenido-search-box .btn-left {
  background: transparent;
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
  font-size: 18px;
  color: #868e96;
  margin-top: 11px;
  margin-left: 8px;
  z-index: 1;
}

.contenido-search-box .central {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 35px;
  outline: none;
  border: none;
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-image: linear-gradient(to right, #9c9cf6 0%, #d6b0ff 90%);
  box-shadow: 0px 5px 5px rgba(182, 180, 180, 0.6);
}

/*---------------------------------------*/

.login-premium span i:hover {
  color: #3897f0;
  cursor: pointer;
}

/*ESTILOS MINIATURAS PDF*/

.container-items-partitura {
  position: relative;
  margin: auto;
  max-width: 900px;
  min-height: 200px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 30px;
  padding: 10px;
}

.item-partitura {
  padding: 10px;
  position: relative;
}

.item-partitura .container-miniatura {
  width: 100%;
}

.item-partitura img,
.item-partitura canvas {
  width: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.item-partitura .container-miniatura p {
  line-height: 150px;
  color: #c31264;
}

.item-partitura .descripcion-partitura {
  padding: 10px;
}

.descripcion-partitura .nombre-partitura {
  color: #2196f3;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: capitalize;
}

.descripcion-partitura .subida-por {
  color: #3d3d3d;
  font-size: 12.6px;
  font-weight: 600;
}

.descripcion-partitura .detalles-partitura {
  color: #e91e63;
  display: flex;
  align-items: center;
  font-weight: 600;
  justify-content: space-between;
  font-size: 14px;
  text-transform: capitalize;
}

/*ESTILOS CONTENEDOR PRINCIPAL*/

.contenedor-principal {
  width: 100%;
}

.container-items {
  padding: 30px 40px 30px 40px;
  max-width: 750px;
  width: 100%;
  background: #fff;
  margin: auto;
  margin-bottom: 30px;
  border-radius: 25px;
}

.linea {
  margin: auto;
  background-image: linear-gradient(to right, #3494e6 0%, #ec6ead 100%);
  display: block;
  height: 3px;
  max-width: 800px;
  width: 85%;
  margin-bottom: 25px;
}

/*ESTILOS DEL BOTON SUBMENU DE LA PARTITURA*/

.btn-subMenu-partitura {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  width: 100%;
  left: 0;
  padding: 5px 15px 0px 0px;
  z-index: 1;
}

.btn-subMenu-partitura .btn-submenu {
  background: #e4e6eb;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  cursor: pointer;
}

/*ESTILOS BTN VER MAS*/

.btn-ver-mas {
  background: #2d2d2d;
  border-radius: 5px;
  padding: 15px;
  color: #fff;
  max-width: 300px;
  width: 95%;
  margin: auto;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  margin-top: 20px;
  transition: 0.3s ease all;
}

/*ESTILOS NUEVO SUBMENU PARTITURA*/

.sub-menu-partitura {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  border: 1px solid #ddd;
  background: #fff;
  z-index: 1;
  font-size: 14px;
  color: #333333;
  font-weight: 600;
  line-height: 20px;
  border-radius: 10px;
  transition: 0.3s ease all;
}

.visible {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.sub-menu-partitura ul li span {
  margin-right: 5px;
}

.bm {
  border-bottom: 1px solid #ddd;
}

.sub-menu-partitura ul {
  list-style: none;
}

.sub-menu-partitura ul li a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 16px;
}

.sub-menu-partitura ul li a:hover {
  background: #4c4a4a;
  color: #fff;
}

section h2,
h3 {
  text-align: center;
  overflow: auto;
  margin-bottom: 25px;
}

.container-items h3 {
  overflow: auto;
  text-align: center;
}

.item {
  position: relative;
  display: flex;
  border-bottom: 1px solid #d6d6d6;
  padding: 20px 25px 8px 25px;
}

.item .partitura,
.item .icon-download {
  flex: auto;
}

.item .icon-file {
  margin-right: 10px;
}

.item .icon-file i {
  font-size: 20px;
  color: #333333;
  line-height: 20px;
}

.item .pdf-file i {
  font-size: 25px;
  color: #c31264;
  line-height: 28px;
}

.item .partitura {
  font-size: 14px;
  padding: 0px 13px 0px 0px;
  color: #333333;
  font-weight: 600;
  line-height: 20px;
}

.descripcion {
  display: block;
  width: 100%;
  color: #3897f0;
  font-size: 12.6px;
  font-weight: 600;
  line-height: 28px;
  margin-left: 2px;
}

.subida-por {
  display: flex;
  align-items: center;
  color: #3d3d3d;
  font-size: 12.6px;
  font-weight: 600;
  line-height: 28px;
  margin-left: 2px;
  margin-top: -6px;
}

.subida-por p {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.dark-mode .subida-por p{
  color: #1E88E5;
}

.subida-por span i {
  font-size: 15px;
  margin-right: 5px;
}

/*NUEVOS ESTILOS SUBIDA POR CON IMAGEN DE PERFIL*/

.subida-por .img-subida-por{
  overflow: hidden;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fafafa;
  margin-right: 5px;
}

.dark-mode .subida-por .img-subida-por{
  background:#3a3b3c
}

.subida-por .img-subida-por img{
  width: 100%;
  object-fit: cover;
  border-radius: 0;
}

.dark-mode .subida-por .img-subida-por img{
  filter: brightness(0.9);
}

.item .partitura {
  text-transform: capitalize;
}

.item .icon-download {
  display: flex;
  flex-grow: 0;
  height: auto;
  margin-top: -13px;
  align-items: center;
  justify-content: flex-end;
}

.item .icon-download i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  transition: 0.4s ease;
}

.item .icon-download i:hover {
  background: #f0f0f0;
  cursor: pointer;
}

.item .btn-trash {
  position: absolute;
  display: block;
  margin-top: 23px;
  color: #ed4956;
  padding-right: 2px;
}

.ver-mas {
  margin-top: 15px;
  text-align: center;
}

.ver-mas a,
.ver-mas span {
  font-size: 14px;
  color: #3897f0;
  text-decoration: none;
  font-weight: 600;
  line-height: 28px;
  cursor: pointer;
}

.img-load {
  background-image: url("../img/load.gif");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 30px;
  height: 30px;
  display: none;
  margin-bottom: -2px;
}

.contenido-pdf .pdf .btn-in {
  position: absolute;
  right: 0;
  z-index: 4;
  background: transparent;
  padding-right: 56px;
  padding-bottom: 56px;
  cursor: pointer;
}

/*ESTILOS PDF PREVIEW MANAGEMENT*/
.contenido-pdf {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 3;
  background: rgba(255, 255, 255, 0.678);
  transition: 0.3s ease;
}

.contenido-pdf.visible {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.contenido-pdf .pdf {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 100vh;
  margin: auto;
}


/*ESTILOS NOTIFICACIONES SOCKET*/
  .modal-notification-socket {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    bottom: 40px;
    right: 20px;
    max-width: 360px;
    width: 90%;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 2px 5px 11px 7px rgba(0, 0, 0, 0.2);
    transition: .3s ease all;
    z-index: 9999;
}

.modal-notification-socket .close-notification-socket {
  text-align: center;
  background: #e4e6eb;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  right: 10px;
  top: 10px;
  font-weight: bold;
  cursor: pointer;
}

.modal-notification-socket .avatar {
  display: flex;
  align-items: center;
}

.modal-notification-socket .avatar .img-profile{
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  margin-right: 10px;
}

.modal-notification-socket .avatar .img-profile img{
  width: 100%;
  object-fit: cover;
}

.modal-notification-socket .avatar svg {
  width: 40px;
  margin-right: 10px;
}

.modal-notification-socket .user-notification {
  font-weight: bold;
}

.modal-notification-socket .description-notification {
  margin-top: 10px;
}

.modal-notification-socket .description-notification .user {
  color: #3494e6;
  font-size: 14px;
}

.modal-notification-socket .description-notification .noti-nombre-parti{
   margin-top: 10px;
   font-weight: bold;
}

.show-modal-notification-socket{
  opacity: 1;
  visibility: visible;
}

/*DARK MODE*/

/*MODAL NOTIFICATION SOCKET*/
.dark-mode .modal-notification-socket{
  background: #242526;
}

.dark-mode .modal-notification-socket .close-notification-socket{
  background: #3a3b3c;
}

.dark-mode .modal-notification-socket .avatar svg path {
  fill: #b0b3b8;
}

/*ESTILOS SEND MENSAJE ERROR*/
.contenido-mensaje-error {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.67);
  width: 100%;
  height: 100vh;
  transition: 0.3s ease;
}

.contenido-mensaje-error.visible {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.contenido-mensaje-error .mensaje-error {
  opacity: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 20px 20px;
  border-radius: 5px;
  width: 95%;
  max-width: 350px;
  margin: auto;
  transition: 0.6s ease;
}

.contenido-mensaje-error .mensaje-error.fadeOut {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.contenido-mensaje-error .mensaje-error textarea {
  display: block;
  outline: none;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #a3a3a3;
  border-radius: 5px;
  padding: 10px 20px;
  margin-bottom: 10px;
  resize: none;
  font-size: 20px;
}

.contenido-mensaje-error .mensaje-error textarea:focus {
  border: 1px solid #198194;
}

.botones {
  display: flex;
  padding: 5px;
  justify-content: space-between;
}

.contenido-mensaje-error .mensaje-error #btnSend,
#btn-cancel {
  width: 48%;
  border: none;
  outline: none;
  border-radius: 5px;
  padding: 10px;
  color: #fff;
  cursor: pointer;
}

.contenido-mensaje-error .loader {
  display: none;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contenido-mensaje-error .loader .enviando {
  visibility: visible;
  opacity: 1;
  color: #fff;
  margin-top: -20px;
  transition: 0.6s ease;
}

.contenido-mensaje-error .loader .enviando.fadeOut {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.contenido-mensaje-error .loader .lds-ellipsis.fadeOut {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.contenido-mensaje-error .loader .check {
  display: none;
  color: #fff;
  font-size: 30px;
}

#btnSend {
  background: #198194;
}

#btn-cancel {
  background: #a12626;
}

/*ESTILOS NO RESULT FOUND*/

.no-result-found {
  position: absolute;
  max-width: 800px;
  width: 100%;
  transform: translateX(-50%);
  left: 50%;
  text-align: center;
  padding: 20px 5px;
}

.no-result-found .icon-cry {
  font-size: 100px;
}

.no-result-found p {
  font-size: 32px;
}

/*LOADER SHOW MORE*/
.container-btn-show-more {
  text-align: center;
}

.container-btn-show-more .loader .lds-ellipsis div {
  background: #2d2d2d;
}

/*LOADER SEND REPORT*/
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}

.lds-ellipsis div {
  position: absolute;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 26px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 45px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(19px, 0);
  }
}

/*ESTILOS COMPARTIR UNA  PARTITURA*/

.icon-upload {
  text-align: center;
  font-size: 50px;
}

.select-file {
  text-align: center;
  margin-top: 10px;
}

.select-file label,
.select-file a {
  text-decoration: none;
  font-weight: 600;
  line-height: 28px;
  color: #3897f0;
  cursor: pointer;
}

.vista-previa {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #333333;
  display: none;
}

/*INPUT FILE*/
#usr-file {
  display: none;
}

.btn-subir input {
  font-size: 15px;
  background: #3897f0;
  color: #fff;
  margin-top: 10px;
  width: 220px;
  padding: 15px;
  border: 0;
  outline: 0;
  border-radius: 30px;
  cursor: pointer;
  line-height: 1.2;
}

.btn-subir {
  display: none;
}

/*ESTILOS GENEROS MUSICALES*/

.genero {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  line-height: 28px;
}

.genero span {
  color: #3897f0;
}

.porcentaje {
  color: #333333;
  font-weight: 600;
  margin-top: 20px;
  padding-left: 7px;
}

.subiendo {
  color: #333333;
  font-weight: 600;
  margin-top: 20px;
  margin-top: 40px;
}

.mensaje-subida {
  color: #333333;
  font-weight: 600;
  margin-top: 15px;
  font-size: 15px;
}

.porcentaje,
.subiendo {
  display: none;
}

/*LOADER SUBIR ARCHIVO*/

.lds-roller {
  transform: scale(1.2);
  display: inline-block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  margin-top: -40px;
  display: none;
}

.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 32px 32px;
}

.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3897f0;
  margin: -3px 0 0 -3px;
}

.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
  top: 50px;
  left: 50px;
}

.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
  top: 54px;
  left: 45px;
}

.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
  top: 57px;
  left: 39px;
}

.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
  top: 58px;
  left: 32px;
}

.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
  top: 57px;
  left: 25px;
}

.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
  top: 54px;
  left: 19px;
}

.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
  top: 50px;
  left: 14px;
}

.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
  top: 45px;
  left: 10px;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

footer {
  margin-top: 120px;
  padding-top: 30px;
  padding-bottom: 10px;
  font-weight: 600;
  line-height: 28px;
}

.container-contact {
  width: 100%;
  max-width: 550px;
  padding: 10px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  font-size: 12px;
}

.container-contact .item-contact {
  text-align: center;
  color: #666666;
  margin-top: 10px;
}

.container-contact .item-contact a {
  color: #666666;
}

.container-contact .item-contact .icon {
  margin-right: 5px;
}

/*RESPONSIVE FOOTER*/

@media (max-width: 590px) {
  .container-contact {
    width: 90%;
  }
}

@media (max-width: 560px) {
  .container-contact {
    display: block;
  }
}

.bad-mensaje {
  font-weight: 600;
  line-height: 28px;
  color: #e35750;
  font-size: 14px;
}

.text-center {
  text-align: center;
}

/*OCULTAR BOTON BUSCAR NAV*/
.btn-search-parti {
  display: none;
}

/*ESTILOS DEL MENU NOTIFY MANAGEMENT*/
/*ESTILOS BOTON NOTIFY*/
.btn-notify,
.btn-up-file,
.btn-search-parti,
.btn-up-file-free,
.btn-notify-free {
  position: relative;
  font-size: 20px;
  border: none;
  outline: none;
  background: #e4e6eb;
  color: #252525;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.5s ease all;
}

.btn-notify:hover {
  background: #f0f0f0;
}

.btn-notify .num-notify-management {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 8px;
  margin-right: 5px;
  background: #b61862;
  outline: none;
  border: none;
  width: 15px;
  height: 15px;
  line-height: 15px;
  font-size: 10px;
  border-radius: 50%;
  font-weight: 600;
  color: #fff;
}

.btn-notify .num-notify {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 8px;
  margin-right: 5px;
  background: #b61862;
  outline: none;
  border: none;
  width: 15px;
  height: 15px;
  line-height: 15px;
  font-size: 10px;
  border-radius: 50%;
  font-weight: 600;
  color: #fff;
  visibility: hidden;
}

.txt-center {
  text-align: center;
}

/*OCULTAR COMPONENTE NOTIFICATIONS*/
.componente-notifications {
  display: none;
}

/*ESTILOS NOTIFICATION MODAL*/

.notification-container {
  position: fixed;
  top: 0;
  right: -400px;
  padding: 40px 0px 20px 0px;
  width: 100%;
  height: 100vh;
  max-width: 300px;
  background: #fff;
  border-left: 2px solid #e6e6e6;
  transition: 0.5s linear all;
}

.notification-container .top-modal {
  text-align: center;
  padding: 15px;
  font-size: 40px;
  border-bottom: 2px solid #e6e6e6;
  margin-bottom: 25px;
}

.notification-container ul li {
  border-bottom: 1.5px solid #e6e6e6;
  list-style: none;
}

.notification-container ul li a {
  display: block;
  padding: 20px 15px;
  width: 100%;
  height: auto;
  font-weight: 600;
}

.close-notify {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 10px;
  color: #8b1b40;
  font-size: 30px;
  cursor: pointer;
}

/*ESTILOS CAJA DE BUSQUEDA INDIVIDUAL*/

.container-items .individual-search {
  width: 90%;
  text-align: center;
  position: relative;
  margin: auto;
  margin-bottom: 15px;
}

.container-items .individual-search input {
  width: 100%;
  outline: 0;
  padding: 17px 47px 17px 30px;
  border: 1px solid rgba(0, 0, 0, 0.0975);
  border-radius: 30px;
}

.container-items .individual-search input:focus {
  border: 1px solid #3897f0;
  box-shadow: 0 1px 6px 0 rgba(56, 151, 240, 0.7);
}

.container-items .individual-search button {
  position: absolute;
  background: transparent;
  width: 35px;
  height: 35px;
  font-size: 18px;
  right: 0;
  top: 0;
  margin-top: 8px;
  padding-right: 25px;
  outline: 0;
  border: 0;
  color: #999999;
}

.container-items .individual-search button i:hover {
  color: #3897f0;
  cursor: pointer;
}

/*ESTILOS DESCRIPCION REPORTES*/

.descripcion-report {
  display: none;
}

.contenido-descripcionReport {
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2;
  background: rgba(0, 0, 0, 0.377);
}

.contenido-descripcionReport .report {
  position: relative;
  width: 90%;
  max-width: 300px;
  min-height: 200px;
  background: #fff;
  border-radius: 20px;
  padding: 20px 20px 30px 20px;
  font-weight: 600;
}

.report h2 {
  font-size: 18px;
  margin-bottom: 20px;
  border-bottom: 2px solid #e6e6e6;
  padding: 0px 0px 10px 0px;
  color: #357892;
}

.report .icon-report {
  display: block;
  text-align: center;
  font-size: 32px;
  margin: auto;
  margin-bottom: 10px;
}

.report .close-modalReport {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 10px;
  margin-top: 8px;
  cursor: pointer;
  color: #b13535;
}

.logo span:nth-child(2) {
  display: none;
}

/*DARK MODE*/

body.dark-mode {
  background: #18191a;
  color: #e4e6eb;
}

/*DARK MODE HEADER*/

.dark-mode header {
  background: #242526;
  color: #e4e6eb;
  border-bottom: 1px solid #393a3b;
}

.dark-mode .contenido-header .logo span a {
  color: #e4e6eb;
}

.dark-mode .btn-notify,
.dark-mode .btn-up-file,
.dark-mode .btn-search-parti,
.dark-mode .btn-up-file-free,
.dark-mode .btn-notify-free,
.dark-mode .btn-menu-nav {
  background: #3a3b3c;
  color: #e4e6eb;
}

.dark-mode .search input {
  background: #3a3b3c;
  color: #b0b3b8;
}

.dark-mode .search input:focus {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.0975);
  border: 1px solid rgba(0, 0, 0, 0.0975);
}

.dark-mode section h2,
h3 {
  color: #e4e6eb;
}

/*DARK MODE MENU*/

.dark-mode .contenedor-menu {
  background: #242526;
  border: 1px solid #393a3b;
}

/*DARK MODE TOP MENU*/

.dark-mode .contenedor-menu .top-menu {
  background: #242526;
}

.dark-mode .contenedor-menu .top-menu .fondo {
  background-image: linear-gradient(to right, #3494e6 0%, #ec6ead 100%);
  border-bottom: 1px solid #393a3b;
}

.dark-mode .contenedor-menu .top-menu .avatar {
  background: #3a3b3c;
  color: #e4e6eb;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.0975);
}

.dark-mode .contenedor-menu .top-menu .user .no-init {
  color: #e4e6eb;
}

.dark-mode .contenedor-menu .top-menu .linea-menu {
  background: #393a3b;
}

.dark-mode .contenedor-menu .top-menu .btn-login {
  background: #3494e6;
}

.dark-mode .contenedor-menu .top-menu .btn-register {
  color: #ec6ead;
  border: 1px solid #ec6ead;
}

/*DARK MODE BOTTOM MENU*/

.dark-mode .contenedor-menu .bottom-menu {
  color: #e4e6eb;
}

.dark-mode .contenedor-menu nav ul li a {
  color: #e4e6eb;
  border-bottom: 1px solid #393a3b;
}

.dark-mode .contenedor-menu nav ul li a:hover {
  background: #393a3b;
}

/*DARK MODE NOTIFICATION*/

.dark-mode .img-notification {
  color: #e4e6eb;
  background: #393a3b;
}

.dark-mode .bottom-menu .notification a:hover {
  background: #393a3b;
}

/*DARK MODE IMG O CANVAS*/

.dark-mode .item-partitura img,
.dark-mode .item-partitura canvas {
  filter: brightness(0.5);
}

/*DARK MODE CAJA DE BUSQUEDA MOBILE*/

.dark-mode .contenido-search-box {
  background: #242526;
  border-left: 5px solid #3a3b3c;
}

.dark-mode .contenido-search-box .search-box input {
  background: #3a3b3c;
  color: #b0b3b8;
  border: none;
}

.dark-mode .contenido-search-box .search-box input:focus {
  box-shadow: 0 0 0 0 rgba(214, 176, 255, 0.589);
}

.dark-mode .contenido-search-box .central {
  background: #3a3b3c;
  color: #e4e6eb;
  box-shadow: 0px 0px 20px rgba(182, 180, 180, 0.6);
}

/*DARK MODE BTN VER MAS*/

.dark-mode .btn-ver-mas {
  background-image: linear-gradient(to right, #3494e6 0%, #ec6ead 100%);
}

/*DARK MODE BTN SUBMENU*/

.dark-mode .btn-subMenu-partitura .btn-submenu {
  background: #4b4c4f;
  color: #a8abaf;
}

/*DARK MODE SUBMENU*/

.dark-mode .sub-menu-partitura {
  background: #242526;
  border: 1px solid #2f3031;
}

.dark-mode .sub-menu-partitura ul li a {
  color: #d0d2d6;
}

.dark-mode .sub-menu-partitura ul li a:hover {
  background: #393a3b;
}

.dark-mode .bm {
  border-bottom: 1px solid #2f3031;
}

.dark-mode .icon-upload {
  color: #e4e6eb;
}

.dark-mode .item .icon-file i {
  color: #e4e6eb;
}

.dark-mode .genero {
  color: #e4e6eb;
}

.dark-mode .item {
  border-bottom: 1px solid #393a3b;
}

/*DARK MODE CONTAINER-ITEMS*/

.dark-mode .container-items {
  background: #242526;
}

/*DARK MODE DESCRIPCION PARTITURA NOMBRE*/

.dark-mode .descripcion-partitura .nombre-partitura {
  color: #e4e6eb;
}

/*DARK MODE LOADER VER MAS*/

.dark-mode .container-btn-show-more .loader .lds-ellipsis div {
  background: #e4e6eb;
}

/*DARK MODE NO RESULT FOUND*/

.dark-mode .no-result-found {
  color: #e4e6eb;
}

/*DARK MODE CONTENIDO PDF*/

.dark-mode .contenido-pdf {
  background: rgba(0, 0, 0, 0.65);
}

/*DARKMODE SUBIR ARCHIVO MODAL*/

.dark-mode .modal-up-file {
  background: #242526;
  color: #e4e6eb;
  border: 1px solid #393a3b;
}

.dark-mode .modal-up-file .top-modal-upFile {
  background: #242526;
  border-width: 0px 0px 2px;
  border-color: #393a3b;
}

.dark-mode .modal-up-file .top-modal-upFile p {
  color: #e4e6eb;
}

.dark-mode .modal-up-file .top-modal-upFile #close-modal-up-file {
  color: #e4e6eb;
}

.dark-mode .details-file .info-file-up {
  color: #e4e6eb;
}

.dark-mode .modal-up-file #lbl-subir-archivo {
  color: #e4e6eb;
  border-color: #e4e6eb;
}

.dark-mode .bottom-modal-upFile {
  background: #242526;
  border-width: 2px 0px 0px;
  border-color: #393a3b;
  border-style: solid;
}

/*DARK MODE MODAL REPORTE*/

.dark-mode .contenido-mensaje-error .mensaje-error {
  background: #242526;
}

.dark-mode .contenido-mensaje-error .mensaje-error textarea {
  background: #242526;
  color: #b0b3b8;
  border: none;
}
.dark-mode .contenido-mensaje-error .mensaje-error textarea:focus {
  border: none;
}

.dark-mode .contenido-mensaje-error #btnSend {
  background-image: linear-gradient(to right, #3494e6 0%, #ec6ead 100%);
}

/*MOSTRAR  ICONOS EN HEADER DE ACUERDO AL TAMAÑO PANTALLA*/

@media (max-width: 1119px) {
  .search {
    display: none;
  }

  .btn-search-parti {
    display: inline-block;
  }

  .contenido-header div:nth-of-type(1) {
    order: 2;
  }

  .contenido-header div:nth-of-type(2) {
    order: 1;
  }

  .contenido-header div:nth-of-type(3) {
    order: 3;
  }

  .contenido-header .login.rezise-icon {
    width: auto;
  }

  .search form {
    display: none;
  }
}
@media (max-width: 440px) {
  .logo span:nth-child(1) {
    display: none;
  }
  .logo span:nth-child(2) {
    display: inline-block;
    padding: 10px;
    border: 2px double transparent;
    border-radius: 60px;
    border-image: linear-gradient(to bottom, #85194a 0%, #4d1f69 100%) 1;
    border-radius: 52px 52px 52px 52px;
  }

  .contenido-header .logo span a {
    font-size: 20px;
    font-weight: 900;
  }
}

/*RESPONSIVE CONTENIDO PRINCIPAL*/

@media (max-width: 700px) {
  .container-items {
    width: 82%;
  }
}

@media (max-width: 649px) {
  .container-items .item {
    padding: 20px 10px 8px 10px;
  }

  .container-items {
    padding: 30px 5px 30px 5px;
    width: 95%;
  }
}

/*RESPONSIVE MENU Y NOTIFICACIONES*/
@media (max-width: 600px) {
  .contenedor-menu {
    right: 0;
    height: 100vh;
    width: 100%;
    margin-top: 11px;
  }

  .bottom-menu .notification {
    padding: 10px 0px;
  }

  .contenedor-menu {
    padding-bottom: 70px;
  }
}
