@charset "utf-8";
/* CSS Document */


.container_button {
  width: 340px;
  text-align: center;
  padding-top:8px;
}
.button-tv,.button-tv2 {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 10rem;
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.10rem;
  transition: all 0.3s;
  position: relative;
/*  overflow: hidden;*/
  z-index: 1;
  font-family: Arial;
  text-decoration: none;
  font-weight:600;
  }
  a.button-tv,a.button-tv2 {
  color:#fff; text-decoration:none;
  }
  .button-tv:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #2300c1;
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}
.button-tv:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #015FFF;
  border-radius: 10rem;
  z-index: -2;
}

.button-tv2:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffce00;
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}
.button-tv2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f80018;
  border-radius: 10rem;
  z-index: -2;
}
.button-tv:hover, .button-tv2:hover{
  color: #fff;
}
.button-tv:hover:before,.button-tv2:hover:before {
  width: 100%;
}
