html{
    overflow-x: hidden;
}
body *{
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    font-style: normal;
}

*::-webkit-scrollbar {
display: block;
width: 10px;
height: 8px;
border-radius: 10px;
}

*::-webkit-scrollbar-track {
background: #ececec;
}

*::-webkit-scrollbar-thumb {
background:red;
width: 5px;
border-radius: 10px;
}

#hero{
    height: 100vh;
    width: 100%;
    padding: 1.5em 0;
    background: #da0a21;
    position: relative;
}
#hero label{
    font-size: 16px;
    font-weight: bold;
    color: #FFF;
}

#hero form{
    margin: 0 auto;
}
.button-submit{
    background: #FFF;
    font-weight: bold;
    color: #222;
    padding-left: 3em;
    padding-right: 3em;
    font-size: 16px;
    width: 100%;
}
.button-submit:hover,.button-submit:focus,.button-submit:active{
    background: #dedede;
    color: #222;
}

.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #fff;
  width: 100%;
  height: 55px;
  margin-bottom: 10px;
}

.select-styled {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    border: 1px solid #ff6172;
    align-items: center;
    background-color: transparent;
    padding: 8px 15px;
    border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.select-styled:after {
  content: "";
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: 25px;
  right: 15px;
}
.select-styled:hover {
  background-color: #a90215;
}
.select-styled:active, .select-styled.active {
  background-color: transparent;
}
.select-styled:active:after, .select-styled.active:after {
  top: 15px;
  border-color: transparent transparent #fff transparent;
}

.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #ab3326;
}
.select-options li {
margin: 0;
    padding: 12px 0;
    text-indent: 15px;
    border-top: 1px solid #dcdcdc;
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    -webkit-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
    background: #FFF;
    color: #222;
}
.select-options li:hover {
  color: #c0392b;
  background: #EAEAEA;
}
.select-options li[rel="hide"] {
  display: none;
}

[type='search'] {
    margin: 0 0 0.3rem
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff;
    line-height: 50px;
    font-weight: bold;
}

.select2-container--default .select2-selection--single {
    background-color: transparent;
    border: 1px solid #ff6172;
    border-radius: 5px;
    color: #fff;
    height: 55px;
}

.select2-container--default .select2-results>.select2-results__options {
    color: #000;
}

.select2-results__option--selectable {
    margin: 0;
    padding: 12px 0;
    text-indent: 15px;
    border-top: 1px solid #dcdcdc;
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    -webkit-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
    background: #FFF;
    color: #222;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    color: #c0392b;
    background-color: #EAEAEA;
}

.select2-container{
    width: 100% !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    content: "";
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-color: #fff transparent transparent transparent;
    position: absolute;
    top: 25px;
    right: 15px;
}

b[role='presentation'] {
    display: none;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #fff;
    font-weight: bold;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba( 255, 255, 255, .8 ) url('/img/ajax-loader-2.gif') 50% 50% no-repeat;
}

body.loading .modal {
    overflow: hidden;
}

body.loading .modal {
    display: block;
}

.welcome-call{
  color: #fff;
  font-size: 1.6em;
  font-weight: bold;
}

.link-skip a{
  color: #fff;
  font-size: 14px;
}


/* Small only */
@media screen and (max-width: 39.9375em) {

}

/* Medium and up */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {

}


/* Large only */
@media screen and (min-width: 64em) and (max-width: 74.9375em) {
   #hero form{
        max-width: 80%;
   }
}

/* Large and up */
@media screen and (min-width: 74.9376em) {
   #hero form{
        max-width: 60%;
   }
}