@charset "utf-8";
/* 4-monitor/terminos.css */



html, body {
  margin:0;
  display: flex;
  flex-direction: column;
  background-color:#fe5109;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}



.linea_naranja {
    width: 100%;
    height: 3px;
    background-color:#fe5109;
}




#contenedor_terminos {
    width:60%;
    height:100%;
    margin: 0 auto 0 auto;
    font-size: 100%;  
    text-align: center;
    background: rgba(255, 255, 255, 1);
    padding: 6em;
     -webkit-box-shadow: 1px 2px 6px 2px rgba(0,0,0,0.15);
    -moz-box-shadow: 1px 2px 6px 2px rgba(0,0,0,0.15);
    box-shadow: 1px 2px 6px 2px rgba(0,0,0,0.15);
}

h2 {  display: none;}


.logo_yogaencasa_terminos {
    margin-bottom: 2%;
}


.texto_terminos {
    text-align: justify;
    font-family: 'Signika', sans-serif;
    color: #333;
    margin-bottom: 15%;
}

.texto_terminos article {
    margin-bottom: 2%;
    line-height: 1.4em;
}

.titulo_terminos {
    font-family: 'Nunito', sans-serif;
    font-size: 160%;
    color:#b58683;
    text-transform: uppercase;
}

.subtitulo_terminos {
    font-family: 'Nunito', sans-serif;
    font-size: 110%;
    margin-bottom: 3%;
    color:#fe5109;
    font-weight: bold;
    text-transform: uppercase;
}


.logo_nathayoga {
    width: 10%;
}









.bot_acciones {
    padding-top: 2em;
    
}

a.descargar_term {
    color:#825350;
    font-family: 'Signika', sans-serif;
    padding: 0.1em;
    text-decoration: none;
    font-size: 100%;
    transition:all .3s
}


a.descargar_term:hover {
    color: #000;
    font-weight: bold;
}











/* Back to top button */

  #button {
  display: inline-block;
  background-color: #ff5501;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f106";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}
