/*
Theme Name: La Stanza
Theme URI: http://lastanza.ch
Description: Custom Theme La Stanza
Author: Roger Burkhard
Author URI: http://www.rogerburkhard.com
*/

/*------------------------------------------------------
THE BIG FAT RESET
------------------------------------------------------*/

html, body, div, span, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td, header, footer {
	margin: 0;
	padding: 0;
}

/*------------------------------------------------------
GENERAL
------------------------------------------------------*/

html {
	width: 100%;
	margin:0 !important;
	-webkit-text-size-adjust: 100%;
	overflow-x:hidden;
	overflow-y:auto;
}

body {
	width: 100%;
	overflow-x: hidden;
	overflow-y:auto;
	min-width: 320px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	-webkit-backface-visibility: hidden;
	-webkit-overflow-scrolling:touch;
	cursor:wait;
}

body.loaded {
	cursor:default;
}

body.noscroll {
	overflow: hidden;
}

#wpadminbar {
	display:none !important;
}

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

p {
	margin-bottom: 18px;
}

b, strong {
	font-weight: bold;
}

/*------------------------------------------------------
GENERAL LINKS
------------------------------------------------------*/

:focus {
	-moz-outline-style: none;
}

/*------------------------------------------------------
IMAGES
------------------------------------------------------*/

img {
	border: none 0;
}

/*------------------------------------------------------
VIDEO
------------------------------------------------------*/

video {
	outline: 0;
	-moz-outline-style: none;
}

/* Responsive iFrame */

.video_wrap {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}

.video_wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*------------------------------------------------------
CLEAR
------------------------------------------------------*/

.clear {
	clear: both;
}

/*------------------------------------------------------
Focus Input & Textarea
------------------------------------------------------*/

input, textarea {
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	resize: none;
	-webkit-appearance: none;
}

textarea:focus, input:focus{
    outline: 0;
}

input[type="button"], button {
   outline:none !important;
}
input[type="button"]::-moz-focus-inner, button::-moz-focus-inner {
   border: 0 !important;
}

/*------------------------------------------------------
WRAPPER
------------------------------------------------------*/

#wrapper {
	display: block;
	width: 100%;
	overflow-y:auto;
	-webkit-transition:opacity 0.3s ease-out;
	transition:opacity 0.3s ease-out;
}

.main_content_inside_full {
	display:block;
	margin:0 auto;
	width:100%;
}

.main_content_inside_940 {
	display:block;
	margin:0 auto;
	width:100%;
	max-width: 940px;
}

.main_content_inside_700 {
	display:block;
	max-width: 700px;
	width:100%;
	margin:0 auto;
}

/*------------------------------------------------------
Animated Home
------------------------------------------------------*/

.animated_home {
	display:block;
	position:fixed;
	top:0;
	right:0;
	bottom:0;
	left:0;
	z-index: 0;
	text-align: center;
	white-space: nowrap;
}

/*------------------------------------------------------
Start Animation
------------------------------------------------------*/

.start_animation {
	display:block;
	position:relative;
	z-index: 1;
	width:100%;
}

.start_animation .header_gallery {
	display:block;
	position:relative;
	opacity:0;
	width:100%;
	max-width: 940px;
	margin:0 auto;
	height:auto;
	-webkit-transition:opacity 1s ease-out, width 0.5s ease-out;
	transition:opacity 1s ease-out, width 0.5s ease-out;
	-ms-transform-origin: center top;
	-webkit-transform-origin: center top;
	transform-origin: center top;
}

.animated_home h1 {
	display:block;
	opacity:0;
	text-indent: -10000px;
	display: inline-block;
	vertical-align: middle;
	cursor:pointer;
	filter: blur(0);
	-webkit-transition:opacity 3s ease-out, margin 0.3s ease;
	transition:opacity 3s ease-out, margin 0.3s ease;
}

.top_logo {
	display:block;
	opacity:0;
	height:90px;
	width:100%;
	-webkit-transition:opacity 0.6s ease;
	transition:opacity 0.6s ease;
}

.start_animation .header_gallery .gallery_img_holder {
	opacity:0;
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	top:0;
	width:100%;
	height:100%;
	margin-left:auto;
	margin-right:auto;
	text-align: center;
	background-origin: center center;
	background-position: center center;
	-webkit-transition:all 0.4s ease, opacity 0.6s ease-out;
	transition:all 0.4s ease, opacity 0.6s ease-out;
}

.start_animation .header_gallery .focal_image {
	display:block;
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
}

.start_animation .header_gallery .inside_gallery {
	position:relative;
}

.start_animation .header_gallery .inside_gallery .gallery_img_holder:first-child {
	opacity:1;
	position:relative;
}

.start_animation .header_gallery .gallery_img_holder img {
	opacity:1;
	max-width: 940px;
	width:100%;
	height:auto;
	margin-top:0;
}

/*------------------------------------------------------
EVENT BUBBLE
------------------------------------------------------*/

.event_bubble, .event_bubble_bg {
	opacity:0;
	position:absolute;
	display:inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top:40px;
	-webkit-transform: translate(-50%, -40%);
	transform: translate(-50%, -40%);
	background-size:100% 100%;
	z-index: 500;
	padding:95px 45px;
	border-radius: 50%;
	text-align: center;
	max-width: 400px;
	-webkit-transition:opacity 0.5s, -webkit-transform 0.5s;
	transition:opacity 0.5s, transform 0.5s;
}

.event_bubble_bg {
	-webkit-transform: translate(-50%, -40%);
	transform: translate(-50%, -40%);
	padding:0;
	border-radius: 50%;
	max-width: 400px;
	z-index: 499;
	-webkit-filter: brightness(90%);
	filter: brightness(90%);
	-webkit-transition:opacity 0.5s ease-out, -webkit-filter 0.5s ease-out;
	transition:opacity 0.5s ease-out, filter 0.5s ease-out;
}

.event_bubble.show, .event_bubble_bg.show {
	opacity:1;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.event_bubble .event_date, .event_bubble .event_time {
	text-transform: uppercase;
}

.event_time, .event_date, .event_date_info {
    display: none !important;
    visibility: hidden !important;
}

.single-events .event_bubble, .single-events .event_bubble_bg {
	margin-top:0;
}

/*------------------------------------------------------
MAIN CONTENT
------------------------------------------------------*/

.main_content {
	display:block;
	opacity:0;
	width:100%;
	max-width: 1180px;
	margin:0 auto;
	margin-top:40px;
	text-align: center;
	-webkit-transition:opacity 1s ease-out;
	transition:opacity 1s ease-out;
}

/* Opening Hours */

.main_content .main_content_inside_full.main_content_inside_opening_hours .opening_hours_item {
	display:block;
	float: left;
	text-align: center;
	margin:0 10px;
}

.main_content .main_content_inside_full.main_content_inside_opening_hours.items_4 .opening_hours_item {
	width: -moz-calc(25% - 20px);
	width: -webkit-calc(25% - 20px);
	width: -o-calc(25% - 20px);
	width: calc(25% - 20px);
}

.main_content .main_content_inside_full.main_content_inside_opening_hours.items_5 .opening_hours_item {
	width: -moz-calc(20% - 20px);
	width: -webkit-calc(20% - 20px);
	width: -o-calc(20% - 20px);
	width: calc(20% - 20px);
}

.main_content .main_content_inside_full.main_content_inside_opening_hours.items_6 .opening_hours_item {
	width: -moz-calc(16.6666% - 20px);
	width: -webkit-calc(16.6666% - 20px);
	width: -o-calc(16.6666% - 20px);
	width: calc(16.6666% - 20px);
}

.main_content .main_content_inside_full.main_content_inside_opening_hours.items_7 .opening_hours_item {
	width: -moz-calc(14.2857% - 20px);
	width: -webkit-calc(14.2857% - 20px);
	width: -o-calc(14.2857% - 20px);
	width: calc(14.2857% - 20px);
}


.main_content .main_content_inside_full.main_content_inside_opening_hours .opening_hours_item .opening_hours_day {
	text-transform: uppercase;
}

/* Menu cart */

.main_content .main_content_inside_menu_buttons {
	display:inline-block;
	margin-top:45px;
}
 
.main_content .main_content_inside_menu_buttons a, .reservation_tool a{
 	display:inline-block;
 	width:100%;
	width: -moz-calc(33.3333% - 13.3333px);
 	width: -webkit-calc(33.3333% - 13.3333px);
 	width: -o-calc(33.3333% - 13.3333px);
 	width: calc(33.3333% - 13.3333px);
	margin-bottom:20px;
 	height:45px;
 	line-height: 45px;
 	border:none 0;
 	box-shadow:none !important;
 	-webkit-transition:background 0.4s ease-out, color 0.4s ease-out;
 	transition:background 0.4s ease-out, color 0.4s ease-out;
 }

 .main_content .main_content_inside_menu_buttons a:nth-child(2n) {
 	margin:0 20px 20px 20px;
 }

/* Newsletter */

.mailchimp_nl {
	display:block;
	margin-top:40px;
	margin-bottom:127px;
	text-align: center;
}

.mailchimp_nl input, .mailchimp_nl button,
.show_form_content input {
	display:block;
	width:100%;
	width: -moz-calc(100% - 40px);
	width: -webkit-calc(100% - 40px);
	width: -o-calc(100% - 40px);
	width: calc(100% - 40px);
	height:45px !important;
	line-height: 45px;
	padding:0 20px !important;
	border:none 0 !important;
	outline:none 0 !important;
	box-shadow:none !important;
	-webkit-transition:background 0.4s ease-out, color 0.4s ease-out;
	transition:background 0.4s ease-out, color 0.4s ease-out;
}

.mailchimp_nl .edit-link {
	display:none !important;
}

.mailchimp_nl .FNAME-label, .mailchimp_nl .LNAME-label, .mailchimp_nl .EMAIL-label , .mailchimp_nl .MMERGE3-label {
	display:inline-block;
	margin-bottom:20px;
}

.yikes-easy-mc-submit-button:before {
	content:'';
	clear:both;
}

.mailchimp_nl button,
.show_form_content button {
	display:block;
	margin-left:auto;
	margin-right:auto;
	margin-top:20px;
	float:none;
	cursor:pointer;
}

.mailchimp_nl .yikes-mailchimp-preloader, .mailchimp_nl .loading-dots {
	display:none !important;
}

.show_form_content {
	margin-top:20px;
}

/* Other Links */

.other_links {
	display:block;
	margin-bottom:53px;
	word-spacing: 0px !important;
}

.other_links, .other_links a {
	text-decoration: none;
	-webkit-transition:color 0.3s ease-out;
	transition:color 0.3s ease-out;
}

/* Social Media */

.social_media {
	display:block;
	margin-bottom:33px;
	text-align: center;
}

.social_media .social_media_centered {
	display:inline-block;
}

.social_media .social_media_centered a {
	display:inline-block;
	margin:0 10px;
	text-decoration: none;
}

.social_media .social_media_centered a:hover svg .icon_svg  {
	-webkit-transition:stroke 0.3s ease-out;
	transition:stroke 0.3s ease-out;
}

/* Made By */

.made_by {
	display:block;
	margin-bottom:80px;
}

.made_by a {
	display:inline-block;
	text-decoration: none;
	-webkit-transition:color 0.3s ease-out;
	transition:color 0.3s ease-out;
}

/*------------------------------------------------------
EVENT PAGE
------------------------------------------------------*/

.page_event {
	opacity:0;
	position:relative;
	z-index: 1;
	-webkit-transition:opacity 1s ease-out;
	transition:opacity 1s ease-out;
}

.page_event .top_logo {
	opacity:1;
	cursor:pointer;
}

.page_event .page_event_inside {
	display:block;
	max-width: 940px;
	margin:0 auto;
}

.page_event .event_image {
	display:block;
	position:relative;
}

.page_event .page_event_inside img {
	display:block;
	max-width: 100%;
	height:auto;
	margin:0 auto;
}

.page_event .page_event_inside .event_bubble, .page_event .page_event_inside .event_bubble_bg {
	opacity:1;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.event_details {
	display:block;
	text-align: center;
	max-width: 700px;
	margin:40px auto 0 auto;
}

.event_date_info {
	margin-top:100px;
}

.event_date_info_text {
	text-transform: uppercase;
}

.event_bottom_text {
	margin-top:120px;
	text-align:center;
}

/*------------------------------------------------------
COOKIE MESSAGE
------------------------------------------------------*/

.cookie_message {
	display: none;
	opacity: 1;
	position: fixed;
	z-index: 1000;
	height: height;
	bottom:0;
	left:0;
	right:0;
}

.cookie_message .inside_cookie_text {
	max-width: 450px;
}

a.accept_cookie {
	padding-right:20px;
}

.cookie_message, .cookie_message a {
	font-size:10px;
	line-height: 14px;
	word-spacing: 0px;
}

body.page-id-42 .cookie_message {
	opacity: 1;
}

.cookie_message .column_left, .cookie_message .column_right {
	display: block;
	width: -moz-calc(50% - 100px);
	width: -webkit-calc(50% - 100px);
	width: -o-calc(50% - 100px);
	width: calc(50% - 100px);
	float: left;
	padding:14px 0;
}

.cookie_message .column_left {
	text-align: left;
	margin-left:100px;
}

.cookie_message .column_right {
	text-align: right;
	margin-right:100px;
}

/*------------------------------------------------------
VERSION 2
------------------------------------------------------*/

.page_home.page_home_2 .social_media {
	margin-top:33px;
}

.page_home.page_home_2 .mailchimp_nl .FNAME-label, 
.page_home.page_home_2 .mailchimp_nl .LNAME-label, 
.page_home.page_home_2 .mailchimp_nl .EMAIL-label, 
.page_home.page_home_2 .mailchimp_nl .MMERGE3-label {
	display: inline-block !important;
	width: -moz-calc(50% - 10px) !important;
	width: -webkit-calc(50% - 10px) !important;
	width: -o-calc(50% - 10px) !important;
	width: calc(50% - 10px) !important;
	margin-left:0 !important;
	margin-right:0 !important;
	float: left;
}

.page_home.page_home_2 .mailchimp_nl .MMERGE3-label {
	margin-left:10px !important;
}

.page_home.page_home_2 .mailchimp_nl .EMAIL-label {
	margin-right:10px !important;
}

.page_home.page_home_2 a.show_form {
	margin-bottom:0;
}

.page_home.page_home_2 .items_3 a.show_form {
	float: left;
}

.page_home.page_home_2 .yikes-easy-mc-form .yikes-easy-mc-submit-button {
	width: -moz-calc(33.3333% - 20px) !important;
	width: -webkit-calc(33.3333% - 20px) !important;
	width: -o-calc(33.3333% - 20px) !important;
	width: calc(33.3333% - 20px) !important;
}

.page_home.page_home_2 .show_form_content {
	display: none;
	margin-bottom:0;
	text-align:right;
}

.page_home.page_home_2 .made_by {
	margin-top: 127px;
}

/* Message */

.page_home.page_home_2 .show_form_content input.message_firstname, 
.page_home.page_home_2 .show_form_content input.message_lastname, 
.page_home.page_home_2 .show_form_content input.message_email,
.page_home.page_home_2 .show_form_content input.reservation_firstname, 
.page_home.page_home_2 .show_form_content input.reservation_lastname, 
.page_home.page_home_2 .show_form_content input.reservation_email,
.page_home.page_home_2 .show_form_content input.reservation_mobile {
	display: inline-block;
	width: -moz-calc(33.3333% - 60px);
	width: -webkit-calc(33.3333% - 60px);
	width: -o-calc(33.3333% - 60px);
	width: calc(33.3333% - 60px);
	margin-left:10px;
	margin-right:10px;
	margin-bottom:20px;
	padding-left:20px !important;
	padding-right:20px !important;
}

.page_home.page_home_2 .show_form_content .float_box {
	margin-left:-10px;
	margin-right:-10px;
}

.page_home.page_home_2 .show_form_content .float_box input {
	float:left;
}

.page_home.page_home_2 .show_form_content input.submit_button {
	display: block;
	width: -moz-calc(33.3333% - 13px);
	width: -webkit-calc(33.3333% - 13px);
	width: -o-calc(33.3333% - 13px);
	width: calc(33.3333% - 13px);
	margin-left:auto;
	margin-right:auto;
	margin-bottom:20px;
}

.page_home.page_home_2 .input_section input {
	display: inline-block;
	width: -moz-calc(33.3333% - 52px);
	width: -webkit-calc(33.3333% - 52px);
	width: -o-calc(33.3333% - 52px);
	width: calc(33.3333% - 52px);
	float: left;
}

.page_home.page_home_2 .input_section input:nth-child(2) {
	margin-left:20px;
	margin-right:20px;
}

.page_home.page_home_2 .show_form_content input.reservation_mobile {
	float: right;
}

.page_home.page_home_2 .input_section {
	display: block;
	width:100%;
}

.page_home.page_home_2 .input_section_left {
	width:66.6666%;
	width: -moz-calc(66.6666% - 5px);
	width: -webkit-calc(66.6666% - 5px);
	width: -o-calc(66.6666% - 5px);
	width: calc(66.6666% - 5px);
	float:left;
}

.page_home.page_home_2 .input_section_left input {
	display:block;
	float:left;
	width: -moz-calc(33.3333% - 53.3333px);
	width: -webkit-calc(33.3333% - 53.3333px);
	width: -o-calc(33.3333% - 53.3333px);
	width: calc(33.3333% - 53.3333px);
	padding-left:20px;
	padding-right:20px;
}

.page_home.page_home_2 .input_section_left input.reservation_zeit {
	margin-left:20px;
	margin-right:20px;
}

.page_home.page_home_2 .input_section_right {
	width: calc(33.3333% - 10px);
	margin-left: 10px;
	float: right;
	text-align: right;
}

.page_home.page_home_2 .show_form_content input.reservation_mobile {
	display: inline-block;
	width: -moz-calc(100% - 30px);
	width: -webkit-calc(100% - 30px);
	width: -o-calc(100% - 30px);
	width: calc(100% - 40px);
	margin-left: 0;
	margin-right: 0;
	padding-left: 20px !important;
	padding-right: 20px !important;
}


.page_home.page_home_2 .submit_button {
	width: 100%;
	cursor:pointer;
	margin-top:20px;
}

.message_error, .message_success {
	display: none;
	padding-bottom:20px;
}

.message_error {
	color:red;
}

.message_success {
	color:green;
}

.yikes-easy-mc-form input[type=email], .yikes-easy-mc-form input[type=number], .yikes-easy-mc-form input[type=text], .yikes-easy-mc-form input[type=url], .yikes-easy-mc-form select {
	margin-bottom:20px !important;
}

.page_home.page_home_2 .event_bubble .event_date, .page_home.page_home_2 .event_bubble .event_time {
	display: none !important;
}

.page_home.page_home_2 .event_bubble_bg {
	display: none !important;
}

.page_home.page_home_2 .event_bubble {
	display: block !important;
	opacity: 1 !important;
	top:100px;
	right:10px;
	left:initial;
	margin-top:0;
	padding:0 !important;
	width: 200px !important;
	height: 200px !important;
	background: transparent;
	text-align: center;
	backdrop-filter: blur(4.951169967651367px);
	--webkit-backdrop-filter: blur(4.951169967651367px);
	background-color: rgba(255, 255, 255, 0.5);
	transform: rotate(15deg);
	-webkit-transform: -webkit-rotate(15deg);
	transform-origin: top left;
	-webkit-transform-origin: top left;
	-webkit-transition: -webkit-transform 0.5s ease-out;
	transition: transform 0.5s ease-out;
}

.page_home.page_home_2 .event_bubble:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -0.25em;
}

.page_home.page_home_2 .event_bubble .event_title {
	display: inline-block;
	vertical-align: middle;
	width: 80%;
	margin-bottom:-2x;
}

.page_home.page_home_2 .event_bubble .event_title h2 {
	letter-spacing: 0;
	margin-bottom:0;
	text-transform:uppercase;
	font-weight:normal;
	margin-bottom:0 !important;
}

/*------------------------------------------------------
Media Queries
------------------------------------------------------*/

@media all and (min-width: 1680px) {

	.start_animation .header_gallery {
		max-width: 1128px;
	}

	.main_content_inside_700 {
		max-width: 840px;
	}

}

@media all and (max-width: 1170px) and (min-width: 0) {

	.main_content .main_content_inside_full.main_content_inside_opening_hours.items_6 .opening_hours_item {
			width:100%;
			float:none;
			margin-bottom:20px;
		}

		.cookie_message .column_left, .cookie_message .column_right {
			width: -moz-calc(50% - 25px);
			width: -webkit-calc(50% - 25px);
			width: -o-calc(50% - 25px);
			width: calc(50% - 25px);
			float: left;
		}

		.cookie_message .column_left {
			text-align: left;
			margin-left:20px;
			margin-right:5px;
			width: -moz-calc(70% - 25px);
			width: -webkit-calc(70% - 25px);
			width: -o-calc(70% - 25px);
			width: calc(70% - 25px);
		}

		.cookie_message .column_right {
			width: -moz-calc(30% - 25px);
			width: -webkit-calc(30% - 25px);
			width: -o-calc(30% - 25px);
			width: calc(30% - 25px);
			margin-right:20px;
			margin-left:5px;
		}

}

@media all and (max-width: 1070px) and (min-width: 0) {

	.main_content .main_content_inside_full.main_content_inside_opening_hours.items_5 .opening_hours_item {
		width:100%;
		float:none;
		margin-bottom:20px;
	}

	.main_content .main_content_inside_full.main_content_inside_opening_hours.items_4 .opening_hours_item {
		width:100%;
		float:none;
		margin-bottom:20px;
	}

	.main_content .main_content_inside_full.main_content_inside_opening_hours .opening_hours_item {
		margin:0;
	}

	.main_content .main_content_inside_full.main_content_inside_opening_hours.items_7 .opening_hours_item {
		width: 100%;
	}

	.main_content .main_content_inside_full.main_content_inside_opening_hours.items_7 .opening_hours_time {
		margin-bottom:20px;
	}

}

@media all and (max-width: 940px) and (min-width: 0) {

	.main_content_inside_940, .main_content_inside_700, .event_details {
		width:90%;
		margin-left:auto;
		margin-right:auto;
	}

}

@media all and (max-width: 800px) and (min-width: 0) {

	html {
		overflow-x: hidden;
	}

	body {
		overflow-y: scroll;
		-webkit-overflow-scrolling:touch;
		}

	.main_content .main_content_inside_menu_buttons a, .reservation_tool a {
		width: -moz-calc(50% - 65px);
		width: -webkit-calc(50% - 65px);
		width: -o-calc(50% - 65px);
		width: calc(50% - 65px);
	}

	.main_content .main_content_inside_menu_buttons a, .reservation_tool a {
		width:100%;
		margin-left:0 !important;
		margin-right:0 !important;
	}

	/* Version 2.0 */

	.page_home.page_home_2 a.show_form,
	.page_home.page_home_2 .input_section input {
		margin-bottom:20px;
	}

	.page_home.page_home_2 a.show_form.last{
		margin-bottom:0;
	}

	.yikes-easy-mc-success-message {
		display: block;
		color:green;
		background:none 0;
		padding:0;
		margin-bottom:20px;
	}

	.page_home.page_home_2 .mailchimp_nl .FNAME-label, 
	.page_home.page_home_2 .mailchimp_nl .LNAME-label, 
	.page_home.page_home_2 .mailchimp_nl .EMAIL-label, 
	.page_home.page_home_2 .mailchimp_nl .MMERGE3-label,
	.page_home.page_home_2 .yikes-easy-mc-form .yikes-easy-mc-submit-button,
	.page_home.page_home_2 .input_section input,
	.page_home.page_home_2 .show_form_content input.reservation_mobile,
	.page_home.page_home_2 .input_section,
	.page_home.page_home_2 .show_form_content input.submit_button  {
		display: block !important;
		width: 100% !important;
		margin-left:0 !important;
		margin-right:0 !important;
		float: none;
	}

	.page_home.page_home_2 .show_form_content input.message_firstname, 
	.page_home.page_home_2 .show_form_content input.message_lastname, 
	.page_home.page_home_2 .show_form_content input.message_email,
	.page_home.page_home_2 .show_form_content input.reservation_firstname, 
	.page_home.page_home_2 .show_form_content input.reservation_lastname, 
	.page_home.page_home_2 .show_form_content input.reservation_email,
	.page_home.page_home_2 .input_section input,
	.page_home.page_home_2 .show_form_content input.reservation_mobile,
	.page_home.page_home_2 .input_section_left input,
	.page_home.page_home_2 .input_section_right input {
		width: -moz-calc(100% - 40px) !important;
		width: -webkit-calc(100% - 40px) !important;
		width: -o-calc(100% - 40px) !important;
		width: calc(100% - 40px) !important;
		margin-left:0 !important;
		margin-right:0 !important;
		margin-bottom:20px !important;
	}

	.page_home.page_home_2 .input_section_left,
	.page_home.page_home_2 .input_section_right {
		width:100%;
		float:none;
		margin-left:0;
		margin-right:0;
	}

	.page_home.page_home_2 .mailchimp_nl .MMERGE3-label,
	.page_home.page_home_2 .show_form_content input.message_lastname,
	.page_home.page_home_2 .show_form_content input.reservation_lastname {
		margin-left:0 !important;
		margin-right:0 !important;
	}

	.page_home.page_home_2 .event_bubble {
		top: 60px;
    	right: -10px;
		width: 140px !important;
    	height: 140px !important;
	}

	.page_home.page_home_2 .show_form_content .float_box {
		margin-left:0;
		margin-right:0;
	}

	.page_home.page_home_2 .show_form_content .float_box input,
	.page_home.page_home_2 .input_section_left,
	.page_home.page_home_2 .input_section_right {
		float:none;
		margin-left:0 !important;
		margin-right:0 !important;
	}

}

@media all and (max-width: 550px) and (min-width: 0) {

	.event_bubble, .event_bubble_bg {
		padding:0;
	}

	.made_by {
		margin-bottom:0;
	}

}