a.tooltip {
  outline: none;
}

/*
Para el texto en negritas
 */
a.tooltip strong {
  line-height: 30px;
}

a.tooltip:hover {
  text-decoration: none;
}

/*
	Para ocultar el panel del tooltip hasta que sea necesario
	*/
a {
  text-decoration: none;
}

a.tooltip span {
  z-index: 10;
  display: none;
  padding: 14px 20px;
  margin-top: 20px;
  /*-30px;*/
  margin-left: -100px;
  /*28px;*/
  width: 300px;
  line-height: 16px;
}

/*
	Para que se muestre el tooltip
	*/
a.tooltip:hover span {
  display: inline;
  position: absolute;
  color: #111;
  border: 1px solid #DCA;
  background: #fffAF0;
}

/*
	Flecha
	*/
.callout {
  z-index: 20;
  position: absolute;
  top: -12px;
  border: 0;
  left: 70px;
}

.calloutder {
  z-index: 20;
  position: absolute;
  top: 16px;
  border: 0;
  left: 70px;
}

/*
Bordes redondeados y sombra
*/
a.tooltip span {
  border-radius: 4px;
  box-shadow: 5px 5px 8px #CCC;
}

.idea {
  position: relative;
  right: -90%;
  top: 100px;
  z-index: 1;
  height: 1px;
  width: 100px;
}

.spanidea {
  /*margin-top:35px!Important;
    width:30%!Important;
    margin-left: -250px!Important;*/
  margin-top: 35px;
  width: 30%;
  margin-left: -25%;
}

/*
    CLICABLE POPUP
*/

/* Popup container - can be anything you want */
.popup2 {
  display: block !Important;

}

.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 300px;
  background-color: #fffAF0;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 14px 9px;
  /*padding: 8px 0;*/
  position: fixed;
  /*absolute;*/
  z-index: 10;
  left: 50%;
  margin-left: -80px;
}

/* Popup arrow 
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}*/

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media screen and (orientation: portrait) {

  /*(max-width:1280px) {*/
  .idea {
    position: relative;
    right: -90%;
    top: 100px;
    z-index: 1;
    height: 1px;
    width: 100px;
  }

  .spanidea {
    margin-top: 35px !Important;
    width: 60% !Important;
    margin-left: initial !Important;
    /*-10%!Important;*/
    line-height: 38px !Important;
  }
}