/*  
code with love by David Čáp http://www.davidcap.cz/

dark grey #0e0e0e //p + h
light grey #ededed
dark brown #5a534c
light brown #e8e5dd
green more blue #e8e5dd
green more yellow #5ec789
blue #4297b7
*/

/* RESET */   
html, body, div, span, applet, object, iframe,  
h1, h2, h3, h4, h5, h6, p, blockquote, pre,  
a, abbr, acronym, address, big, cite, code,  
del, dfn, em, font, img, ins, kbd, q, s, samp,  
small, strike, strong, sub, sup, tt, var,  
b, u, i, center,  
dl, dt, dd, ol, ul, li,  
fieldset, form, label, legend,  
table, caption, tbody, tfoot, thead, tr, th, td {  
margin: 0;  
padding: 0;  
border: 0;  
outline: 0;  
font-size: 100%;  
vertical-align: baselinebaseline;  
background: transparent;  
font-weight: 400;
}  
body {  
line-height: 1;  
}  
ol, ul {  
list-style: none;  
}  
blockquote, q {  
quotes: none;  
}  
blockquote:before, blockquote:after,  
q:before, q:after {  
content: '';  
content: none;  
}  

  
/* remember to define focus styles! */  
:focus {  
outline: 0;  
}  
  
/* remember to highlight inserts somehow! */  
ins {  
text-decoration: none;  
}  
del {  
text-decoration: line-through;  
}  
  
/* tables still need 'cellspacing="0"' in the markup */  
table {  
border-collapse: collapse;  
border-spacing: 0;  
}  
/* RESET END*/ 


/*GLOBAL*/
* { margin:0; padding:0; }
body {  
    width:100%;
    min-width:1280px;
    color:#130e14 ;
    background-color:#fff;
    font-family: 'Open Sans', sans-serif;
    font-size:18px;
    line-height: 1.45em;
}


a,
a:link,
a:active,
a:visited {
    color:#130e14;
    text-decoration:none;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
    transition:.3s;
    cursor: pointer;
}
::selection {
	background:#5ec789;
}
::-moz-selection {
	background:#5ec789;
}
h1, h2 {
    display: block;
    text-align: center;
    font-size:64px;
    line-height: 1.35em;
    padding:60px 0 30px 0;
    color: 0e0e0e;
    font-family: "Roboto", sans-serif; 
    font-weight: 500;
}
h3 {
    display: block;
    text-align: center;
    font-size:54px;
    line-height: 1.35em;
    margin-top:52px;
    margin-bottom:20px;
    color: 0e0e0e;
    font-family: "Roboto", sans-serif; 
    font-weight: 500;
}
p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom:20px;
    text-align: center;
    color: 0e0e0e;
}
.small,
p.small {
    font-size: 13px;
}
b, strong {
    font-weight: bold;
}
.center {
    text-align: center;
}
a.button,
.button {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    font-family: "Roboto", sans-serif; 
    border: 3px solid #000000;
    display: inline-block;
    padding: 0.2em 0.6em;
}
a.button:hover,
.button:hover{
    background-color: #000000;
    color: #ffffff;
}
a.button.big,
.button.big {
    font-size: 20px;
    padding: 0.5em 1em;
}
.claim{
    color: #fff;
    font-size: 1.2em;
    font-weight: 700;
    text-align: center;
    font-style: italic;
}
.cols2 {
    width: 90%;
    margin: 0 auto;
    -webkit-column-count:2; /* Chrome, Safari, Opera */
    -moz-column-count:2; /* Firefox */
    column-count:2;
    -webkit-column-gap:50px; /* Chrome, Safari, Opera */
    -moz-column-gap:50px; /* Firefox */
    column-gap:50px;
    text-align: justify;
}
.hidden {
    display: none;
}

#loading {
    display:none;
    margin: 0 auto;
    position: absolute;
    z-index: 10000;
    width: 100%;
    height: 100%;
    background: url(fancybox_loading.gif) 50% 50% no-repeat;
}
.wrapper {
    width:80%;
    max-width:1280px;
    margin:0 auto;
}
section {
    clear:both;
    height:100%;
}
.page {
    margin:0 25px;
    clear:both;
}
.underline{
    text-decoration: underline;
}

@media only screen and (max-width: 1366px) {
    body {  
        font-size:14px;
        min-width: 1024px;
    }
    h2 {
        font-size:54px;
        padding:50px 0 30px 0;
    }
    h3 {
        font-size:42px;
        margin-top:20px;
        margin-bottom:20px;
    }
    p {
        font-size: 14px;
        margin-bottom:10px;
    }
    .wrapper {
        width:100%;
    }
    .page {
        margin:0;
    }
}
@media only screen and (max-width: 1100px) {
    .wrapper {
        width:100%;
    }
}



/*NAV*/

#nav_out {
    width:100%;
    min-width:1024px;
    height:60px;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    background-color:#5A534C;    
}

#nav_in {
    display: block;
    width: 80%;
    max-width: 1366px;
    height: auto;
    margin:0 auto;
    text-align:center;
}
nav .item {
    text-align:center;
    float:left;
    margin-left: 25px;
    line-height: 60px;
    color: #fff;
}
nav .logo {
    float:left;
    margin-right: 0;
}
nav .logo h1 {
    padding: 0
}
nav .logo h1 img {
    width: 120px;
    height: 77px
}
nav .lang .item{
    float:right;
    text-transform: lowercase;
    margin-left: 10px;
}
nav a,
nav a:link,
nav a:active,
nav a:visited {
    font-size:15px;
    color:#fff;
    text-decoration:none;
    font-family: "Roboto", sans-serif; 
    font-weight: 700;
}
nav a:hover {
    color:#5FCA8B;
}

@media only screen and (max-width: 1366px) { 
    #nav_out {
        height:60px; 
    }

    #nav_in {
        width: 98%;
    }
    nav .item {
        margin-left: 21px;
    }
    nav .logo {
        margin-right: 20px;
        
    }
    nav .lang .item{
        margin-left: 5px;
    }
    nav a,
    nav a:link,
    nav a:active,
    nav a:visited {
        font-size:13px;
    }
}



/*HVEZDY POMAHAJI*/
#hvezdy-pomahaji-image {
    width: 100%;
    position: relative;
    line-height: 0;
}

#hvezdy-pomahaji-image img{
    width: 100%;
    height: auto;
}

.nav {
    position: absolute;
    z-index: 800;
    top:50%;
    left: 0;
    right: 0;
    height: 100px;
    margin-top: -60px; 
}
 .nav > div {
    background-color: rgba(255,255,255,0.7);
    position: absolute;
    top: 0;
    cursor: pointer;
}
.nav > .left {
    left: 0;
}
 .nav > .right {
    right: 0;
}
 .nav > div .znak{
    font-size: 50px;
    line-height: 50px;
    padding: 45px 9px 50px 9px;
    color: #ffffff;
    font-weight: 700;
}

#hvezdy-pomahaji-image .hvezdy-nadpis{
    position: absolute;
    top: 38%;
    left: 0;
    right: 0;
    color: #ffffff;
    text-shadow: 0px 0px 4px rgba(150, 150, 150, 1);
}
#hvezdy-pomahaji-image .hvezdy-nadpis h2{
    padding-bottom: 10px;
}
#hvezdy-pomahaji-image .hvezdy-nadpis img{
    width: auto;
    height: auto;
    margin-left: -274px;
    position: absolute;
    left: 50%;
}
#hvezdy-pomahaji-image .hvezdy-popis{
    position: absolute;
    bottom: 28px;
    left: 0;
    right: 0;
    color: #000000;
}
#hvezdy-pomahaji-image .hvezdy-popis > div{
    margin: 0 auto;
    text-align: center;
    background-color: rgba(255,255,255,0.7);
    height: 80px;
    overflow: hidden;
    -webkit-transition: height 0.5s; /* Safari */
    transition: height 0.5s;
}
#hvezdy-pomahaji-image .hvezdy-popis .cist-dale{
    text-decoration: underline;
}
#hvezdy-pomahaji-image .hvezdy-popis > div:hover{
    height: 300px;
}

#hvezdy-pomahaji-image .hvezdy-popis > div:hover .cist-dale{
    visibility: hidden;
}
#hvezdy-pomahaji-image .hvezdy-popis > div > div{
    padding: 20px 30px 10px 30px;
}
#hvezdy-pomahaji-image .hvezdy-popis > div > div p{
    font-size: 80%;
}
#hvezdy-pomahaji-image .hvezdy-popis > div .claim{
    color: #000000!important;
    font-size: 16px;
}
#hvezdy-pomahaji-image .hvezdy-popis > div,
#hvezdy-pomahaji-image .hvezdy-nav > div{
    width: 752px;
    min-width: 752px;
    max-width: 752px;
}
@media only screen and (max-width: 1366px) {
    #hvezdy-pomahaji-image .hvezdy-popis > div:hover{
        height: 245px;
    }  
    #hvezdy-pomahaji-image .hvezdy-popis > div > div p{
        font-size: 90%;
    } 
    #hvezdy-pomahaji-image .hvezdy-popis > div > div{
        padding: 20px 20px 0px 20px;
    }    
}
#hvezdy-pomahaji-image .hvezdy-nav{
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    line-height: 1.45;
}
#hvezdy-pomahaji-image .hvezdy-nav > div{
    margin: 0 auto;
    text-align: center;
    background-color: #F4F3EF;
}
#hvezdy-pomahaji-image .hvezdy-nav > div li{
    list-style: none;
    float: left;
    padding:12px 32px 12px 35.2px;
    border-bottom: 3px solid #F4F3EF;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;    
    font-family: "Roboto", sans-serif;
}
#hvezdy-pomahaji-image .hvezdy-nav > div li:hover,
#hvezdy-pomahaji-image .hvezdy-nav > div li.active{
    border-bottom: 3px solid #5A534B;
}

#hvezdy-pomahaji-text{
    background-color: #E9E9E9;  
    padding: 70px 0 0 0;
}
#hvezdy-pomahaji-text .hvezdy-image,
#hvezdy-pomahaji-text .hvezdy-popis{
    float: left;
    width:50%;
}
#hvezdy-pomahaji-text .hvezdy-popis{
    padding-bottom: 60px;
}
#hvezdy-pomahaji-text .hvezdy-image{
    position: relative;
    z-index: 110;
    text-align: right;
}
#hvezdy-pomahaji-text .hvezdy-image img{
    margin-right: 30px;
}
#hvezdy-pomahaji-text .hvezdy-popis p,
#hvezdy-pomahaji-text .hvezdy-popis h3{
    text-align: left;
    margin-left: 30px;
    margin-right: 30px
}
#hvezdy-pomahaji-text .hvezdy-popis .italic{
    font-style: italic;
}
#hvezdy-pomahaji-text .hvezdy-popis a .italic{
    text-decoration: underline;
}
#hvezdy-pomahaji-text .hvezdy-popis h3 .jmeno{
    font-size: 0.7em
}
#hvezdy-pomahaji-text .hvezdy-popis h3 .pro{
    font-size: 0.5em;
    font-style: italic;
    font-weight: 400;
}
#hvezdy-pomahaji-text .hvezdy-popis h3 .nadace{
    text-transform: uppercase;
    display: block;
    font-size: 0.6em;
    line-height: 1.1em
}

#hvezdy-pomahaji-bota{
    text-align: center;
    background-color: #ffffff;
    position: relative;
    z-index: 100;
    top: -50px;
}
#hvezdy-pomahaji-bota .hvezdy-image,
#hvezdy-pomahaji-bota .hvezdy-popis{
    text-align: center;
    margin: 0 auto
}
#hvezdy-pomahaji-bota .hvezdy-image{
    padding-top: 80px;
}
#hvezdy-pomahaji-bota .hvezdy-popis p{
    display: none;
}
#hvezdy-pomahaji-bota .hvezdy-popis p#shoeText1,
#hvezdy-pomahaji-bota .hvezdy-popis p.visible{
    display: block;
}
#seznam_obchodu {
    width: 750px;
    height: auto;
    background-color: #F1F1ED;     
}
#seznam_obchodu div{
    width: 100%;
    text-align: center;
    color: #373533!important;
    background-color: #F1F1ED;
    background-image: url(../static/www/images/tribe/fact_after_video/Fact_Background.png);
}
#seznam_obchodu .stores {
    padding: 20px 0!important;
}
#seznam_obchodu .stores .claim{
    color: #373533;
    margin-bottom: 10px;
    font-weight: 700;
}
#seznam_obchodu .stores .store > div > div{
    margin: 0!important;
}



/*BAGS*/
#bags-image {
    background-color: #EEDA7D;
}
#bags-image .bags-image{
    position: relative;
}
#bags-image .bags-image img{
    width: 100%;
    height: auto;
}

#bags-main {
    color: #ffffff;
    background-color: #EFDB77;
    padding: 0 0 4em 0;
    margin: 0;
}
#bags-main h2 {
    font-size: 54px;
}
#bags-main h2 span{
    font-style: italic;
    font-weight: normal;
}
#bags-main p {
    padding: 0 20%;
}

#bags-each-bag {
    padding: 0;    
    background-color: #DDDDDD;
}

#bags-each-bag .left,
#bags-each-bag .right {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    vertical-align: middle;
    text-align: center;
}
#bags-each-bag .left h3 {
    font-size: 20px;
    padding: 0 20px;
}
#bags-each-bag .left p {
    padding-bottom:10px;
}
#bags-each-bag .left p {
    padding-left:20%;
    padding-right:20%;
}
#bags-each-bag .right img {
    padding: 0;
    margin: 0;
    width: 100%;
    height: auto;
    line-height: 0;
}
@media only screen and (min-width: 1366px) {
    #bags-each-bag .left {
        width: 50%;
    }    
    #bags-each-bag .right {
        float: right;
        width: 50%;
    }   
    #bags-each-bag .right img {
        width: auto;
        height: 100%;
    }        
}
@media only screen and (min-width: 1500px) { 
    #bags-each-bag .left p {
        padding-left:5%;
        padding-right:5%;
    }   
    #bags-each-bag .right img {
        width: 100%;
        height: auto;
    }    
}

@media only screen and (min-width: 1680px) {      
    #bags-each-bag .left p {
        padding-left:20%;
        padding-right:20%;
    }   
}


#bags-citat {
    background-color: #C2C2C2;
    position: relative;
}
#bags-citat img.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}
#bags-citat .left {
    position: relative;
    padding: 5em 0 4em 0;
}
#bags-citat h2 {
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0;
}
#bags-citat h2 span {
    font-style: italic;
    text-transform: lowercase;
}
#bags-citat .source {
    font-size: 12px;
    font-weight: normal;
    text-transform: uppercase;
    font-style: italic;
}

#bags-helping {
    position: relative;
    background-color: #F6E16F;
}
#bags-helping .left {
    float: left;
    height: 1100px;
    overflow: hidden;
}
#bags-helping .left {
    width: 50%;
}   
#bags-helping .left.imgs{
    width: 25%;
}  

@media only screen and (min-width: 1366px) {
    #bags-helping .left {
        width: 50%;
    }   
    #bags-helping .left.imgs{
        width: 25%;
    }   
}
@media only screen and (min-width: 1860px) {
    #bags-helping .left {
        width: 33.33%;
    }   
    #bags-helping .left.imgs{
        width: 33.33%;
    }    
}
#bags-helping .left.imgs{
    line-height: 0;
    padding: 0;
    margin: 0;
    text-align: right;
    background-color: #ffffff;
}
#bags-helping .left.imgs > img{
    height: 50%;
    width: auto;
    
}
#bags-helping .left.imgs.right{
    text-align: left;
}
#bags-helping h2 {
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 700;
}
#bags-helping p {
    font-size: 20px;
    font-weight: 700;
    padding: 0 2em;
}
#bags-helping p.text {
    padding-top: 1em;
    margin-bottom: 0;
}

#bags-helping p.source {
    font-size: 12px;
    font-weight: normal;
    text-transform: uppercase;
    font-style: italic;
}
#gv-pur-support  li  {
    text-align: center;
    padding-bottom: 3em;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    width: 300px;
    margin: 0 auto;
    position: relative;
    left: -40px;
}
#gv-pur-support  li .step {
    font-size: 36px;
    font-weight: 800;
    padding: 1em 0;
}
.ico {
    float: left;
    margin: 98px 0 0 0;
    padding-right: 10px;
    width: 71px;
    height: 66px;
    border-right: 2px solid #000000;
}
.ico-health .ico {
    background-image: url('../img/bags/icons/health.png');
    background-position: top left;
    background-repeat: no-repeat;
}
.ico-train .ico {
    background-image: url('../img/bags/icons/train.png');
    background-position: top left;
    background-repeat: no-repeat;
}
.ico-incr .ico {
    background-image: url('../img/bags/icons/incr.png');
    background-position: top left;
    background-repeat: no-repeat;
}
#bags-product {
    text-align: center;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}
#bags-product img.bg {
    margin: 0 auto;
    width: 100%;
    height: auto;
}
#bags-product .wrapper {
    position: relative;
    z-index: 100;
}
#bags-product .popis {
    position: absolute;
    top: 50px;
    right: 25%;
    width: 30%;
}
@media only screen and (min-width: 1160px) {
    #bags-product img.bg {
    }   
}
@media only screen and (min-width: 1366px) {
    #bags-product .popis {
        top: 100px;
        right: 20%;
        width: 35%;
    }     
}
@media only screen and (min-width: 1900px) {
    #bags-product img.bg {
        margin: 0 auto;
        width: 1902px;
        height: 1071px;
    }    
    #bags-product .popis {
        top: 150px;
        right: 17%;
        width: 40%;
    } 
}
#bags-product .popis h3{
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
}

#seznam_obchodu {
    width: 750px;
    height: auto;
    background-color: #F1F1ED;     
}
#seznam_obchodu div{
    width: 100%;
    text-align: center;
    color: #373533!important;
    background-color: #F1F1ED;
    background-image: url(../static/www/images/tribe/fact_after_video/Fact_Background.png);
}
#seznam_obchodu .stores {
    padding: 20px 0!important;
}
#seznam_obchodu .stores .claim{
    color: #373533;
    margin-bottom: 10px;
    font-weight: 700;
}
#seznam_obchodu .stores .store > div > div{
    margin: 0!important;
}


/*PRIBEH TOMS*/
#pribeh-toms {
    margin-top: 50px;
    background-color: #F4F3EF;
}
#pribeh-toms .bg {
    position: relative;
}
#pribeh-toms .bg img {
    width: 100%;
    margin:0 auto;
}
#pribeh-toms .bg h2 {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: center;
    color: #fff;
}
#pribeh-toms #pribeh-toms-help  {
    position: relative;
    top:-200px;
}
#pribeh-toms .text div{
    text-align: justify;
    width:46%;
    margin: 15px 2% 30px 2%;
    float: left;
}
#pribeh-toms .text div p{
    text-align: justify;
}
#pribeh-toms #proc-boty{
    background: #96775c url("../img/pribeh-toms/proc-boty.jpg") repeat right top; 
    background-size: cover;
}
#pribeh-toms #proc-boty #proc-boty-in{
    padding: 20px 5%;
}
#pribeh-toms #proc-boty #proc-boty-in h3{
    color: #fff
}
#pribeh-toms #proc-boty #proc-boty-in p{
    color: #fff;
}

/*KOLEKCE*/
#kolekce {
   padding: 10px 0 50px 0; 
}
#kolekce #espadrilky .espadrilky-in{
    padding: 20px 20%;
    text-align: center;
}
#kolekce #espadrilky .espadrilky-in img{
    margin: 0 auto;
}

#kolekce #espadrilky .boty3 img{
    width: 30%;
    margin-left: 2%;
}

#kolekce .claim a{
    margin-top: 20px;
    text-decoration:none;
    font-family: "Roboto", sans-serif; 
    font-weight: 700;
}

/*KDO NOSI TOMS*/
#kdo-nosi-toms {
    background-color: #e8e5dd;
    color: #5D5B55;
    position: relative;
    padding-bottom: 100px;
}
#kdo-nosi-toms #kdo-nosi-toms-help  {
    position: relative;
    top:-40px;
}
#kdo-nosi-toms h2 {
    color: #5D5B55;
}
#kdo-nosi-toms .kdo-nosi-toms-in{
    margin: 0 5px;
}
#kdo-nosi-toms .kdo-nosi-toms-in .gallery{
    width: 100%;
    height: 600px;
    overflow: hidden;
    white-space: nowrap;
    float: left        
}
#kdo-nosi-toms .kdo-nosi-toms-in .left{
    left:5px;
}
#kdo-nosi-toms .kdo-nosi-toms-in .right{
    right:5px;
}
#kdo-nosi-toms .kdo-nosi-toms-in .nav .nav-in {
    padding-top: 250px;
    font-size: 100px;
    margin: 0 auto;
    text-align: center; 
    cursor: pointer;
}

#kdo-nosi-toms .kdo-nosi-toms-in .gallery .item {
    display: inline-block;
    background-color: #d8d3c5 ;
}

#kdo-nosi-toms .kdo-nosi-toms-in .gallery .item img {
    height: 500px;
    width: auto;
}
#kdo-nosi-toms .kdo-nosi-toms-in .gallery .item .label {
    text-align: center;
    color: #5D5B55;
    margin: 10px auto 15px auto;
}
@media only screen and (max-width: 1366px) {
    #kdo-nosi-toms .kdo-nosi-toms-in .nav .nav-in {
        font-size: 80px;
    }
    #kdo-nosi-toms .kdo-nosi-toms-in .nav{
        top:94px;
    }    
}

/*ONE FOR ONE*/
#one-for-one {
    background-color: #56c09e;
    padding-bottom: 50px;
}
.one-for-one-in{
    margin: 0 auto;
    width: 90%;
}
#one-for-one h2{
    padding: 0;
    margin-bottom: 40px;
}
#one-for-one h2 img{
    width: 100%;
}
#one-for-one .text p{
    color: #fff;
    text-align: justify;
    width:46%;
    margin: 15px 2% 0 2%;
    float: left;
}

#one-for-one-2 {
    background-color: #F0DD70;
    /* color: #ffffff; */
    font-weight: 500;
}
#one-for-one-2 .group {
    margin: 0 auto;
}
#one-for-one-2 .group .item{
    width: 33.33%;
    float: left;
}
#one-for-one-2 .group .item .item-in{
    margin: 0 0;
    line-height: 0;
    border-left: 3px solid #F0DD70;
    border-right: 3px solid #F0DD70;    
}
#one-for-one-2 .group .item .item-in img{
    width: 100%;
}
#one-for-one-2 .group .item .item-in p{
    padding: 20px;
}
#one-for-one-2 .group .item .item-in p.first{
    background-color: #F5E7A0 ;
}
#one-for-one-2 .group .item .item-in p.second{
    background-color: #F5E7A0  ;
}
#one-for-one-2 .group .item .item-in p.third{
    background-color: #F5E7A0  ;
}

#one-for-one-3 {
    background-color:#FFFFFF;
    padding: 1px 0 0 0;
}
#one-for-one-3 h3{
    padding-top: 30px;
}
#one-for-one-3 p{
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}
#one-for-one-3 .one-for-one-in .boty3 {
    width: 90%;
    height: 300px;    
    margin:0 auto 0 auto;
    padding-left: 1%;
    padding-top: 60px;
}
#one-for-one-3 .one-for-one-in .boty3 div{
    width: 15%;
    height: 100%;
    margin: 0 2%;
    float: left;
    cursor: pointer;
}
#one-for-one-3 .one-for-one-in .boty3 #navShoe1 img{
    padding-top: 90px;
}
#one-for-one-3 .one-for-one-in .boty3 #navShoe2 img{
    padding-top: 15px;
}
#one-for-one-3 .one-for-one-in .boty3 #navShoe3 img{
    padding-top: 95px;
}
#one-for-one-3 .one-for-one-in .boty3 #navShoe4 img{
    padding-top: 75px;
}
#one-for-one-3 .one-for-one-in .boty3 #navShoe5 img{
    padding-top: 90px;
}
#one-for-one-3 .one-for-one-in .boty3 .active{
    background-image: url(../img/one-for-one/triangle.png);
    background-position: center bottom;
    background-repeat: no-repeat;
}
#one-for-one-3 .one-for-one-in .boty3 div img{
    width: 100%;
    height: auto;
}
#one-for-one-3 .one-for-one-in .boty3 div h4{
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.45em;
    margin-top: 15px;
}
#one-for-one-3-boty {
    background-color: #DFDFDF;
}
#one-for-one-3-boty .darovaci-bota {
    display: none;
    width: 900px;
    margin: 0 auto;
    list-style: none;
}
#one-for-one-3-boty .darovaci-bota.active {
    display: block;
}
#one-for-one-3-boty .darovaci-bota .columns{
    float: left;
    padding: 40px 0;
    position: relative;
}
#one-for-one-3-boty .darovaci-bota .medium-3{
    width: 25%
}
#one-for-one-3-boty .darovaci-bota .medium-9{
    width: 75%
}
#one-for-one-3-boty .darovaci-bota h4{
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.9em;
}

#one-for-one-3-boty .darovaci-bota li{
    font-size: 15px;
    margin:10px 0; 
    line-height: 1.45;
    font-size: 14px;
}
#one-for-one-3-boty .darovaci-bota img{
    width: 100%;
    height: auto;
}


    #gv-wwg-pointer {
        display: none;
        position: absolute;
        width: 0;
        height: 0;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 25px solid #dfdfdf;
        margin-left: -15px;
        bottom: -3px;
        -webkit-transition: left .5s;
        -moz-transition: left .5s;
        transition: left .5s;
    }
    #gv-wwg.open #gv-wwg-pointer {
        display: block;
    }
    .gv-prod-pane.active {
        position: static;
    }
    .gv-prod-det-m {
        display: block;
    }
    #gv-prod-det-inner {
        padding-top: 45px;
        padding-bottom: 45px;
        background-repeat: no-repeat;
        background-position: top center;
        background-size: cover;
    }
    .gv-prod-pane li, .gv-prod-pane p {
        margin-bottom: 10px;
    }
    .gv-prod-pane ul {
        margin-top: 20px;
    }
    .gv-prod-img {
        width: auto;
        display: block;
        margin: 30% 0 10% 5%;
        padding-right: 0%;
    }
    .gv-pointer {
        width: 11%;
        height: 1px;
        background: #7fb2d5;
        position: absolute;
        -webkit-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
    }
    .gv-pointer:before {
        content: "";
        display: block;
        width: 11px;
        height: 11px;
        border-radius: 6px;
        background: #7fb2d5;
        position: absolute;
        margin: -5px 0 0 -5px;
    }
    #slipon-pointer1 {
        -webkit-transform: rotate(-70deg);
        -moz-transform: rotate(-70deg);
        -ms-transform: rotate(-70deg);
        transform: rotate(-70deg);
        top: 48%;
        left: 23%;
    }
    #slipon-pointer2 {
        width: 18%;
        -webkit-transform: rotate(32deg);
        -moz-transform: rotate(32deg);
        -ms-transform: rotate(32deg);
        transform: rotate(32deg);
        top: 75%;
        left: 40%;
    }
    .prod-det-bull {
        list-style: disc;
        position: absolute;
        padding-right: 15px;
    }
    .prod-det-bull li {
        margin-bottom: 5px;
    }
    #prod-slipon-det1 {
        top: 19%;
        right: 0%;
    }
    #prod-slipon-det2 {
        top: 80%;
        right: 10%;
    }
    #gv-wboot-det .gv-prod-img {
        margin: 0 0 5% 5%;
    }
    #wboot-pointer1 {
        width: 16%;
        top: 28%;
        left: 50%;
    }
    #wboot-pointer2 {
        top: 69%;
        left: 83%;
        -webkit-transform: rotate(-60deg);
        -moz-transform: rotate(-60deg);
        -ms-transform: rotate(-60deg);
        transform: rotate(-60deg);
    }
    #wboot-pointer3 {
        width: 10%;
        top: 84%;
        left: 16%;
        -webkit-transform: rotate(70deg);
        -moz-transform: rotate(70deg);
        -ms-transform: rotate(70deg);
        transform: rotate(70deg);
    }
    #prod-wboot-det1 {
        top: 20%;
        left: 72%;
    }
    #prod-wboot-det2 {
        top: 44%;
        right: -10%;
    }
    #prod-wboot-det3 {
        bottom: 0%;
        left: 28%;
    }
    #wslipon-pointer1 {        
        width: 12%;
        top: 53%;
        left: 45%;
        -webkit-transform: rotate(-125deg);
        -moz-transform: rotate(-125deg);
        -ms-transform: rotate(-125deg);
        transform: rotate(-125deg);
    }
    #wslipon-pointer2 {
        width: 10%;
        top: 75%;
        left: 38%;
        -webkit-transform: rotate(50deg);
        -moz-transform: rotate(50deg);
        -ms-transform: rotate(50deg);
        transform: rotate(50deg);
    }
    #prod-wslipon-det1 {
        top: 25%;
        left: 35%;
    }
    #prod-wslipon-det2 {
        top: 77%;
        left: 52%;
    }
    #gv-spshoe-det .gv-prod-img {
        margin: 18% 0 10% 5%;
    }
    #spshoe-pointer1 {
        -webkit-transform: rotate(-50deg);
        -moz-transform: rotate(-50deg);
        -ms-transform: rotate(-50deg);
        transform: rotate(-50deg);
        top: 39%;
        left: 50%;
    }
    #spshoe-pointer2 {
        width: 18%;
        -webkit-transform: rotate(32deg);
        -moz-transform: rotate(32deg);
        -ms-transform: rotate(32deg);
        transform: rotate(32deg);
        top: 75%;
        left: 40%;
    }
    #prod-spshoe-det1 {
        top: 11%;
        left: 48%;
    }
    #prod-spshoe-det2 {
        top: 80%;
        left: 62%;
    }
    #gv-locshoes-det .gv-prod-img {
        margin: 10% 0 5% 10%;
    }
    #gv-fact.prod-fact h3 b {
        letter-spacing: 2px;
    }
    #gv-fact.shoe-fact h3 {
        font-size: 30px;
    }
    #gv-fact.shoe-fact h3 b {
        font-size: 28px;
    }
    #gv-fact.shoe-fact .main {
        font-size: 36px;
        text-indent: 30px;
    }






#one-for-one-4 {
    background: #eeebe8 url("../img/one-for-one/bg.jpg") repeat right top; 
    padding: 50px 0 0 0;
}
#one-for-one-4 h3{
    color:#7A755D;
}
#one-for-one-4 .group {
    margin: 50px auto 0 auto;
}
#one-for-one-4 .group .item{
    width: 33.33%;
    height: 300px;
    float: left;
    padding-bottom: 40px;
    text-align: center;
}
#one-for-one-4 .group .item .item-in{
    margin: 0 20px;
}
#one-for-one-4 .group .item .item-in .number{
    color: #C1AA89;
    font-size: 30px;
    padding-top: 12px;
    width:50px;
    height:38px;
    border: 2px solid #C1AA89;
    border-radius: 25px;
    text-align: center;
    font-family: "Roboto", sans-serif; 
    font-weight: 500;
    margin: 0 auto 20px auto;
}

#one-for-one-4 .group .item .item-in h4 div{
    text-transform: uppercase;
    color: #7A755C;
    font-weight: 700;
    font-size:20px;
}
#one-for-one-4 .group .item .item-in p{
    clear: both;
    color: #7A755C;
    padding-top: 5px;
}
@media only screen and (max-width: 1366px) {
    #one-for-one-4 .page {
        width: 800px;
        margin: 0 auto;
    }
    #one-for-one-4 .group .item .item-in{
        margin: 0 15px;
    }
    #one-for-one-4 .group .item{
        width: 49%;
        height: 230px;
    }
    #one-for-one-4 .group .item .item-in h4 div{
        font-size:16px;
    }    
}



#gv-wwg li {
    swidth: 20%;
    float: left;
    display: s;
}
#gv-wwg li.active {
    display: block;
}
.prod-img-cnt{
    width: 20%;
}
.gv-prod-pane {
    width: 100%;
}



/*DEN BEZ BOT*/
#den-bez-bot {
    background-color: #eee;
    background-size: 100%;
    padding-bottom: 100px
}
#den-bez-bot .bg h2 {
    color: #000;
    padding: 100px 0 50px;
}
#den-bez-bot .white {
    color: #fff;
}
#den-bez-bot .wrapper{
    width: 1100px;
    background-color: #4697B5;
    padding: 0 0 50px 0;
}
#den-bez-bot .wrapper .full_img{
    width: 100%;
    height: auto;
}
#den-bez-bot .den-bez-bot-in{
    width: 80%;
    margin: 0 auto;
    text-align: center;
}
#den-bez-bot .den-bez-bot-in h3,
#den-bez-bot .den-bez-bot-in p{
    color: #fff;
}
#den-bez-bot .den-bez-bot-in a.button{
    color: #ffffff;
    border-color: #ffffff;
    margin: 0 auto 30px auto;
}
#den-bez-bot .den-bez-bot-in a.button:hover{
    color: #4A97B3;
    border-color: #ffffff;
    background-color: #ffffff;
    
}
#den-bez-bot .den-bez-bot-in iframe{
    margin: 0 auto;
}
#den-bez-bot .den-bez-bot-in .video{
    width: 500px;
    margin: 0 auto;
    padding: 30px 40px 0 40px;
}
#den-bez-bot .den-bez-bot-in img{
    display: block;
    margin: 0 auto;
    padding: 40px;
}
#den-bez-bot .wrapper-down{
    width: 0px;
    height: 0px;
    margin: 0 auto;
    border-style: solid;
    border-width: 0px 550px 225px;
    border-color: transparent #4697B5;
}
@media only screen and (max-width: 1366px) {
    #den-bez-bot .wrapper{
        width: 800px;
        background-color: #4697B5;
        padding: 0 0 50px 0;
    }
    #den-bez-bot .wrapper-down{
        width: 0px;
        height: 0px;
        margin: 0 auto;
        border-style: solid;
        border-width: 0px 400px 200px;
        border-color: transparent #4697B5;
    }
}

/*KDE KOUPIT TOMS*/
#kde-koupit-toms {
    margin-top: 0;
    background-color: #62C68B;
    padding: 50px 0;
}
#kde-koupit-toms .kde-koupit-toms-in{
    width: 80%;
    margin: 0 auto;
}
#kde-koupit-toms h2,
#kde-koupit-toms .kde-koupit-toms-in h3,
#kde-koupit-toms .kde-koupit-toms-in h4,
#kde-koupit-toms .kde-koupit-toms-in p{
    color: #fff;
    text-align: center;
}
#kde-koupit-toms .kde-koupit-toms-in .claim{
    margin-bottom: 40px;
}
#kde-koupit-toms .kde-koupit-toms-in a img{
    display: block;
    margin: 0 auto;
    padding-bottom: 40px;
    width: 244px;
    height:40px;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
    transition:.3s;
}
#kde-koupit-toms .kde-koupit-toms-in a img:hover{
    width: 271px;
    height: 44px;
}
.stores {
    width:50%;
    float: left;
}
.stores h4 {
    display: block;
    margin: 0;
    padding: 5px 0 0px 0;
    width: 100%;
    clear: both;
}
.stores .store{
    margin: 0 auto 10px auto;
    width: 100%;
}
.stores .store > div{
    margin: 0 auto;
    width: 100%;
}

.stores .store > div > div{
    text-align: center;
    margin:0 2%;
    color: #fff;
    font-size: 14px;
}

.back { text-align: center;margin-bottom: 50px;}

/*FOOTER*/
footer {
    background-color: #5A534C;
    height: 50px;
    color: #fff;
}
footer .footer-in > div {
    width: 33%;
    float: left;
    line-height: 50px;
}
footer.footer-in .left {
    text-align: left
}
footer .footer-in .center {
    text-align: center
}
footer .footer-in .right {
    text-align: right
}
footer .footer-in .center .nahoru {
    width: 110px;
    margin: 0 auto;
}
footer .footer-in .center .nahoru .nahoru-text,
footer .footer-in .center .nahoru .nahoru-arr {
    float: left;
}
footer .footer-in .center .nahoru-arr {
    width: 0;
    height: 0;
    margin: 20px 10px 0 10px;
    border-style: solid;
    border-width: 0 6px 9px 6px;
    border-color: transparent transparent #ffffff transparent;
}

footer,
footer a,
footer a:link,
footer a:active,
footer a:visited {
    font-size:14px;
    color:#fff;
    font-family: "Roboto", sans-serif; 
    font-weight: 700;
}
footer a:hover {
    color:#62C68B;
}

@media only screen and (max-width: 1366px) { 
    footer,
    footer a,
    footer a:link,
    footer a:active,
    footer a:visited {
        font-size:13px;
    }
}




.clear{
    clear:both;
    height: 0;
    line-height: 0;
}