.truncate {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.list-reset {
  list-style: none;
  padding-left: 0;
}
.inline {
  display: inline;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.table {
  display: table;
}
.table-cell {
  display: table-cell;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-scroll {
  overflow: scroll;
}
.overflow-auto {
  overflow: auto;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
.left {
  float: left;
}
.right {
  float: right;
}
.fit {
  max-width: 100%;
}
.border-box {
  box-sizing: border-box;
}
.align-baseline {
  vertical-align: baseline;
}
.align-top {
  vertical-align: top;
}
.align-middle {
  vertical-align: middle;
}
.align-bottom {
  vertical-align: bottom;
}
.col {
  float: left;
  box-sizing: border-box;
}
.col-right {
  float: right;
  box-sizing: border-box;
}
.col-1 {
  width: 8.2%;
}
.col-2 {
  width: 16.66667%;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 33.33333%;
}
.col-5 {
  width: 41.66667%;
}
.col-6 {
  width: 49.8%;
}
.col-7 {
  width: 58.33333%;
}
.col-8 {
  width: 66%;
}
.col-9 {
  width: 75%;
}
.col-10 {
  width: 83.33333%;
}
.col-11 {
  width: 91.66667%;
}
.col-12 {
  width: 100%;
}
@media (min-width: 40em) {
  .sm-col {
    float: left;
    box-sizing: border-box;
  }
  .sm-col-right {
    float: right;
    box-sizing: border-box;
  }
  .sm-col-1 {
    width: 8.33333%;
  }
  .sm-col-2 {
    width: 16.66667%;
  }
  .sm-col-3 {
    width: 25%;
  }
  .sm-col-4 {
    width: 33.33333%;
  }
  .sm-col-5 {
    width: 41.66667%;
  }
  .sm-col-6 {
    width: 50%;
  }
  .sm-col-7 {
    width: 58.33333%;
  }
  .sm-col-8 {
    width: 66.66667%;
  }
  .sm-col-9 {
    width: 75%;
  }
  .sm-col-10 {
    width: 83.33333%;
  }
  .sm-col-11 {
    width: 91.66667%;
  }
  .sm-col-12 {
    width: 100%;
  }
}
@media (min-width: 52em) {
  .md-col {
    float: left;
    box-sizing: border-box;
  }
  .md-col-right {
    float: right;
    box-sizing: border-box;
  }
  .md-col-1 {
    width: 8.33333%;
  }
  .md-col-2 {
    width: 16.66667%;
  }
  .md-col-3 {
    width: 25%;
  }
  .md-col-4 {
    width: 33.33333%;
  }
  .md-col-5 {
    width: 41.66667%;
  }
  .md-col-6 {
    width: 50%;
  }
  .md-col-7 {
    width: 58.33333%;
  }
  .md-col-8 {
    width: 66.66667%;
  }
  .md-col-9 {
    width: 75%;
  }
  .md-col-10 {
    width: 83.33333%;
  }
  .md-col-11 {
    width: 91.66667%;
  }
  .md-col-12 {
    width: 100%;
  }
}
@media (min-width: 64em) {
  .lg-col {
    float: left;
    box-sizing: border-box;
  }
  .lg-col-right {
    float: right;
    box-sizing: border-box;
  }
  .lg-col-1 {
    width: 8.33333%;
  }
  .lg-col-2 {
    width: 16.66667%;
  }
  .lg-col-3 {
    width: 25%;
  }
  .lg-col-4 {
    width: 33.33333%;
  }
  .lg-col-5 {
    width: 41.66667%;
  }
  .lg-col-6 {
    width: 50%;
  }
  .lg-col-7 {
    width: 58.33333%;
  }
  .lg-col-8 {
    width: 66.66667%;
  }
  .lg-col-9 {
    width: 75%;
  }
  .lg-col-10 {
    width: 83.33333%;
  }
  .lg-col-11 {
    width: 91.66667%;
  }
  .lg-col-12 {
    width: 100%;
  }
}
.flex {
  display: flex;
}
@media (min-width: 40em) {
  .sm-flex {
    display: flex;
  }
}
@media (min-width: 52em) {
  .md-flex {
    display: flex;
  }
}
@media (min-width: 64em) {
  .lg-flex {
    display: flex;
  }
}
.flex-column {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.items-stretch {
  align-items: stretch;
}
.self-start {
  align-self: flex-start;
}
.self-end {
  align-self: flex-end;
}
.self-center {
  -ms-grid-row-align: center;
  align-self: center;
}
.self-baseline {
  align-self: baseline;
}
.self-stretch {
  -ms-grid-row-align: stretch;
  align-self: stretch;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.justify-evenly {
  justify-content: space-evenly;
}
.content-start {
  align-content: flex-start;
}
.content-end {
  align-content: flex-end;
}
.content-center {
  align-content: center;
}
.content-between {
  align-content: space-between;
}
.content-around {
  align-content: space-around;
}
.content-stretch {
  align-content: stretch;
}
.flex-auto {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
}
.flex-none {
  flex: none;
}
.order-0 {
  order: 0;
}
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.order-3 {
  order: 3;
}
.order-last {
  order: 99999;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.z1 {
  z-index: 1;
}
.z2 {
  z-index: 2;
}
.z3 {
  z-index: 3;
}
.z4 {
  z-index: 4;
}
.border {
  border-style: solid;
  border-width: 1px;
}
.border-top {
  border-top-style: solid;
  border-top-width: 1px;
}
.border-right {
  border-right-style: solid;
  border-right-width: 1px;
}
.border-bottom {
  border-bottom-style: solid;
  border-bottom-width: 1px;
}
.border-left {
  border-left-style: solid;
  border-left-width: 1px;
}
.border-none {
  border: 0;
}
.hide {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
@media (max-width: 40em) {
  .xs-hide {
    display: none !important;
  }
}
@media (min-width: 40em) and (max-width: 52em) {
  .sm-hide {
    display: none !important;
  }
}
@media (min-width: 52em) and (max-width: 64em) {
  .md-hide {
    display: none !important;
  }
}
@media (min-width: 64em) {
  .lg-hide {
    display: none !important;
  }
}
.display-none {
  display: none !important;
}
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;
}
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;
}
@font-face {
  font-family: "Montserrat";
  src:
    url("../assets/fonts/Montserrat-Medium.woff2") format("woff2"),
    url("../assets/fonts/Montserrat-Medium.woff") format("woff"),
    url("../assets/fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src:
    url("../assets/fonts/Montserrat-Bold.woff2") format("woff2"),
    url("../assets/fonts/Montserrat-Bold.woff") format("woff"),
    url("../assets/fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src:
    url("../assets/fonts/Montserrat-SemiBold.woff2") format("woff2"),
    url("../assets/fonts/Montserrat-SemiBold.woff") format("woff"),
    url("../assets/fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
h1,
h2,
h3,
em {
  font-family: "Montserrat";
  font-weight: bold;
  text-transform: uppercase;
}
h1 {
  font-size: 32px;
  line-height: 38px;
  color: #333;
}
@media screen and (min-width: 1024px) {
  h1 {
    font-size: 32px;
    line-height: 38px;
  }
}
h2 {
  font-size: 14px;
  line-height: 16px;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  h2 {
    font-size: 24px;
    line-height: 24px;
  }
}
h3 {
  font-size: 14px;
  line-height: 14px;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  h3 {
    font-size: 14px;
    line-height: 14px;
    color: #333;
  }
}
@media screen and (max-width: 768px) {
  h3 {
    padding-left: 0;
  }
}
em.mention {
  display: block;
  margin-top: 56px;
  color: #333;
  font-size: 12px;
  font-weight: 600;
  text-transform: lowercase;
}
@media screen and (max-width: 1024px) {
  em.mention {
    padding-left: 6px;
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
html {
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  font-size: 62.5%;
}
body {
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fed500;
}
@media screen and (min-width: 1024px) {
  body {
    background: linear-gradient(90deg, #fed500 60%, #555 40%);
  }
}
::-moz-selection {
  background-color: #fed500;
  color: #fff;
}
::selection {
  background-color: #fed500;
  color: #fff;
}
.ovals__large {
  position: fixed;
  right: 0;
  bottom: 0;
  visibility: hidden;
}
@media screen and (min-width: 1024px) {
  .ovals__large {
    visibility: visible;
  }
}
.field {
  font-family: "Montserrat";
  font-weight: 600;
  color: #fff;
  background-color: #474747;
  height: 48px;
  padding: 0 26px 0 16px;
  margin-bottom: 24px;
  box-sizing: border-box;
  justify-content: space-between;
}
.field.form__volume {
  height: 64px;
}
.field.form__volume input {
  height: 62px;
}
@media screen and (min-width: 1200px) {
  .field {
    height: 64px;
  }
  .field.form__volume {
    height: 80px;
  }
  .field.form__volume input {
    height: 78px;
  }
}
.field span {
  font-size: 14px;
}
.field span.subtitle {
  display: inline-block;
  padding-top: 6px;
  font-size: 12px;
}
.field span span {
  color: #fff;
  opacity: 0.4;
}
.field input[type="number"]::-webkit-inner-spin-button,
.field input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.field input[type="number"] {
  -moz-appearance: textfield;
}
.field.form__time .subtitle {
  transition: 0.25s all ease-in;
}
.field.form__time.error .subtitle {
  color: red;
  opacity: 1;
}
.field.form__time.error input {
  border: 1px solid red;
}
.field input {
  display: block;
  background-color: #3b3b3b;
  border: 1px solid transparent;
  width: 33%;
  height: 46px;
  border-radius: 0;
  outline: 0;
  position: relative;
  margin-right: -26px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 0;
  color: #fff;
  transition: 0.25s border ease-in;
}
@media screen and (min-width: 1200px) {
  .field input {
    height: 62px;
    font-size: 16px;
    width: 33%;
    position: relative;
    margin-right: -26px;
  }
}
.form__reference .wrapper__select {
  background: url("../../assets/images/ra-down.svg") no-repeat 88% center
    #3b3b3b;
  width: 33%;
  position: relative;
  margin-right: -26px;
  float: right;
  height: 48px;
}
@media screen and (min-width: 1200px) {
  .form__reference .wrapper__select {
    height: 64px;
    background: url("../../assets/images/ra-down.svg") no-repeat 86% center
      #3b3b3b;
  }
}
.form__reference select {
  background: transparent;
  border: none;
  padding-left: 16px;
  width: 100%;
  height: 48px;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media screen and (min-width: 1200px) {
  .form__reference select {
    padding-left: 24px;
    height: 64px;
  }
}
.column {
  box-sizing: border-box;
  border-left: 1px solid #f3f3f3;
}
.cell {
  align-items: center;
  justify-content: center;
  height: 76px;
  width: 100%;
  border-bottom: 1px solid #f3f3f3;
}
@media screen and (max-width: 1024px) {
  .cell {
    height: 54px;
  }
}
.cell.first {
  align-items: flex-start;
  padding-left: 42px;
}
.cell span {
  font-family: "Montserrat";
  font-weight: 600;
  color: #333;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .cell span {
    font-size: 14px;
  }
}
.home.wrapper {
  width: 100%;
}
.home.wrapper .subwrapper {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .home.wrapper {
    margin: auto;
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .home.wrapper {
    margin: auto;
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .home.wrapper {
    margin: auto;
    max-width: 1140px;
  }
}
.home .leftside {
  background-color: #fed500;
}
.home .leftside h1 {
  padding-top: 32px;
  margin-bottom: 12px;
}
@media screen and (min-width: 1024px) {
  .home .leftside h1 {
    padding-top: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .home .leftside h1 {
    padding-top: 170px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .home .leftside {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.home .rightside__hollow {
  visibility: hidden;
}
@media screen and (min-width: 1024px) {
  .home .rightside__hollow {
    visibility: visible;
    height: 100vh;
    position: absolute;
    right: 2.4%;
    background-color: #555;
  }
}
@media screen and (min-width: 1440px) {
  .home .rightside__hollow {
    right: 4.7%;
  }
}
.home .rightside {
  position: relative;
  z-index: 4;
  background-color: #555;
}
@media screen and (min-width: 1024px) {
  .home .rightside {
    padding-left: 30px;
    height: auto;
    background-color: transparent;
  }
}
@media screen and (max-width: 768px) {
  .home .rightside {
    height: 542px;
    padding: 12px 32px;
    margin: 24px 0 -122px 0;
  }
}
@media screen and (max-width: 480px) {
  .home .rightside {
    margin-top: 24px;
    width: 100%;
    padding: 0;
    height: 895px;
    margin-bottom: -472px;
  }
}
.home .rightside .wrapper__form {
  padding-top: 24px;
}
@media screen and (max-width: 768px) {
  .home .rightside .wrapper__form {
    height: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .home .rightside .wrapper__form {
    padding-top: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .home .rightside .wrapper__form {
    padding-top: 80px;
  }
}
.home .bottomside {
  position: relative;
  width: 100%;
  z-index: 5;
}
@media screen and (max-width: 1024px) {
  .home .bottomside {
    padding: 0 20px;
  }
}
.home .bottomside .results {
  margin-top: 24px;
  background-color: #fff;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 12px 44px 0 rgba(0, 0, 0, 0.1);
}
.home .bottomside .results .legend {
  background-color: #f3f3f3;
}
.home .bottomside .results .heading {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .home .bottomside .results .results__table {
    display: none;
  }
}
@media screen and (min-width: 480px) {
  .home .bottomside .results .results__table_mobile {
    display: none;
  }
}
