@charset 'utf-8';

/* ---------- RESET ---------- */

html,
body {
    margin: 0;
    background-color: #fff;
    overflow: visible;
}

#hd * {
    margin: 0;
    padding: 0;
    text-decoration: none;
    /*list-style-type: none;*/
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    word-break: break-word;
}
/*
::selection {
    background: #ff0078;
    color: #000000;
}

::-moz-selection {
    background: #ff0078;
    color: #000000;
}
*/
#hd {
    font-family: 'Open Sans', sans-serif;
    background: #fff;
    color: #000;
    font-size: 16px;
    margin: 0;
    padding: 0;
    /*background: url(../img/bg.jpg) 0 center no-repeat;*/
    background-attachment: fixed;
}

#hd ul,
#hd li,
#hd figure {
    margin: 0;
    padding: 0;
}

#hd h1,
#hd h2,
#hd h3,
#hd h4,
#hd p,
#hd a,
#hd li {
    font: inherit;
}

#product_content_area p {
    margin-bottom: 1em;
}


#hd img {
    display: block;
    height: auto;
    border: none;
    max-width: 100% !important;
    margin: 0 auto;
}

#hd img.lazyLoad {
    opacity: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}


/* ---------- scrollUp ------- */

#scrollUp {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 45px;
    height: 45px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border: 2px solid #aaa;
    opacity: 0;
}

#scrollUp.hd-show {
    opacity: 1;
}

#scrollUp svg {
    display: block;
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 5px;
    left: 0;
    fill: #aaa;
    -webkit-transform: rotateZ(270deg);
    -moz-transform: rotateZ(270deg);
    -ms-transform: rotateZ(270deg);
    -o-transform: rotateZ(270deg);
    transform: rotateZ(270deg);
}

#scrollUp:hover {
    background-color: #aaa;
}

#scrollUp:hover svg {
    fill: white;
}




