/* Imports */
@import url(//fonts.googleapis.com/css?family=Oswald:300);
@import url(//fonts.googleapis.com/css?family=Open+Sans);
@import url('//fonts.googleapis.com/css2?family=Quicksand&display=swap');

.has-error small{color:red;font-weight:normal;margin-left:5px;}
#jumbotron-index{margin-top:50px;background:#ffff;color:#ffff;}

html, body {
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    background: #F7F7F7;
  }

  /* Estilo Details */
details {
  border: 2px solid rgb(232, 235, 232);
  border-radius: 1rem;
}

details>summary {
  cursor: pointer;
  padding: .5rem 1rem;
  font-size: middle;
  color: #103712;
}

details>summary>* {
  display: inline;
}

details>div {
  margin-top: 0;
  padding: 1rem;
}

/* Estilo con animación para botones */
.button-fluid {
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #f7f8ed !important;
  padding: 0.7em 1.7em;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0.5em;
  background: linear-gradient(180deg, rgba(7, 137, 48, 1) 0%, rgba(12, 111, 44, 1) 100%);
  border: 1px solid #078930;
  box-shadow: 0px 0px 10px 2px rgba(128, 128, 128, 0.600);
}

.button-fluid:active {
  background: #003312;
  box-shadow: 0px 0px 10px 2px rgba(128, 128, 128, 0.600);
}

.button-fluid:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 20, 7, 0.200);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button-fluid:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #EEFFF2;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button-fluid:hover {
  color: #1e2211 !important;
  transition: 0.5s;
  border: 1px solid #EEFFF2;
  box-shadow: 0px 0px 10px 2px rgba(0, 20, 7, 0.500);
}

.button-fluid:hover:before {
  top: -35%;
  background-color: #EEFFF2;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.button-fluid:hover:after {
  top: -45%;
  background-color: #EEFFF2;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}