:root {
    --colorAzul: 27, 101, 163;
    --colorBeige: 235, 235, 225;
    --colorBeigeDark: 196, 196, 188;
}

* {
    box-sizing:border-box;
/*    font-family:'Roboto';
    font-weight:300;
*/}

a {
    cursor: pointer;
}

a:link {
  color: red;
}

a:visited {
  color: green;
}

p {
    margin:0;
}

.trans_opacity_0 {
  /* For Safari 3.1 to 6.0 */
  -webkit-transition-property: opacity;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-in-out;
  -webkit-transition-delay: 0s;
  /* Standard syntax */
  transition-property: opacity;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
   opacity: 0;
}

.trans_opacity_1 {
  /* For Safari 3.1 to 6.0 */
  -webkit-transition-property: opacity;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-in-out;
  -webkit-transition-delay: 0s;
  /* Standard syntax */
  transition-property: opacity;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
   opacity: 1;
}

html {
    margin: 0px;
    padding: 0px;
    border: 0px;
    background: rgba(var(--colorBeige), 1);
}

body {
    margin: 0px;
    padding: 0px;
    width:100%;
}

.containercentrador {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    margin: 0px;
}

.leftblock {
    display:inline-block;
    margin: 0px;
    padding: 0px;
}

.centerblock {
    display:inline-block;
    position:relative;
    margin: 0px;
    padding: 0px;
    text-align:center;
}

.rightblock {
    display:inline-block;
    margin: 0px;
    padding: 0px;
    text-align:right;
}

.spacer4000 {
	height: 4000px;
    position: relative;
    top:0px;
    margin:0px;
    padding:0px;
}

.spacer2500 {
	height: 2500px;
    position: relative;
    top:0px;
    margin:0px;
    padding:0px;
}

.spacer2000 {
	height: 2000px;
    position: relative;
    top:0px;
    margin:0px;
    padding:0px;
}

.spacer1500 {
	height: 1500px;
    position: relative;
    top:0px;
    margin:0px;
    padding:0px;
}

.spacer1000 {
	height: 1000px;
    position: relative;
    top:0px;
    margin:0px;
    padding:0px;
}

.spacer800 {
	height: 800px;
    position: relative;
    top:0px;
    margin:0px;
    padding:0px;
}

.spacer400 {
	height: 400px;
    position: relative;
    top:0px;
    margin:0px;
    padding:0px;
}

.spacer250 {
	height: 250px;
    position: relative;
    top:0px;
    margin:0px;
    padding:0px;
}
.spacer200 {
	height: 200px;
    position: relative;
    top:0px;
    margin:0px;
    padding:0px;
}

.spacer100 {
	height: 100px;
    position: relative;
    top:0px;
    margin:0px;
    padding:0px;
}

.spacer50 {
	height: 50px;
    position: relative;
    top:0px;
    margin:0px;
    padding:0px;
}

.spacer25 {
	height: 25px;
    position: relative;
    top:0px;
}

.spacer15 {
	height: 15px;
    position: relative;
    top:0px;
    margin:0px;
    padding:0px;
}

.spacer10 {
	height: 10px;
    position: relative;
    top:0px;
}
.spacer0 {
	height: 0px;
    position: relative;
    top:0px;
}

.autoSpacer {
    height:calc(100vh + 500px);
}

.disable{
    display: none;
}

.enable {
    display:inherit;
}

.fitV {
    height:100%;
    width:100%;
    object-fit:contain;    
}

.fitH {
    height:100%;
    width:100%;
    object-fit:contain;    
}

.fillV {
    height:100%;
    width:auto;
    object-fit:cover;    
}

.fillH {
    width:100%;
    height:auto;
    object-fit:cover;    
}

.marco {
    border-style:solid;
    border-width:3px;
}

.rojo {
    border-color:red;
}

.verde {
    border-color:green;
}

.amarillo {
    border-color:yellow;
}

.negro {
    border-color:black;
}

.blanco {
    border-color:white;
}

.marron {
    border-color:brown;
}

.azul {
    border-color:blue;
}

/*///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/* :::::::::::::::::::::::::::::::::::::::::::::::: Aquí empieza el styling :::::::::::::::::::::::::::::::::::::::::::::::: */


#fondomenu{
    width:120vw;
    height:60px;
    background:black;
    border-style: solid;
    border-width: 1px;
    border-color:rgba(var(--colorBeige), 1);
    position:fixed;
    top:0%;
    left:0%;
    transform: translate3d(-10%, -10%, 0);
    margin:0;
    z-index:300;
    }
    
#wrappermenu {
    width:90%;
    height:50px;
    position:fixed;
    top:10px;
    left:50%;
    transform: translate3d(-50%, 0%, 0);
    z-index:400;
}

.nav a {
    color: rgba(var(--colorBeige), 1);
    text-align:center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: calc(0.9em + 0.9vw);
    font-weight:300;
    font-family:'Open Sans Condensed';
}

.L {
    float: left;
}

.R {
    float: right;
}

.particles-js_dark {
    width:100%;
    height:100%;
    position:fixed;
    top:0;
    left:0;
    background:none;
    z-index:100;
}

#fondo {
    width:100%;
    display:block;
    margin-left:auto;
    margin-right:auto;
    padding:0;
}

#separador_inicial {
    height:100px;
}

.maintitle {
    font-family: 'Advent Pro';
    font-weight:200;
    color: white;
    font-size: calc(1.6em + 2.6vw);
    text-align:center;
    text-shadow: rgba(250, 250, 250, 1) 0px 0px 8px;
    line-height:100%;
    padding-top: 120px;
    padding-bottom: 10px;
    box-shadow: rgba(0,0,0, 0.5) 0px 3px 3px;
    background: rgba(var(--colorAzul), 1);
    transform:translate3d(0,0,0);
}

#presentacion {
    width:100%;
    
    padding-top:50px;
    padding-left:100px;
    padding-right:100px;
    transform:translate3d(0,0,0);
}

.text_general {
    font-family:'Roboto';
    font-weight:300;
    font-size: calc(0.8em + 0.8vw);
    color: black;
    text-align:center;
    margin:auto;
}

#rellenoBig {
    width:100%;
    height:200px;
    overflow:hidden;
    position:fixed;
    top:50px;
    left:0;
    box-shadow: rgba(0,0,0, 0.5) 0px 3px 3px;
    background: rgba(var(--colorAzul), 1);
}

.encuadreBig {
    width:100%;
    height:auto;
    transform:translate3d(0,-30%,0);
}

#TDB {
    position:absolute;
    left:50%;
    top:0;
    transform:translate3d(-50%,-90%,0);
/*  relacion de aspecto logo: 3,1 a 1 */
    width:18vw;
    height:5.8vw;
    min-width:115px;
    min-height:37px;
    max-width:160px;
    max-height:51.6px;
}

#letras_TDB {
    width: 30%;
    margin-left:auto;
    margin-right:auto;
    width:18.6vw;
    height:auto;
    min-width:140px;
    max-width:180px;
}

.tipotdb {
    font-family:'Open Sans Condensed';
    font-weight:300;
    color:black;
}

.tipoleitmotiv {
    font-family:'Nanum Gothic';
    font-weight:100;
    stroke:rgba(200, 200, 200, 1);
    stroke-width:0.8;
}

.logoabajo {
    position:fixed;
    bottom:5px;
    left:50%;
    transform:translate3d(-50%,0,0);
    z-index:200;
}

.sec{
    width:100%;
    height:100vh;
}

.beigePanel {
    background:rgba(var(--colorBeige), 1);
}

.wrapper_beigePanel {
    padding: 100px 5% 0 5%;
}

.def_word {
    font-family:'Cormorant Garamond', serif;
    font-weight: 600;
    line-height:100%;
    color: rgba(var(--colorAzul), 1);
    font-size:calc(1.8em + 1.8vw);
    text-align:left;
    margin:0;
    padding:0;
}

.def_pron {
    font-family:'Roboto';
    font-weight:300;
    color: black;
    font-size:calc(0.8em + 0.8vw);
    text-align:left;
    margin:10px 0 10px 0;
    padding:0;
    text-decoration-line: underline;
}

.beigePanel strong {
    font-weight: 400;
}

.imgBeigePanel {
    max-width:450px;
    max-height:250px;
    min-width:250px;
    min-height:150px;
    display:block;
    margin-right:0;
    margin-left:auto;
}

.titleBeigePanel {
    font-family:'Roboto';
    color:rgba(var(--colorAzul), 1);
    font-size:calc(1em + 1vw);
    text-align:left;
    padding:0;
    font-weight:400;
    font-style:italic;
    margin: 10px 0 10px 0;
}

.textBeigePanel {
    font-family:'Roboto';
    font-weight:300;
    color: black;
    font-size:calc(0.8em + 0.8vw);
    text-align:left;
    padding:0;
}

.cuarentaycinco {
    width:45%;
    margin-top:0;
    margin-bottom:auto;
}

.veintep {
    width:20px;
}

.bluePanel {
    background: rgba(var(--colorAzul), 1);
    color: rgba(var(--colorBeige), 1);
}

.bluePanel .question img {
    display:block;
    height:40vh;
    margin-right:auto;
    margin-left:auto;
}
    
.wrapper_bluePanel {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate3d(-50%,-50%,0);
    width:70vw;
}

.question {
    font-size:calc(4vw + 3em);
    font-style:italic;
    padding-right:5%;
    font-family:'Roboto';
    font-weight:300;
    text-align:right;
    font-weight:100;
    margin-top:20px;
    }

.answer{
    font-family:'Roboto';
    font-weight:300;
    font-size:calc(1.5vw + 1em);
    font-weight:100;
    padding-left:5%;
    text-align: left;
    }

.linea {
    width:1px;
    min-width:1px;
    max-width:1px;
    height:300px;
    background-color: rgba(var(--colorBeige), 1);
}

.fraseGran {
    width:100%;
    height:100vh;
    padding:20px 20px 20px 20px;
}

.fraseGran p {
    font-family:'Roboto';
    font-weight:300;
    text-align:center;
    font-size: calc(1.4vw + 1.4em);
    color: rgba(var(--colorAzul), 1);
    position:absolute;
    top:50%;
    left:50%;
    transform:translate3d(-50%,-50%,0);
    font-weight:100;
    font-style:italic;
}

#fr5 p{
    font-size: calc(3vw + 3em);
}

.legend {
    font-family:'Arial';
    font-weight:300;
    font-size:10px;
}

#animacion {
    width: 60vw;
    height: 41.21vw;
    min-width:320px;
    min-height:220px;
    max-width:500px;
    max-height:344px;
}

.parallaxContainer {
    width:100%;
    height:100%;
    position:fixed;
    top:0px;
    left:0px;
}

.layer1 {
    background-image: url("../img/billetes_peques.png");
    background-repeat:no-repeat;
    background-position:center -1150px;
    width:100%;
    height:100%;
    position:absolute;
}

.layer2 {
    background-image: url("../img/billetes_medianos.png");
    background-repeat:no-repeat;
    background-position:center -850px;
    width:100%;
    height:100%;
    position:absolute;
}

.layer3 {
    background-image: url("../img/billetes_grandes.png");
    background-repeat:no-repeat;
    background-position:center -850px;
    width:100%;
    height:100%;
    position:absolute;
}

.manos{
    width:50%;
    min-width:300px;
    position:fixed;
    top:0;
    transform: translate3d(0,60px,0);
    z-index:700;
}

.roja{
    left:0;
}

.azul{
    right:0;
}

#wrapperElection {
    width:50%;
    height:calc(100vh - 50px);    
    position:fixed;
    top:0px;
    left:50%;
    padding:50px 0 0 0;
    transform:translate3d(-50%,0,0);
    z-index:600;
    margin-top:50px;
}

#election {
    width:100%;
    position:relative;
}

#election p {
    font-family:'Roboto';
    font-weight:300;
    margin:0 0 16px 0;
    font-size:calc(0.8em + 0.8vw);
}

.benegre {
    color:rgba(var(--colorBeige), 1);
}

.orderNumber {
    width:35px;
    height:35px;
    border-radius:20px;
    border-color:rgba(var(--colorBeige), 1);
    border-width:2px;
    border-style:solid;
    display:inline-block;
    position:relative;
    margin-left:50%;
    transform:translate3d(-100%,0,0);
    margin-bottom:10px;
    text-align:center;
    background:rgba(var(--colorBeige), 1);
}

.orderNumber p {
    font-family:'Roboto';
    font-weight:300;
    text-align:center;
    padding:0;
    margin:0;
    transform:translate3d(0,16px,0);
    color:black;
    font-weight:400;
    line-height:0;
}

adnumber {
    display:none;
}

#demo strong {
    color:red;
}

#separador_demo {
    height:50px;
}

#wrapper_demo {
    background-color: rgba(var(--colorAzul), 1);
    box-shadow: rgba(0,0,0, 0.5) 0px 3px 3px;
}

.demo_section {
    width:80%;
    min-width:280px;
    display:block;
    padding:3%;
    margin-left:auto;
    margin-right:auto;
    margin-top: 50px;
    background-color: rgba(var(--colorBeigeDark), 0.45);
}

.demo_section p {
    font-family:'Roboto';
    font-weight:300;
    font-size:calc(0.8em + 0.8vw);
    line-height:110%;
}

.vAlign {
    margin: auto; 
    text-align: left;
    width:100%;
}

.selector {
    width:70vw;
    min-width:280px;
    max-width: 600px;
    min-height:230px;
    padding:80px;
    position:fixed;
    top:50%;
    left:50%;
    transform:translate3d(-50%,-50%,0);
    background:rgba(var(--colorBeigeDark), 0.45);
    z-index:1000;
}

.innerSelector {
    width:80%;
    height:80%;
    position:absolute;
    top:0;
    left:50%;
    transform: translate3d(-50%,8%,0);
}

.panel {
    width:100%;
    height:25%;
    position:fixed;
/*    display:flex;*/
    display:block;
    left:0;
    margin: auto;
    padding:15px;
    font-weight:300;
    font-size:calc(0.8em + 0.8vw);
    line-height:110%;
    color:rgba(var(--colorAzul), 1);
    background:rgba(var(--colorBeige), 0);
    text-align: left;    
/*    align-items: center;*/    
    cursor:pointer;
}


.panel a {
    text-decoration:none;
    color:rgba(var(--colorAzul), 1);
}

.icon {
    width:35px;
    height:35px;
    min-width:35px;
    position:absolute;
    left:0;
    }

.item_text {
    font-family:'Roboto';
    font-weight:300;
    position:absolute;
    left:50px;
    top:70%;
    transform:translate3d(0,-50%,0);
}

#panelVideo {
    top:0;
}

#panelFaq {
    top:25%;
}

#panelInstructions {
    top:50%;
}

#panelDownload {
    top:75%;
}

.modal {
    width:100%;
    height:100%;
    position:fixed;
    top:0;
    left:0;
    background:rgba(var(--colorBeige), 0.9);
    display:none;
    overflow:auto;
    color:black;
    font-weight:300;
    font-size:calc(0.8em + 0.8vw);
    line-height:120%;
    font-family:'Roboto';
    font-weight:300;
    padding:0;
    z-index:1100;
}

.titlePanel {
    font-family:'Roboto';
    font-weight:300;
    font-weight: 700;
    font-size:calc(1.8em + 1.8vw);
    line-height:80%;
    text-align:center;
}

.aspa {
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 40px;
    line-height:100%;
    right:20px;
    top:60px;
    position:fixed;
    color:red;
    cursor:pointer;
    width:30px;
    height:30px;
    border-radius:30px;
    background:white;
    text-align:center;
    z-index:1200;
}

.aspa div {
    transform: translateY(-7px);
}

.wrapperFaq {
    width:70%;
    position:absolute;
    left:50%;
    transform: translate3d(-50%,0%,0);
    margin-top:70px;
}

.centraVideo {
    width:100%;
    height:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    margin: 0px;
}

ol li {
    padding:10px;
}

.faqquestion {
    cursor: pointer;
    font-style:italic;
    color:red;
}

span {
    display:block;
    height:0px;
    overflow:hidden;
    opacity:0;
    padding:5px;
}

input[type="radio"] {
	display: none;
}

#faq1:checked + span, #faq2:checked + span, #faq3:checked + span, #faq4:checked + span, 
#faq5:checked + span, #faq6:checked + span, #faq7:checked + span, #faq8:checked + span, 
#faq9:checked + span, #faq10:checked + span,  #faq11:checked + span{
	height:auto;
	transition: opacity 1s ease;
	opacity:1;
}

#inst1:checked + span, #inst2:checked + span, #inst3:checked + span, #inst4:checked + span, 
#inst5:checked + span, #inst6:checked + span, #inst7:checked + span, #inst8:checked + span, 
#inst9:checked + span, #inst10:checked + span,  #faq11:checked + span{
	height:auto;
	transition: opacity 1s ease;
	opacity:1;
}

.minivideo {
    height:0px;
	transition: opacity 1s ease;
	opacity:0;
	display: none;
    justify-content: center;
    align-items: center;
    margin-bottom:30px;
    margin-top:10px;
}

#inst1:checked ~ .minivideo, #inst2:checked ~ .minivideo, #inst3:checked ~ .minivideo, #inst4:checked ~ .minivideo{
	height:auto;
	display:flex;
	transition: opacity 1s ease;
	opacity:1;
}

.wrapperDownload {
    position:absolute;
    width:80%;
    height:100%;
    top:0;
    left:50%;
    transform:translate3d(-50%,0%,0);
}

#Mac {
    position:absolute;
    top:50%;
    left:0;
    transform:translate3d(0%,-50%,0);
    width:50%;
    height: 80%;
}

#Win {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate3d(0%,-50%,0);
    width:50%;
    height: 80%;
}

@media screen and (orientation:portrait) {
#Mac {
    top:0;
    left:0;
    width:100%;
    height: 50%;
    transform:translate3d(0%,0%,0);
    }
#Win {
    top:50%;
    left:0;
    width:100%;
    height: 50%;
    transform:translate3d(0%,0%,0);
    }
}

.area {
    background:rgba(255,255,255,0.45);
    width:80%;
    min-height:300px;
    max-height:350px;
    position:relative;
    top:50%;
    left:50%;
    transform:translate3d(-50%,-50%,0);
    border-radius:0px;
}

.logos {
    width:calc(2em + 2vw);
    position:absolute;
    left:50%;
    transform:translate3d(-50%,0%,0);
    z-index:50;
}

#Mac .logos {
    top:20px;
}

#Win .logos {
    top:30px;
}

.linkArea {
    position:absolute;
    background:rgba(var(--colorBeige), 1);
    width:80%;
    left:50%;
    transform:translate3d(-50%,0,0);
    top:calc(100px + 1.8vw);
    padding:10px;
    border-radius:10px;
    max-height:200px;
}

.linkArea a {
    text-decoration:none;
    color:rgba(var(--colorAzul), 1);
    font-weight: 300;
}


#galeria {
    display:flex;
    flex-wrap: wrap;
    justify-content:center;
    width:100%;
    height:auto;
    margin-right:auto;
    margin-left:auto;
    padding:20px 20px 20px 30px;
}

.product {
    width:40%;
    min-width:200px;
    background-color: rgba(var(--colorBeigeDark), 0.45);
    padding:10px;
    margin-right:10px;
    margin-bottom:10px;
}

.product img {
    display:block;
    width:15%;
    min-width:40px;
}

.product div {
    background-color: rgba(var(--colorAzul), 1);
    padding:10px;
    margin-top:5px;
    }

.product div p {
    color:white;
    font-size:calc(0.6em + 0.6vw);
    font-style:italic;
}

#creditos {
    background-color:black;
    color:rgba(var(--colorBeige), 1);
    font-size:calc(0.5em + 0.5vw);
    text-align:left;
    transform:translate3d(0,0,0);
    z-index:800;
    position:fixed;
    bottom:0;
    left:0;
}

.creditsWrapper {
    display:flex;
    flex-wrap: wrap;
    justify-content:left;
    height:auto;
}

.creditsWrapper > div {
    width:30%;
    padding: 20px;
    min-width:200px;
}

.credits {
    width:100%;
    padding:20px;
}

#avisodescarga {
    background-color:white;
    width:50%;
    height:auto;
    top:50%;
    left:50%;
    transform:translate3d(-50%,-50%,0);
    border-width:1px;
    border-color:grey;
    border-style:solid;
    padding:20px;
    border-radius:10px;
}

#areabotones {
    display:flex;
    flex-wrap: wrap;
    justify-content:center;
    margin-top:20px;
}

#areabotones button {
    min-width:120px;
    min-height:30px;
    font-size:15px;
    margin:10px;
}

#avisolegal {
    padding:30px;
    background-color: rgba(var(--colorBeige), 1);
}

.cookieConsentContainer {
    transform:translate3d(0,0,0);
    z-index:1000;
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/* :::::::::::::::::::::::::::::::::::::::::::::::: MEDIA QUERIES :::::::::::::::::::::::::::::::::::::::::::::::: */
@media screen and (max-width : 1000px) {
    .beigePanel .containercentrador {
    display:block;
    }
    .beigePanel .rightblock {
    display:block;
    margin-left:auto;
    margin-right:auto;
    width:100%;    
    }
    .beigePanel .leftblock {
    display:block;
    margin-left:0;
    margin-right:auto;
    }
    .beigePanel .centerblock {
    display:block;
    margin-left:auto;
    margin-right:auto;
    width:100%;
    }
    .cuarentaycinco {
    width:85%;
    }
    .veintep {
    width:5%;
    height:10px;
    }
    .imgBeigePanel {
    margin-right:auto;
    margin-left:0;
    }
}

@media screen and (max-width : 800px) {
    .orderNumber {
    display:none;
    }
    adnumber {display:inline;
    }
}

@media screen and (max-width : 550px) {
    .text_general {
    font-size: calc(0.8em + 0.8vw);
    }
    .maintitle {
    font-size: calc(1.6em + 1.6vw);
    padding-top: 60px;
    font-weight:100;
    color: rgba(var(--colorAzul), 1);
    text-shadow: rgba(var(--colorAzul), 0.7) 0px 0px 4px;
    background-color: initial;
    box-shadow: initial;
    }
    #presentacion {
    padding-top:10px;
    padding-left:15px;
    padding-right:15px;
    line-height:115%;
    }
    #rellenoBig {
    display:none;
    }
    .txt_adicional {
    display:none;
    }
    .beigePanel .leftblock {
        display:none;
    }
    .beigePanel .centerblock {
        display:none;
    }
    .wrapper_beigePanel {
    padding:60px 7% 0% 7%;
    }
    .bluePanel .containercentrador {
    display:block;
    }
    .bluePanel .rightblock {
    display:block;
    margin-left:auto;
    margin-right:auto;
    width:100%;    
    }
    .bluePanel .leftblock {
    display:block;
    margin-left:0;
    margin-right:auto;
    max-height:50vh;
    }
    .bluePanel .question img {
    display:block;
    height:40vh;
    margin-right:auto;
    margin-left:auto;
    }
    .bluePanel .centerblock {
    display:block;
    margin-left:auto;
    margin-right:auto;
    width:100%;
    }
    .wrapper_bluePanel {
    width:90vw;
    }
    .question {
    font-size:calc(4vw + 3em);
    font-style:italic;
    padding-right:0;
    text-align:center;
    font-weight:100;
    margin-bottom:10px;
    }
    .answer{
    font-size:calc(1.5vw + 1em);
    font-weight:100;
    padding-left:0;
    padding-top:20px;
    text-align: center;
    }
    .linea {
    width:300px;
    min-width:300px;
    max-width:300px;
    height:1px;
    min-height:1px;
    max-height:1px;
    background-color: rgba(var(--colorBeige), 1);
    display:block;
    margin-left:auto;
    margin-right:auto;
    }
    #wrapperElection {
    margin-top:50px;
    padding:20px 0 0 0;
    font-size: calc(0.7em + 0.7vw);
    }
    #separador_inicial {
    height:50px;
    }
    #separador_demo {
    height:0px;
    }
    #wrapper_demo {
    background: none;
    box-shadow: none;
    height:auto;
    }
    .aspa {
    top:20px;
    }
    .selector {
    margin-top:25px;
    }
    .demo_section {
    display:block;
    width:90%;
    position:relative;
    top:0;
    left:0;
    transform:translate3d(0,0,0);
    padding:20px;
    margin-top:10px;
    margin-left:auto;
    margin-right:auto;
    }
    .nav a {
    padding: 14px 16px;
    font-size: calc(0.8em + 0.8vw);
    }
    #avisodescarga {
    width:80%;
    padding:15px;
    border-radius:8px;
    }
}

@media screen and (min-width : 551px) and (max-width : 1000px) {
    #presentacion {
    padding-top:70px;
    padding-left:40px;
    padding-right:40px;
    }
}

@media screen and (max-width : 550px) and (max-height : 300px) {
    #TDB {
    display:none;
    }
    #letras_TDB {
    display:none;
    }
}

@media screen and (min-width : 551px) and (max-height : 600px) {
    #TDB {
    display:none;
    }
    #letras_TDB {
    display:none;
    }
}

@media screen and (max-width: 400px) {
    #election p {
    font-size:calc(0.95em + 0.95vw);
    }
    #election {
    position:absolute;
    bottom:10px;
    }
    #wrapperElection {
    width:80%;
    }
}

/* :::::::::::::::::::::::::::::::::::::::::::::::: MEDIA QUERIES :::::::::::::::::::::::::::::::::::::::::::::::: */

