button,
.btn {
  outline: none;
  border: none;
  font-size: 16px;
  padding: 0;
}

.page-heading, .sub-heading, .main-heading {
  font-weight: 700;
  text-transform: uppercase;
  color: #333333;
}

.form-field.required .form-field-label:after {
  content: "*";
  margin-left: 4px;
  color: #ff5454;
}

.datepicker th.date-switch:hover, .datepicker td span.active, .datepicker td span.month:hover, .datepicker td span.year:hover {
  background-color: #0F90FF;
  color: #ffffff;
}

.main-navigation .menu-item.active, .main-navigation .menu-item:hover {
  color: #0F90FF;
}
.main-navigation .menu-item.active:after, .main-navigation .menu-item:hover:after {
  transform: translateY(-4px);
}

.main-navigation .menu-item.active:hover, .main-navigation .menu-item:hover {
  background-color: #f5f5f5;
}

.icon-column-wrapper,
.text-column-wrapper, .flex-column {
  display: flex;
  flex-direction: column;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 10px;
  height: 100%;
  overflow: hidden;
}
html *,
body * {
  box-sizing: border-box;
}

h1,
h2,
h3 {
  margin: 0;
  color: #333333;
}

p {
  margin: 0;
  font-size: 16px;
}

select {
  border-radius: 0;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

label {
  font-size: 16px;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: #0F90FF;
  cursor: pointer;
}

.page {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow-y: auto;
}

.logo {
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .logo {
    display: block;
    width: auto;
    justify-content: unset;
  }
}
.logo > .logo-link {
  display: flex;
  align-items: center;
  color: #333333;
  white-space: nowrap;
}
.logo > .logo-link > img {
  width: auto;
  height: 55px;
  margin-right: 16px;
}
.logo .logo-text {
  font-size: 20px;
  letter-spacing: 2px;
}
@media screen and (max-width: 359px) {
  .logo .logo-text {
    font-size: 18px;
  }
}

.main-navigation {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  background-color: #ffffff;
  border-bottom: 1px solid #cccccc;
  height: 80px;
  align-items: flex-start;
  flex-basis: 100%;
  width: 100%;
  padding: 16px;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  outline: none;
  z-index: 999;
}
@media screen and (max-width: 359px) {
  .main-navigation {
    padding: 8px;
  }
}
@media screen and (min-width: 1280px) {
  .main-navigation {
    top: 24px;
    flex-direction: row;
    border: 1px solid #cccccc;
    box-shadow: 0px -8px rgba(0, 0, 0, 0.16);
    border-radius: 4px;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 48px);
    margin: 0 24px;
    padding: 0 16px;
  }
}
.main-navigation > .menu-items-wrapper {
  display: flex;
  width: 280px;
  height: calc(100vh - 80px);
  flex-direction: column;
  position: absolute;
  left: -100%;
  top: 80px;
  background-color: #ffffff;
  transition: left 0.4s ease-in-out;
  overflow-y: auto;
  padding-bottom: 80px;
}
@media screen and (min-width: 1280px) {
  .main-navigation > .menu-items-wrapper {
    height: 100%;
    width: auto;
    flex-direction: row;
    align-items: stretch;
    position: relative;
    top: auto;
    left: auto;
    overflow-y: hidden;
    padding-bottom: 0;
  }
}
.main-navigation > .menu-items-wrapper + .mobile-menu-overlay {
  content: " ";
  display: block;
  position: fixed;
  top: 80px;
  background-color: rgba(0, 0, 0, 0.4);
  width: calc(100% - 280px);
  right: -100%;
  height: 100vh;
  transition: right 0.4s ease-in-out;
}
@media screen and (min-width: 1280px) {
  .main-navigation > .menu-items-wrapper + .mobile-menu-overlay {
    display: none;
  }
}
.main-navigation > .menu-items-wrapper.show-mobile-menu {
  left: 0;
}
.main-navigation > .menu-items-wrapper.show-mobile-menu + .mobile-menu-overlay {
  right: 0;
}
.main-navigation > .menu-items-wrapper .scrollable-wrapper {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1280px) {
  .main-navigation > .menu-items-wrapper .scrollable-wrapper {
    flex-direction: row;
  }
}
.main-navigation .menu-item {
  display: flex;
  flex: 1 0 auto;
  align-items: center;
  text-transform: uppercase;
  padding: 16px;
  font-size: 14px;
  color: #333333;
  overflow: hidden;
  position: relative;
  transition: all 0.2s ease-in-out;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 1280px) {
  .main-navigation .menu-item {
    padding: 0 16px;
    border: none;
  }
}
.main-navigation .menu-item:after {
  content: " ";
  display: block;
  height: 4px;
  position: absolute;
  background-color: #0F90FF;
  bottom: -4px;
  left: 0;
  width: 100%;
  transition: transform 0.4s ease-in-out;
}
.main-navigation .menu-item.active {
  background-color: transparent;
}
@media screen and (min-width: 1280px) {
  .job-application .main-navigation, .career .main-navigation, .about .main-navigation, .lease-purchase .main-navigation, .services .main-navigation {
    top: 0;
    box-shadow: none;
    border-radius: 0;
    border-bottom: 4px solid #0F90FF;
    width: 100%;
    margin: 0;
  }
}

#toggleMobileMenu {
  background-color: #eeeeee;
  border-radius: 4px;
  align-items: center;
  flex: 0 1 auto;
  align-self: center;
}
#toggleMobileMenu:active {
  background-color: #e0e0e0;
}
#toggleMobileMenu > img {
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 1280px) {
  #toggleMobileMenu {
    display: none;
  }
}

.btn {
  display: flex;
  padding: 8px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease-in, border-color 0.2s ease-in;
  cursor: pointer;
}
.btn.btn-primary {
  background-color: #0F90FF;
  color: #ffffff;
  border: 3px solid rgba(255, 255, 255, 0.25);
}
.btn.btn-primary:hover {
  background-color: #007be5;
}
.btn.btn-primary:focus {
  border-color: #007be5;
}
.btn.btn-primary:active {
  background-color: #38a3ff;
}
.btn.icon-btn {
  padding: 8px;
}
.btn.full-width-btn {
  flex: 1 0 100%;
  width: 100%;
}
.btn.jumbo-btn {
  padding: 20px 0;
  font-size: 22px;
}
.btn.loader-btn > .loader {
  margin-left: 24px;
  display: none;
}
.btn.loader-btn.btn-loader-active {
  pointer-events: none;
}
.btn.loader-btn.btn-loader-active > .loader {
  display: inline-block;
}

.link-button {
  display: flex;
  flex: 1;
  justify-content: flex-start;
  padding: 4px 12px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.link-button > span {
  color: #cccccc;
  font-size: 12px;
}
.link-button > img {
  margin-right: 4px;
  width: 24px;
  height: 24px;
}
.link-button:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.action-btn {
  background-color: transparent;
}
.action-btn.close {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 100;
  cursor: pointer;
  border-radius: 4px;
}
.action-btn.close:hover {
  background-color: rgba(0, 0, 0, 0.16);
}
.action-btn.close:active {
  background-color: rgba(0, 0, 0, 0.4);
}
.action-btn.close:before, .action-btn.close:after {
  content: " ";
  position: absolute;
  background-color: #ffffff;
  top: 4px;
  left: 14px;
  width: 2px;
  height: 24px;
}
.action-btn.close:before {
  transform: rotate(45deg);
}
.action-btn.close:after {
  transform: rotate(-45deg);
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 24px;
  height: 24px;
}

.loader {
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #ffffff;
  transform: translateZ(0);
  animation: spining-animation 1.1s infinite linear;
}
@keyframes spining-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.main-heading {
  font-size: 22px;
  margin-bottom: 24px;
}

.sub-heading {
  font-size: 18px;
  margin-bottom: 16px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul > li {
  font-size: 16px;
  margin-bottom: 4px;
}
ul > li:last-child {
  margin-bottom: 0;
}

.heading-level-2 {
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
}

.datepicker {
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}
.datepicker td {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.datepicker td span.month.disabled, .datepicker td span.year.disabled {
  background-color: transparent;
  pointer-events: none;
}
.datepicker .fi-arrow-left, .datepicker .fi-arrow-right {
  background-color: #0F90FF;
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background-repeat: no-repeat;
}
.datepicker .fi-arrow-right {
  background-image: url("../images/navigate_next-white-24dp.svg");
}
.datepicker .fi-arrow-left {
  background-image: url("../images/navigate_before-white-24dp.svg");
}

.main-page-container {
  flex: 1 1 0%;
  overflow-y: auto;
  position: relative;
}
@media screen and (max-height: 480px) {
  .main-page-container {
    flex: 1 1 auto;
    overflow: visible;
  }
}
@media screen and (max-width: 600px) {
  .main-page-container {
    flex: 1 1 auto;
    overflow: visible;
  }
}

.main-page-container-scrollable {
  height: 100%;
  display: flex;
  position: relative;
  flex-direction: column;
}
@media screen and (max-height: 630px) {
  .main-page-container-scrollable {
    min-height: 400px;
  }
}
.main-page-container-scrollable.main-page-banner {
  background-image: url("../images/2-MK-Premier-Inc-Truck.jpg");
  background-size: cover;
  background-position: center;
  justify-content: center;
  align-items: flex-end;
  min-height: 100vh;
}
@media screen and (min-width: 601px) {
  .main-page-container-scrollable.main-page-banner {
    min-height: 500px;
  }
}
.main-page-container-scrollable.main-page-banner:after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1;
}
.main-page-container-scrollable.main-page-banner > .main-page-box > * {
  color: #ffffff;
}
.main-page-container-scrollable.main-page-banner > .main-page-box > ul {
  margin-bottom: 24px;
}
.main-page-container-scrollable.main-page-banner > .main-page-box li {
  font-weight: 600;
}

.main-page-box {
  margin: 24px;
  padding: 24px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.footer {
  display: flex;
  flex: 0 0 144px;
  background-color: #333333;
  padding: 16px 24px;
  border-top: 4px solid #0F90FF;
  color: #cccccc;
}
@media screen and (max-width: 768px) {
  .footer {
    flex: 0 0 auto;
  }
}
.footer .footer-row-container {
  display: flex;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .footer .footer-row-container > .contact-column {
    width: 60%;
  }
}
.footer .footer-row-container > .contact-column .list-item {
  padding: 0 12px;
}
.footer .footer-row-container > .contact-column > .footer-heading {
  padding: 0 12px;
}
@media screen and (max-width: 500px) {
  .footer .footer-row-container {
    flex: 1 1 100%;
    flex-direction: column;
  }
  .footer .footer-row-container > .flex-column:first-child {
    margin: 16px 0;
  }
}
.footer .logo-column {
  justify-content: flex-start;
  margin-top: 16px;
  margin-right: 24px;
}
@media screen and (min-width: 500px) {
  .footer .logo-column {
    justify-content: center;
    margin-right: 24px;
  }
}
.footer .footer-logo {
  height: 55px;
}
.footer .footer-heading {
  color: #cccccc;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer .action-column > .footer-heading {
  padding: 0 12px;
}
.footer .action-column .list-item {
  flex: 1 1 100%;
}
.footer .list-item {
  font-size: 12px;
  font-weight: bold;
  flex: 1 1 100%;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .footer .list-item {
    flex: 1 1 50%;
  }
}

.flex-row {
  display: flex;
  flex: 1 1 100%;
}
.flex-row.wrap {
  flex-wrap: wrap;
}
.flex-row.align-center {
  align-items: center;
}
.flex-row.align-start {
  align-items: flex-start;
}

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

.list-item {
  display: flex;
  align-items: center;
}
.list-item > img {
  fill: #cccccc;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.relative-position {
  position: relative;
}

.page-heading {
  font-size: 22px;
  text-align: center;
  padding: 24px;
  position: relative;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .page-heading {
    font-size: 32px;
    margin-bottom: 32px;
    margin-top: 16px;
  }
}
.page-heading:after {
  content: " ";
  position: absolute;
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #0F90FF;
  left: 50%;
  transform: translateX(-50%);
}

.other-pages-banner {
  width: 100%;
  height: auto;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .other-pages-banner {
    flex-direction: row;
    height: 300px;
    max-height: 300px;
  }
}
@media screen and (min-width: 1280px) {
  .other-pages-banner {
    height: 400px;
    max-height: 400px;
  }
}
.other-pages-banner .page-heading {
  color: #ffffff;
  margin: 0;
  justify-content: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .other-pages-banner .page-heading {
    padding-left: 87px;
    width: auto;
  }
}
.other-pages-banner .page-heading:after {
  content: none;
}
.other-pages-banner > .colored-column {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .other-pages-banner > .colored-column {
    position: relative;
    width: calc(50% - 100px);
  }
  .other-pages-banner > .colored-column:after {
    content: " ";
    position: absolute;
    top: 0;
    right: -100px;
    height: 0;
    width: 0;
    border-left: 0 solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 300px solid #071c2d;
    z-index: 11;
  }
}
@media screen and (min-width: 1280px) {
  .other-pages-banner > .colored-column:after {
    border-bottom: 400px solid #071c2d;
  }
}
.other-pages-banner > .image-text-column {
  width: 100%;
  height: 180px;
}
@media screen and (min-width: 768px) {
  .other-pages-banner > .image-text-column {
    width: calc(50% + 100px);
    height: 100%;
  }
}
.other-pages-banner > .image-text-column.background-mask:after {
  content: " ";
  position: absolute;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  right: 0;
  background-color: #071c2d;
  opacity: 0.3;
}
.other-pages-banner .image-column {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.colored-column {
  background-color: #071c2d;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .colored-column {
    width: 50%;
  }
}

.image-text-column {
  position: relative;
}
@media screen and (min-width: 768px) {
  .image-text-column {
    width: 50%;
  }
}

.job-application,
.career,
.about,
.lease-purchase,
.services {
  margin-top: 80px;
  padding-bottom: 80px;
}
.job-application .main-page-container,
.career .main-page-container,
.about .main-page-container,
.lease-purchase .main-page-container,
.services .main-page-container {
  overflow-y: visible;
}
.job-application .other-pages-banner .image-column,
.career .other-pages-banner .image-column,
.about .other-pages-banner .image-column,
.lease-purchase .other-pages-banner .image-column,
.services .other-pages-banner .image-column {
  background-image: url("../images/1-MK-Premier-Inc-Truck.jpg");
  background-position: center 70%;
  background-repeat: no-repeat;
}

.career .other-pages-banner .image-column {
  background-image: url("../images/career-banner.jpg");
  background-size: cover;
  background-position: center;
}
.career .icon-column-wrapper .icon-column > img {
  max-height: 150px;
}
@media screen and (min-width: 768px) {
  .career .icon-column-wrapper .icon-column > img {
    max-height: 200px;
  }
}

.about .other-pages-banner .image-column {
  background-image: url("../images/3-MK-Premier-Inc-Truck.jpg");
  background-size: cover;
  background-position: center;
}

.services .other-pages-banner .image-column {
  background-image: url("../images/services-banner.jpg");
  background-size: cover;
  background-position: center 30%;
}

.lease-purchase .other-pages-banner .image-column {
  background-image: url("../images/4-MK-Premier-Inc-Truck.jpg");
  background-position: center 70%;
  background-repeat: no-repeat;
}

.about-row img,
.services-row img {
  max-width: 80%;
}
.about-row .text-column,
.services-row .text-column {
  margin-top: 24px;
}
.about-row .btn,
.services-row .btn {
  margin-top: 24px;
}

.career .sub-heading-text,
.lease-purchase .sub-heading-text {
  margin-bottom: 48px;
}

.page-content-width {
  padding: 0 32px;
}
@media screen and (min-width: 1280px) {
  .page-content-width {
    padding: 0 87px;
  }
}

.sub-heading-text {
  font-weight: 300;
  font-size: 18px;
}

.job-list-row,
.about-row {
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .job-list-row,
  .about-row {
    flex-direction: row;
  }
}
.job-list-row.mobile-reverse,
.about-row.mobile-reverse {
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .job-list-row.mobile-reverse,
  .about-row.mobile-reverse {
    flex-direction: row;
  }
}

.decorated-list {
  margin-bottom: 24px;
}
.decorated-list > li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
}
.decorated-list > li:after {
  content: " ";
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border-radius: 50%;
  border: 4px solid #0F90FF;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.icon-column-wrapper,
.text-column-wrapper {
  flex: 1;
  padding: 24px 32px;
}
@media screen and (min-width: 1280px) {
  .icon-column-wrapper,
  .text-column-wrapper {
    padding: 24px 87px;
  }
}

.icon-column-wrapper {
  background-color: #071c2d;
}
.icon-column-wrapper .icon-column {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.icon-column-wrapper .icon-column > .heading-level-2 {
  color: #ffffff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .icon-column-wrapper .icon-column > .heading-level-2 {
    font-size: 32px;
    margin-bottom: 32px;
  }
}

.text-column-wrapper {
  background-color: #eeeeee;
}
.text-column-wrapper .heading-level-2 {
  margin-bottom: 16px;
}
.text-column-wrapper .btn {
  flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .text-column-wrapper .btn {
    flex-grow: 0;
  }
}

.lease-purchase form .flex-row {
  margin-bottom: 24px;
}

.notification-message {
  background-color: #ff5454;
  color: #ffffff;
  font-size: medium;
  padding: 16px 24px;
  text-align: center;
  position: absolute;
  bottom: 24px;
  height: 75px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 4px;
}
.notification-message.show {
  animation: fadein 0.5s;
}
.notification-message.hide {
  bottom: -75px;
  animation: fadeout 0.5s;
}

@keyframes fadein {
  from {
    bottom: -50px;
    opacity: 0;
  }
  to {
    bottom: 24px;
    opacity: 1;
  }
}
@keyframes fadeout {
  from {
    bottom: 24px;
    opacity: 1;
  }
  to {
    bottom: -50px;
    opacity: 0;
  }
}
.form-field {
  display: block;
  cursor: auto;
  position: relative;
  width: 100%;
}
.form-field-is-active .form-field-control:after {
  border-bottom: 3px solid #0F90FF;
  transform: scaleY(1);
}
.form-field-is-active .form-field-control.error:after {
  border-color: #ff5454;
}
.form-field-is-active .form-field-label {
  color: #0F90FF;
}
.form-field-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  left: 0;
  margin: 0;
  padding: 16px 12px 0;
  transition: all 0.2s;
  text-transform: uppercase;
  width: 100%;
}

.form-field-control {
  background: #eeeeee;
  position: relative;
  width: 100%;
  height: 100%;
}
.form-field-control:hover {
  background-color: #f9f9f9;
  cursor: auto;
}
.form-field-control::after {
  border-bottom: 2px solid #0F90FF;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  transform: scaleY(0);
  transition: all 0.2s;
  width: 100%;
}
.form-field-control.error:after {
  transform: scaleY(1);
  border-color: #ff5454;
}
.form-field-control.error .custom-select-wrapper > select {
  border: none;
}

.form-field-input,
.form-field-textarea,
.custom-select-wrapper > select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 2px solid #999999;
  color: #333333;
  display: block;
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 0;
  outline: 0;
  padding: 8px 12px;
  width: 100%;
}
.form-field-input.error,
.form-field-textarea.error,
.custom-select-wrapper > select.error {
  border-bottom: 2px solid #ff5454;
}

.form-field-textarea {
  height: 100%;
  resize: none;
  max-height: 300px;
}

.form-field-wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.form-field-wrapper h3 {
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .form-field-wrapper h3 {
    margin-bottom: 0;
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .form-field-wrapper.two-column-form {
    width: 70%;
    margin: 0 auto 48px;
    flex: 1 1 0px;
  }
}
.form-field-wrapper.two-column-form > .flex-row {
  margin: 0 16px;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .form-field-wrapper.two-column-form > .flex-row {
    margin-bottom: 24px;
    flex-wrap: nowrap;
  }
  .form-field-wrapper.two-column-form > .flex-row > :first-child {
    margin-right: 24px;
    margin-bottom: 0;
  }
  .form-field-wrapper.two-column-form > .flex-row > :last-child {
    margin-right: 0;
  }
}
.form-field-wrapper.two-column-form > .flex-row .form-field {
  width: 100%;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .form-field-wrapper.two-column-form > .flex-row .form-field {
    flex: 1;
    margin-bottom: 0;
  }
}
.form-field-wrapper.two-column-form > .flex-row > .flex-column.half-width {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .form-field-wrapper.two-column-form > .flex-row > .flex-column.half-width {
    width: calc(50% - 12px);
  }
}
.form-field-wrapper.two-column-form > .flex-row .special-column {
  flex: 1;
}
@media screen and (min-width: 768px) {
  .form-field-wrapper.two-column-form > .flex-row .special-column > .form-field {
    margin-bottom: 24px;
  }
}
.form-field-wrapper.two-column-form > .flex-row .special-column > .form-field:last-child {
  margin-bottom: 0;
}
.form-field-wrapper > .loader-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 100;
}

.custom-select-wrapper {
  position: relative;
}
.custom-select-wrapper > select {
  padding-right: 28px;
}
.custom-select-wrapper:after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  right: 16px;
  width: 8px;
  height: 8px;
  border: solid #333333;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-controls:hover {
  cursor: auto;
  background-color: #eeeeee;
}
.checkbox-controls.no-hover-background:hover {
  background-color: transparent;
}
.checkbox-controls > .flex-row {
  align-items: center;
  padding: 0 12px;
  margin-bottom: 12px;
}
.checkbox-controls > .flex-row:first-of-type {
  margin-top: 16px;
}
.checkbox-controls .checkbox-label {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 10;
  display: flex;
  align-items: center;
}
.checkbox-controls .checkbox-label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border-radius: 4px;
  border: 2px solid #0F90FF;
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 8px;
  flex: 0 0 24px;
}
.checkbox-controls .checkbox-label:hover:before {
  border-color: #007be5;
}
.checkbox-controls input[type=checkbox] {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  position: absolute;
  width: 0px;
  height: 0px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  cursor: pointer;
}
.checkbox-controls input[type=checkbox]:checked + label:before {
  background-color: #0F90FF;
}
.checkbox-controls input[type=checkbox]:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  left: 12px;
  width: 6px;
  height: 14px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateX(-50%);
}
.checkbox-controls.error .checkbox-label {
  color: #ff5454;
}
.checkbox-controls.error .checkbox-label:before {
  border-color: #ff5454;
}

label.error {
  position: absolute;
  bottom: -16px;
  left: 0;
  font-size: x-small;
  color: #ff5454;
}

#btnSubmit {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  #btnSubmit {
    margin-top: 0;
  }
}