/************ CSS 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;
}

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

*:focus {
  outline: none;
}

@font-face {
  font-family: "cheltenhamCondensed";
  src: url("ch_cond.eot");
  src: url("ch_cond.eot#iefix") format("embedded-opentype"), url("ch_cond.woff") format("woff"),
    url("ch_cond.ttf") format("truetype"), url("ch_cond.svg#ch_cond") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
/*
@font-face {
  font-family: "cheltenhamCondensed";
  src: url("ch_book.eot");
  src: url("ch_book.eot?#iefix") format("embedded-opentype"),
    url("ch_book.woff") format("woff"), url("ch_book.ttf") format("truetype"),
    url("ch_book.svg#ch_book") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "cheltenhambold";
  src: url("ch_bold-webfont.woff2") format("woff2"),
    url("ch_bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
*/
/***** STANDARD *****/
html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Roboto Condensed", arial, sans-serif;
  background: #161b1d;
  color: #fffffe;
  /*font-size: 1.25em;*/
  line-height: 1.5;
  font-weight: 400;
  /*padding-bottom: 3em;*/
}
/*
body:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 21px;
  z-index: 5000;
  background: linear-gradient(
    #e30a17,
    #e30a17 0.375rem,
    #fff 0.375rem,
    #fff 0.5625rem,
    #24328b 0.5625rem,
    #24328b 0.75rem,
    #fff 0.75rem,
    #fff 0.9375rem,
    #e30a17 0.9375rem,
    #e30a17 1.3125rem
  );
}
*/

body.fb {
  overflow: auto;
}

@media only screen and (min-width: 809px) {
  html,
  body {
    font-size: 16px;
  }
}

@media only screen and (min-width: 640px) and (max-width: 809px) {
  html,
  body {
    font-size: 15px;
    /*background-size: 810px;*/
    background-position: top center;
  }
}

@media only screen and (max-width: 640px) {
  html,
  body {
    font-size: 14px;
    background-position: top center;
    /*background-size: 640px;*/
  }
}

a {
  text-decoration: none;
}

/**
 *  clearfixc For modern browsers
 */
.cf:before,
.cf:after {
  content: "";
  display: table;
}
.cf:after {
  clear: both;
}
/**
 * For IE 6/7 (trigger hasLayout)
 */
.cf {
  *zoom: 1;
}

.clear {
  clear: both;
}
.first-left {
  margin-left: 0px !important;
}
.no-word-break,
.nwb {
  white-space: nowrap;
}

.fw {
  display: block;
  width: 100%;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

div.content {
  width: 100%;
  padding-top: 1px;
  margin-top: -1px;
  padding: 20px 0px;
}

div.inner-content {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  /*padding: 50px 0px;*/
}

div.inner-content.lg {
  max-width: 1080px;
}

h1 {
  font-size: 2.25em;
  line-height: 1.1;
  text-align: center;
  font-family: "cheltenhamCondensed";
}

h1 span {
  /*background-color: #FFF;*/
  display: inline-block;
  padding: 0 12px;
}

.red {
  color: #e30a17;
}
.underline {
  text-decoration: underline;
}
.btn-wrapper {
  text-align: center;
}
.hidden {
  display: none;
}
.text-shadow {
  text-shadow: #161b1d 2px 2px 6px;
  /*text-shadow: 2px 2px 3px #ff00ff;*/
}

/*** LOADING SCREEN **/
div#loading-screen {
  display: table;
  position: relative;
  height: 100%;
  min-height: 100%;
  height: 100vh;
  max-height: 100vh;
  width: 100%;
  /*max-width: 100%;*/
  overflow: hidden;
  background-color: #fff;
}

div#loading-wrapper {
  display: table-cell;
  margin: 0px auto;
  vertical-align: middle;
}

div#loading-wrapper img {
  display: block;
  margin: 0px auto;
}

/*
.spinner {
  margin: 30px auto;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner.white > div {
  background-color: #fff;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
  background-color: #e30a17;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
  background-color: #24328b;
}

.spinner .bounce3 {
  background-color: #e30a17;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
*/

/*** INIT **/

/*div#main-content, div#entryHandler { display: none; }*/

div#stripe {
  width: 100%;
  height: 21px;
  background: linear-gradient(
    #e30a17,
    #e30a17 0.375rem,
    #fff 0.375rem,
    #fff 0.5625rem,
    #24328b 0.5625rem,
    #24328b 0.75rem,
    #fff 0.75rem,
    #fff 0.9375rem,
    #e30a17 0.9375rem,
    #e30a17 1.3125rem
  );
}

div#main-content {
  overflow: hidden;
  background-image: url("../img/main_bg.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
}

img#logo {
  display: block;
  width: 118px;
  position: absolute;
  top: 8px;
  left: 22px;
  z-index: 10000;
}

img#tradizionale-logo {
  display: block;
  width: 340px;
  position: absolute;
  top: 66px;
  left: 29px;
  z-index: 10000;
}

img#talang-emblem {
  display: block;
  width: 140px;
  position: absolute;
  top: 21px;
  right: 22px;
}

/*
img#fiat-logo
{
  display: block;
  width: 98px;
  position: absolute;
  top: 28px;
  right: 20px;
  z-index: 10000;
}

img#resia-logo
{
  display: block;
  width: 160px;
  position: absolute;
  top: 38px;
  right: 148px;
  z-index: 10000;
}
*/

/*** TOP HEADER **/
div#top-header {
  position: relative;
  text-align: center;
  /** Collapsing margins fix **/
  padding-top: 1px;
  /*margin-top: 200px;*/
  /*padding-bottom: 40px;*/
  max-width: 750px;
  margin: 12rem auto 40px;
}

div#top-header.vertical {
  margin-top: 10rem;
}

div#top-header-inner {
  display: flex;
}

.horizontal div#top-header-inner {
  margin-bottom: 2.75rem;
  justify-content: space-between;
  align-items: center;
}

.vertical div#top-header-inner {
  flex-direction: column;
}

div.top-header-title {
  flex: 1;
  font-family: "cheltenhamCondensed";
  max-width: 610px;
  margin: 1rem auto;
  font-size: 3.25em;
  line-height: 1.1;
}

div.top-header-title.final-msg {
  font-size: 2.75em;
  margin-top: 60px;
}

.vertical div.top-header-title {
  order: 1;
  margin-top: 2rem;
}

.horizontal div.top-header-img {
  flex-basis: 240px;
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.vertical div.top-header-img {
  order: 3;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

div.top-header-img img {
  width: 100%;
  display: block;
  transform: rotate(4deg);
  -webkit-filter: drop-shadow(0px 5px 15px rgba(22, 27, 29, 1));
  filter: drop-shadow(0px 5px 15px rgba(22, 27, 29, 1));
}

div.top-header-body {
  width: 80%;
  /*max-width: 440px;*/
  max-width: 572px;
  font-size: 1.375em;
  line-height: 1.3;
  margin: 0rem auto;
  /*line-height: 1.35;*/
}

.horizontal div.top-header-body {
  margin-top: 2rem;
}

.vertical div.top-header-body {
  margin-top: 0.5rem;
  order: 2;
}

.final div.top-header-body {
  max-width: 400px;
}

div#top-header-message.final {
  font-size: 1.5em;
  margin-top: 30px;
  color: #e30a17;
}

div.content-wrapper,
div#compete-page {
  padding: 0px 2%;
}

@media only screen and (max-width: 1024px) {
  div#top-header.vertical {
    margin-top: 7rem;
  }

  img#logo {
    width: 80px;
  }

  img#tradizionale-logo {
    width: 210px;
    top: 52px;
    left: 35px;
  }
}

@media only screen and (max-width: 809px) {
  div.content-wrapper,
  div#compete-page {
    padding: 0px 4%;
  }
  div#top-header {
    margin: 2rem auto 2rem;
  }

  div#top-header-inner {
    flex-direction: column-reverse;
    margin-bottom: 2rem;
  }

  div.top-header-title {
    flex-basis: 100%;
    font-size: 2.75em;
    margin-top: 0rem;
    margin-bottom: 0px;
  }

  div.top-header-img {
    flex-basis: unset;
    width: 75%;
    /*margin: 3rem auto 2rem;*/
    margin-left: auto;
    margin-right: auto;
    /*max-width: 200px;*/
  }

  .vertical div.top-header-img {
    margin-bottom: 0rem;
  }

  div.top-header-body {
    font-size: 1.375em;
  }

  .vertical div.top-header-body {
    margin-top: 1.25rem;
  }

  img#logo {
    width: 59px;
  }

  img#tradizionale-logo {
    /*
    width: 120px;
    top: 38px;
    left: 29px;
    */
    width: 120px;
    top: 44px;
    left: 39px;
  }
  img#tomater {
    display: none;
  }
  img#talang-emblem {
    width: 100px;
  }

  /*
  img#tomater
  {
    width: 175px;
    right: -50px;
  }
  */
}

@media only screen and (max-width: 640px) {
  div.content-wrapper,
  div#compete-page {
    padding: 0px 5%;
  }
  div#top-header {
    padding-bottom: 0rem;
  }
  div#top-header.vertical {
    margin-top: 5rem;
  }
  div.top-header-body {
    width: 90%;
    max-width: unset;
  }

  div.top-header-img {
    margin-top: 1.5rem;
    width: 100%;
  }
}

/* Hotel logos */
#hotel-logos {
  display: flex;
  width: 100%;
  max-width: 675px;
  margin: 1rem auto 0;
  justify-content: space-between;
  align-items: center;
}

#hotel-logos a {
  flex-basis: 50%;
  display: block;
  cursor: pointer;
}

#hotel-logos:hover a img {
  opacity: 0.5;
}

#hotel-logos a img:hover {
  opacity: 1;
}

#hotel-logos a img {
}

@media only screen and (max-width: 809px) {
  #hotel-logos {
    flex-wrap: wrap;
    justify-content: center;
  }

  #hotel-logos a {
    flex-basis: 50%;
    display: block;
  }
}

@media only screen and (max-width: 640px) {
  #hotel-logos {
    flex-wrap: wrap;
    justify-content: center;
  }

  #hotel-logos a {
    flex-basis: 100%;
    transform: scale(0.8);
    margin-top: 0.75rem;
  }
}

div#packshots {
  /*max-width: 600px;*/
  margin: 0 auto;
  padding-bottom: 2.5rem;
}

div#packshots .inner-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

div#packshots .packshot {
  width: 22%;
  max-width: 220px;
}

div#packshots img {
  -webkit-filter: drop-shadow(0px 5px 15px rgba(22, 27, 29, 0.75));
  filter: drop-shadow(0px 5px 15px rgba(22, 27, 29, 0.75));
}
/*
div#packshots img:first-of-type {
  margin-left: 0px;
}
*/

@media only screen and (max-width: 640px) {
  div#packshots .packshot {
    width: 46%;
    max-width: unset;
  }
  div#packshots .packshot:nth-of-type(3),
  div#packshots .packshot:nth-of-type(4) {
    margin-top: 4%;
  }
}

/*** Instruction **/
div#instruction-intro {
  max-width: 572px;
  margin: 0.75rem auto 0px;
  font-size: 1.25rem;
  text-align: center;
  line-height: 130%;
}

div.instruction {
  float: left;
  /*
  width: 32%;  
  margin: 30px 0px 0px 2%;
  */

  width: 48%;
  margin: 30px 0px 0px 4%;
}

div.instruction-step-wrapper {
  text-align: center;
}

div.instruction-step {
  display: inline-block;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 2px 2px 3px 0 rgba(22, 27, 29, 0.75);
  color: #15151a;
  line-height: 60px;
  font-size: 44px;
  font-weight: bold;
  height: 60px;
  width: 60px;
  text-align: center;
}

div.instruction div.text {
  margin-top: 16px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.3;
}

div#instruction-text {
  width: 100%;
  max-width: 560px;
  margin: 0px auto;
  text-align: center;
}

div#instruction-top {
  margin-top: 30px;
  font-size: 1.125em;
}

div#instruction-top b {
  font-weight: 700;
}

div#instruction-bottom {
  max-width: 520px;
  margin: 20px auto 0px;
  font-size: 1em;
}

div#instruction-bottom a {
  text-decoration: underline;
  color: #fffffe;
}

@media only screen and (max-width: 640px) {
  div.instruction {
    float: none;
    /*
    width: 32%;  
    margin: 30px 0px 0px 2%;
    */
    width: 100%;
    margin: 3rem 0 0 0;
  }
}

/*div#instruction-bottom a { color: rgba(25,25,25,0.75); text-decoration: underline; }*/

a#compete-btn,
a#rm-btn {
  display: inline-block;
  padding: 18px 42px;
  margin: 42px auto;
  font-size: 1.375em;
  text-transform: uppercase;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;

  color: #fff;
  text-decoration: none;
  background-color: #e6a2ac;
}
div#rm-btn-wrapper {
  display: none;
}
a#rm-btn {
  margin-top: 0px;
}

@media only screen and (max-width: 809px) {
  div.instruction-step {
    font-size: 33px;
    font-weight: bold;
    height: 45px;
    width: 45px;
    line-height: 140%;
    text-align: center;
  }
  div.instruction div.text {
    font-size: 1.25em;
  }
  div#instruction-top {
    font-size: 1.25em;
  }
  div#instruction-bottom {
    font-size: 1.125em;
  }
}

/** Video wrapper **/
div#video-wrapper {
  margin-top: 50px;
  margin-bottom: 50px;
}

div#video-wrapper div {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

div#video-wrapper div iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/** Quiz **/

div.quiz-wrapper {
  margin-top: 40px;
}

div.question-text {
  font-size: 1.5em;
  width: 100%;
  max-width: 600px;
  margin: 15px auto 0px auto;
  text-align: center;
  line-height: 1.3;
}

div.answers-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 30px;
  padding-bottom: 10px;
}

a.answer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  /*display: inline-block;
  float: left;*/
  display: block;
  padding: 1em;
  /*
  width: 26%;
	margin-left: 5%;
  padding: 15px 2% 17px 2%;
  */
  text-align: center;
  font-size: 1.375em;
  line-height: 1.275;
  background-color: transparent;
  color: #fffffe;
  text-decoration: none;

  border-radius: 2px;
  border: 2px solid #fffffe;
  box-sizing: border-box;
  /*-webkit-box-shadow: 0px 0px 0px 2px rgba(255,255,255,1);
	-moz-box-shadow: 0px 0px 0px 2px rgba(255,255,255,1);
	box-shadow: 0px 0px 0px 2px rgba(255,255,255,1);*/

  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

a.answer:hover {
  transform: scale(1.1);
}

a.answer.selected {
  color: #fffffe;
  background-color: #d62631;
  border: 2px solid #d62631;
  text-shadow: none;
  opacity: 1;
}

a.answer.not-selected {
  opacity: 0.6;
}

a.answer.selected:hover
/*a.answer.not-selected:hover*/ {
  transform: scale(1);
}

@media only screen and (max-width: 809px) {
  div.answers-wrapper {
    display: block;
  }

  a.answer {
    display: block;
    width: 95%;
    padding: 20px 10px;
    margin: 5% auto 0px;
    font-size: 1.5em;
  }
}
/** COMPETE **/
div#submission-wrapper {
  margin-top: 40px;
}

div#compete-map-title {
  font-size: 1.125em;
  text-align: center;
}

div#form-wrapper {
  margin-top: 20px;
}

div.form-left,
div.form-right {
  width: 48%;
  float: left;
}

div.form-right {
  margin-left: 4%;
}

label {
  font-family: "cheltenhamCondensed";
  display: block;
  font-size: 1.25rem;
  font-weight: 400;
  margin-top: 20px;
}

input.form-input,
textarea.form-input {
  font-family: "Roboto Condensed", arial, sans-serif;
  padding: 2.5%;
  width: 95%;
  margin-top: 10px;
  line-height: 1.5;
  font-size: 1.25em;
  border-radius: 3px;
  color: #1a1919;
  background-color: #fff;
  border: 1px solid #ffffff;

  -webkit-appearance: none;
  outline: none;
}

/*input.form-input { font-size: 1.2em; }*/

textarea.form-input {
  height: 280px;
}

::-webkit-input-placeholder {
  color: #69696c;
}
:-moz-placeholder {
  color: #69696c;
}
::-moz-placeholder {
  color: #69696c;
}
:-ms-input-placeholder {
  color: #69696c;
}

div.cb-wrapper {
  margin-top: 16px;
}

input.cb,
div.cb-text {
  display: block;
  float: left;
}

input.cb {
  width: 12px;
}

div.cb-text {
  margin-left: 2%;
  width: 90%;
  font-size: 14px;
}

div.cb-text a {
  text-decoration: underline;
  color: #fffffe;
}

div#errrormsg {
  display: none;
  margin: 20px 0px;
  color: #df002b;
}

div#submit-btn-wrapper {
  text-align: center;
}

a#submit-btn {
  display: inline-block;
  padding: 14px 68px;
  margin: 55px auto;
  font-size: 1.25em;
  text-transform: uppercase;
  font-weight: 300;

  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;

  color: #fff;
  background-color: #d62631;
}

a#submit-btn:hover {
  background-color: #d8343e;
}

a#submit-btn.loading {
  pointer-events: none;
  cursor: default;
  color: #be0000;
}

div#submit-loading {
  display: none;
  margin: 55px auto 0px;
}

.spinner {
  margin: 30px auto;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner.white > div {
  background-color: #fff;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
  background-color: #ffffff;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
  background-color: #ffffff;
}

.spinner .bounce3 {
  background-color: #ffffff;
}

@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

div#errormsg {
  display: none;
  margin-top: 40px;
  color: #e40a17;
  color: #fffffe;
  text-align: center;
  font-size: 20px;
  font-size: 1.5rem;
  line-height: 1.15;
}

div#thankyou {
  display: none;
  width: 100%;
  max-width: 620px;
  font-size: 1.375em;
  text-align: center;
  margin: 3rem auto 0;
}

div#thankyou h1 {
  margin-bottom: 0.5rem;
}

@media only screen and (max-width: 809px) {
  div.form-left,
  div.form-right {
    width: 100%;
    float: none;
    margin-left: 0px;
  }

  div.form-right {
    margin-top: 20px;
  }
  textarea.form-input {
    height: 250px;
  }

  label {
    font-size: 1.25em;
    margin-top: 15px;
  }

  input.form-input,
  textarea.form-input {
    width: 95%;
  }
}

/*** Contest gallery ***/

/** INIT **/
/*
div#gallery
{
	width: 100%;
}
*/

div#more-btn-wrapper {
  text-align: center;
}

a#more-btn {
  display: none;
  width: 100%;
  max-width: 260px;
  padding: 18px 0px;
  margin: 64px auto;

  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;

  font-size: 1.375em;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background-color: #df002b;

  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

/*** BG elements ***/

.bg-element {
  display: block;
  position: absolute;

  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.bg-element.sallad {
  right: 0px;
  top: 23%;
}

.bg-element.pesto {
  left: 0px;
  top: 38.5%;
  width: 200px;
}

.submitted .bg-element.sallad {
  top: 40%;
}

.submitted .bg-element.pesto {
  top: 55%;
}

@media only screen and (max-width: 1400px) {
  .bg-element.sallad {
    width: 12%;
  }

  .bg-element.pesto {
    width: 15%;
  }
}

@media only screen and (max-width: 1024px) {
  .bg-element {
    display: none;
  }
}
/*** Footer ***/
div#footer {
  position: relative;
  background-image: url("../img/footer_bg.png");
  background-repeat: no-repeat;
  background-position: bottom right;
  min-height: 325px;
}

div#footer-text {
  width: 40%;
  max-width: 480px;
  color: #fff;
  font-size: 1.125em;
  margin-top: 15px;
  position: absolute;
  left: 60px;
  bottom: 60px;
}

@media only screen and (max-width: 809px) {
  div#footer-text {
    width: 50%;
    left: 20px;
    bottom: 20px;
    text-shadow: 0px 0px 5px rgba(23, 24, 28, 0.76);
  }
}

/** Cookie box ***/
div#cookie-box {
  /*border-bottom: 6px solid #e6a2ac;*/
  background-color: #292e2f;
}

div#cookie-box .inner-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  box-sizing: border-box;
}

div#cookie-box .cookie-text {
  margin-right: 2rem;
}

div#cookie-box .cookie-text a {
  color: #ffffff;
  text-decoration: underline;
}

div#cookie-box a.btn {
  margin: 0.5rem 0 0;
  padding: 10px 40px;
  color: #ffffff;
  background-color: #d62631;
}

@media only screen and (max-width: 480px) {
  /*
  div#cookie-box .inner-content {
    flex-direction: column;
    align-items: flex-end;
  }
*/

  div#cookie-box a.btn {
    margin: 0.5rem 0 0;
    padding: 8px 24px;
  }
  div#cookie-box .cookie-text {
    margin-right: 1rem;
  }
}

/**** ANIMATIONS *****/

div#cleaning-section {
  margin-top: 2rem;
  /*background-color: rgb(255 0 255 / 25%);*/
  width: 100%;
  height: 150px;
  position: relative;
}

div#crumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  /*background-color: #ffff0038;*/
  height: 150px;
}

div#crumbs-flex {
  width: 100%;
  max-width: 420px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

img#moving-vacuum {
  position: absolute;
  width: 150px;
  top: 0px;
  left: 0px;
  -webkit-filter: drop-shadow(0px 0px 20px rgba(22, 27, 29, 0.8));
  filter: drop-shadow(0px 0px 20px rgba(22, 27, 29, 0.8));

  /*
  -webkit-transition: all 2s linear;
  -moz-transition: all 2s linear;
  -o-transition: all 2s linear;
  transition: all 2s linear;
  */
}

@media only screen and (max-width: 640px) {
  div#crumbs-flex {
    max-width: unset;
    justify-content: center;
  }
}

@media only screen and (max-width: 480px) {
  div#crumbs-flex {
    max-width: 200px;
    justify-content: center;
  }
}

/*
img#moving-vacuum.step-0 {
  left: -230px;
  bottom: 0px;
}

img#moving-vacuum.step-1 {
  left: 0px;
  bottom: 0px;
}

img#moving-vacuum.step-3 {
  transform: rotate(-23deg);
}

img#moving-vacuum.step-4 {
  right: 0px;
  top: 0px;
}

img#moving-vacuum.step-5 {
  right: -230px;
}
*/
