/* TOPP________________________*/

.scrolltop {
	display:none;
	width:100%;
	margin:0 auto;
	position:fixed;
	bottom:20px;
	right:10px;
    z-index: 90;
}

.scroll {
	position:absolute;
	right:13%;
	bottom: 3em;
	text-align: center;
	margin: 0 0 0 0;
	cursor:pointer;
	transition: 0.5s;
    background-color: #ffffff;
}

.scroll img{
    height: 3em;
}



/* HEADER - compelto-----------------------------------------------------*/

.header-comp {
    background-color: #F7F5F4;
    width: 100%;
    padding: .5em;
    display: flex;
    align-items: center;
    padding-left: 2em;
    padding-right: 2em;
    position: fixed;
    z-index: 99999;

}

.header-comp nav {
    margin-left: auto;
}

.header-comp nav ul li,
h5 {
    display: inline;
    list-style-type: none;
    text-transform: uppercase;
}

.header-comp nav ul {
    font-size: 0.9em;
}

.header-comp img {
    height: 2em;
}

#inicio a {
    margin-right: 8em;
    color: #ff5757;
}

#sobre_mi {
    margin-right: 2em;
}

.header-comp h5 {
    margin-left: 8em;
}

.header-comp nav ul li a {
    color: #000;
    text-decoration: none;
    background-image: linear-gradient(currentcolor, currentcolor);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .3s;
}

.header-comp nav ul li a:hover {
    background-size: 100% 2px;
}

.header-comp::after, .burger::after{
    display: block;
    content: "";
    position: absolute;
    top: 4.2em;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 1px;
    background: #000;
    opacity: 40%;
}

/* header burguer------------*/

.burger img{
    height: 2em;
    padding-left: 2em;
}

.burger{
  width: 100%;
  height: 4.2em;
  background-color: #F7F5F4;
  position: fixed;
  z-index: 99999;
  display: none;
  align-items: center;
}

.hamburger{
    margin-left: auto;
    width: 4.2em;
    height: 4.2em;
    z-index: 1002;
    padding: 1.5em 1.5em;
    align-items: center;
    justify-content: center;
    background-color: #F7F5F4;
}

.hamburger.is-active{
background-color:none;
}


._layer{
display: block;
width: 30px;
background: #000000;
height: 2px;
margin: 5px 5px;
margin-left: auto;
transition: all 0.4s ease;
}


.hamburger.is-active .-top{
  -webkit-transform:translateY(200%) rotate(45deg) !important;
  -ms-transform:translateY(200%) rotate(45deg) !important;
  transform:translateY(200%) rotate(45deg) !important;
}

.hamburger.is-active .-bottom{
  -webkit-transform:translateY(-200%) rotate(135deg) !important;
  -ms-transform:translateY(-200%) rotate(135deg) !important;
  transform:translateY(-200%) rotate(135deg) !important;
}

/* menu de burguer desplegado------------*/

.menuppal.is-active{
height: 100%;
}

.menuppal{
    background: #F7F5F4;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease 0s;
    overflow: hidden;
    width: 100%;
    height: 0%;
    z-index: 999;
    position: fixed;
    display: none;
}
.menuppal ul{
    margin: 0;
    list-style: none;
    font-size: 2em;
    text-align: center;
    line-height: 1.5em;
    text-transform: uppercase;
    padding-top: 5em;
    padding-left: 0;
}
.menuppal ul li {
    list-style: none;
    text-align:center;
    font-size:1.5rem;
    line-height:2em;
    }
.menuppal ul li a{
    text-decoration:none;
    color:#000;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 3px;
    transition: background-size .3s;
}
.menuppal ul li a:hover{
    color: #ff5757;
    background-size: 100% 3px;
    transition: all .3s;
    }

/* Footer______________________________________________________*/

footer {
    position: relative;
    background-color: #F7F5F4;
    margin-top: 1em;
    z-index: 98;
}

footer nav {
    display: flex;
    width: 80vw;
    margin: 0 auto;
}

footer ul {
    list-style-type: none;
    padding: 2em;
}

footer h5 {
    margin-left: auto;
}

footer ul h3 {
    margin-bottom: 2em;
    font-size: 1em;
}

footer ul li a:hover {
    color: #ff5757;
    transition: color .3s;
}

/* Cookies______________________________________________________*/


#notice{
    display: none;
    background-color: #000;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 99;
}

p.free-shipping{
    flex-grow: 1;
    color: rgb(255, 255, 255);
    padding: 10px 0;
    text-align: center;
    font-size: 0.8em;
}

button.free-btn{
	padding: .6em 2em .6em 2em;
	border-style: none;
    color: white;
    background-color: #000000;
    cursor: pointer;
}

/*cambio del color de txt seleccionado*/

::selection {
    color: rgb(255, 255, 255);
    background: #ff5757;
  }


/*MEDIA QUERIES_____________*/

/**
 * Basic CSS Media Query Template
 * TODO: I should probably use Sass...
 * Author: Michael Vieth
 * ------------------------------------------
 *  Responsive Grid Media Queries - 1280, 1024, 768, 480
 *   1280-1024   - desktop (default grid)
 *   1024-768    - tablet landscape
 *   768-480     - tablet 
 *   480-less    - phone landscape & smaller
 * --------------------------------------------
 */

 /*Tablet landscape*/
 @media all and (min-width: 1024px) and (max-width: 1300px) {
    footer h5{
        display: none;
    }
 }
 
/*Tablet portrait*/
@media all and (min-width: 700px) and (max-width: 1024px) {
    /*Footer*/ 
    footer h5{
        display: none;
    }
    footer nav{
        display: flex;
        flex-wrap: wrap;
        padding-top: 3em;
        padding-bottom: 3em;
    }
    footer ul{
        padding-top: 0em;
        padding-bottom: 0em;
    }

    footer ul h3 {
        margin-bottom: 1em;
        font-size: 1em;
    }
    
    .scroll {
        position:absolute;
        right:5%;
        bottom: 3em;
        text-align: center;
        margin: 0 0 0 0;
        cursor:pointer;
        transition: 0.5s;
        background-color: #ffffff;
    }

    footer nav {
        width: 90vw;
    }

 }
 
 /*Phone*/
 @media all and (max-width: 700px) {
    .header-comp{
        display: none;
    }
    .burger{
        display: flex;
    }
    .menuppal{
        display: block;
    }
    footer h5{
        display: none;
    }
    footer nav{
        display: flex;
        flex-wrap: wrap;
        padding-top: 3em;
        padding-bottom: 3em;
    }
    footer ul{
        padding-top: 0em;
        padding-bottom: 0em;
    }

    footer ul h3 {
        margin-bottom: 1em;
        font-size: 1em;
    }

    .scroll {
        position:absolute;
        right:5%;
        bottom: 2em;
        text-align: center;
        margin: 0 0 0 0;
        cursor:pointer;
        transition: 0.5s;
        background-color: #ffffff;
    }

    footer nav {
        width: 90vw;
    }

  }
 
 
 /* Portrait */
 @media screen and (orientation:portrait) { /* Portrait styles here */ }
 /* Landscape */
 @media screen and (orientation:landscape) { /* Landscape styles here */ }
 
 
 /* CSS for iPhone, iPad, and Retina Displays */
 
 /* Non-Retina */
 @media screen and (-webkit-max-device-pixel-ratio: 1) {
 }
 
 /* Retina */
 @media only screen and (-webkit-min-device-pixel-ratio: 1.5),
 only screen and (-o-min-device-pixel-ratio: 3/2),
 only screen and (min--moz-device-pixel-ratio: 1.5),
 only screen and (min-device-pixel-ratio: 1.5) {
 }
 
 /* iPhone Portrait */
 @media screen and (max-device-width: 480px) and (orientation:portrait) {
    .header-comp{
        display: none;
    }
    .burger{
        display: flex;
    }
    .menuppal{
        display: block;
    }
    footer h5{
        display: none;
    }
    footer nav{
        display: flex;
        flex-wrap: wrap;
        padding-top: 3em;
        padding-bottom: 3em;
    }
    footer ul{
        padding-top: 0em;
        padding-bottom: 0em;
    }

    .scroll {
        position:absolute;
        right:5%;
        bottom: 2em;
        text-align: center;
        margin: 0 0 0 0;
        cursor:pointer;
        transition: 0.5s;
        background-color: #ffffff;
    }

    footer nav {
        width: 90vw;
    }


  }
 
 /* iPhone Landscape */
 @media screen and (max-device-width: 480px) and (orientation:landscape) {
 }
 
 /* iPad Portrait */
 @media screen and (min-device-width: 481px) and (orientation:portrait) {
    
 }
 
 /* iPad Landscape */
 @media screen and (min-device-width: 481px) and (orientation:landscape) {
 }