/************ 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: "cheltenham-book";
  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: #060606;
  color: #ffffff;
  /*font-size: 1.25em;*/
  line-height: 1.5;
  font-weight: 400;
  /*padding-bottom: 3em;*/

  background-image: url("../img/bg_desktop.jpg");
  background-size: 100%;
  background-position: center top;
  background-repeat: no-repeat;
}
/*
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
  );
}
*/

@media only screen and (max-width: 809px) {
  body {
    background-size: 100%;
    background-image: url("../img/bg_mobile.jpg");
  }
}

body.fb {
  overflow: auto;
}

@media only screen and (min-width: 809px) {
  body {
    font-size: 100%;
  }
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

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

* {
  -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: 750px;
  margin: 0 auto;
  /*padding: 50px 0px;*/
}

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

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: 4px 4px 8px rgba(6, 6, 6, 0.4);
}

/*** 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;
  position: relative;
  z-index: 500;
  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-size: 100% auto;
  background-position: center top;
  background-repeat: repeat-y;
  */
}

img#logo {
  position: relative;
  width: 264px;
  margin-top: -15px;
  margin-left: 22px;
  z-index: 10000;
}

img#ristorante-logo {
  display: block;
  width: 226px;
  position: absolute;
  top: 75px;
  left: 92px;
  z-index: 10000;
}

img#talang-emblem {
  display: block;
  width: 190px;
  position: absolute;
  top: 21px;
  right: 22px;
  z-index: -1;
}

/*
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: 832px;
  margin: 3rem auto 0px;
}

div#top-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

div.top-header-title {
  flex: 1;
  font-family: "cheltenham-book";
  margin: 0rem auto 1rem;
  font-size: 3.25em;
  line-height: 1.1;
}

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

#top-header-wrapper {
  display: flex;
  max-width: 900px;
  justify-content: space-between;
  align-items: center;
}

#top-header-content {
}

div.top-header-img {
  width: 100%;
  max-width: 365px;
  margin: 0;
  margin-left: 1.5rem;
  transform: rotate(4deg);
}

div.top-header-img img {
  width: 100%;
  /*
  border: 10px solid #ffffff;
  box-sizing: border-box;
  box-shadow: 0px 5px 15px rgba(186, 162, 135, 0.6);
  transform: rotate(4deg);
  */
  -webkit-filter: drop-shadow(4px 8px 24px rgba(6, 6, 6, 0.6));
  filter: drop-shadow(4px 8px 24px rgba(6, 6, 6, 0.6));
}

/*** TST **/

div.top-header-img .highlight {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px;
  right: -70px;
  top: -70px;
  z-index: 10;
  background-color: #2c599c;
  border: 5px solid #ffffff;
  /*box-shadow: 0 5px 15px 0 rgba(85, 73, 73, 1);*/
  border-radius: 50%;
}

div.top-header-img .highlight img {
  display: block;
  width: 120%;
}
/*
div.top-header-img .header-img {
  width: 100%;
  display: block;
}

div.top-header-img img.mobile {
  display: none;
}
*/

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

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

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

.jump {
  animation: 4s jump ease 2s infinite forwards;
}

@keyframes jump {
  0% {
    transform: scale(1);
    /*box-shadow: 0 5px 15px 0 rgba(85, 73, 73, 0.75);*/
    /* FIRST box-shadow: 0 1px 2px rgba(85, 73, 73, 0.8);*/
  }
  10% {
    transform: scale(1.2);
    /* FIRST box-shadow: 0 0px 5px 0 rgba(85, 73, 73, 0.5);*/
    /*box-shadow: 0 0px 15px rgba(85, 73, 73, 0.4);*/
  }
  20% {
    transform: scale(1);
    /*box-shadow: 0 5px 15px 0 rgba(85, 73, 73, 0.75);*/
    /* FIRST box-shadow: 0 1px 2px rgba(85, 73, 73, 0.8);*/
  }
  100% {
    /*
    transform: scale(1);
    box-shadow: 0 5px 15px 0 rgba(85, 73, 73, 0.75);
    */
    /* FIRST box-shadow: 0 1px 2px rgba(85, 73, 73, 0.8);*/
  }
}

.jump::after {
  content: "";
  position: absolute;
  z-index: 5;
  width: 150px;
  height: 150px;
  left: -5px;
  top: -5px;
  border-radius: 50%;
  opacity: 1;
  box-shadow: 0 5px 15px 0 rgba(85, 73, 73, 0.75);
  -webkit-transform: translate3d(0, 0, 0);
  animation: 4s jump_pseudo ease 2s infinite forwards;
}

@keyframes jump_pseudo {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    /*
    transform: scale(1);
    box-shadow: 0 5px 15px 0 rgba(85, 73, 73, 0.75);
    */
    /* FIRST box-shadow: 0 1px 2px rgba(85, 73, 73, 0.8);*/
  }
}

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

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

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

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

  div.top-header-img .highlight {
    width: 100px;
    height: 100px;
    right: -25px;
    top: -75px;
  }

  .jump::after {
    width: 110px;
    height: 110px;
  }

  /*
  div.top-header-img img.mobile {
    display: block;
  }

  div.top-header-img img.desktop {
    display: none;
  }
  */

  img#logo {
    width: 200px;
    margin-top: -14px;
  }
}

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

  div#top-header-wrapper {
    flex-direction: column-reverse;
  }

  div.top-header-img {
    margin-left: 0px;
    margin-bottom: 1rem;
    margin-top: 0px;
    width: 70%;
    max-width: 360px;
  }

  div.top-header-body {
    width: 90%;
    font-size: 1.5em;
  }
}

div#packshots {
  width: 90%;
  margin: 2rem auto;
  padding: 0px;
  display: flex;
  flex-direction: column;
}

div#packshots .inner-content {
  width: 100%;
  max-width: 824px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

div#packshots .packshot {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  width: 28%;
}
div#packshots .packshot img {
  width: 100%;
  display: block;
  -webkit-filter: drop-shadow(4px 8px 24px rgba(6, 6, 6, 0.6));
  filter: drop-shadow(4px 8px 24px rgba(6, 6, 6, 0.6));
  -webkit-transform: translate3d(0, 0, 0);
}

@media only screen and (max-width: 640px) {
  div#packshots {
    margin: 1.5rem;
  }

  div#packshots .packshot {
    margin: 2% auto;
    flex-basis: 46%;
  }
}

/*** Instruction **/
div#instruction-intro {
  max-width: 600px;
  margin: 0.75rem auto 0px;
  font-size: 1.375rem;
  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%;
  color: #060606;
  line-height: 60px;
  font-size: 44px;
  font-weight: bold;
  height: 60px;
  width: 60px;
  text-align: center;

  box-shadow: 4px 8px 24px rgba(6, 6, 6, 0.6);
}

div.instruction div.text {
  margin-top: 16px;
  text-align: center;
  font-size: 1.125em;
  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;
}

@media only screen and (max-width: 640px) {
}

/*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-intro {
    font-size: 1.375em;
  }

  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: 640px;
  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: #ffffff;
  text-decoration: none;

  border-radius: 2px;
  border: 2px solid #ffffff;
  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-color: #d62631;
  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%;
}

div.form-2-col {
  display: flex;
  justify-content: space-between;
}
div.form-2-col input.form-input {
  width: 100%;
}

div.form-2-col .form-col.form-zip {
  flex-basis: 25%;
}

div.form-2-col .form-col.form-city {
  flex-basis: 65%;
}

label {
  font-family: "cheltenham-book";
  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: 0.5rem;
  width: 100%;
  box-sizing: border-box;
  margin-top: 10px;
  line-height: 1.5;
  font-size: 1.25em;
  border-radius: 3px;
  color: #1a1919;
  background-color: #fff;
  /*border: 2px solid #e5dcd2;*/

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

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

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

::-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;
}

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: 500;

  -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: 610px;
  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;
  }
}

@media only screen and (max-width: 640px) {
  /*
  div.form-2-col {
    display: block;
  }

  div.form-2-col .form-col.form-zip,
  div.form-2-col .form-col.form-city {
    flex-basis: 100%;
  }
  */
}

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

/*** Footer ***/
div#footer {
  margin: 3rem auto 1.5rem;
  width: 80%;
}

div#footer-text {
  font-size: 1.125em;
  text-align: center;
}

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

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

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

div#cookie-box .cookie-text a {
  text-decoration: underline;
  font-weight: bold;
}

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;
  }
}
