html {
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

*, ::after, ::before {
  box-sizing: inherit;
}

body {
  background-color: #f8f8f9;
  padding: 0 0 40px;
  margin: 0 auto;

  color: #918f99;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  line-height: 1.5;

  -webkit-font-feature-settings: "kern", "liga", "pnum";
  -moz-font-feature-settings: "kern", "liga", "pnum";
  -ms-font-feature-settings: "kern", "liga", "pnum";
  font-feature-settings: "kern", "liga", "pnum";
  -webkit-font-smoothing: antialiased;
}

a.button, h1, h2, h3, h4, h5, h6 {
  font-family: Montserrat, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -2px;
}

.message {
  text-align: center;
  padding: 40px 20px;
  max-width: 640px;
  margin: 0 auto;
}

.message h1 {
  color: #231E32;
  line-height: 1.1;
  margin: 0;
  font-size: 30px;
}

.message .logo {
  line-height: 1;
  height: 24px;
  margin-bottom: 20px;
}

.message p {
  margin-top: 9px;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 400;
}

.container .agree {
  display: block;
  width: 100%;
  font-size: 15px;
  text-align: center;
  margin: 10px 0 20px;
}

.container .agree a {
  color: #231E32;
}

.container .agree a:active, .container .agree a:focus, .container .agree a:hover {
  color: #3B98DB;
}

form {
  margin: 0 auto;
  padding: 0;
}

form, input {
  width: 280px;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  text-decoration: none;
  -webkit-transition: color .4s ease-in-out, background-color .4s ease-in-out, border-color .4s ease-in-out;
  -moz-transition: color .4s ease-in-out, background-color .4s ease-in-out, border-color .4s ease-in-out;
  transition: color .4s ease-in-out, background-color .4s ease-in-out, border-color .4s ease-in-out;
}

input {
  border: 0;
  height: 40px;
  line-height: 40px;
  -webkit-transition: color .4s ease-in-out, background-color .4s ease-in-out, border-color .4s ease-in-out;
  -moz-transition: color .4s ease-in-out, background-color .4s ease-in-out, border-color .4s ease-in-out;
  transition: color .4s ease-in-out, background-color .4s ease-in-out, border-color .4s ease-in-out;
  border-radius: 40px;
}

input:hover {
  transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
  cursor: pointer;
}

input[type=submit] {
  color: #fff;
  font-family: Montserrat, sans-serif;
  background-color: #231E32;
  margin: 10px 0 0;
  font-size: 15px;
}

input[type=submit]:focus,
input[type=submit]:focus:hover,
input[type=submit]:hover {
  background-color: #7F186A;
}

input[type=submit].loading {
  background-color: #808285;
}

input[type=text], input[type=email], input[type=password], input[type=tel] {
  border: 1px solid #e5e4e6;
  background-color: #fff;
  padding: 0 30px;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #231E32;
}

input[type=text]:focus, input[type=text]:focus:hover, input[type=email]:focus, input[type=email]:focus:hover, input[type=password]:focus, input[type=password]:focus:hover, input[type=tel]:focus, input[type=tel]:focus:hover {
  border: 1px solid #231E32;
  color: #231E32;
  background-color: #fff;
  outline: none;
}

.fields {
  display: flex;
  x-justify-content: space-around;
  x-align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
}

.fields .field-label {
  text-transform: uppercase;
  color: #231E32;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  margin: 0 0 5px;
  font-weight: bold;

  width: 194px;
  height: 50px;
  vertical-align: middle;
  padding-right: 14px;
}

.fields .field-label, .fields .field {
  margin-bottom: 10px;
}

.fields .field-label {
  flex: 0 0 194px;
  display: flex;
  align-items: center;
}

.fields .field {
  flex: 1;
}

.fields .field.error {
  border: 1px solid #7F186A;
}

.created_with_love {
  color: #231E32;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  margin: 0;
}

.invisible {
  display: none;
}

.select-input {
  display: none;
}

.select-container {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.field.select-container .select-value {
  width: 406px;
}

.select-container * {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #231E32;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  outline: 0;
  white-space: nowrap;
}

.select-value {
  cursor: pointer;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: block;
  position: relative;

  width: 100%;
  height: 50px;
  border-radius: 50px;

  background-color: #fff;
  border: 1px solid #e5e4e6;
  -webkit-transition: color .4s ease-in-out, background-color .4s ease-in-out, border-color .4s ease-in-out;
  -moz-transition: color .4s ease-in-out, background-color .4s ease-in-out, border-color .4s ease-in-out;
  transition: color .4s ease-in-out, background-color .4s ease-in-out, border-color .4s ease-in-out;
}

.select-text {
  padding: 0 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  float: left;

  line-height: 50px;
}

.select-arrow {
  width: 0;
  height: 0;
  border-top: 5px solid #918f99;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;

  margin: 0 auto;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
}

.select-arrow-container {
  position: absolute;
  right: 0;
  width: 60px;
  height: 50px;
  line-height: 50px;
}

.select-options {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  overflow-x: hidden;
  overflow-y: auto;
  cursor: pointer;
  display: none;
  z-index: 9999999999999;
  text-align: left;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-radius: 25px;
  max-height: 200px;

  border: 1px solid #e5e4e6;
  background-color: #fff;
}

.select-collapsed .select-options {
  display: none;
}

.select-expanded .select-options {
  display: block;
}

.select-option {
  margin: 0;
  list-style-type: none;
  padding: 0 30px;
  font-size: 20px;
}

.select-option-anchor {
  height: 50px;
  line-height: 50px;
  color: #918f99;
}

.select-option:hover > .select-option-anchor, .select-focus > .select-option-anchor {
  color: #231E32;
}

.message .messages.error {
  background-color: #d75573;
  border: 1px solid #C91C44;
}

.message .messages {
  max-width: 600px;
  background-image: none;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  margin: 40px auto 0;
  padding: 10px;
  border-radius: 25px;
}

.message .messages ul li {
  list-style-type: none;
}

div.messages ul li {
  list-style-image: none;
}

.form-group {
  display: flex;
  flex-wrap: wrap;
}

.form-group .error-messages {
  display: none;
  background: #d75573;
  border: 1px solid #C91C44;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  margin: 0 10px 10px 194px;
  padding: 10px;
  border-radius: 25px;
  flex: 1;
}

.form-group .error-messages ul li {
  list-style: none none;
}

.form-group.has-error .error-messages {
  display: block;
}

.Preloader {
  width: 20px;
  height: 20px;
  padding-top: 10px;
  display: inline-block;
}

.Preloader__line1,
.Preloader__line2 {
  width: 20px;
  height: 2px;
  background-color: #7BC043;
  position: absolute;
}

.Preloader__line1 {
  animation: spin1 1.5s infinite ease-out;
}

.Preloader__line2 {
  transform: rotate(90deg);
  animation: spin2 1.5s infinite ease-out;
}

.Preloader.Preloader--align-middle {
 display: block;
 margin: 10px auto;
}

@keyframes spin1 {
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes spin2 {
  100% {
    transform: rotate(270deg);
  }
}

@media screen and (min-width: 1000px) {
  .message {
    padding: 80px 20px 40px;
    max-width: 960px;
  }

  .message h1 {
    font-size: 40px;
  }

  .message .logo {
    height: 32px;
    margin-bottom: 40px;
  }

  .message p {
    margin-top: 24px;
    font-size: 20px;
    font-weight: lighter;
  }

  .container .agree {
    margin: 20px 0 40px;
  }

  form {
    width: 600px;
  }

  input {
    border-radius: 50px;
    display: inline-block;
    height: 50px;
    line-height: 50px;
    width: 400px;
  }

  input[type=submit] {
    font-size: 20px;
    margin: 20px 0 0;
    width: 100%;
  }

  input[type=text], input[type=email], input[type=password], input[type=tel] {
    font-size: 20px;
  }

  .message .messages {
    font-size: 20px;
    font-style: italic;
    font-weight: lighter;
    margin: 40px auto 0;
    padding: 20px;
  }
}


/*
CHOICES STYLE OVERWRITE
 */

.choices {
    margin-bottom: 10px;
}

.choices__inner {
    border: 1px solid #e5e4e6;
    background-color: #fff;
    padding: 0 30px;
    font-size: 20px;
    color: #231E32;
    border-radius: 50px;
    height: 50px;
    line-height: 40px;
    width: 400px;
}

.is-open .choices__inner {
    border-radius: 50px;
}

.is-focused .choices__inner,
.is-focused .choices__list--dropdown,
.is-open .choices__inner,
.is-open .choices__list--dropdown {
    border: 1px solid #e5e4e6;

}

.choices__list--dropdown {
    cursor: pointer;
    border-radius: 25px;
    background-color: #fff;
    padding-left: 30px;
    top: auto;
}

.choices__list--dropdown .choices__item {
    font-size: 20px;

    -webkit-transition: color .4s ease-in-out, background-color .4s ease-in-out, border-color .4s ease-in-out;
    -moz-transition: color .4s ease-in-out, background-color .4s ease-in-out, border-color .4s ease-in-out;
    transition: color .4s ease-in-out, background-color .4s ease-in-out, border-color .4s ease-in-out;
}

.choices__list--dropdown .choices__item:hover,
.choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: #fff;
    color: #231E32;
}

.choices__list .choices__list--single {
    background-color: #fff;
}

.choices[data-type*=select-one] .choices__input,
.choices[data-type*=select-one] .choices__input:focus,
.choices[data-type*=select-one] .choices__input:hover {
    border: 0;
    font-size: 20px;
    text-transform: capitalize;
}

.choices[data-type*=select-one]:after {
    right: 6%;
    top: 50%;
    border-color: #918f99 transparent transparent transparent;
    margin-top: 0;

    -webkit-transform: translate(-50%, -6%);
    -ms-transform: translate(-50%, -6%);
    transform: translate(-50%, -6%);
}

.choices[data-type*=select-one].is-open:after {
    border-color: transparent transparent #918f99 transparent;
}

/*
MEDIA CHOICES STYLE OVERWRITE
 */

@media screen and (max-width: 1000px) {
    .choices__inner {
        width: 280px;
        height: 40px;
        line-height: 40px;
        font-size: 15px;
    }

    .choices__list--single {
        padding: 0;
    }

    .choices__list--dropdown .choices__item,
    .choices[data-type*=select-one] .choices__input,
    .choices[data-type*=select-one] .choices__input:focus,
    .choices[data-type*=select-one] .choices__input:hover {
        font-size: 15px;
    }

}

/*
COOKIE CONSENT STYLE OVERWRITE
 */

.cc-banner {
  -webkit-box-shadow: 0 -3px 10px 0 rgba(0,0,0,.0785);
  box-shadow: 0 -3px 10px 0 rgba(0,0,0,.0785);
}

.cc-message--custom {

}

.cc-link--custom {
  text-decoration: none;
}

.cc-dismiss--custom {
  border-radius: 40px;
}

.cc-dismiss--custom:hover {
  background-color: #7acd36;
}

.cc-dismiss--custom:hover a {
  text-decoration:none;
}
