/*
Theme Name: diehingucker
Theme URI: http://www.diehingucker.de
Description: diehingucker Theme
Author: diehingucker
Version: 1.0

TABLE OF CONTENTS

00 - Reset
01 - Fixes
02 - Variables
03 - Layout
04 - Main
05 - Header
06 - Content
07 - Footer
08 - Plugins
09 - Media Queries
*/

/* /////////////////////////////////////////////////////////////////////
//  00 - 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, 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,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ///////////////////////////////////////////////////////////////////
//  01 - Fixes
////////////////////////////////////////////////////////////////////*/

/* Clearfix */

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

/* Margin applied not to last element */

pre:last-child, blockquote:last-child, dl:last-child, figure:last-child,
table:last-child, p:last-child, ul:last-child, ol:last-child, form:last-child,
li:last-child, h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
	margin-bottom: 0;
}

/* Image Fix */

img {
	max-width: 100%;
  height: auto;
}

/* Responsive video container */

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

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

/* Hide empty p */

p:empty,
h1:empty,
h2:empty,
h3:empty,
h4:empty,
h5:empty {
  display: none;
}

/* Padding within div size not on top */

* {
  outline: none;
  box-sizing: border-box;
}

/* ///////////////////////////////////////////////////////////////////
//  02 - Variables
////////////////////////////////////////////////////////////////////*/

	:root {
		--width: 1240px;
	}

/* ///////////////////////////////////
//  Fonts
////////////////////////////////////*/


@font-face {
   font-family: 'Impact';
   src: url("/wp-content/themes/diehingucker/fonts/impact-webfont.woff") format('woff'),
	 src: url("/wp-content/themes/diehingucker/fonts/impact-webfont.ttf") format('truetype');
}

/* ///////////////////////////////////
//  Flex
////////////////////////////////////*/

.desktop--hide {
  display: none;
}

.mobile--only,
.tablet--only {
  display: none;
}

/* ///////////////////////////////////
//  Grid
////////////////////////////////////*/

.column {
    margin-right: 0;
		float: left;
		min-height: 1px;
}

.column:last-child {
    margin: 0;
}

.columns:after {
    content: "";
    clear: both;
    display: block;
    width: 100%;
}

.columns.columns-2 .column:first-child {
    width: 25%;
}

.columns.columns-2 .column:last-child {
    width: 75%;
}

.columns.columns-3 > * {
    width: 30.666%;
}

.item__column {
	width: 100%;
}

.pdf__container {
	transition: .25s all ease-in-out;
}

.pdf__container img {
	max-width: 75px;
	margin-bottom: 15px;
}

.pdf__container:hover {
	opacity: .4;
}

/* ///////////////////////////////////////////////////////////////////
//  03 - Layout
////////////////////////////////////////////////////////////////////*/

body {
  font-family: Arial, Helvetica, sans-serif;;
  font-weight: 300;
  background-color: #ffffff;
  line-height: 140%;
	font-size: 15px;
	color: #706f6f;
}

h1, h2, h3 {
	color: #706f6f;
}

h1 + p, h2 + p, h3 + p {
	margin-top: 20px;
}

h2 {
	margin-bottom: 0px;
	font-weight: bold;
}

h3.block {
	display: inline-block;
  padding: 8px 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  background-color: #0070ba;
	color: #fff;
	font-family: "Impact", "Charcoal", sans-serif;
}

h1 {
  font-size: 300%;
  line-height: 120%;
  color: #fff;
  text-transform: uppercase;
  font-size: 600%;
}

h2 {
  font-size: 100%;
  line-height: 120%;
}

h3 {
  font-size: 140%;
  line-height: 120%;
}

a {
  color: var(--color);
}

strong {
  font-weight: bold;
}

p {
  margin-bottom: 20px;
}

em {
	font-style: italic;
}

hr {
	border: 0;
	border-bottom: 1px solid rgba(0,0,0,.1);
	margin: 25px 0;
}

/* ///////////////////////////////////
//  Formular
////////////////////////////////////*/

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
	border: 1px solid #dadada;
  padding: 20px 5px 5px 15px;
  width: 100%;
  background: #fff;
  border-radius: 0px;
  margin-top: 0;
  font-size: 100%;
  font-family: Arial, Helvetica, sans-serif;;
  font-weight: 300;
	transition: .25s all ease-in-out;
	display: block;
}

textarea {
	padding: 20px 15px;
}

.color--light input[type="email"],
.color--light input[type="number"],
.color--light input[type="search"],
.color--light input[type="text"],
.color--light input[type="tel"],
.color--light input[type="url"],
.color--light input[type="password"],
.color--light textarea {
	color: #fff;
	border: 1px solid rgba(255,255,255,.2);
	background: transparent;
}

input[type="email"]:hover, input[type="email"]:focus,
input[type="number"]:hover, input[type="number"]:focus,
input[type="search"]:hover, input[type="search"]:focus,
input[type="text"]:hover, input[type="text"]:focus,
input[type="tel"]:hover, input[type="tel"]:focus,
input[type="url"]:hover, input[type="url"]:focus,
input[type="password"]:hover, input[type="password"]:focus,
textarea:hover, textarea:focus {
  border-color: #000;
}

textarea {
  max-height: 150px;
}

.form-box h3 {
    margin: 30px 15px 15px;
    font-size: 15px;
    color: #0070BA;
}

.form-box h3:after {
	content: " "attr(data-index);
}

.add-button {
    padding: 10px 15px;
    color: #999999;
    background: #fff;
    border: 1px solid #dadada;
		cursor: pointer;
		transition: .25s all ease-in-out;
}

.add-button:hover {
    color: #fff;
    background: #0070ba;
}

.add-container-template {
	display: none;
}

.add-container .add-container-template {
	display: block;
}

.add-block {
    margin-bottom: 30px;
}

.input {
  margin-bottom: 15px;
	text-align: left;
}

.form-box .input.radio {
    padding: 5px 15px 0;
}

.button-group span.wpcf7-list-item-label {
    padding: 0;
}

.button-group input[type="radio"] {
    width: 100%;
    display: inline-block;
    padding: 0;
    border: 0;
    margin: 0;
    height: 100%;
}

.input.radio.button-group {
    padding: 0;
}

.button-group input[type="radio"] + span {
    background: #fff;
    border: 1px solid #dadada;
    padding: 10px 10px 10px 10px;
}

.button-group input[type="radio"]:checked + span {
    background: #0071ba;
    color: #fff;
}

.button-group span.wpcf7-list-item {
    margin: 0 !important;
		display: inline-block;
}

.button-group.input.radio .wpcf7-list-item {
	display: inline-block;
	position: relative;
}

.button-group input[type="radio"] {
    width: 100% !important;
    height: 100% !important;
}

.button-group.input.radio .wpcf7-list-item span:before {
	left: 10px;
	top: 7px;
	background: transparent;
	opacity: 0;
}

.button-group input[type="radio"]:checked + span {
    padding: 10px 10px 10px 50px;
}

.button-group.input.radio .wpcf7-list-item input:checked + span:before {
    opacity: 1;
}

.teilnahme .first span {
}

.teilnahme .first span:before {
    font-weight: 300;
}

.placeholder-container {
	display: none;
}

.radio:first-child .teilnahme .first input,
.radio:last-child .teilnahme .last input {
    display: none;
}

.radio:first-child .teilnahme .first span:before,
.radio:last-child .teilnahme .last span:before {
    opacity: 0;
}

.radio:last-child .teilnahme .first {
    margin: 0;
}

.radio:last-child .teilnahme .first span {
    padding-bottom: 0;
}

.input.text label {
	margin-bottom: 10px;
	display: block;
	pointer-events: none;
}

.inputs {
    margin: 0 -10px;
}

.inputs .input {
    margin-left: 10px;
    margin-right: 10px;
}

.input.text label {
	position: absolute;
	z-index: 1;
	left: 0;
	padding: 0 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: .25s all ease-in-out;
	color: #999;
}

.input.select {
}

.input.select label {
	width: 100%;
}

.input.select label:after {
	content: "\f107";
	float: right;
	font-family: "Font Awesome 5 Pro";
}

.input {
  position: relative;
}

.input.text.on--focus label {
  top: 15px;
  font-size: 10px;
}

input[type="submit"], .button, button {
	border: none;
  padding: 10px 30px;
	color: #fff;
	background: #0071ba;
  border-radius: 0px;
  font-size: 100%;
	text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;;
  font-weight: 500;
	letter-spacing: 0px;
	border-radius: 0px;
	font-size: 15px;
	transition: .25s all ease-in-out;
	display: inline-block;
	cursor: pointer;
}

input[type="submit"]:disabled {
  border-color: #000;
	background-color: #ddd;
	cursor: not-allowed;
}

input[type="submit"]:disabled:hover {
	border-color: #ddd;
	background-color: #ddd;
	color: #fff;
}

input[type="submit"]:hover,
.button:hover,
button:hover,
.button--ghost {
	color: #fff;
	background: #000;
}

table {
	width: 100%
}

th {
	font-weight: bold;
	border-bottom: 1px solid #eee;
}

td, th {
	padding: 10px 20px 10px 0;
}

select {
    width: 100%;
		margin: 0;
    padding: 12px 10px;
    -webkit-appearance: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 300;
		background: #fff;
		color: transparent;
    border: 0;
    border: 1px solid #dadada;
		border-radius: 0px;
}

select option {
	color: #000;
}

select:focus {
	outline: none;
}

/* ///////////////////////////////////
//  Contact Form 7
////////////////////////////////////*/

span.wpcf7-not-valid-tip {
  white-space: nowrap;
	color: red;
  font-size: 10px;
  top: 15px;
	line-height: 0;
  right: 0px;
  position: absolute;
  width: 100%;
  left: 0;
  text-align: right;
  padding: 0 10px;
}

.wpcf7-response-output {
  border: 2px solid var(--color);
  padding: 10px 0;
  border-radius: 5px;
	margin-bottom: 20px;
}

.screen-reader-response, .wpcf7-response-output {
	display: none;
}

.wpcf7-validation-errors {
	color: #f00;
}

.input.validates-as-required label:before {
    content: "Bitte ausfüllen: ";
}

.input.validates-as-required.wpcf7-validates-as-email label:before {
    content: "E-Mail im falschen Format: ";
}

.begleitung_anrede .wpcf7-list-item:last-child,
.begleitung_menuwunsch .wpcf7-list-item:last-child {
	display: none !important;
}

.input.validates-as-required label {
    color: #f00;
}

.validates-as-required span.wpcf7-not-valid-tip {
    display: none;
}

.validates-as-required input[type='radio']:checked + span::before,
.validates-as-required input[type='radio']:not(:checked) + span::before,
.validates-as-required input[type='checkbox']:checked + span::before,
.validates-as-required input[type='checkbox']:not(:checked) + span::before {
	border-color: #f00;
}

/* ///////////////////////////////////////////////////////////////////
//  04 - Main
////////////////////////////////////////////////////////////////////*/

.wrapper__container {
	overflow: hidden;
}

.main__container {
}

.form-box {
	background: #ecf2f5;
	padding: 20px;
}

/* ///////////////////////////////////
//  04.1 - Navigation
////////////////////////////////////*/

/* ///////////////////////////////////
//  Header Nav
////////////////////////////////////*/

/* ///////////////////////////////////
//  Footer Nav
////////////////////////////////////*/

/* ///////////////////////////////////
//  Toggle
////////////////////////////////////*/

/*////////////////////////////////////////////////////////////////////
//  05 - Header
////////////////////////////////////////////////////////////////////*/

.header__container {
	z-index: 100;
	width: 100%;
  background: #0071ba;
  margin-top: 25px;
  box-shadow: inset 0px 40px 0px 0px #fff;
	position: relative;
}

.header__inside {
    max-width: var(--width);
    margin: auto;
}

.header__container::after {
	content: "";
	display: block;
	min-height: 0px;
	clear: both;
}

.top__container {
    float: left;
    margin: auto;
    padding: 0 10px;
}

.main__container {
    min-height: calc(100vh - 135px - 70px);
}

.main__inside {
    padding: 0 10px;
}

.header__nav {
    position: absolute;
    bottom: 70px;
    right: 0;
    max-width: calc(var(--width) - 20px);
    margin: auto;
    width: 100%;
    left: 0;
    text-align: right;
    font-size: 12px;
}

.header__nav li {
	display: inline-block;
}

/* ///////////////////////////////////
//  Branding
////////////////////////////////////*/

.branding__inside {
		text-align: center;
}

.branding__inside a {
	text-decoration: none;
	font-size: 20px;
	font-family: "Impact", "Charcoal", sans-serif;
	color: #fff;
	vertical-align: middle;
	display: inline-block;
	text-transform: uppercase;
}

.branding__inside a:first-child {
	background-color: #fff;
}

.branding__inside a:last-child {
	letter-spacing: 1px;
	margin-left: 20px;
	margin-top: 40px;
}

.branding__inside img {
  width: 160px;
  transition: all .25s ease-in-out;
	padding: 0 5px 5px;
}

.footer__branding img {
	margin-top: 50px;
}

.row__inside {
	max-width: calc(var(--width) - 20px);
	margin: auto;
	padding: 50px 0;
}

.top__inside {
	padding: 0 var(--gutter)
}

/*////////////////////////////////////////////////////////////////////
//  06 - Content
////////////////////////////////////////////////////////////////////*/

.rows__container {
}

.row__container {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.row__container,
.row__container .type--background-image {
  background-position: center center;
  background-size: cover;
}

.row__container.height--default,
.row__container.height--default .type--background-image {
}

.row__container.height--full,
.row__container.height--full .type--background-image {
  min-height: 100vh;
}

.row__container.height--half,
.row__container.height--half .type--background-image {
  min-height: 50vh;
}

.row__container.height--content {
  min-height: inherit;
}

.row__container.width--full {
    width: 100vw;
}

.row__container .row__inside {
	width: 100%;
	z-index: 1;
}

.color--dark {
}

.color--light {
  color: #fff;
}

.align-v--default {
}

.align-v--top {
	margin-top: 0;
	margin-bottom: auto;
}

.align-v--center {
	margin-top: auto;
	margin-bottom: auto;
}

.align-v--bottom {
	margin-top: auto;
	margin-bottom: 0;
}

.align-h--default {
}

.align-h--left {
	text-align: left;
}

.align-h--center {
	text-align: center;
}

.align-h--right {
	text-align: right;
}

.input.radio .wpcf7-list-item {
  display: block;
  margin-bottom: 10px;
	text-align: left;
}

.input.radio.inline .wpcf7-list-item {
  display: inline-block;
}

/* remove standard-styles */
input[type='radio'] {
  border:none;
  border-radius: 0;
  font-size: 15px;
  width: 100%
}

/* graceful degradation for ie8 */
input[type='radio'],
input[type='checkbox'] {
  width: auto;
  float: left;
  margin-right: .75em;
  background:transparent;
  border:none;
	cursor: pointer;
}

input[type='radio']:checked,
input[type='radio']:not(:checked),
input[type='checkbox']:checked,
input[type='checkbox']:not(:checked) {
  background: transparent;
  position: absolute;
  margin: 1px;
  padding:0;
	z-index: 10000;
	opacity: 0;
	width: 25px;
  height: 25px;
}

input[type='radio']:checked + span::before,
input[type='radio']:not(:checked) + span::before,
input[type='checkbox']:checked + span::before,
input[type='checkbox']:not(:checked) + span::before {
  content:' ';
  display: inline-block;
  width: 25px;
  height: 25px;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
  border: 1px solid transparent;
  background: #ecf2f5;
  margin-right: 1.5em;
	pointer-events: none;
	line-height: 25px;
}

.form-box input[type='radio']:checked + span::before,
.form-box input[type='radio']:not(:checked) + span::before,
.form-box input[type='checkbox']:checked + span::before,
.form-box input[type='checkbox']:not(:checked) + span::before,
.form-box input[type='radio']:checked + span::before,
.form-box input[type='checkbox']:checked + span::before,
.form-box input[type='radio']:hover + span::before,
.form-box input[type='checkbox']:hover + span::before {
  background: #fff;
}

input[type=radio]:checked + span::before,
input[type=radio]:not(:checked) + span::before {
  border-radius: 0px;
}

input[type='radio']:hover + span::before,
input[type='checkbox']:hover + span::before {
	content: "\f00c";
	color: #aaa;
	background: #ecf2f5;
	font-family: "Font Awesome 5 Pro";
	font-size: 15px;
	text-align: center;
}

input[type='radio']:checked + span::before,
input[type='checkbox']:checked + span::before {
	content: "\f00c";
	color: var(--dark);
	background: #ecf2f5;
	font-family: "Font Awesome 5 Pro";
	font-size: 15px;
	text-align: center;
}

span.wpcf7-list-item-label {
  padding: 3px 45px;
  display: block;
  position: relative;
}

.note {
    color: #aaa;
		display: block;
		margin-bottom: 30px;
		margin-top: 10px;
}

hr.empty {
	border-color: transparent;
	margin: 40px 0;
}

/*////////////////////////////////////////////////////////////////////
//  07 - Footer
////////////////////////////////////////////////////////////////////*/

.footer {
  color: #fff;
	width: 100%;
	background: #515558;
  min-height: 70px;
}

/*////////////////////////////////////////////////////////////////////
//  08 - Plugins
////////////////////////////////////////////////////////////////////*/

/* ///////////////////////////////////
//  Cookie Choice Info
////////////////////////////////////*/

#cookieChoiceInfo {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
  font-size: 15px;
}

#cookieChoiceInfo div a {
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  background: #ddd;
  padding: 0px 10px;
  border-radius: 40px;
	margin: 0 0 0 5px !important;
	display: inline-block;
}


.link--box {
    background: #ECF1F4;
    padding: 15px;
    border-top: 1px solid rgba(0,0,0,.1);
    border-bottom: 1px solid rgba(0,0,0,.1);
    margin-bottom: 20px;
}

.list__container th {
    cursor: pointer;
		transition: .25s all ease-in-out;
}

.list__container th:hover {
    background-color: rgba(0,0,0,.1);
}

.list__container td {
	border-top: 1px solid #eee;
}

.list__container td:first-child {
    max-width: 150px;
}

.list__container th:last-child,
.list__container td:last-child {
	text-align: right;
}

.list__container tbody tr:first-child {
    display: none;
}

.list__container tr:nth-child(even) td {
	background-color: #f7f7f7;
}

.list__container td, .list__container th {
	border-top: 1px solid #eee;
	padding: 5px 15px;
}

.list__container th {
	font-weight: bold;
}

.invoice__table {
    margin-top: 40px;
}

.invoice__table td:last-child {
	text-align: right;
}

.invoice__table td,
.invoice__table th {
	padding: 5px 0;
	text-align: left;
	border-top: 1px solid #eee;
}

.invoice__table td.final {
	border-bottom: 2px solid #000;
}

.invoice__table td.empty {
	border-top: 1px solid transparent;
}

.message__container {
	margin-bottom: 20px;
}

.list__container em {
	display: block;
	font-size: 10px;
}

tfoot,
tfoot td,
tfoot tr {
	background: #0071BA !important;
	font-weight: bold;
	color: #fff;
}

span.add-to-search {
    font-size: 80%;
    padding: 2px 4px;
    background: rgba(0,0,0,.1);
    border-radius: 3px;
    cursor: pointer;
    transition: .25s all ease-in-out;
		white-space: nowrap;
		margin-right: 2px;
		margin-bottom: 2px;
}

span.add-to-search:hover {
    background-color: rgba(0,0,0,.2);
}

.menu a {
    padding: 5px 10px;
    display: inline-block;
		transition: .25s all ease-in-out;
		text-decoration: none;
}

.menu a:hover {
	background-color: rgba(0,0,0,.1);
}

a.button.loading span {
	display: inline-block;
}

a.button span {
	display: none;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 10px;
  margin-right: 10px;
}

a.button span {
	box-shadow: 0 0 0 rgba(255,255,255, 0.4);
  animation: pulseDot 2s infinite;
}

.loading__container {
	background: #2E71BA;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	display: none;
	opacity: .8;
}

.loading__dot {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50px;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin: auto;
		box-shadow: 0 0 0 rgba(255,255,255, 0.4);
	  animation: pulseDot 2s infinite;
}

.loading__bar:after {
	content: attr(data-left)" / "attr(data-total);
	color: #000;
	text-align: center;
	display: block;
	line-height: 30px;
	position: relative;
	z-index: 1;
	font-size: 70%;
	font-weight: bold;
}

.loading__progress {
    display: block;
    width: 0px;
    height: 26px;
    background: #2E71BA;
    position: absolute;
    transition: .25s all ease-in-out;
    margin: 2px;
}

.loading__bar {
    position: absolute;
    top: calc(50% + 100px);
    left: 0;
    right: 0;
    margin: auto;
    width: 300px;
    background: #fff;
    height: 30px;
		display: none;
}

.loading__stop {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(50% + 160px);
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 70%;
}

a.send-warning {
    display: block;
    white-space: nowrap;
}

@-webkit-keyframes pulseDot {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0.4);
  }
  70% {
      -webkit-box-shadow: 0 0 0 20px rgba(255,255,255, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0);
  }
}

@keyframes pulseDot {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255,255,255, 0.4);
    box-shadow: 0 0 0 0 rgba(255,255,255, 0.4);
  }
  70% {
      -moz-box-shadow: 0 0 0 20px rgba(255,255,255, 0);
      box-shadow: 0 0 0 20px rgba(255,255,255, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(255,255,255, 0);
      box-shadow: 0 0 0 0 rgba(255,255,255, 0);
  }
}



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

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

@media all and (max-width: 1024px) {

  /*** Variables ***/

  :root {

  }

  .tablet--show,
  .tablet--only {
  display: block;
  }

  .tablet--hide {
  display: none;
  }

  .desktop--only {
  display: none;
  }

}

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

  /*** Variables ***/

	.row__inside {
		padding: 30px 30px;
	}

	.branding__inside a:first-child {
	    margin-left: 30px;
	}

	.branding__inside a:last-child {
    max-width: 180px;
    text-align: left;
    font-size: 14px;
	}

	form .column {
	    width: 100% !important;
	    margin: 0 !important;
	}

	.columns .column {
		width: 100% !important;
		margin: 0;
	}

  .mobile--show,
  .mobile--only {
	  display: block;
  }

  .mobile--hide {
	  display: none;
  }

  .desktop--only,
  .tablet--only {
	  display: none;
  }

}
