@charset "UTF-8";
/* poppins-regular - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/poppins-v20-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/poppins-v20-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/poppins-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/poppins-v20-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('fonts/poppins-v20-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/poppins-v20-latin-regular.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-700 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/poppins-v20-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/poppins-v20-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/poppins-v20-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/poppins-v20-latin-700.woff') format('woff'), /* Modern Browsers */
       url('fonts/poppins-v20-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/poppins-v20-latin-700.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-900 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  src: url('fonts/poppins-v20-latin-900.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/poppins-v20-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/poppins-v20-latin-900.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/poppins-v20-latin-900.woff') format('woff'), /* Modern Browsers */
       url('fonts/poppins-v20-latin-900.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/poppins-v20-latin-900.svg#Poppins') format('svg'); /* Legacy iOS */
}

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;  
}

html {
  margin: 0;
  padding: 0;
}

body {
	margin: 0px;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 26px;
	color: black;
	height: 100%;
    background-color: rgba(252,250,246, 1.0);
}

.hamburger {
  display: block;
  width: 50px;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  padding-left: 40px;
  padding-top: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}
.hamburger__icon {
  position: relative;
  margin-top: 0px;
  margin-bottom: 0px;
}
.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after {
  display: block;
  width: 45px;
  height: 8px;
  margin-top: 21px;
  background-color: black;
  -moz-transition-property: background-color, -moz-transform;
  -o-transition-property: background-color, -o-transform;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.hamburger__icon:before, .hamburger__icon:after {
  position: absolute;
  content: "";
}
.hamburger__icon:before {
  top: -7px;
}
.hamburger__icon:after {
  top: 7px;
}
.hamburger.active .hamburger__icon {
  background-color: transparent;
}
.hamburger.active .hamburger__icon:before, .hamburger.active .hamburger__icon:after {
  background-color: black;
}
.hamburger.active .hamburger__icon:before {
  -moz-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  -webkit-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active .hamburger__icon:after {
  -moz-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
  -webkit-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}

.fat-nav {
  top: 0;
  left: 0;
  z-index: 9999;
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(252,250,246, 0.9);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.fat-nav__wrapper {
  width: 100%;
  height: 100%;
  display: table;
  table-layout: fixed;
}
.fat-nav.active {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.fat-nav ul {
  display: table-cell;
  vertical-align: middle;
  margin: 0;
  padding: 0;
}
.fat-nav li {
  list-style-type: none;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 40pt;
  line-height: 62pt;
}
.fat-nav li, .fat-nav li a {
  color: black;
}
.fat-nav li a {
  text-decoration: none;
}

#cf {
  position:relative;
  height:700px;
  width:240px;
  margin:0 auto;
}

#cf img {
  position:absolute;
  left:0;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}

#cf img.top:hover {
  opacity:0;
}

#language
{
	text-align: right;
    width: 100%;
	position: relative;
    padding-top: 40px;
    padding-right: 40px;
}

#start {
	width: 70vw; 
    margin-top: 0px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	position: relative;
    display: inherit;
}
#start-mobile {
	width: 90vw; 
    margin-top: 0px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	position: relative;
    display: none;
}
img.start-logo {
	height: auto;
	width: 100%;
    padding-top: 4%;
    padding-bottom: 0%;
	margin: 0px;
}
img.out {
    opacity: 0.4;
    filter: alpha(opacity=40); /* For IE8 and earlier */
	}
#tank {
	text-align: left;
	width: 760px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	position: relative;
}
#block {
	text-align: left;
	height: 70px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	position: relative;
}
#twin-block {
	text-align: left;
	height: 90px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	position: relative;
}
section {
  padding-top: 50px;
}
section-text {
  padding-top: 0px;
}
#next {
	text-align: center;
	width: 760px;
	margin-top: 0px;
	position: relative;
}
#next-bottom {
  width: 100%;
  text-align: center;
  position: absolute;
  padding-bottom: 60px;
  bottom: 0;
}
#next-text {
  width: 100%;
  text-align: center;
  padding-bottom: 90px;
}
#center {
	display: table;
	margin: 0 auto;
	text-align: center;
}
#bottles {
	display: inherit;
	margin: 0 auto;
	text-align: center;
    position: relative;
}
#bottles-mobile {
	display: none;
	margin: 0 auto;
	text-align: center;
}
#center-wine {
	display: table;
	margin: 0 auto;
	text-align: center;
}
#content {
	text-align: left;
	width: 760px;
	margin-top: 0px;
    padding-bottom: 0px;
	position: relative;
}
#container-left {
    float: left;
	text-align: left;
	width: 240px;
	margin-right: 20px;
    margin-top: 90px;
	position: relative;
}
#container-right {
    float: right;
	text-align: left;
	width: 240px;
	margin-right: 0px;
    margin-top: 90px;
	position: relative;
}
#brand {
	height: 120px;
	position: relative;
}
#text {
    height: 250px;
	text-align: left;
	position: relative;
    padding-bottom: 0px;
}
#label {
	margin-top: 0px;
	position: relative;
}
#shop {
    display: table;
	text-align: center;
	width: 760px;
    height: 0px;
	position: relative;
}
#shop-BG {
    background-image: url(_pix/Joachim-Wein-BG-Einkauf.png);
    -webkit-background-size: cover; 
    -moz-background-size: cover;    
    -o-background-size: cover;  
    background-size: cover;
    background-position: right top;
    background-repeat: no-repeat;
    background-size: 100% auto;
	display: table;
	margin: 0 auto;
}
#shop-content {
	display: table;
	width: 650px;
	margin: 0 auto;
}
#shop-textblock {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 26px;
    float: left;
    width: 100%;
    margin-bottom: 20px;
	text-align: left;
	position: relative;
}
#shop-label {
    float: left;
    width: 150px ;
    height: 75px;
	text-align: left;
	position: relative;
}
#shop-wine {
    float: left;
	text-align: left;
    width: 350px ;
	position: relative;
}
#shop-price {
    float: left;
	text-align: left;
	position: relative;
}
.price {
    height: 75px;
    vertical-align: middle;
	text-align: right;
	position: relative;
}
#image-story {
     background-image: url(_pix/Joachim-Wein-BG-Story2.jpg);
     -webkit-background-size: cover; 
    -moz-background-size: cover;    
    -o-background-size: cover;  
    background-size: cover;
    height: 800px;
	position: relative;
}
#image-bio {
     background-image: url(_pix/stefan-joachim-wein01.jpg);
     -webkit-background-size: cover; 
    -moz-background-size: cover;    
    -o-background-size: cover;  
    background-size: cover;
    height: 800px;
	position: relative;
}
#image-contact {
     background-image: url(_pix/Joachim-Wein-BG-Contact.jpg);
     -webkit-background-size: cover; 
    -moz-background-size: cover;    
    -o-background-size: cover;  
    background-size: cover;
    height: 800px;
	position: relative;
}
#text-story {
    font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 26px;
	color: black;
    height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
	position: relative;
}
#text-bio {
    font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 26px;
	color: black;
    height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
	position: relative;
}
#text-contact {
    font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 26px;
	color: black;
    height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
	position: relative;
}
#center-text {
    width: 760px;
	display: table;
	margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 60px;
	text-align: left;
}
#contact-BG {
    background-image: url(_pix/Joachim-Wein-BG-Contact.png);
    -webkit-background-size: cover; 
    -moz-background-size: cover;    
    -o-background-size: cover;  
    background-size: cover;
    background-position: center 60px;
    background-repeat: no-repeat;
    background-size: 100% auto;
	display: table;
	margin: 0 auto;
}
#center-contant-contact {
    width: 760px; 
	display: table;
	margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 60px;
	text-align: left;
}
#contact01 {
    float: left;
    width: 48%;
    margin-bottom: 0px;
	text-align: left;
	position: relative;
}
#contact02 {
    float: right;
    width: 48%;
    margin-bottom: 0px;
	text-align: left;
	position: relative;
}
img.shop-mini-label {
	height: 75px;
	width: auto;
	margin-left: 40px;
}
img.shop-wine-label {
	height: 75px;
	width: auto;
	margin-left: 0px;
}

img.bottle {
	width: 100%;
	margin: 0px;
}
img.mini-label {
	height: auto;
	width: 80px;
	margin-top: 60px;
    margin-bottom: 90px;
}
img.headline {
	height: auto;
	width: 250px;
	margin-top: 0px;
    margin-bottom: 0px;
}
img.next-button {
	height: auto;
	width: 45px;
	margin: 0px;
}

a:link, a:visited, a:active {
	color: black;
	text-decoration: none;
} 
a:hover {
	color: black;
	text-decoration: none;
}
a.green:link, a.green:visited, a.green:active {
	color: black;
	text-decoration: none;
} 
a.green:hover {
	color: rgba(65,173,73, 1.0);
	text-decoration: none;
}
a.pink:link, a.pink:visited, a.pink:active {
	color: black;
	text-decoration: none;
} 
a.pink:hover {
	color: rgba(240,0,140, 1.0);
	text-decoration: none;
}
a.yellow:link, a.yellow:visited, a.yellow:active {
	color: black;
	text-decoration: none;
} 
a.yellow:hover {
	color: rgba(255,242,0, 1.0);
	text-decoration: none;
}
a.orange:link, a.orange:visited, a.orange:active {
	color: black;
	text-decoration: none;
} 
a.orange:hover {
	color: rgba(242,90,34, 1.0);
	text-decoration: none;
}
a.petrol:link, a.petrol:visited, a.petrol:active {
	color: black;
	text-decoration: none;
} 
a.petrol:hover {
	color: rgba(22,190,207, 1.0);
	text-decoration: none;
}

a.BIGbutton {
	font-family: 'Poppins', sans-serif;
    font-weight: 900;
    color: black;
	cursor: pointer;
	font-size: 18px;
    line-height: 26px;
	text-align: center;
	border: 2px solid black;
	padding-top: 14px;
	padding-bottom: 14px;
    padding-right: 50px;
	padding-left: 50px;
    position: relative;
    background-color: rgba(252,250,246, 1.0);
}
a.BIGbutton:hover {
	background-color: black;
    text-decoration: none;
	color: white;
	border: 2px solid black;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
	font-size: 22px;
	line-height: 30px;
	text-transform: none;
	letter-spacing: 0px;
	padding-top: 0px;
}
h2 {
	font-size: 16px;
    font-weight: 900;
	line-height: 22px;
    font-weight: 400;
}
h3 {
    font-weight: 700;
    font-size: 18px;
	line-height: 24px;
}
h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
	font-size: 14px;
    line-height: 18px;
	text-transform: none;
}

#footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	height: 140px;
	text-align: left;
	padding-left: 200px;
}

#mc_embed_signup form {
	display: block;
	position: relative;
	text-align: left;
    background-color: none;
}
#mc_embed_signup input {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    background-color: rgba(252,250,246, 1.0);
	border: 2px solid black;
	-webkit-appearance: none;
	color: black;
}
#mc_embed_signup input:focus {
	color: black;
	list-style-type: none;
	outline-width: 0;
    background-color: rgba(252,250,246, 1.0);
}
#mc_embed_signup .button {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
	clear: both;
	color: black;
	cursor: pointer;
	display: inline-block;
	font-size: 18px;
	line-height: 26px;
	text-align: center;
	text-decoration: none;
    padding-top: 14px;
	padding-bottom: 14px;
	padding-right: 60px;
	padding-left: 60px;
	border: 2px solid black;
}
#mc_embed_signup .button:hover {
	background-color: black;
	color: rgba(252,250,246, 1.0);
	border: 2px solid black;
}
#mc_embed_signup .mc-field-group {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 26px;
	clear: left;
	position: relative;
	width: 100%;
	min-height: 20px;
	margin-bottom: 8px;
    background-color: none;
}
#mc_embed_signup .mc-field-group input {
	display: block;
	width: 99%;
	text-indent: 2%;
    padding-top: 14px;
	padding-bottom: 14px;
    padding-left: 10px;
    background-color: none;
}
#mc_embed_signup .mc-field-group select {
	display: inline-block;
	width: 99%;
	padding: 10px 0;
	margin-bottom: 2px;
}     
#mc_embed_signup .mc-field-group.input-group label {display:inline;}
#mc_embed_signup .mc-field-group.input-group input {
	display: inline;
	width: auto;
	border: none;
}
#mc-embedded-subscribe {
	clear: both;
	width: auto;
	display: block;
}




/*Responsive Styles*/

@media screen and (max-width : 760px){
    
section {
  padding-top: 50px;
}
    
#language
{
	text-align: right;
    width: 100%;
	position: relative;
    padding-top: 25px;
    padding-right: 10px;
}
    
.hamburger {
  display: block;
  width: 10px;
  height: 10px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  padding-left: 10px;
  padding-top: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}
.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after {
  display: block;
  width: 45px;
  height: 8px;
  margin-top: 21px;
  background-color: black;
  -moz-transition-property: background-color, -moz-transform;
  -o-transition-property: background-color, -o-transform;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
    
.fat-nav li {
  list-style-type: none;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 32pt;
  line-height: 52pt;
}
    
#start {
	width: 95vw; 
    margin-top: 0px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	position: relative;
    display: none;
}
#start-mobile {
	width: 95vw; 
    margin-top: 0px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	position: relative;
    display: inherit;
}
img.start-logo {
	height: auto;
	width: 100%;
    padding-top: 18%;
    padding-bottom: 2%;
	margin: 0px;
}
#tank {
	width: auto;
	margin-right: 10px;
	margin-bottom: auto;
	margin-left: 10px;
	position: relative;
}
#block {
	height: 40px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	position: relative;
}
#twin-block {
	height: 80px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	position: relative;
}
#content {
	text-align: left;
	width: auto;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: auto;
	margin-left: 10px;
	position: relative;
}
#next {
	text-align: center;
	width: 100%;
	margin-top: 0px;
	position: relative;
}
#bottles {
	display: none;
	margin: 0 auto;
	text-align: center;
    position: relative;
}
#bottles-mobile {
	display: inherit;
	margin: 0 auto;
	text-align: center;
}
#next-text {
  width: 100%;
  text-align: center;
  padding-bottom: 0px;
}
#shop {
    display: table;
	text-align: center;
	width: 100%;
	position: relative;
}
#container-left {
    float: left;
	text-align: left;
	width: 100%;
	margin-right: 0px;
    margin-top: 20px;
	position: relative;
}
#container-right {
    float: right;
	text-align: left;
	width: 100%;
	margin-right: 0px;
    margin-top: 20px;
    margin-bottom: 30px;
	position: relative;
}
#brand {
	height: auto;
	position: relative;
}
#text {
    height: auto;
	text-align: left;
	position: relative;
}
#label {
	margin-top: 0px;
	position: relative;
}
#center-wine {
	display: block;
	text-align: left;
}
#center-text {
    width: auto; 
	display: table;
    margin-right: 10px;
	margin-left: 10px;
    padding-top: 30px;
    padding-bottom: 40px;
	text-align: left;
}
#shop-BG {
    background-image: url(_pix/Joachim-Wein-BG-Einkauf.png);
    -webkit-background-size: cover; 
    -moz-background-size: cover;    
    -o-background-size: cover;  
    background-size: cover;
    background-position: right 40px;
    background-repeat: no-repeat;
    background-size: 100% auto;
	display: table;
	margin: 0 auto;
}
#image-story {
     background-image: url(_pix/Joachim-Wein-BG-Story2.jpg);
     -webkit-background-size: cover; 
    -moz-background-size: cover;    
    -o-background-size: cover;  
    background-size: cover;
    background-position: center top;
    height: 500px;
	position: relative;
}
#image-bio {
     background-image: url(_pix/stefan-joachim-wein01.jpg);
     -webkit-background-size: cover; 
    -moz-background-size: cover;    
    -o-background-size: cover;  
    background-size: cover;
    background-position: center top;
    height: 500px;
	position: relative;
}
#image-contact {
     background-image: url(_pix/Joachim-Wein-BG-Contact.jpg);
     -webkit-background-size: cover; 
    -moz-background-size: cover;    
    -o-background-size: cover;  
    background-size: cover;
    background-position: center top;
    height: 500px;
	position: relative;
}
#text-story {
    font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 21px;
	color: black;
    height: auto;
    padding-top: 20px;
    padding-bottom: 40px;
	position: relative;
}
#text-bio {
    font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 21px;
	color: black;
    height: auto;
    padding-top: 20px;
    padding-bottom: 40px;
	position: relative;
}
#text-contact {
    font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 21px;
	color: black;
    height: auto;
    padding-top: 20px;
    padding-bottom: 40px;
	position: relative;
}
#shop-content {
	display: table;
	width: 100%;
	margin: 0 auto;
}
#shop-label {
    float: left;
    width: auto;
    height: 50px;
	text-align: left;
	position: relative;
}
#shop-wine {
    float: left;
	text-align: left;
    width: auto;
	position: relative;
}
#shop-price {
    float: left;
    width: 100%;
	text-align: left;
	position: relative;
}
.price {
    height: 30px;
	text-align: right;
	position: relative;
}
#contact-BG {
    background-image: url(_pix/Joachim-Wein-BG-Contact.png);
    -webkit-background-size: cover; 
    -moz-background-size: cover;    
    -o-background-size: cover;  
    background-size: cover;
    background-position: center 60px;
    background-repeat: no-repeat;
    background-size: 95% auto;
	display: table;
	margin: 0 auto;
}
#center-contant-contact {
    width: auto; 
	display: table;
	margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-right: 10px;
	margin-left: 10px;
	text-align: left;
}
#contact01 {
    float: left;
    width: 100%;
    margin-bottom:60px;
	text-align: left;
	position: relative;
}
#contact02 {
    float: left;
    width: 100%;
    margin-bottom: 0px;
	text-align: left;
	position: relative;
}
img.shop-mini-label {
	height: 50px;
	width: auto;
	margin-left: 0px;
}
img.shop-wine-label {
	height: 50px;
	width: auto;
	margin-left: 10px;
}
img.headline {
	height: auto;
	width: 180px;
	margin-top: 0px;
    margin-bottom: 0px;
}
img.mini-label {
	height: auto;
	width: 75px;
	margin-top: 0px;
    margin-bottom: 40px;
}
img.next-button {
	height: auto;
	width: 45px;
	margin: 0px;
}
    
}
