
html, body {
  margin: 0px;
  padding: 0px;
  user-select: none;
  -webkit-user-select: none;
  cursor: default;
  font-family: ADLaM Display !important;
  font-size: 24px;
  color: white;
  background-color: #4B0082;}

a {
  color: white;
  text-decoration: none;
  cursor: pointer !important;
}

a:hover {
  color: gray;
}

::-webkit-scrollbar {
  width: 20px;
}

::-webkit-scrollbar-track {
  background-color: white;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #421D62;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #35174F;
}

#header {
  width: 100%;
  height: 120px;
  position: fixed;
  top: 0px;
  left: 0px;
  user-select: none;
  -webkit-user-select: none;
  cursor: default;
  background-color: #483D8B;
  z-index: 99;
  font-family: ADLaM Display;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

#logo {
  color: white;
  width: auto;
  font-size: 50px;
  line-height: 120px;
  padding-left: 15px;
  float: left;
}

#menu {
  width: auto;
  height: 120px;
  line-height: 120px;
  float: right;
  margin-right: 15px;
  font-size: 32px;
}

.item {
  width: auto;
  float: left;
  margin-left: 15px;
  text-align: center;
}

.submenu {
  background-color: #533699;
  border-top: 3px solid white;
  line-height: 32px;
  font-size: 24px;
  padding: 10px;
  display: none;
}

.lista_submenu {
  list-style: none;
  margin: 0px;
  margin-top: 10px;
  padding: 0px;
}

.item:hover {
  color: gray;
}

.item:hover .submenu {
  display: block;
}

.item:hover .subitem {
  color: white;
}

.subitem {
  margin-bottom: 15px;
}

.boton_lenguaje {
  border: none;
  background-color: #533699;
  color: white;
  font-size: 24px;
  font-family: ADLaM Display;
  cursor: pointer !important;
}

.boton_lenguaje:hover {
  color: gray;
}

#imagen_barras {
  width: 80px;
  height: 80px;
  margin-top: calc(calc(120px - 80px) / 2);
  margin-right: 35px;
  float: right;
  display: none;
  cursor: pointer !important;
}

#menu2 {
  width: 350px;
  height: calc(100% - 120px);
  top: 120px;
  right: 0px;
  position: fixed;
  display: none;
  font-size: 22px;
  color: white;
  background-color: #512479;
  border-top: 3px solid white;
  z-index: 4;
  overflow-y: auto;
}

.item2 {
  padding: 7.5px;
  display: block;
}

.item2:hover {
  background-color: gray;
  color: white !important;
  cursor: pointer !important;
}

.flecha_submenu2 {
  float: left;
  margin-right: 5px;
  border: solid white;
  border-width: 0 3px 3px 0;
  margin: 10px;
  margin-left: 0px;
  padding: 3px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  cursor: pointer !important;
}

.subitem2 {
  margin-top: 5px;
  padding: 7.5px 0px;
  padding-left: 20px;
  font-size: 18px;
  color: white !important;
  display: none;
}

.subitem2:hover {
  background-color: gray;
}

.item2 .subitem2:hover {
  background-color: #404040 !important;
}

.subitem2:hover .boton_lenguaje2 {
  background-color: gray;
  cursor: pointer !important;
}

.boton_lenguaje2 {
  border: none;
  color: white;
  font-size: 18px;
  font-family: ADLaM Display;
  background-color: inherit;
}

.item2 .subitem2:hover .boton_lenguaje2 {
  background-color: #404040 !important;
}

.enlace_menu2:hover {
  color: white !important;
  text-decoration: underline;
}

#caja_cookies {
    width: 100%;
    bottom: -280px;
    position: fixed;
    z-index: 100;
    background-color: #483D8B;
}

#popup_cookies {
    width: 100%;
    height: 120px;
    line-height: 120px;
    font-size: 22px;
    text-align: center;
}

.boton_cookies {
    font-size: 22px;
    font-family: ADLaM Display;
    margin-left: 5px;
    margin-right: 15px;
    padding: 10px;
    border: none;
    background-color: #0099FF;
    color: white;
    text-align: center;
    cursor: pointer;
}

.boton_cookies:hover {
    background-color: #007ACC;
}

#caja_info_cookies {
    width: 100%;
    height: 160px;
    text-align: center;
    background-color: #512479;
    display: flex;
    z-index: 100;
}

#info_cookies {
    width: 70%;
    margin-left: 15%;
    box-sizing: border-box;
    font-size: 22px;
    align-content: center;
}

.mostrarPopup {
    animation-fill-mode: forwards;
    animation-name: hacerPopup;
    animation-duration: 3s;
    animation-delay: 2s;
    animation-iteration-count: 1;
}

.mostrarInfoPopup {
    animation-fill-mode: forwards;
    animation-name: mostrarInfoPopup;
    animation-duration: 3s;
    animation-iteration-count: 1;
}

.quitarPopup {
    animation-fill-mode: forwards;
    animation-name: ocultarPopup;
    animation-duration: 3s;
    animation-iteration-count: 1;
}

.quitarPopupGrande {
    animation-fill-mode: forwards;
    animation-name: ocultarPopupGrande;
    animation-duration: 3s;
    animation-iteration-count: 1;
}

#parte_inferior {
  margin-top: 120px;
}

@keyframes hacerPopup {
    0% {
        bottom: -280px;
    }
    
    100% {
        bottom: -160px;
    }
}

@keyframes mostrarInfoPopup {
    0% {
        bottom: -160px;
    }
    
    100% {
        bottom: 0px;
    }
}

@keyframes ocultarPopup {
    0% {
        bottom: -160px;
    }
    
    100% {
        bottom: -280px;
    }
}

@keyframes ocultarPopupGrande {
    0% {
        bottom: 0px;
    }
    
    100% {
        bottom: -280px;
    }
}

@media screen and (min-width: 601px) and (max-width: 900px) {
    #popup_cookies {
        font-size: 14px;
        height: 100px;
        line-height: 100px;
    }
    
    .boton_cookies {
        font-size: 14px;
        margin-right: 10px;
    }
    
    #caja_info_cookies {
        height: 120px;
    }
    
    #info_cookies {
        font-size: 14px;
    }
}

@media screen and (max-width: 600px) {
    #popup_cookies {
        font-size: 11px;
        height: 80px;
        line-height: 80px;
    }
    
    .boton_cookies {
        font-size: 11px;
        margin-right: 5px;
    }
    
    #caja_info_cookies {
        height: 100px;
    }
    
    #info_cookies {
        font-size: 11px;
    }
}

@media screen and (min-width: 1301px) {
  #menu2 {
    display: none !important;
  }
}

@media screen and (max-width: 1300px) {
  #menu {
    display: none;
  }

  #imagen_barras {
    display: block;
  }
}

@media screen and (max-width: 650px) {
  #logo {
    font-size: 34px;
  }
}
