/*
	Theme Name: vandeStreek-bier
	Version: 1.0
	Author: Minne Schalekamp
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-webkit-font-smoothing: antialiased;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
body {
	font-family: 'RajdhaniBold', sans-serif !important;
	background-color: #000 !important;
}
/* clear */
.clear:before,
.clear:after {
    content: ' ';
    display: table;
}

.clear:after {
    clear: both;
}
.clear {
    *zoom: 1;
}
a {
	color: #000000 !important;
	text-decoration: none !important;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
a:hover {
	color: #ff0000 !important;
}
a:focus {
	outline: 0;
}
a:hover,
a:active {
	outline: 0;
}
input:focus,
select:focus,
textarea:focus {
	outline: 0;
	border: 1px solid #ff0000;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* bootstrap */
.no-gutters {
  margin-right: 0;
  margin-left: 0;

  > .col,
  > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
  }
}
/* wrapper */
.vdS-wrapper {
	width: 100%;
	margin: auto;
	position: relative;
	overflow: hidden;
	background-color: #fff;
}
.vdS-regular {
	font-family: 'RajdhaniMedium', sans-serif !important;
}
/* header */
.vdS-header {
	position: fixed;
    padding: 50px;
    height: 100px;
    width: 100%;
	z-index: 9998;
	display: inline-block;
	background-color: transparent;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.vdS-header.shrink {
	padding: 30px;
	background-color: #000;
}
/* menu */
.vdS-hamburger {
    position: relative;
    float: left;
	height: 36.5px;
	width: 100%;
	min-width: 50px;
	max-width: 75px;
	background-image: url('img/header/HAMBURGER_B.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
    -webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.vdS-hamburger.shrink {
	background-image: url('img/header/HAMBURGER_W.png');
}
.vdS-hamburger:hover,
.vdS-hamburger.shrink:hover {
	background-image: url('img/header/HAMBURGER_R.png');
}
.vdS-close {
	margin: 50px 0 0 50px;
    position: relative;
    float: left;
	height: 36.5px;
	width: 100%;
	min-width: 50px;
	max-width: 75px;
	background-image: url('img/header/CLOSE_W.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
    -webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.vdS-close:hover {
	background-image: url('img/header/CLOSE_R.png');
	background-size: contain;
}
.vdS-logo {
	position: relative;
	top: 0px;
    height: 150px;
    width: auto;
    text-align: center;
    -webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.vdS-logo.shrink {
	top: -30px;
	height: 100px;
	width: auto;
	-webkit-filter: invert(1);
	filter: invert(1);
}
.vdS-logo-img {
	margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
	max-height: 100% !important;
	max-width: 100% !important;
}
.vdS-cart {
    position: relative;
    float: right;
	height: 36.5px;
	width: 100%;
	min-width: 50px;
	max-width: 75px;
	background-image: url('img/header/CART_B.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
    -webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.vdS-cart.shrink {
	background-image: url('img/header/CART_W.png');
}
.vdS-cart:hover,
.vdS-cart.shrink:hover {
	background-image: url('img/header/CART_R.png');
}
.vdS-fixed-menu-container {
	display: none !important;
	visibility: hidden !important;
}
.vdS-fixed-menu-container.shrink {
	display: block !important;
	visibility: visible !important;
}
.vdS-fixed-menu-container .menu-item {
	font-size: 1.8rem;
}
.vdS-fixed-menu-container li {
	display: inline;
	padding: 5px 20px;
}
.vdS-submenu {
	width: 100vw;
	height: 100%;
	padding-bottom: 50px;
	position: fixed;
	color: #fff;
	background-color: #000;
	text-align: center;
	overflow-y: scroll;
	overflow-x: hidden;
	z-index: 9999;
	display: none;
}
.vdS-submenu ul,
.vdS-fixed-menu-container ul {
	padding: 0;
	list-style-type: none;
}
.vdS-submenu .menu-item {
	font-size: 1.7rem;
	padding-bottom: 5px;
}
.vdS-submenu .menu-item a,
.vdS-fixed-menu-container .menu-item a {
	color: #fff !important;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.vdS-submenu .menu-item a:hover,
.vdS-fixed-menu-container .menu-item a:hover {
	color: #ff0000 !important;
}
.vdS-submenu .current-menu-item {
	padding-bottom: 10px;
}
.vdS-submenu .current-menu-item a,
.vdS-fixed-menu-container .current-menu-item a {
	color: #ff0000 !important;
	border-bottom: 3px solid #ff0000 !important;
}
/* WPML */
.wpml-ls-legacy-list-horizontal li {
	width: auto;
	height: auto;
	padding: 0px 10px !important;
	border-radius: 20.5px;
	background-color: #fff;
	font-size: 2rem;
	text-transform: uppercase;
}
.wpml-ls-legacy-list-horizontal li a {
	color: #000 !important;
}
.wpml-ls-legacy-list-horizontal li a:hover {
	color: #ff0000 !important;
}
/* footer */
.vdS-footer {
    width: 100%;
    min-height: 600px;
    padding: 25px;
    bottom: 0;
	color: #fff;
	background-color: #000;
}
.vdS-triangle {
	position: relative;
	top: 80px;
	width: 0;
	height: 0;
	border-bottom: 160px solid #ff0000;
	border-right: 160px solid transparent;
}
.vdS-triangle-text {
	position: relative;
	width: 140px;
	top: 100px;
	left: 10px;
}
.vdS-catch {
	height: 150px;
	padding: 25px 0;
	text-align: center;
}
.vdS-jamienee {
	position: relative;
	bottom: -30px;
	text-align: center;
}
.vdS-jamienee img {
	height: 50px;
	width: 50px;
}
.vdS-contact {
	text-align: right;
}
.vdS-contact a {
	color: #ff0000 !important;
}
.vdS-social img {
	margin: 20px 5px;
	height: 40px;
	width: 40px;
	/*border-radius: 30%;*/
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/

/* banners */
.vdS-header-container {
	width: 100%;
	height: 200px;
}
.vdS-fullscreen-banner {
	width: 100%;
	height: 100vh;
	background-color: #fff;
}
/* button */
.vdS-button {
	color: #fff !important;
	height: 30px;
	width: auto;
	font-size: 1.5rem;
}
.vdS-button:hover {
	color: #ff0000 !important;
	border-bottom: 3px solid #ff0000 !important;
}
.vdS-current-link {
	color: #ff0000 !important;
	border-bottom: 3px solid #ff0000 !important;
}
/* bouncing arrow */
.vdS-arrow {
	position: relative;
    margin: auto;
	bottom: 50px;
    width: 100px;
    height: 20px;	
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	border-top: 25px solid #000;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.vdS-arrow:hover {
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	border-top: 25px solid #ff0000;
}
.jump {
	-moz-animation: jump 1.5s infinite;
	-webkit-animation: jump 1.5s infinite;
	animation: jump 1.5s infinite;
}

@keyframes jump {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
    	transform: translateY(-25px);
	}
}
/* member */
.vdS-member {
	color: #000;
	margin: 0 15px;
	text-align: center;
}
.vdS-member-name {
	margin: 25px 0;
}
.vdS-member p {
	margin: 0 !important;
	font-family: 'RajdhaniMedium', sans-serif !important;
}
.vdS-member img {
	max-height: 250px;
	max-width: 250px;
	border-radius: 50%;
	background-color: #fff;
	-webkit-filter: grayscale(100%);
    filter: grayscale(100%);
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.vdS-member img:hover {
	-webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}
.vdS-member-social {
	margin: 25px 0;
}
.vdS-member-email,
.vdS-member-tel,
.vdS-member-ut {
	margin: auto;
	width: 30px;
	height: 30px;
	background-size: 100%;
	background-color: #fff !important;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.vdS-member-email:hover,
.vdS-member-tel:hover,
.vdS-member-ut:hover {
	-webkit-filter: invert(0.15);
	filter: invert(0.15);
}
.vdS-member-email {
	background-image: url('img/social/EMAIL_B.png')
}
.vdS-member-tel {
	background-image: url('img/social/PHONE_B.png')
}
.vdS-member-ut {
	background-image: url('img/social/UT_B.png')
}
/* foto's */
.vdS-fotos {
	padding: 0 25px 25px 25px;
}
/* beers */
#vdS-beers-menu-fixed {
	visibility: hidden;
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	top: 100px;
	width: 100%;
	height: 50px;
	text-align: center;
	color: #fff;
	z-index: 9000;
}
.vdS-beers {
	margin: 0 10px;
	max-height: 85%;
	text-align: center;
}
.vdS-beers-bottle {
	margin: 25px auto;
	height: 65vh;
}
.vdS-beers-bottle img {
	height: 100% !important;
}
.vdS-beers-name {
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.vdS-beers-percentage {
	margin: 25px auto;
	width: 100%;
	max-width: 200px;
	height: 30px;
	padding: 3px;
	border-radius: 100%;
	color: #fff;
	background-color: #000;
}
/* beer */
.vdS-beer-label {
	position: absolute;
	height: 150px;
	width: auto;
	left: 15%;
	top: -225px;
	z-index: 9500;
}
.vdS-beer-label img {
	height: 100%;
	width: auto;
}
.vdS-beer-back {
	width: 150px;
	padding: 15px 0 0 15px;
	text-align: center;
}
.vdS-beer-name {
	padding: 25px;
	color: #000;
}
.vdS-beer-name h1 {
	text-align: right;
	font-size: 4rem;
}
.vdS-beer-name h2 {
	position: relative;
	top: 29px;
	font-size: 2rem;
}
.vdS-beer-media-overview {
	height: 100%;
	width: 100%;
}
.vdS-beer-details {
	padding: 25px;
	height: 500px;
	color: #fff;
	background-color: #000;
	overflow: hidden;
}
.vdS-beer-red {
	color: #ff0000;
}
.vdS-beer-triangle {
	width: 0;
	height: 0;
	border-bottom: 200px solid #ff0000;
	border-right: 200px solid transparent;
	position: absolute;
	bottom: 0;
}
.vdS-beer-triangle-text {
	position: absolute;
	height: 175px;
	width: 175px;
	top: 30px;
	left: 10px;
}
.vdS-beer-measurements {
	position: absolute;
	bottom: 0;
}
.vdS-beer-shop {
	position: absolute;
	bottom: 0;
	right: 0;
}
.vdS-beer-cart {
	height: 36.5px;
	width: 75px;
	margin: auto;
	background-image: url('img/header/CART_W.png');
	background-repeat: no-repeat;
	background-size: contain;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.vdS-beer-cart:hover {
	background-image: url('img/header/CART_R.png');
}
.vdS-beer-bottle-view {
	max-height: 700px;
}
.vdS-beer-bottle {
	position: relative;
	margin: auto;
	bottom: 230px;
	width: 250px;
	z-index: 9500;
}
.vdS-beer-bottle img {
	width: 100%;
	height: auto;
	max-height: 930px;
}
.vdS-beer-logo {
	margin: 25px 0;
	height: 100px;
	width: 100%;
	background-image: url('img/header/LOGO.png');
	background-repeat: no-repeat;
	background-size: contain;
}
.vdS-beer-media {
	margin-top: 20px;
	max-width: 150px;
}
.vdS-beer-media img {
	width: 100%;
	height: auto;
	max-width: 150px;
}
/* beer switcher */
.vdS-beer-switcher {
	height: 200px;
	width: 75px;
	text-align: center;
}
.vdS-beer-switcher img {
	height: 100% !important;
	width: auto !important;
}
/* wpcf7 */
.wpcf7 {
	width: 100%;
	padding: 20px 15px !important;
}
.wpcf7 .ajax-loader {
	margin: 0 !important;
	position: relative;
	background: #fff url('img/LOADER.gif') no-repeat center center !important;
	background-size: 25px;
	width: 100% !important;
	height: 100% !important;
	bottom: 100%;
	border-radius: 50%
}
.wpcf7-not-valid-tip {
	display: none !important;
}
.wpcf7-validation-errors {
	background: #ffe2e2 !important;
	border: 1px solid #ff0000 !important;
	color: #ff0000 !important;
}
.wpcf7-response-output {
	width: 100%;
	text-align: center;
	font-size: 1.25em !important;
	margin: 10px 0 !important;
	padding: 10px !important;
	border-radius: 20px;
}
input[type=text].wpcf7-not-valid, 
input[type=email].wpcf7-not-valid,
textarea.wpcf7-not-valid {
	background: #ffe2e2;
	border: 1px solid #ff0000;
}
/* contact form */
.vdS-form-fields input[type=text],
.vdS-form-fields input[type=email] {
	padding: 15px;
	margin-bottom: 10px;
	height: 60px;
	width: 100%;
	font-size: 1.25rem;
}
.vdS-form-message textarea {
	padding: 15px;
	height: 200px;
	width: 100%;
	font-size: 1.25rem;
	resize: none;
}
.vdS-form-button-container {
	height: 200px;
	width: 100%;
}
.vdS-form-button {
	position: relative;
	margin: auto;
	top: 50px;
	bottom: 50px;
	width: 100px;
	height: 100px;
}
.vdS-form-button input[type=submit] {
	height: 100%;
	width: 100%;
	border: none;
	border-radius: 50%;
	text-align: center;
	/* font-size: 1.25rem; */
	color: #000;
	background-color: #fff;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.vdS-form-button input[type=submit]:hover {
	color: #fff;
	background-color: #ff0000;
}
/* post */
.vdS-post {
	padding: 50px;
	margin: auto;
	min-height: 250px;
	max-width: 900px;
}
.vdS-post-thumb {
	width: 100%;
	height: 250px;
	max-width: 250px;
	border: 5px #ff0000 solid;
	background-color: #fff;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.vdS-post-thumb:hover {
	border: 5px #444 solid;
}
.vdS-nothing {
	padding: 25px; 
	text-align: center;
}
/* article */
.vdS-article {
	padding: 50px;
	margin: auto;
	max-width: 1080px;
}
.vdS-article-dark {
	color: #000;
	background-color: #fff;
}
.vdS-article-light {
	color: #fff;
	background-color: #000;
}
.vdS-article-dark a,
.vdS-article-light a {
	color: #ff0000 !important;
}
.vdS-article-dark a:hover,
.vdS-article-light a:hover {
	color: #444 !important;
}
.vdS-article-back {
	position: relative;
	bottom: 50px;
	left: 15px;
	height: 25px;
}
.vdS-article-content img {
	width: auto;
	height: auto;
	max-width: 100%;
}
/* category, author, search tag */
.vdS-category-title,
.vdS-author-title,
.vdS-search-title,
.vdS-tag-title {
	padding: 0 25px 25px 25px;
	text-align: center;
}
/* timeline */
.vdS-timeline-item {
	padding: 25px;
	margin: auto;
	min-height: 200px;
	max-width: 900px;
    color: #000;
}
.vdS-timeline-item.light {
    color: #fff;
}
.vdS-timeline-thumb {
    position: relative;
    width: 150px;
    margin: 0 50px 15px 0;
    border: 5px #000 solid;
    background-color: #fff;
}
.vdS-timeline-thumb img {
	max-width:100%;
	max-height:100%;
}
.vdS-horizontal-line {
    position: relative;
    width: 50px;
    margin: -75px 0 0 150px;
    border-top: 5px solid #000;
}
.vdS-timeline-vertical {
	position: absolute;
    min-height: 200px;
	right: 75px;
    top: -25px;
    bottom: -25px;
    border-left: 5px solid #000;
}
.vdS-timeline-content {
	font-family: 'RajdhaniMedium', sans-serif !important;
}
.vdS-timeline-thumb.light,
.vdS-horizontal-line.light,
.vdS-timeline-vertical.light {
	border-color: #fff;
}
/* search */
.vdS-search {
	padding: 0 25px 25px 25px;
	height: auto;
	text-align: center;
	background-color: #fff;
}
.vdS-search-input {
	width: 25%;
	height: 25px;
	margin-right: 10px;
	font-size: 1.25rem;
	border-radius: 25px;
	text-align: center;
	border: solid #000;
}
.vdS-search-input:focus {
	border: solid #ff0000 !important;
}
.vdS-search-submit {
	width: 100px;
	height: 32px;
	border: none;
	border-radius: 16px;
	text-align: center;
	font-size: 1.25rem;
	color: #fff;
	background-color: #000;
	text-transform: uppercase;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.vdS-search-submit:hover {
	color: #fff;
	background-color: #ff0000;
}
/* woocommerce */
.vdS-woocommerce {
	padding: 50px;
}
.woocommerce-page .woocommerce-tabs {
	width: 100%;
	margin-top: 50px;
}
.woocommerce-page .woocommerce-tabs .tabs {
	width: 100%;
	margin: 0;
	padding: 0;
	border: none;
	text-align: center;
	background-color: #fff;
}
.woocommerce-page .woocommerce-tabs .tabs li {
	margin: 0 !important;
	border: none !important;
	color: #444 !important;
	background-color: #fff !important;
}
.woocommerce-page .woocommerce-tabs .tabs li::before,
.woocommerce-page .woocommerce-tabs .tabs li::after {
	display: none;
}
.woocommerce-page .woocommerce-tabs .tabs li.active {
	border-bottom: 2px solid #ff0000 !important;
}
.woocommerce-page .woocommerce-tabs .tabs li.active a,
.woocommerce-page .woocommerce-tabs .tabs li a:hover {
	color: #ff0000;
	text-decoration: none;
	background-color: transparent;
}
.woocommerce-page .woocommerce-tabs .tabs li a {
	border: none !important;
}
.woocommerce-page .woocommerce-tabs .tabs li a::before {
	display: none;
}
.woocommerce-page .woocommerce .woocommerce-info {
    color: #fff;
	background-color: #ff0000;
    border-radius: 10px;
    border: none;
}
.woocommerce-page .woocommerce .woocommerce-info a {
    color: #fff !important;
	background-color: #444;
	white-space: nowrap;
	margin-left: 10px;
	padding: 5px 10px;
    border-radius: 5px;
    border: none;
}
.woocommerce-page .woocommerce .woocommerce-info a:hover {
	color: #444 !important;
	background-color: #fff;
}
.woocommerce-page .woocommerce .woocommerce-info::before {
	color: #fff;
}
.woocommerce-page .woocommerce-checkout .col-1,
.woocommerce-page .woocommerce-checkout .col-2 {
	max-width: none;
}
.woocommerce-page .woocommerce-input-wrapper {
	width: 100%;
}
.woocommerce-page .woocommerce .button br {
	display: none;
}
.woocommerce-page .woocommerce .button.alt {
	color: #fff !important;
	background-color: #444 !important;
}
.woocommerce-page .woocommerce .button.alt:hover {
	background-color: #ff0000 !important;
}
/* pagination */
.vdS-pagination {
	padding: 25px;
	font-size: 1.25rem;
	text-align: center;
}
/* 404 */
.vdS-not-found {
	position: relative;
	padding: 50px;
	width: 100%;
	min-height: 250px;
	height: calc(100vh - 550px);
	text-align: center;
	background-color: #fff;
}

/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
	font-family: 'RajdhaniMedium';
	font-style: normal;
	font-weight: 500;
	src: local('Rajdhani Medium'), local('Rajdhani-Medium'), url(https://fonts.gstatic.com/s/rajdhani/v7/fMdPRPskyY3ckg8ymVQ5NrrIa-7acMAeDBVuclsi6Gc.woff) format('woff');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2212, U+2215;
}

@font-face {
	font-family: 'RajdhaniBold';
	font-style: normal;
	font-weight: 700;
	src: local('Rajdhani Bold'), local('Rajdhani-Bold'), url(https://fonts.gstatic.com/s/rajdhani/v7/kcO_Mk7pjy8jlu86STaVz7rIa-7acMAeDBVuclsi6Gc.woff) format('woff');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2212, U+2215;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (max-width: 575.98px) {
	.vdS-header {
		padding: 25px;
	}
	.vdS-header.shrink {
		padding: 15px;
	}
	.vdS-close {
		margin: 25px;
	}
	.vdS-logo.shrink {
		top: -15px;
	}
}
@media only screen and (max-width: 767.98px) {
	.vdS-beer-name h1 {
		font-size: 3rem;
		text-align: left;
	}
	.vdS-beer-name h2 {
		top: 0;
	}
	.vdS-beer-details {
		height: 650px;
	}
	.vdS-beer-measurements {
		position: relative;
	}
	.vdS-triangle {
		top: 0;
	}
}
@media only screen and (max-width: 991.98px) {
	.vdS-horizontal-line {
		display: none;
	}
	.vdS-timeline-vertical {
		display: none;
	}
	.vdS-jamienee {
		display: none;
	}
}
@media only screen and (max-width: 1199.98px) {
	.vdS-beer-bottle-view {
		overflow: hidden;
	}
}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background: #ff0000;
	color: #fff;
	text-shadow: none;
}
::-webkit-selection {
	background: #ff0000;
	color: #fff;
	text-shadow: none;
}
::-moz-selection {
	background: #ff0000;
	color: #fff;
	text-shadow: none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin: 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.grecaptcha-badge{
	visibility: collapse !important;  
}


