*{
  -webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
}

body{
  transition: all 0.5s ease 0s;
  font-family: 'Mulish', sans-serif;
  margin:0;
  padding: 0;
  background: #ccc;
  width: 1280px;
  height: 800px;
  overflow-x: hidden;
}

h1{
  position: absolute;
  top: 40px;
  width: 100%;
  text-align: center;
  font-size: 50px;
}

p{
  position: absolute;
  top: 130px;
  width:40%;
  padding-left: 30%;
  padding-right: 30%;
  text-align: center;
  font-size: 20px;
}

.seleccion_docente{
  position: absolute;
  top: 250px;
  width: 100%;
  height: 60px;
}

.seleccion_colores{
  position: absolute;
  top: 340px;
  width: 100%;
  height: 60px;
  text-align: center;
}

#select_docente{
  margin:0 auto;
  display: block;
  width: 400px;
  border-radius: 50px;
  border: 0;
  background: #333;
  color: #fff;
  line-height: 35px;
  font-size: 25px;
  padding:15px;
}

.listado{
  font-size: 28px;
  width: 100%;
  position: absolute;
  top: 450px;
  height: auto;
  text-align: center;
  overflow-x:  hidden;
  overflow-y: hidden;
  padding-bottom: 20px;
}

#solapacategorias{
  position: fixed;
  left: 10px;
  top: 0px;
  height: 25px;
  vertical-align: top;
  margin-top: 0px;
}

#solapacategorias a{
  height: 25px;
  text-transform: uppercase;
  padding: 0px 15px 0px 15px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  line-height: 25px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  margin-right: 2px;
  display: block;
  float: left;
  background: rgba(50, 50, 50, 1);
  border-bottom: 1px solid black;
}

.elementos::-webkit-scrollbar{
  display: none;
}

.elementos{
  margin: 0px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px;
}
.listado h3{
  width: 100%;
  text-align: center;
  padding-top: 5px;
}
.listado img{
  height: 150px;
  display: block;
  margin: 15px auto;
  transition: 0.3s;
}
.listado img:hover {
  height: 170px;
}
.listado.go img{
  height: 230px;
}
.listado.go a{
  height: 260px;
}
.listado.go img:hover {
  height: 250px;
}
.listado.go .elementos {
  grid-template-columns: 1fr 1fr 1fr;
}
.listado .elementos span.number{
  display: none;
}
.listado.go .elementos a{
  position: relative;
}
.listado.go .elementos span.number{
  position: absolute;
  top: 10px;
  left: 20px;
  display: inline-block;
  height: 40px;
  width: 40px;
  border: solid 1px #fff;
  background: #323232;
  line-height: 40px;
  font-size: 22px;
  color: #fff;
  border-radius: 100%;
}
.listado a{
  text-decoration: none;
  color: #000;
  font-size: 16px;
  display: inline-block;
  height: 220px;
}

.color.selected:before{
  content:url("../star-solid.svg");
  opacity: 0.25;
  position: absolute;
  width: 40px;
  height: 40px;
  margin-left:-20px;
  margin-top: 20px;
}
.color{
  cursor: pointer;
  opacity: 1;
  display: inline-block;
  border-radius: 50px;
  margin: 5px;
  height: 80px;
  width: 80px;
  display: inline-block;
  -webkit-box-shadow: 0px 6px 36px -9px rgba(0,0,0,0.4);
box-shadow: 0px 6px 36px -9px rgba(0,0,0,0.4);
}

.color:hover{
  opacity: 1;
}
#color{
  display: inline-block;
  width: 40px;
  height: 40px;
}





svg {
  height:200px;
  width:200px;
  position:absolute;
  top: calc(50% - 100px);
  left:calc(50% - 100px);
  animation: rotate 2s infinite 4s linear;
}
svg path {
  animation: stock 2s linear ;
  animation-fill-mode: forwards;
}
@keyframes rotate  {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes stock {
  from {
    stroke-dasharray:10,1452;
  }
  to {
    stroke-dasharray:1450,1452;
  }
}
circle {
  stroke-dasharray: 0,1452;
  animation: stock 2s ease 2s;
  animation-fill-mode: forwards;
}

loader{
  position: fixed;
  background: #ccc;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5000;
  opacity:1;
}

.categoria_container{
  display: flex;
  background-image: url("../background-vex.jpg");
  height: 100%;
  width: 100%;
  position: fixed;
  background-color: #000000c4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  padding: 0px 30px;
  justify-content: center;
}
.categoria_container > .big_button:first-child{
  margin-left: 0px!important;
}
.categoria_container > .big_button{
  height: 300px;
  width: 300px;
  border: solid #292929 7px;
  border-radius: 8px;
  vertical-align: middle;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  font-weight: bold;
  background: #323232;
  color: #fff;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 18px;
  cursor:pointer;
}