﻿/*Default values*/

* {
    padding: 0px;
    margin:0px;
}

body {
    background-color: aliceblue;
    /*background-color: #eee;*/
}

a:hover,
button:hover {
    cursor: pointer;
}

input[type=button],
button:focus {
    outline: 0;
}

#pagina { 
    position: relative;       
    width: 100%;
    margin: 0 auto;
    height: auto;
    overflow: hidden;
    font: normal 15px Century Gothic, Helvetica; 
}

header {
    display: flex;
    height: 105px;   
    font-size: large;
    background-color: black;
}

header > img {
   height: 75px; 
    margin: 15px 30px;
}

.menu {    
    display: block;
    position: relative;
    width: 880px;
    top: 35px;
    margin: 0 auto;    
    z-index: 1;
}

ul, ol {
    list-style: none;
}

.nav li a {
    color: white;
    padding: 5px 60px;
    display: block;
}

.nav li a:hover {
    background-color: gainsboro;
    color: orange;
}

.nav > li {
    float: left;
}

.nav li ul {
    display: none;
    position: absolute;
    background-color: steelblue;
    padding: 15px 0;
}

.nav li:hover > ul {
    display: block;
}

#menu3rayas {
    display: none;
    position: absolute; 
    right: 0px;
    vertical-align: top;
    padding: 12px 10px 0 0;
    text-align: right;
    height: 50px;
    width: 50px;
    background-color: transparent;
    z-index: 2;
}

#menu3rayas > div:first-of-type {  
    position: absolute;
    top: 25px;
    height: 60px;
    width: inherit;
    padding-top: 10px;
}

.container {
    position: absolute;
    right: 10px;
    display: inline-block;
    height: 30px;
    width: 30px;    
    cursor: pointer;    
    margin-right: 10px;
}

#moveWrap3rayas {
    position: relative;
    height: 410px;
    overflow-y: auto;    
    overflow-x: hidden;
    width: 180px;
    visibility: hidden;
    left: 100%;
    margin-top: 93px;
}

#moveWrap3rayas.horizTranslateIn {    
    -webkit-transition: left 0.4s ease;
    transition: left 0.4s ease;
    visibility: visible;
    left: calc(100% - 180px);
}

#moveWrap3rayas > div {
    display: inline-block;
    width: 100%;
}

div[rol1=dot] {
    border-top: 1px dotted white;
}

div[rol2=pad] {
    padding: 15px 10px 15px 0;
}

#moveWrap3rayas > div:last-of-type {
    border-bottom: 1px dotted white;
}

#titpdts {
    padding-right: 80px;
    border-top: 2px solid white;
}

#bsp {
    padding: 0px 10px 15px 0;
}

#bdc {
    padding: 0px 10px 15px 0;
    border-bottom: 2px solid white;
}

#moveWrap3rayas > div b,
#moveWrap3rayas > div span,
#moveWrap3rayas > div > a {
    color: white;
    font-size: 15px;
}

#cWrap {
    position: relative;
    float: right;
    height: 60px;
}

.bar1, .bar2, .bar3 {
    width: 30px;
    height: 5px;
    background-color: white;
    margin: 5px 0;
    transition: 0.4s;
    border-radius: 2px;
}

.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-6px, 6px) ;
    transform: rotate(-45deg) translate(-6px, 6px) ;
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px) ;
    transform: rotate(45deg) translate(-8px, -8px) ;
}

.hyphenWrap {
    position: relative;
    float: right;
    padding-right: 20px;
    height: 20px;
    width: 100%;
}

.hyphen {
    position: relative;
    float: right;
    height: 20px;
    width: 0;
    -webkit-transition: width 0.3s ease-in-out 0s;
    transition: width 0.3s ease-in-out 0s;
}

.hyphenWrap:hover > a > .hyphen {
    width: 25px;
}

.hyphen > hr {
    position: absolute;
    border: none;
    height: 1px;
    width: 80%;
    margin-left: 6px;
    top: 60%;
    background-color: white;
}

div[role=main] {
    position: relative;
    width: 100%;
    height: 1212px;
}

footer {
    position: relative;
    background-color: lightskyblue;
    font-size: 11px;
}

center {
    padding: 10px 0;
}

.privacy {
    font-size: 13px;
    color: white;
}

#cookiesPopup {
    position: fixed;
    display: none;
    width: 300px;
    bottom: 50px;
    right: 21%;
    color: white;
    border: 6px solid darkslateblue;
    border-radius: 10px;
    background-color: black;
    font-size: 15px;
    z-index: 6;
}

#cookiesDiv {
    border: 1px solid black;
    border-radius: 12px;
    padding: 20px;
}

#cookiesDiv a {
    color: cadetblue;
    text-decoration: none;
    font-weight: bold;
}

.politicas {
    text-decoration: none;
    color: #00aad4;
}

#cookiesDiv div {
    white-space: nowrap;
}

#cookiesDiv button {
    background-color: darkslateblue;
    color: white;
    padding: 5px;
    border: 1px solid black;
    border-radius: 4px;
    font: normal 14px Century Gothic, Helvetica;
    margin-top: 15px;
}

#cookiesDiv button:first-of-type {
    margin-left: 15%;
    margin-right: 2%;
}

/*Main page*/

div[role=main] > img {
    opacity: 0.55;
}

#centraLema {
    position: absolute;
    top: 120px;
    width: 100%;
    text-align: center;
}

#centraLema > span {    
    margin-left: 400px;
    font-size: 60px;
    font-weight: bold;
    border-radius: 0 50px 50px;
    color: white;
    background-color: steelblue;
    padding: 25px 50px 30px 50px;
}

#par1 {
    position: absolute;
    width: 680px;
    top: 360px;
    right: 0;
    padding: 0 80px 0 30px;    
    text-align: center;
}

#par1 > h1 {
    font-size: 35px;
    font-weight: bold;
    font-style: italic;
    color: darkslateblue;
    margin-bottom: 140px;
}

.parrafo {     
    position: fixed;
    width: 100px;
    padding: 0 80px;
    bottom: 100px;
    font: 13px Century Gothic, Helvetica;
    color: steelblue;
    z-index: 1;
}

.parrafo img {
    width: 100%;
    margin-bottom: 15px;
} 

/*Product page*/

#mainBSP {
    background-image: url(../images/cuadro_fin.jpg);
    background-repeat: no-repeat; 
    background-size: cover;    
}

#mainBSP > img {
    position: absolute;
    top: 100px;
    left: 40px;
    opacity: 1.5;
}

.buy {
    text-decoration: none;
}

#buyitDiv {
    position: absolute;
    left: 340px;
    top: 380px;
}

#or {
    width: 200px;
    text-align: center;
    font-weight: bold;
    margin: 15px 0;
}

#buyit {
    font-family: Century Gothic, Helvetica;
    font-size: 14px;
    font-weight: bold;
    color: white;
    background-color: purple;
    width: 200px;
    height: 35px;
    border: none;
    border-radius: 4px;
}

#buyit:hover {
    cursor: pointer;
}

#buyit:disabled {
    cursor: default;
    background-color: mediumpurple;
}

#bspClip {
    position: absolute;
    width: 50%;
    left: 50%;
    top: 160px;
}

#bspClip > div {
    background-color: rgba(240, 248, 255, 0.6);
    border-radius: 10px;
    padding: 20px;
    width: 65%;
    margin: 0 auto;
}

#aviso {
    position: absolute;
    display: none;
    margin: 15px 0 0 15px;
    background-color: indianred;
    color: white;
    padding: 5px;
    border-radius: 6px;
}

#formContainer {
    position: absolute;
    top: 100px;
    width: 100%;
    height: auto;
}

#formRegDiv {
    display: none;
    height: auto;
    width: 60%;
    margin: 0 auto;
    padding: 20px 0;
    background-color: ghostwhite;
    border-radius: 10px;
    z-index: 5;
}

#formRegDiv > form {
    width: 70%;
    max-width: 300px;
    margin: 0 auto;
}

#formRegDiv select,
#formRegDiv input {
    border: 1.5px solid #00aad4;
    border-radius: 4px;
    font-family: Raleway, Helvetica;
}

#formRegDiv select {
    width: 100%;
    max-width: 300px;
    height: 23px;
    margin-bottom: 15px;
}

#formRegDiv input[type="text"],
#formRegDiv input[type="email"] {
    width: calc(100% - 3px);
    max-width: 297px;
    height: 20px;
}

#btnSubmit,
#btnReset {
    height: auto;
    width: 100%;
    border: 1px solid darkblue;
    border-radius: 4px;
    background-color: #00aad4;
    color: white;
    padding: 5px 5px 5px 5px;
    font-family: Raleway, Helvetica;
    margin-top: 15px;
}

#formRegDiv label {
    color: rgba(72,61,139, 0.9);
    font-size: 14px;
    font-weight: bold;
    margin-left: 10px;
}

#receiptDiv {
    display: none;
    position: absolute;
    width: 300px;
    top: 20px;
    left: 10px;
    padding: 15px;
    background-color: ghostwhite;
    border-radius: 10px;
    z-index: 5;
}

#receiptDiv > button {
    position: relative;
    height: auto;
    width: calc(100% - 40px);
    left: 20px;
    border: 1px solid darkblue;
    border-radius: 4px;
    background-color: #00aad4;
    color: white;
    padding: 5px 5px 5px 5px;
    font-family: Raleway, Helvetica;
    margin-top: 15px;
}

/* 
Include the min-width, max-width, min-height 
and max-height if you plan to use a relative CSS unit 
measurement to make sure the widget renders in the 
optimal size allowed.    
*/

#amazonAddressWallet {
    position: relative;
    display: none;
    width: 85%;
    max-width: 1200px;
    overflow: hidden;
    background-color: white;
    margin: 0 auto;
    font-family: Arial, Helvetica, san-serif;
    border: 1px solid orange;
}

#amazonAddressWallet > p:first-of-type {
    font-size: 16px;
    margin: 15px 0 15px 15px;
}

.left {
    width: calc(75% - 32px);
    margin: 0 15px 15px 15px;
    float: left;
    border: 1px solid lightgrey;
}

.left > p {
    margin: 15px 0 0 30px;
}

.left > div {
    padding: 20px 30px;
    width: calc(100% - 60px);
}  
  
#addressBookWidgetDiv {
    min-width: 240px;
    width: 100%;
    max-width: 900px;
    min-height: 228px;
    height: 250px;
    max-height: 400px;
}
  
#walletWidgetDiv {
    min-width: 240px;
    width: 100%;
    max-width: 900px;
    min-height: 228px;
    height: 250px;
    max-height: 400px;
}

#orderButDiv {
    display: none;
    top: 48px;
    right: 0;
    position: absolute;
    width: calc(25% - 17px);
    float: right;
    margin-right: 15px;
    border: 1px solid lightgray;
    padding: 10px 0;
}

#orderButDiv > div {
    width: calc(100% - 42px);
    margin: 15px 10px;
    border: 1px solid lightgray;
    box-shadow: 0 0 3px lightgrey;
    padding: 20px 10px;
}

#orderButDiv > div > div {
    width: calc(100% - 20px);
    margin: 35px auto 0;
}

#col {
    display: inline-block;
    vertical-align: super;
}

#col > span,
#col > p {
    font-size: 14px;
}

#col > p:last-of-type {
    margin-bottom: 4px;
}

#cur {
    color: forestgreen;
    font-weight: bold;
}

#sep {
    height: 8px;
    border-top: 1px solid lightgray;
    border-bottom: 1px solid lightgray;
    margin: 40px 0;
}

#orderButDiv > div > div > span {
    font-size: 14px;
    line-height: 20px;
}

.dcha {
    right: 30px;
    position: absolute;
}

#orderButDiv > div > p {
    font-weight: bold;
}

.orderBut {
    display: none;
    font-size: 14px;
    font-weight: bold;
    color: white;
    background-image: linear-gradient(red, #a50000);
    max-width: 200px;
    width: 85%;
    height: 30px;
    border: none;
    border-radius: 7px;
    margin: 0 auto;
}

button.orderBut:hover {
    background-image: linear-gradient(360deg, red, #a50000);
}

button.orderBut:active {
    background-image: linear-gradient(360deg, red, #a50000);
}

#Logout {
    display: none;
    color: dodgerblue;
    font-size: 12px;    
    font-weight: bold;
    position: absolute;
    bottom: 10px;
    right: 15px;
}
 
/*Manuals page*/

#mainManuals > div {
    width: 100%;
    height: calc(100% - 107px)
}

#mainManuals > div iframe {
    border: none; 
    width: calc(100% - 20px); 
    height: 100%;
    padding: 0 10px;
}

h2 {
    text-align: center;
    margin: 40px 0;
}

/*Downloads page*/

#containerDownload {
    position: absolute;
    top: 290px;
    width: 100%;
}

#containerDownload > div {
    width: 215px;
    margin: 0 auto;
}

#containerDownload > div > div {
    width: 179px;
    margin: 0 auto;
}

#animateDownload1 {
    position: relative;
}

#animateDownload2 {
    position: relative;
    bottom: 0;
}

@media only screen and (max-width: 359px) {
    header {
        font-size: medium;
        height: 105px;
    }

    header > img {
        margin: 15px 30px;
    }

    #menu3rayas {
        display: block;
    }

    .menu {        
        display: none;
    }
        
    .nav li a {
        padding: 5px 16px;
    }
     
    #centraLema {
        top: 115px;
    }

    #centraLema > span {
        margin-left: 0px;
        font-size: 22px;
        padding: 20px;
    }

    .parrafo {
        padding: 0;
        bottom: 40px;
        transform: scale(0.75);
    }

    #par1 {
        width: calc(100% - 100px);
        padding: 0 5px 0 95px;
        top: 300px;
    }

    #par1 > h1 {
        font-size: 20px;
    }
    
    @media only screen and (min-height: 1366px) {
        #cookiesPopup {
            position: absolute;
        }
        
        .parrafo {
            position: absolute;
        }
    }
        
     @media only screen and (max-height: 570px) {
        #cookiesPopup {
            bottom: 5px;
        }  
    }
     
    #mainBSP > img {
        left: 0;
        transform: scale(0.7);
        left: -80px;
    }
    
    #buyitDiv {
        left: 90px;
    }
         
    #bspClip {
        width: 100%;
        left: 0;
        top: 550px;
    }

    #bspClip > div {
        width: calc(95% - 40px);
    }

    #cookiesPopup {            
        right: 5px;
    }
    
    #formRegDiv {
        width: 90%;
    }
    
    /*Amazon chart*/

    #amazonAddressWallet {
        width: calc(100% - 2px);
    }

    .left {
        width: calc(100% - 32px);
    }

    #orderButDiv {
        position: relative;
        top: 0;
        width: calc(100% - 32px);        
        margin-bottom: 30px;
    }

    /*Fin Amazon chart*/
}

@media only screen and (min-width: 360px) and (max-width: 489px) {
    header {
        font-size: medium;
        height: 105px;
    }

    header > img {
        margin: 15px 30px;
    }

    #menu3rayas {
        display: block;
    }

    .menu {        
        display: none;
    }
        
    .nav li a {
        padding: 5px 16px;
    }
     
    #centraLema {
        top: 115px;
    }

    #centraLema > span {
        margin-left: 0px;
        font-size: 26px;
        padding: 15px 30px 20px 30px;
    }

    .parrafo {
        padding: 0;
        bottom: 40px;
        transform: scale(0.75);
    }

    #par1 {
        width: calc(100% - 100px);
        padding: 0 5px 0 95px;
        top: 300px;
    }

    #par1 > h1 {
        font-size: 20px;
    }
    
    @media only screen and (min-height: 1366px) {
        #cookiesPopup {
            position: absolute;
        }
        
        .parrafo {
            position: absolute;
        }
    }
        
     @media only screen and (max-height: 570px) {
        #cookiesPopup {
            bottom: 25px;
        }   
    }
     
    #mainBSP > img {
        left: 0;
        transform: scale(0.7);
        left: -80px;
    }
    
    #buyitDiv {
        left: 100px;
    }
         
    #bspClip {
        width: 100%;
        left: 0;
        top: 550px;
    }

    #bspClip > div {
        width: calc(95% - 40px);
    }
    
    #cookiesPopup {            
        right: 10%;
    }

    #formRegDiv {
        width: 90%;
    }
    
    /*Amazon chart*/

    #amazonAddressWallet {
        width: calc(100% - 2px);
    }

    .left {
        width: calc(100% - 32px);
    }

    #orderButDiv {
        position: relative;
        top: 0;
        width: calc(100% - 32px);        
        margin-bottom: 30px;
    }

    /*Fin Amazon chart*/
}

@media only screen and (min-width: 490px) and (max-width: 609px) {
     header {
        font-size: medium;
        height: 150px;
    }

    header > img {
        margin: 15px auto 0;
    }

    .menu {
        position: absolute;
        width: 490px;
        top: 105px;        
        left: 0;
        right: 0;
    }
        
    .nav li a {
        padding: 5px 16px;
    }
    
    #centraLema {
        top: 80px;
    }

    #centraLema > span {
        margin-left: 0px;
        font-size: 28px;
    }

    .parrafo {
        padding: 0 20px;
        bottom: 40px;
    }

    #par1 {
        width: calc(100% - 150px);
        padding: 0 20px 0 130px;
        top: 250px;
    }

    #par1 > h1 {
        font-size: 25px;
    }
    
    @media only screen and (min-height: 1366px) {
        #cookiesPopup {
            position: absolute;
        }
        
        .parrafo {
            position: absolute;
        }
    }

     @media only screen and (max-height: 570px) {
        #cookiesPopup {
            bottom: 25px;
        }  
    }

    #mainBSP > img {
        left: 0;
    }
    
    #buyitDiv {
        left: 250px;
    }
         
    #bspClip {
        width: 100%;
        left: 0;
        top: 550px;
    }
    
    /*Amazon chart*/
    .left {
        width: calc(100% - 32px);
    }

    #orderButDiv {
        position: relative;
        top: 0;
        width: calc(100% - 32px);        
        margin-bottom: 30px;
    }

    /*Fin Amazon chart*/
}

@media only screen and (min-width: 610px) and (max-width: 759px) {
    header {
        font-size: medium;
    }

    header > img {
        margin: 15px 15px;
    }

    .menu {
        width: 490px;
    }

    .nav li a {
        padding: 5px 16px;
    }
    
    #centraLema {
        top: 80px;
    }

    #centraLema > span {
        margin-left: 0px;
        font-size: 39px;
    }

    .parrafo {
        padding: 0 40px;
        bottom: 40px;
    }

    #par1 {
        width: calc(100% - 180px);
        padding: 0 20px 0 160px;
    }
    
    @media only screen and (min-height: 1366px) {
        #cookiesPopup {
            position: absolute;
        }
        
        .parrafo {
            position: absolute;
        }
    }

     @media only screen and (max-height: 570px) {
        #cookiesPopup {
            bottom: 25px;
        }   
    }
         
    #bspClip {
        width: 100%;
        left: 0;
        top: 550px;
    }
    
    /*Amazon chart*/
    .left {
        width: calc(100% - 32px);
    }

    #orderButDiv {
        position: relative;
        top: 0;
        width: calc(100% - 32px);        
        margin-bottom: 30px;
    }

    /*Fin Amazon chart*/
}

@media only screen and (min-width: 760px) and (max-width: 1029px) {
    .menu {
        width: 600px;
    }

    .nav li a {
        padding: 5px 25px;
    }

    #centraLema {
        top: 80px;
    }

    #centraLema > span {
        margin-left: 0px;
        font-size: 50px;
    }

    .parrafo {
        padding: 0 40px;
        bottom: 40px;
    }

    #par1 {
        width: calc(100% - 180px);
        padding: 0 20px 0 160px;
    }
    
    @media only screen and (min-height: 1366px) {
        #cookiesPopup {
            position: absolute;
        }
        
        .parrafo {
            position: absolute;
        }
    }

    @media only screen and (max-height: 570px) {
        #cookiesPopup {
            bottom: 25px;
        }   
    }
        
    #bspClip {
        width: 80%;
        left: 10%;
        top: 550px;
    }
    
    /*Amazon chart*/
    .left {
        width: calc(100% - 32px - 255px);
    }

    #orderButDiv {
        width: 238px;
    }

    /*Fin Amazon chart*/
}

@media only screen and (min-width: 1030px) and (max-width: 1214px) {
    #centraLema > span {
        margin-left: 180px;
        font-size: 50px;
    }

    @media only screen and (min-height: 1366px) {
        #cookiesPopup {
            position: absolute;
        }
        
        .parrafo {
            position: absolute;
        }
    }
    
    @media only screen and (max-height: 570px) {
        #cookiesPopup {
            bottom: 25px;
        }  
    }
    
    /*Amazon chart*/
    .left {
        width: calc(100% - 32px - 255px);
    }

    #orderButDiv {
        width: 238px;
    }

    /*Fin Amazon chart*/
}

@media only screen and (min-width: 1215px) and (max-width: 1599px) {
  /*1366 - 1599 es la medida de mi resolución de pantalla, default para las página en abierto*/

    #centraLema > span {
        margin-left: 180px;
        font-size: 50px;
    }

    @media only screen and (min-height: 1366px) {
        #cookiesPopup {
            position: absolute;
        }
        
        .parrafo {
            position: absolute;
        }
    }
    
    @media only screen and (max-height: 570px) {
        #cookiesPopup {
            bottom: 25px;
        }  
    }
}

@media only screen and (min-width: 1600px) {
    #pagina {
        width: 1600px;
    }
    
    .menu {
        width: 1010px
    }
    
    @media only screen and (min-height: 1366px) {
        #cookiesPopup {
            position: absolute;
        }
        
        .parrafo {
            position: absolute;
        }
    }

    @media only screen and (max-height: 570px) {
        #cookiesPopup {
            bottom: 25px;
        }  
    }    
}