@font-face {
  font-family: "Clearface";
  src: url("../../assets/fonts/Clearface-Regular.eot");
  src: url("../../assets/fonts/Clearface-Regular.eot?#iefix")
      format("embedded-opentype"),
    url("../../assets/fonts/Clearface-Regular.woff") format("woff"),
    url("../../assets/fonts/Clearface-Regular.ttf") format("truetype"),
    url("../../assets/fonts/Clearface-Regular.svg#Clearface-Regular")
      format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

html {
  font-family: "Clearface";
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

a:focus {
  outline: thin dotted;
}

a:active,
a:hover {
  outline: 0;
}

b,
strong {
  font-weight: bold;
}

small {
  font-size: 80%;
}

button,
input,
select,
textarea {
  font-family: "Clearface";
  font-size: 100%;
  margin: 0;
}

button,
input {
  line-height: normal;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
input[disabled] {
  cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * Baseline Grid to be layered on Normalize
 *
 * Makes elements consistent across browsers, sets up some decent
 * default css styles and a baseline grid.
 *
 * @author Abban Dunne http://abandon.ie
 * @author James Wilson http://jimmynotjim.com
 * @version 1.1
 */
/* ========================================================== */
/* = Box sizing makes life easier                           = */
/* ========================================================== */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* ========================================================== */
/* = Set up baseline                                        = */
/* ========================================================== */
html {
  font-size: 100.01%;
}

body {
  font-size: 100%;
  color: #333;
  line-height: 1.5em;
  font-family: "Clearface";
  text-shadow: 0 -1px 1px rgba(255, 255, 255, 0.01);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: gray;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

a:hover,
a:focus {
  color: black;
}

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

ul,
ol,
dl {
  margin: 0;
  margin-bottom: 1.5em;
}

label {
  display: block;
}

.inline {
  display: inline;
  padding-right: 24px;
}

input:focus,
textarea:focus,
select:focus {
  outline: 0px;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}

input[type="text"],
input[type="url"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="tel"],
textarea {
  display: block;
  width: 100%;
  margin: 0 0 0.75em;
  padding: 0.3em;
  border: 0;
  line-height: 1.5em;
  font-family: "Clearface";
}

input[type="submit"],
input[type="button"] {
  border: 1px solid #ccc;
  background: #fad13e;
  padding: 0.7em 2em;
  margin: 0 20px 0 0;
  font-family: "Clearface";
  line-height: 1.5em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

/*
p {
  margin: 0 0 1.5em 0; }
*/

.row {
  *zoom: 1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0;
}

.row:before,
.row:after {
  content: "";
  display: table;
}

.row:after {
  clear: both;
}

.full {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  float: left;
  width: 100%;
  padding: 0 15px;
}

.half {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  float: left;
  width: 50%;
  padding: 0 15px;
}

@media screen and (max-width: 640px) {
  .half {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    float: left;
    width: 100%;
    padding: 0 5px;
  }
  .full {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    float: left;
    width: 100%;
    padding: 0 5px;
  }
}

.half .half {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  float: left;
  width: 50%;
  padding: 0 0px;
}

.full,
.half {
  margin-bottom: 5px;
}

.page {
  max-width: 800px !important;
  display: none;
  margin: 0 auto;
}

.right {
  float: right;
}

.left {
  float: left;
}

.lowercase {
  text-transform: none !important;
}

body {
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  font-family: "Clearface";
}

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

.logo {
  width: 150px;
  margin: 0 auto 35px auto;
}

.error_page {
  text-align: center;
  max-width: 250px;
  padding: 10px;
  margin: 0 auto;
}

.error_page h1 {
  color: #4d4d4d;
}

.error_page small h6 {
  color: #8d8d8d;
}

small a {
  color: gray;
}

small a:hover {
  cursor: pointer;
  color: black;
}

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

form.error label.error {
  color: red;
}

label.error,
.date_invalid_error {
  width: 100%;
  display: block;
  border-radius: 3px;
  margin-top: 7px;
  color: #ed7272;
  font-size: 14px;
  padding-left: 6px;
}

#formError .error,
#formError.error {
  color: red !important;
  position: relative;
  z-index: 99999;
}

#message {
}

/*
.datefield.error {
  border: 2px solid red !important; }

.datefield.error input {
  border: 0 !important; }

.error input {
  border: 2px solid red !important; }

.error .custom-select > span {
  border: 2px solid red !important; }

.success input {
  border: 2px solid #2a347e !important; }

.success .custom-select > span {
  border: 2px solid #2a347e !important; }*/

.loading {
  text-align: center;
  margin: 25px 0 25px 0;
}

.loading img {
  width: 32px;
  height: 32px;
  display: block;
  margin: 0 auto;
  margin-bottom: 15px;
}

p,
label {
  color: #655f52;
}

label {
  font-family: "Clearface";
  color: #655f52;
  font-size: 15px;
  font-weight: normal !important;
  display: inline;
  margin-right: 20px;
}
.required_label {
  color: #505050;
  margin-left: 0.25em;
}
h1,
label,
h3,
p,
button,
.button,
.question,
.footer,
.header {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
  margin-top: 0;
  color: white;
  font-family: "Clearface";
}

p,
input,
textarea {
  font-weight: normal;
  font-family: "Clearface";
}

h1 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
  padding-top: 0.53em;
  margin-bottom: 0.5em;
}

h2 {
  font-size: 18px;
  font-size: 1.125rem;
  padding-top: 0.25em;
  margin-bottom: 0.5em;
}

h3 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  padding-top: 0.35em;
  margin-bottom: 0.65em;
}

h4 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  padding-top: 0.45em;
  margin-bottom: 0.8em;
}

h5 {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: bold;
  padding-top: 0.6em;
  margin-bottom: 0.9em;
}

h6 {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: bold;
  margin-bottom: 0;
}

p {
  font-size: 16px;
  font-size: 1rem;
}

@media screen and (max-width: 420px) {
  p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.pd-top {
  padding-top: 30px;
}

p.small {
  font-size: 14px;
  font-size: 0.875rem;
  color: #f2f5f6;
}

.footer {
  margin-top: 25px;
  text-align: center;
  color: #f2f5f6;
  display: inline-block;
  width: 100%;
}

.footer p,
.footer a {
  font-size: 11px;
  font-size: 0.6875rem;
  margin: 0;
}

.footer a {
  color: #f2f5f6;
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: #c1c1c1;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #c1c1c1;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #c1c1c1;
}

:-ms-input-placeholder {
  color: #c1c1c1;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder {
  /* Firefox 18- */
  color: transparent;
}

input:focus::-moz-placeholder {
  /* Firefox 19+ */
  color: transparent;
}

input:focus:-ms-input-placeholder {
  color: transparent;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"] {
  padding: 15px 18px !important;
  border: 1px solid #655f52;

  width: 100%;
  background-color: transparent;
  margin-bottom: 5px;
  padding: 10px;
  text-align: left;
  -webkit-appearance: none;
  font-weight: 400;
  margin-top: 4px;
  color: #505050;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  background-color: transparent;
}

input[type="number"] {
  background-color: white;
  margin-bottom: 5px;
  padding: 10px;
  text-align: center;
  -webkit-appearance: none;
  border-radius: 0;
  font-weight: 400;
  color: #3f3d48;
}

input[type="number"]:focus {
  background-color: #eee;
}

textarea {
  box-shadow: 0;
  border: 0;
  background-color: white;
}

textarea:focus {
  background-color: #eee;
}

.date_invalid_error {
  display: none;
  float: left;
  width: 100%;
}

.datefield {
  border: 1px solid #655f52;
  background-color: transparent;

  padding: 7px;
  margin-top: 4px;
}

.datefield:before,
.datefield:after {
  content: "";
  display: table;
}

.datefield:after {
  clear: both;
}

.datefield_cont {
  margin: 0 auto;
}

.datefield_cont .error {
  display: none !important;
}

.datefield input {
  display: inline !important;
  background: transparent;
  color: #505050;
  margin-bottom: 0px;
  text-align: center;
  padding: 7.5px !important;
}

.datefield input:focus {
  background-color: transparent;
}

.dobLabel,
.dobdayinput,
.dobmonthinput,
.dobyearinput,
.divider {
  float: left;
}

.divider {
  margin: 8px 10px;
  font-weight: bold;
  color: #9f9990;
}

.dobLabel {
  margin-right: 10px;
  margin-top: 7px;
  font-weight: 400;
  color: grey;
}

.dobdayinput {
  width: 45px !important;
}

.dobmonthinput {
  width: 55px !important;
}

.dobyearinput {
  width: 60px !important;
}

.arrow {
  color: #9f9990;
  position: absolute;
  right: 10px;
  z-index: 1;
  top: 21px;
}

.select label {
  display: block;
}

/* Start Custom select element
=========================================================================== */
/* Wrapper element to enable positioning */
.custom-select-container {
  position: relative;
  margin-bottom: 10px !important;
  padding-top: 12px;
}

.custom-select-container.error {
  margin-bottom: 0;
}

/* Set the dimensions of the replaced select element and make it transparent. */
select.custom.replaced {
  position: relative;
  z-index: 10;
  width: 100%;
  border: 0;
  filter: alpha(opacity=0);
  /* Move to IE-specific CSS file if you want to. */
  opacity: 0;
  line-height: 2;
  cursor: pointer;
  height: 44px;
}

.custom-select {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  cursor: pointer;
  background: transparent;
}

.custom-select > span {
  cursor: pointer;
  display: block;
  color: white;
  background: transparent;
  font-weight: bold;
  border: 0;
  box-shadow: none;
}

/*
.custom-select span span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: initial;
  font-weight: normal;
  text-align: center;
  padding: 10px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-size: 1rem; 
color: #c1c1c1;
padding: 7.5px !important;
    border: 2px solid #004C6C;
    box-shadow: 4px 4px 0px #F04541;

}
*/

.custom-select span span {
  padding: 15px 18px !important;
  border: 1px solid #655f52;
  border-radius: 0px;
  width: 100%;
  background-color: transparent;
  margin-bottom: 5px;
  padding: 10px;
  text-align: left;
  -webkit-appearance: none;
  font-weight: 400;
  margin-top: 4px;
  color: #c1c1c1;
  display: inline-block;
}

/* hides the spin-button for firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}

.lt-ie9 .custom-select > span {
  background-position: 95% 50% !important;
  zoom: 1;
}

/* End Custom select element
=========================================================================== */

button[disabled] {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity-ie)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
}

button[disabled]:hover {
  cursor: not-allowed;
}

.button-block {
  width: 100%;
  margin-top: 1em;
}

a.button,
button,
.button {
  font-family: "Clearface";
  display: block;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  margin: 0px auto 5px auto;
  background-color: #620000;
  color: #fff;
  -webkit-transition: background-color 300ms ease-out;
  -moz-transition: background-color 300ms ease-out;
  transition: background-color 300ms ease-out;
  -webkit-appearance: none;
  border: none;
  line-height: 1.5em;
  letter-spacing: 2px;
  padding: 10px 40px 10px 40px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
}

a.button.small,
button.small,
.button.small {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.5em 1rem 0.5em 1rem;
}

@media screen and (max-width: 380px) {
  a.button.small,
  button.small,
  .button.small {
    width: 100%;
    margin: 0 0 0.5em 0 !important;
  }
}

a.button.primary,
button.primary,
.button.primary {
  background: gray;
}

a.button.primary:hover,
button.primary:hover,
.button.primary:hover {
  background: #676767;
  font-weight: 700;
}

a.button.submit,
button.submit,
.button.submit {
  outline: none !important;
  color: #655f52 !important;
  border: 1px solid #655f52;
  font-family: "Clearface";
  font-size: 21px;
  line-height: 20px;
  display: inline-block;
  width: auto;
  padding: 20px 30px;
  background: transparent;
  border-radius: 0px;
}

a.button.submit:hover,
button.submit:hover,
.button.submit:hover {
  opacity: 0.8;
}

a.button.right,
button.right,
.button.right {
  margin-left: 5px;
}

.button.success,
a.button.success {
  background-color: #27ae60;
}

.button.success:hover,
a.button.success:hover {
  background-color: #19703e;
}

/* Thanks */
.thanks {
  display: none;
}

/*.half label, .custom-select-container label {
  display: none !important; }*/

body {
  background: transparent;
  color: white;
  /*url("../img/mal1.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; */
}

/* input:autofill {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  -webkit-text-fill-color: rgb(232, 66, 59)!important;
}

input:-webkit-autofill {
  background:transparent!important;
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  -webkit-text-fill-color: rgb(232, 66, 59) !important;
} */

.page {
  background: transparent;
  margin-top: 1em;
  padding: 10px;
}

.terms {
  display: none;
  font-size: 0.7em;
  line-height: 1.5em;
}

#terms {
  cursor: pointer;
}

#logo {
  max-width: 100%;
  margin: 20px auto;
}

#itc {
  width: 193px;
  margin: 20px auto;
}

.select-venue {
  display: none;
}

.label-venues {
  display: inline !important;
}

.check-cities div.error {
  position: relative;
}

.check-cities label.error {
  display: none;
  bottom: 0;
  left: 0;
}

.checkbox {
  margin: 20px auto 0px auto;
  border: 1px solid #655f52;

  padding: 20px 30px 18px 30px;
}

.optinlabel {
  text-align: left;
  font-size: 14px;
  font-family: "Clearface";
  color: #655f52;
}

.checkbox input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}

.checkbox label,
label.interestCategory {
  position: relative;
  display: inline-block;

  /*16px width of fake checkbox + 6px distance between fake checkbox and text*/
  padding-left: 57px;
}

.checkbox label::before,
.checkbox label::after,
label.interestCategory::before,
label.interestCategory::after {
  position: absolute;
  content: "";

  /*Needed for the line-height to take effect*/
  display: inline-block;
}

/*Outer box of the fake checkbox*/
.checkbox label::before,
label.interestCategory::before {
  height: 28px;
  width: 30px;
  border: 2px solid #655f52;
  left: 0px;
  background-color: transparent;
  /*(24px line-height - 16px height of fake checkbox) / 2 - 1px for the border
     *to vertically center it.
     */
  top: 6px;
}

label.interestCategory::before {
  left: 15px;
  top: 6px;
}

/*Checkmark of the fake checkbox*/
.checkbox label::after,
label.interestCategory::after {
  height: 6px;
  width: 12px;
  border-left: 2px solid #707070;
  border-bottom: 2px solid #707070;

  transform: rotate(-45deg);

  left: 10px;
  top: 17px;
}

label.interestCategory::after {
  left: 25px;
  top: 24px;
}

/*Hide the checkmark by default*/
.checkbox input[type="checkbox"] + label::after,
input[type="radio"] + label.interestCategory::after {
  content: none;
}

/*Unhide on the checked state*/
.checkbox input[type="checkbox"]:checked + label::after,
input[type="radio"]:checked + label.interestCategory::after {
  content: "";
}

/*Adding focus styles on the outer-box of the fake checkbox*/
.checkbox input[type="checkbox"]:focus + label::before {
  outline: rgb(59, 153, 252) auto 5px;
}

label.interestCategory {
  line-height: 45px;
  border: 2px solid #707070;
  padding: 7px 20px 7px 60px;
  border-radius: 12px;
  margin-top: 15px;
}

input[type="radio"] {
  opacity: 0;
}

.consent_required,
.existing_customer p,
.existing_customer a {
  display: none;
  color: #ed7272;
}

.consent_required a {
  text-decoration: none;
  color: #ed7272;
}

.error_label {
  color: #ed7272;
}

.checkbox.error,
.checkbox.error .optinlabel::before,
.existing_customer p {
  border: 2px solid #ed7272;
}

.error_form .consent_required {
  max-width: 360px;
  margin: 20px auto;
}

.existing_customer {
  padding: 20px 30px 0px 30px;
}

.existing_customer p {
  border-radius: 12px;
  padding: 25px 30px;
}
