/* Have fun adding your style here :) - PS: At all times this file should contain a comment or a rule, otherwise opera might act buggy :( */

/* General Custom CSS */
#top h1,
#top h2,
#top h3,
#top h4,
#top h5 {
	font-weight: bold !important;
	text-transform: none;
}
#top #header{
	display: none;
}

#top ol {
  list-style: none; /* quitamos numeración nativa */
  counter-reset: num;
}
#top ol li {
  counter-increment: num;
  margin-bottom: 12px;
  padding-left: 40px;
  position: relative;
}


#top ol li:before {
  content: counter(num);
  position: absolute;
  left: 0;
  top: 7px;
  width: 28px;
  height: 28px;
  background: #e0b13a;      /* color de fondo */
  color: #fff;              /* color del número */
  border-radius: 16px;       /* borde redondeado */
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
#top .list ul {
  list-style: none; /* quitamos el disc original */
  padding-left: 0;
}

#top .list ul li {
  position: relative;
  padding-left: 28px; /* espacio para el nuevo marker */
  margin-bottom: 10px;
}

#top .list ul li::before {
    content: "•";
  position: absolute;
  left: 0;
  top: 10px;
  width: 15px;
  height: 15px;
  background: #e0b13a;
  border-radius: 50%;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  color: #ffff;
  font-size: 20px;
}


/*
Desktop Styles
================================================== */
/* Note: Add new css to the media query below that you want to only effect the desktop view of your site */

@media only screen and (min-width: 768px) {
  /* Add your Desktop Styles here */

}



/*
Mobile Styles
================================================== */
/* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */

@media only screen and (max-width: 767px) {
  /* Add your Mobile Styles here */

}