@charset "UTF-8";
/** ABSTRACT: holds Sass tools, helper files, variables, functions, mixins 
and other config files. These files are meant to be just helpers which don’t
output any CSS when compiled. **/
/* Based on bootstrap breakpoints */
/* Blue */
/* Salmon */
/* Lime */
/* Black */
/* Light Grey */
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,600,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,300;0,400;0,600;0,700;0,900;1,300;1,400;1,600;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap");
/*
* #. Common Properties
* #. Positioning
* #. Flex
* #. Scalability
* #. Shapes
*/
/* #. Common Properties */
/* #. Positioning */
/* #. Flex */
/* #. Scalability */
/* #. Shapes */
/*
0- 600px:      Phone
600 - 900px:   Tablet portrait
900 - 1200px:  Tablet Landscape
[1200 - 1800] is where our normal styles apply
1800px + :     Big Desktop

/*breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop


ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
/*** BASE: holds the boilerplate code for the project. 
Including standard styles such as resets and typographic rules,
which are commonly used throughout your project. ***/
/** _typography.scss **/
h1 {
  font-family: "Roboto", sans-serif;
}

h2 {
  font-family: "Work Sans", sans-serif;
}

label {
  font-family: "Roboto", sans-serif;
}

p {
  font-family: "Roboto", sans-serif;
}

select {
  font-family: "Roboto", sans-serif;
}

/** _base.scss **/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0px;
  font-family: "Roboto", sans-serif;
  outline: none;
  font-size: 12px;
}

img {
  width: 100%;
  height: auto;
  margin: -2vw auto auto auto;
  padding: 0;
}

/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

@media all and (max-width: 600px) {
  .container-max-width {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/** _utilities.scss **/
.full-width {
  display: block;
  width: 100%;
}

.hidden {
  visibility: hidden;
  opacity: 0;
}

.hide {
  display: none;
}

.show {
  display: block !important;
}

/* 2.2 Clear */
.clear,
.clearfix {
  float: none;
  clear: both;
}
.clear:before,
.clearfix:before {
  content: "";
  display: table;
  clear: left;
  float: none;
}
.clear:after,
.clearfix:after {
  content: "";
  display: table;
  clear: right;
  float: none;
}

.clear-left:before {
  content: "";
  display: table;
  clear: left;
  float: none;
}

.clear-right:after {
  content: "";
  display: table;
  clear: right;
  float: none;
}

/* 2.3 Flex */
.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-center-vertical {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-center-horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.highlight {
  color: #77d603;
}

/* 2.1 Theme Classes */
.theme_bg_color--main {
  background-color: #fff;
}

.theme_bg_color--secondary {
  background-color: #f3f4f6;
}

.theme_bg_color--tertiary {
  background-color: #1e1e1e;
}

.theme_font_color--main {
  color: #fff;
}

.theme_font_color--secondary {
  color: #f3f4f6;
}

.theme_font_color--tertiary {
  color: #1e1e1e;
}

.theme_font_family--header {
  font-family: "Poppins", sans-serif;
}

.theme_font_family--body {
  font-family: "Roboto", sans-serif;
}

.theme_font_family--display {
  font-family: "Roboto", sans-serif;
}

.theme_header {
  font-family: "Poppins", sans-serif;
  color: #1e1e1e;
}

.desktop-text {
  display: block;
}
@media all and (max-width: 600px) {
  .desktop-text {
    display: none;
  }
}

.mobile-text {
  display: none;
}
@media all and (max-width: 600px) {
  .mobile-text {
    display: block;
  }
}

.pageFadeIn {
  -webkit-animation: 0.2s ease-in fadeIn;
          animation: 0.2s ease-in fadeIn;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

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

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

.center-margin {
  display: block;
  position: relative;
  margin: auto;
}

.container-max-width {
  max-width: 600px;
  margin: auto;
}
.container-max-width--1280 {
  max-width: 800px;
  margin: auto;
}

.marginTB--10 {
  margin: 10px auto;
}
.marginTB--20 {
  margin: 20px auto;
}
.marginTB--30 {
  margin: 30px auto;
}
.marginTB--40 {
  margin: 40px auto;
}

/** Animations **/
@-webkit-keyframes slideFromTop {
  from {
    height: 0%;
  }
  to {
    height: 100%;
  }
}
@keyframes slideFromTop {
  from {
    height: 0%;
  }
  to {
    height: 100%;
  }
}
@-webkit-keyframes showLightBox {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes showLightBox {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/**Beacon**/
@-webkit-keyframes fading {
  0% {
    opacity: 0;
    margin-top: -3px;
    margin-left: -3px;
    height: 6px;
    width: 6px;
  }
  10% {
    opacity: 1;
    margin-top: -3px;
    margin-left: -3px;
    height: 6px;
    width: 6px;
  }
  90% {
    opacity: 0;
    margin-top: -45px;
    margin-left: -45px;
    height: 90px;
    width: 90px;
  }
  100% {
    opacity: 0;
    margin-top: -45px;
    margin-left: -45px;
    height: 90px;
    width: 90px;
  }
}
@keyframes fading {
  0% {
    opacity: 0;
    margin-top: -3px;
    margin-left: -3px;
    height: 6px;
    width: 6px;
  }
  10% {
    opacity: 1;
    margin-top: -3px;
    margin-left: -3px;
    height: 6px;
    width: 6px;
  }
  90% {
    opacity: 0;
    margin-top: -45px;
    margin-left: -45px;
    height: 90px;
    width: 90px;
  }
  100% {
    opacity: 0;
    margin-top: -45px;
    margin-left: -45px;
    height: 90px;
    width: 90px;
  }
}
@-webkit-keyframes slideUpAboutSection {
  0% {
    -webkit-transform: translate(0, 200px);
            transform: translate(0, 200px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes slideUpAboutSection {
  0% {
    -webkit-transform: translate(0, 200px);
            transform: translate(0, 200px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes loadtate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes loadtate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes scaleOut {
  0% {
    -webkit-transform: scale(0) translate(0, 30%);
            transform: scale(0) translate(0, 30%);
  }
  100% {
    -webkit-transform: scale(1) translate(0, 0%);
            transform: scale(1) translate(0, 0%);
  }
}
@keyframes scaleOut {
  0% {
    -webkit-transform: scale(0) translate(0, 30%);
            transform: scale(0) translate(0, 30%);
  }
  100% {
    -webkit-transform: scale(1) translate(0, 0%);
            transform: scale(1) translate(0, 0%);
  }
}
/*** Shimmer Effect - Offer Wall Deal Lightbox **/
.shimmer {
  text-align: center;
  color: rgba(255, 255, 255, 0.1);
  background: -webkit-gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff));
  background: -moz-gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff));
  background: gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff));
  background-size: 4rem 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-animation-name: shimmer;
          animation-name: shimmer;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-color: #222;
  -webkit-text-fill-color: #f70000b3;
}

@-webkit-keyframes shimmer {
  0% {
    background-position: top left;
  }
  50% {
    background-position: top right;
  }
  100% {
    background-position: top left;
  }
}

@keyframes shimmer {
  0% {
    background-position: top left;
  }
  50% {
    background-position: top right;
  }
  100% {
    background-position: top left;
  }
}
/*** LAYOUT: contains all styles involved with the layout of your project. 
Such as styles for your header, footer, navigation and the grid system. ***/
/** _grid.scss **/
/* 2.4 Grid */
.row-12 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.col-1-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 1);
}

.col-1-12 ~ .col-1-12 {
  margin-left: calc(5px / 1);
}

.col-1-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-1-12 {
  margin: unset;
}

.col-1-12 {
  width: calc(8.3333333333% - (5px / 2));
}

.col-2-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 2);
}

.col-2-12 ~ .col-2-12 {
  margin-left: calc(5px / 2);
}

.col-2-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-2-12 {
  margin: unset;
}

.col-2-12 {
  width: calc(16.6666666667% - (5px / 2));
}

.col-3-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 3);
}

.col-3-12 ~ .col-3-12 {
  margin-left: calc(5px / 3);
}

.col-3-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-3-12 {
  margin: unset;
}

.col-3-12 {
  width: calc(25% - (5px / 2));
}

.col-4-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 4);
}

.col-4-12 ~ .col-4-12 {
  margin-left: calc(5px / 4);
}

.col-4-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-4-12 {
  margin: unset;
}

.col-4-12 {
  width: calc(33.3333333333% - (5px / 2));
}

.col-5-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 5);
}

.col-5-12 ~ .col-5-12 {
  margin-left: calc(5px / 5);
}

.col-5-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-5-12 {
  margin: unset;
}

.col-5-12 {
  width: calc(41.6666666667% - (5px / 2));
}

.col-6-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 6);
}

.col-6-12 ~ .col-6-12 {
  margin-left: calc(5px / 6);
}

.col-6-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-6-12 {
  margin: unset;
}

.col-6-12 {
  width: calc(50% - (5px / 2));
}

.col-7-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 7);
}

.col-7-12 ~ .col-7-12 {
  margin-left: calc(5px / 7);
}

.col-7-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-7-12 {
  margin: unset;
}

.col-7-12 {
  width: calc(58.3333333333% - (5px / 2));
}

.col-8-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 8);
}

.col-8-12 ~ .col-8-12 {
  margin-left: calc(5px / 8);
}

.col-8-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-8-12 {
  margin: unset;
}

.col-8-12 {
  width: calc(66.6666666667% - (5px / 2));
}

.col-9-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 9);
}

.col-9-12 ~ .col-9-12 {
  margin-left: calc(5px / 9);
}

.col-9-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-9-12 {
  margin: unset;
}

.col-9-12 {
  width: calc(75% - (5px / 2));
}

.col-10-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 10);
}

.col-10-12 ~ .col-10-12 {
  margin-left: calc(5px / 10);
}

.col-10-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-10-12 {
  margin: unset;
}

.col-10-12 {
  width: calc(83.3333333333% - (5px / 2));
}

.col-11-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 11);
}

.col-11-12 ~ .col-11-12 {
  margin-left: calc(5px / 11);
}

.col-11-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-11-12 {
  margin: unset;
}

.col-11-12 {
  width: calc(91.6666666667% - (5px / 2));
}

.col-12-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 12);
}

.col-12-12 ~ .col-12-12 {
  margin-left: calc(5px / 12);
}

.col-12-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-12-12 {
  margin: unset;
}

.col-12-12 {
  width: calc(100% - (5px / 2));
}

.row-12 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.col-xs-1-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 1);
}

.col-xs-1-12 ~ .col-xs-1-12 {
  margin-left: calc(5px / 1);
}

.col-xs-1-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xs-1-12 {
  margin: unset;
}

.col-xs-1-12 {
  width: calc(8.3333333333% - (5px / 2));
}

.col-xs-2-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 2);
}

.col-xs-2-12 ~ .col-xs-2-12 {
  margin-left: calc(5px / 2);
}

.col-xs-2-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xs-2-12 {
  margin: unset;
}

.col-xs-2-12 {
  width: calc(16.6666666667% - (5px / 2));
}

.col-xs-3-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 3);
}

.col-xs-3-12 ~ .col-xs-3-12 {
  margin-left: calc(5px / 3);
}

.col-xs-3-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xs-3-12 {
  margin: unset;
}

.col-xs-3-12 {
  width: calc(25% - (5px / 2));
}

.col-xs-4-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 4);
}

.col-xs-4-12 ~ .col-xs-4-12 {
  margin-left: calc(5px / 4);
}

.col-xs-4-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xs-4-12 {
  margin: unset;
}

.col-xs-4-12 {
  width: calc(33.3333333333% - (5px / 2));
}

.col-xs-5-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 5);
}

.col-xs-5-12 ~ .col-xs-5-12 {
  margin-left: calc(5px / 5);
}

.col-xs-5-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xs-5-12 {
  margin: unset;
}

.col-xs-5-12 {
  width: calc(41.6666666667% - (5px / 2));
}

.col-xs-6-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 6);
}

.col-xs-6-12 ~ .col-xs-6-12 {
  margin-left: calc(5px / 6);
}

.col-xs-6-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xs-6-12 {
  margin: unset;
}

.col-xs-6-12 {
  width: calc(50% - (5px / 2));
}

.col-xs-7-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 7);
}

.col-xs-7-12 ~ .col-xs-7-12 {
  margin-left: calc(5px / 7);
}

.col-xs-7-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xs-7-12 {
  margin: unset;
}

.col-xs-7-12 {
  width: calc(58.3333333333% - (5px / 2));
}

.col-xs-8-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 8);
}

.col-xs-8-12 ~ .col-xs-8-12 {
  margin-left: calc(5px / 8);
}

.col-xs-8-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xs-8-12 {
  margin: unset;
}

.col-xs-8-12 {
  width: calc(66.6666666667% - (5px / 2));
}

.col-xs-9-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 9);
}

.col-xs-9-12 ~ .col-xs-9-12 {
  margin-left: calc(5px / 9);
}

.col-xs-9-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xs-9-12 {
  margin: unset;
}

.col-xs-9-12 {
  width: calc(75% - (5px / 2));
}

.col-xs-10-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 10);
}

.col-xs-10-12 ~ .col-xs-10-12 {
  margin-left: calc(5px / 10);
}

.col-xs-10-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xs-10-12 {
  margin: unset;
}

.col-xs-10-12 {
  width: calc(83.3333333333% - (5px / 2));
}

.col-xs-11-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 11);
}

.col-xs-11-12 ~ .col-xs-11-12 {
  margin-left: calc(5px / 11);
}

.col-xs-11-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xs-11-12 {
  margin: unset;
}

.col-xs-11-12 {
  width: calc(91.6666666667% - (5px / 2));
}

.col-xs-12-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 12);
}

.col-xs-12-12 ~ .col-xs-12-12 {
  margin-left: calc(5px / 12);
}

.col-xs-12-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xs-12-12 {
  margin: unset;
}

.col-xs-12-12 {
  width: calc(100% - (5px / 2));
}

.row-12 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.col-sm-1-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 1);
}

.col-sm-1-12 ~ .col-sm-1-12 {
  margin-left: calc(5px / 1);
}

.col-sm-1-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-sm-1-12 {
  margin: unset;
}

.col-sm-1-12 {
  width: calc(8.3333333333% - (5px / 2));
}

.col-sm-2-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 2);
}

.col-sm-2-12 ~ .col-sm-2-12 {
  margin-left: calc(5px / 2);
}

.col-sm-2-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-sm-2-12 {
  margin: unset;
}

.col-sm-2-12 {
  width: calc(16.6666666667% - (5px / 2));
}

.col-sm-3-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 3);
}

.col-sm-3-12 ~ .col-sm-3-12 {
  margin-left: calc(5px / 3);
}

.col-sm-3-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-sm-3-12 {
  margin: unset;
}

.col-sm-3-12 {
  width: calc(25% - (5px / 2));
}

.col-sm-4-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 4);
}

.col-sm-4-12 ~ .col-sm-4-12 {
  margin-left: calc(5px / 4);
}

.col-sm-4-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-sm-4-12 {
  margin: unset;
}

.col-sm-4-12 {
  width: calc(33.3333333333% - (5px / 2));
}

.col-sm-5-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 5);
}

.col-sm-5-12 ~ .col-sm-5-12 {
  margin-left: calc(5px / 5);
}

.col-sm-5-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-sm-5-12 {
  margin: unset;
}

.col-sm-5-12 {
  width: calc(41.6666666667% - (5px / 2));
}

.col-sm-6-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 6);
}

.col-sm-6-12 ~ .col-sm-6-12 {
  margin-left: calc(5px / 6);
}

.col-sm-6-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-sm-6-12 {
  margin: unset;
}

.col-sm-6-12 {
  width: calc(50% - (5px / 2));
}

.col-sm-7-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 7);
}

.col-sm-7-12 ~ .col-sm-7-12 {
  margin-left: calc(5px / 7);
}

.col-sm-7-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-sm-7-12 {
  margin: unset;
}

.col-sm-7-12 {
  width: calc(58.3333333333% - (5px / 2));
}

.col-sm-8-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 8);
}

.col-sm-8-12 ~ .col-sm-8-12 {
  margin-left: calc(5px / 8);
}

.col-sm-8-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-sm-8-12 {
  margin: unset;
}

.col-sm-8-12 {
  width: calc(66.6666666667% - (5px / 2));
}

.col-sm-9-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 9);
}

.col-sm-9-12 ~ .col-sm-9-12 {
  margin-left: calc(5px / 9);
}

.col-sm-9-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-sm-9-12 {
  margin: unset;
}

.col-sm-9-12 {
  width: calc(75% - (5px / 2));
}

.col-sm-10-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 10);
}

.col-sm-10-12 ~ .col-sm-10-12 {
  margin-left: calc(5px / 10);
}

.col-sm-10-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-sm-10-12 {
  margin: unset;
}

.col-sm-10-12 {
  width: calc(83.3333333333% - (5px / 2));
}

.col-sm-11-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 11);
}

.col-sm-11-12 ~ .col-sm-11-12 {
  margin-left: calc(5px / 11);
}

.col-sm-11-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-sm-11-12 {
  margin: unset;
}

.col-sm-11-12 {
  width: calc(91.6666666667% - (5px / 2));
}

.col-sm-12-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 12);
}

.col-sm-12-12 ~ .col-sm-12-12 {
  margin-left: calc(5px / 12);
}

.col-sm-12-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-sm-12-12 {
  margin: unset;
}

.col-sm-12-12 {
  width: calc(100% - (5px / 2));
}

.row-12 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.col-md-1-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 1);
}

.col-md-1-12 ~ .col-md-1-12 {
  margin-left: calc(5px / 1);
}

.col-md-1-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-md-1-12 {
  margin: unset;
}

.col-md-1-12 {
  width: calc(8.3333333333% - (5px / 2));
}

.col-md-2-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 2);
}

.col-md-2-12 ~ .col-md-2-12 {
  margin-left: calc(5px / 2);
}

.col-md-2-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-md-2-12 {
  margin: unset;
}

.col-md-2-12 {
  width: calc(16.6666666667% - (5px / 2));
}

.col-md-3-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 3);
}

.col-md-3-12 ~ .col-md-3-12 {
  margin-left: calc(5px / 3);
}

.col-md-3-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-md-3-12 {
  margin: unset;
}

.col-md-3-12 {
  width: calc(25% - (5px / 2));
}

.col-md-4-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 4);
}

.col-md-4-12 ~ .col-md-4-12 {
  margin-left: calc(5px / 4);
}

.col-md-4-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-md-4-12 {
  margin: unset;
}

.col-md-4-12 {
  width: calc(33.3333333333% - (5px / 2));
}

.col-md-5-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 5);
}

.col-md-5-12 ~ .col-md-5-12 {
  margin-left: calc(5px / 5);
}

.col-md-5-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-md-5-12 {
  margin: unset;
}

.col-md-5-12 {
  width: calc(41.6666666667% - (5px / 2));
}

.col-md-6-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 6);
}

.col-md-6-12 ~ .col-md-6-12 {
  margin-left: calc(5px / 6);
}

.col-md-6-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-md-6-12 {
  margin: unset;
}

.col-md-6-12 {
  width: calc(50% - (5px / 2));
}

.col-md-7-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 7);
}

.col-md-7-12 ~ .col-md-7-12 {
  margin-left: calc(5px / 7);
}

.col-md-7-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-md-7-12 {
  margin: unset;
}

.col-md-7-12 {
  width: calc(58.3333333333% - (5px / 2));
}

.col-md-8-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 8);
}

.col-md-8-12 ~ .col-md-8-12 {
  margin-left: calc(5px / 8);
}

.col-md-8-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-md-8-12 {
  margin: unset;
}

.col-md-8-12 {
  width: calc(66.6666666667% - (5px / 2));
}

.col-md-9-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 9);
}

.col-md-9-12 ~ .col-md-9-12 {
  margin-left: calc(5px / 9);
}

.col-md-9-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-md-9-12 {
  margin: unset;
}

.col-md-9-12 {
  width: calc(75% - (5px / 2));
}

.col-md-10-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 10);
}

.col-md-10-12 ~ .col-md-10-12 {
  margin-left: calc(5px / 10);
}

.col-md-10-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-md-10-12 {
  margin: unset;
}

.col-md-10-12 {
  width: calc(83.3333333333% - (5px / 2));
}

.col-md-11-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 11);
}

.col-md-11-12 ~ .col-md-11-12 {
  margin-left: calc(5px / 11);
}

.col-md-11-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-md-11-12 {
  margin: unset;
}

.col-md-11-12 {
  width: calc(91.6666666667% - (5px / 2));
}

.col-md-12-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 12);
}

.col-md-12-12 ~ .col-md-12-12 {
  margin-left: calc(5px / 12);
}

.col-md-12-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-md-12-12 {
  margin: unset;
}

.col-md-12-12 {
  width: calc(100% - (5px / 2));
}

.row-12 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.col-lg-1-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 1);
}

.col-lg-1-12 ~ .col-lg-1-12 {
  margin-left: calc(5px / 1);
}

.col-lg-1-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-lg-1-12 {
  margin: unset;
}

.col-lg-1-12 {
  width: calc(8.3333333333% - (5px / 2));
}

.col-lg-2-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 2);
}

.col-lg-2-12 ~ .col-lg-2-12 {
  margin-left: calc(5px / 2);
}

.col-lg-2-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-lg-2-12 {
  margin: unset;
}

.col-lg-2-12 {
  width: calc(16.6666666667% - (5px / 2));
}

.col-lg-3-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 3);
}

.col-lg-3-12 ~ .col-lg-3-12 {
  margin-left: calc(5px / 3);
}

.col-lg-3-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-lg-3-12 {
  margin: unset;
}

.col-lg-3-12 {
  width: calc(25% - (5px / 2));
}

.col-lg-4-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 4);
}

.col-lg-4-12 ~ .col-lg-4-12 {
  margin-left: calc(5px / 4);
}

.col-lg-4-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-lg-4-12 {
  margin: unset;
}

.col-lg-4-12 {
  width: calc(33.3333333333% - (5px / 2));
}

.col-lg-5-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 5);
}

.col-lg-5-12 ~ .col-lg-5-12 {
  margin-left: calc(5px / 5);
}

.col-lg-5-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-lg-5-12 {
  margin: unset;
}

.col-lg-5-12 {
  width: calc(41.6666666667% - (5px / 2));
}

.col-lg-6-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 6);
}

.col-lg-6-12 ~ .col-lg-6-12 {
  margin-left: calc(5px / 6);
}

.col-lg-6-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-lg-6-12 {
  margin: unset;
}

.col-lg-6-12 {
  width: calc(50% - (5px / 2));
}

.col-lg-7-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 7);
}

.col-lg-7-12 ~ .col-lg-7-12 {
  margin-left: calc(5px / 7);
}

.col-lg-7-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-lg-7-12 {
  margin: unset;
}

.col-lg-7-12 {
  width: calc(58.3333333333% - (5px / 2));
}

.col-lg-8-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 8);
}

.col-lg-8-12 ~ .col-lg-8-12 {
  margin-left: calc(5px / 8);
}

.col-lg-8-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-lg-8-12 {
  margin: unset;
}

.col-lg-8-12 {
  width: calc(66.6666666667% - (5px / 2));
}

.col-lg-9-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 9);
}

.col-lg-9-12 ~ .col-lg-9-12 {
  margin-left: calc(5px / 9);
}

.col-lg-9-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-lg-9-12 {
  margin: unset;
}

.col-lg-9-12 {
  width: calc(75% - (5px / 2));
}

.col-lg-10-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 10);
}

.col-lg-10-12 ~ .col-lg-10-12 {
  margin-left: calc(5px / 10);
}

.col-lg-10-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-lg-10-12 {
  margin: unset;
}

.col-lg-10-12 {
  width: calc(83.3333333333% - (5px / 2));
}

.col-lg-11-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 11);
}

.col-lg-11-12 ~ .col-lg-11-12 {
  margin-left: calc(5px / 11);
}

.col-lg-11-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-lg-11-12 {
  margin: unset;
}

.col-lg-11-12 {
  width: calc(91.6666666667% - (5px / 2));
}

.col-lg-12-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 12);
}

.col-lg-12-12 ~ .col-lg-12-12 {
  margin-left: calc(5px / 12);
}

.col-lg-12-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-lg-12-12 {
  margin: unset;
}

.col-lg-12-12 {
  width: calc(100% - (5px / 2));
}

.row-12 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.col-xl-1-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 1);
}

.col-xl-1-12 ~ .col-xl-1-12 {
  margin-left: calc(5px / 1);
}

.col-xl-1-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xl-1-12 {
  margin: unset;
}

.col-xl-1-12 {
  width: calc(8.3333333333% - (5px / 2));
}

.col-xl-2-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 2);
}

.col-xl-2-12 ~ .col-xl-2-12 {
  margin-left: calc(5px / 2);
}

.col-xl-2-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xl-2-12 {
  margin: unset;
}

.col-xl-2-12 {
  width: calc(16.6666666667% - (5px / 2));
}

.col-xl-3-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 3);
}

.col-xl-3-12 ~ .col-xl-3-12 {
  margin-left: calc(5px / 3);
}

.col-xl-3-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xl-3-12 {
  margin: unset;
}

.col-xl-3-12 {
  width: calc(25% - (5px / 2));
}

.col-xl-4-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 4);
}

.col-xl-4-12 ~ .col-xl-4-12 {
  margin-left: calc(5px / 4);
}

.col-xl-4-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xl-4-12 {
  margin: unset;
}

.col-xl-4-12 {
  width: calc(33.3333333333% - (5px / 2));
}

.col-xl-5-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 5);
}

.col-xl-5-12 ~ .col-xl-5-12 {
  margin-left: calc(5px / 5);
}

.col-xl-5-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xl-5-12 {
  margin: unset;
}

.col-xl-5-12 {
  width: calc(41.6666666667% - (5px / 2));
}

.col-xl-6-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 6);
}

.col-xl-6-12 ~ .col-xl-6-12 {
  margin-left: calc(5px / 6);
}

.col-xl-6-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xl-6-12 {
  margin: unset;
}

.col-xl-6-12 {
  width: calc(50% - (5px / 2));
}

.col-xl-7-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 7);
}

.col-xl-7-12 ~ .col-xl-7-12 {
  margin-left: calc(5px / 7);
}

.col-xl-7-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xl-7-12 {
  margin: unset;
}

.col-xl-7-12 {
  width: calc(58.3333333333% - (5px / 2));
}

.col-xl-8-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 8);
}

.col-xl-8-12 ~ .col-xl-8-12 {
  margin-left: calc(5px / 8);
}

.col-xl-8-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xl-8-12 {
  margin: unset;
}

.col-xl-8-12 {
  width: calc(66.6666666667% - (5px / 2));
}

.col-xl-9-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 9);
}

.col-xl-9-12 ~ .col-xl-9-12 {
  margin-left: calc(5px / 9);
}

.col-xl-9-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xl-9-12 {
  margin: unset;
}

.col-xl-9-12 {
  width: calc(75% - (5px / 2));
}

.col-xl-10-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 10);
}

.col-xl-10-12 ~ .col-xl-10-12 {
  margin-left: calc(5px / 10);
}

.col-xl-10-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xl-10-12 {
  margin: unset;
}

.col-xl-10-12 {
  width: calc(83.3333333333% - (5px / 2));
}

.col-xl-11-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 11);
}

.col-xl-11-12 ~ .col-xl-11-12 {
  margin-left: calc(5px / 11);
}

.col-xl-11-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xl-11-12 {
  margin: unset;
}

.col-xl-11-12 {
  width: calc(91.6666666667% - (5px / 2));
}

.col-xl-12-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 12);
}

.col-xl-12-12 ~ .col-xl-12-12 {
  margin-left: calc(5px / 12);
}

.col-xl-12-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xl-12-12 {
  margin: unset;
}

.col-xl-12-12 {
  width: calc(100% - (5px / 2));
}

.row-12 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.col-xxl-1-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 1);
}

.col-xxl-1-12 ~ .col-xxl-1-12 {
  margin-left: calc(5px / 1);
}

.col-xxl-1-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xxl-1-12 {
  margin: unset;
}

.col-xxl-1-12 {
  width: calc(8.3333333333% - (5px / 2));
}

.col-xxl-2-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 2);
}

.col-xxl-2-12 ~ .col-xxl-2-12 {
  margin-left: calc(5px / 2);
}

.col-xxl-2-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xxl-2-12 {
  margin: unset;
}

.col-xxl-2-12 {
  width: calc(16.6666666667% - (5px / 2));
}

.col-xxl-3-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 3);
}

.col-xxl-3-12 ~ .col-xxl-3-12 {
  margin-left: calc(5px / 3);
}

.col-xxl-3-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xxl-3-12 {
  margin: unset;
}

.col-xxl-3-12 {
  width: calc(25% - (5px / 2));
}

.col-xxl-4-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 4);
}

.col-xxl-4-12 ~ .col-xxl-4-12 {
  margin-left: calc(5px / 4);
}

.col-xxl-4-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xxl-4-12 {
  margin: unset;
}

.col-xxl-4-12 {
  width: calc(33.3333333333% - (5px / 2));
}

.col-xxl-5-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 5);
}

.col-xxl-5-12 ~ .col-xxl-5-12 {
  margin-left: calc(5px / 5);
}

.col-xxl-5-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xxl-5-12 {
  margin: unset;
}

.col-xxl-5-12 {
  width: calc(41.6666666667% - (5px / 2));
}

.col-xxl-6-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 6);
}

.col-xxl-6-12 ~ .col-xxl-6-12 {
  margin-left: calc(5px / 6);
}

.col-xxl-6-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xxl-6-12 {
  margin: unset;
}

.col-xxl-6-12 {
  width: calc(50% - (5px / 2));
}

.col-xxl-7-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 7);
}

.col-xxl-7-12 ~ .col-xxl-7-12 {
  margin-left: calc(5px / 7);
}

.col-xxl-7-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xxl-7-12 {
  margin: unset;
}

.col-xxl-7-12 {
  width: calc(58.3333333333% - (5px / 2));
}

.col-xxl-8-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 8);
}

.col-xxl-8-12 ~ .col-xxl-8-12 {
  margin-left: calc(5px / 8);
}

.col-xxl-8-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xxl-8-12 {
  margin: unset;
}

.col-xxl-8-12 {
  width: calc(66.6666666667% - (5px / 2));
}

.col-xxl-9-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 9);
}

.col-xxl-9-12 ~ .col-xxl-9-12 {
  margin-left: calc(5px / 9);
}

.col-xxl-9-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xxl-9-12 {
  margin: unset;
}

.col-xxl-9-12 {
  width: calc(75% - (5px / 2));
}

.col-xxl-10-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 10);
}

.col-xxl-10-12 ~ .col-xxl-10-12 {
  margin-left: calc(5px / 10);
}

.col-xxl-10-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xxl-10-12 {
  margin: unset;
}

.col-xxl-10-12 {
  width: calc(83.3333333333% - (5px / 2));
}

.col-xxl-11-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 11);
}

.col-xxl-11-12 ~ .col-xxl-11-12 {
  margin-left: calc(5px / 11);
}

.col-xxl-11-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xxl-11-12 {
  margin: unset;
}

.col-xxl-11-12 {
  width: calc(91.6666666667% - (5px / 2));
}

.col-xxl-12-12 {
  float: left;
  margin-top: inherit;
  margin-bottom: inherit;
  margin-right: calc(5px / 12);
}

.col-xxl-12-12 ~ .col-xxl-12-12 {
  margin-left: calc(5px / 12);
}

.col-xxl-12-12:last-of-type {
  margin-right: 0;
}

.row-12 .col-xxl-12-12 {
  margin: unset;
}

.col-xxl-12-12 {
  width: calc(100% - (5px / 2));
}

/**_header.scss**/
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background: #fff;
  width: 100%;
  height: 90px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  font-family: "Roboto", sans-serif;
}
.header .career-jobs-blue-logo {
  width: 230px;
}
@media all and (max-width: 600px) {
  .header .career-jobs-blue-logo {
    width: 45.3333333333VW;
  }
}
.header .start-a-career-blue-logo {
  width: 300px;
}
@media all and (max-width: 600px) {
  .header .start-a-career-blue-logo {
    width: 56VW;
  }
}
.header--jobspotter {
  background: #0030ad;
  border-bottom: 0;
}
.header--jobspotter button {
  background: #00f0c0;
}
@media all and (max-width: 600px) {
  .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 15.9420289855VW;
  }
}
.header div {
  -ms-flex-item-align: center;
      align-self: center;
}
.header__logo {
  position: relative;
  width: 200px;
}
@media all and (max-width: 600px) {
  .header__logo {
    width: 48.309178744VW;
  }
}
.header__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 550px;
}
@media all and (max-width: 900px) {
  .header__search {
    width: 50VW;
  }
}
@media all and (max-width: 600px) {
  .header__search {
    position: relative;
    top: 4VW;
    width: 96.111111VW;
    max-width: 130.4347826087VW;
  }
}
.header__search-input {
  height: 40px;
  border-radius: 5px;
  border: none;
  margin: 5px;
  padding: 20px;
}
@media all and (max-width: 600px) {
  .header__search-input {
    height: 9.6618357488VW;
    padding: 4.8309178744VW;
    margin: 1.2077294686VW;
  }
}
.header__search-input--1 {
  width: 65%;
}
.header__search-input--2 {
  width: 35%;
}
.header__search button {
  background: #00F0C0;
  border: 0;
  border-radius: 100px;
  padding: 5px;
  width: 80px;
  height: 40px;
  -ms-flex-item-align: center;
      align-self: center;
  margin-left: 5px;
}
@media all and (max-width: 600px) {
  .header__search button {
    width: 9.6618357488VW;
    height: 9.6618357488VW;
    padding: 1.2077294686VW;
    margin: 0 2vw 0 3vw;
  }
}
.header__search button img {
  width: 30px;
}
@media all and (max-width: 600px) {
  .header__search button img {
    width: 7.2463768116VW;
  }
}
.header__right-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
@media all and (max-width: 600px) {
  .header__right-content {
    position: absolute;
    top: 4.523188VW;
    right: 3.6231884058VW;
  }
}
.header__right-content div {
  -ms-flex-item-align: center;
      align-self: center;
}
.header__location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-size: 16px;
  padding-right: 20px;
}
@media all and (max-width: 900px) {
  .header__location {
    font-size: 1.7777777778VW;
    padding-right: 2.2222222222VW;
  }
}
@media all and (max-width: 600px) {
  .header__location {
    font-size: 3.8647342995VW;
    padding-right: 2.830918VW;
  }
}
.header__location img {
  display: inline-block;
  width: 20px;
}
@media all and (max-width: 600px) {
  .header__location img {
    width: 4.8309178744VW;
  }
}
.header__location p {
  display: inline-block;
  margin: 0;
}
.header__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-size: 16px;
}
@media all and (max-width: 900px) {
  .header__user {
    font-size: 1.7777777778VW;
  }
}
@media all and (max-width: 600px) {
  .header__user {
    font-size: 3.8647342995VW;
  }
}
.header__user img {
  display: inline-block;
  width: 21px;
  padding-right: 5px;
}
@media all and (max-width: 600px) {
  .header__user img {
    width: 4.8309178744VW;
    padding-right: 1.2077294686VW;
  }
}
.header__user p {
  display: inline-block;
  margin: 0;
}
.header-survey {
  height: 170px;
  margin-bottom: 10px;
  background: #0030AD;
}
@media all and (max-width: 600px) {
  .header-survey {
    height: 40.3381642512VW;
    margin-bottom: 0;
  }
}
.header-survey div, .header-survey section {
  -ms-flex-item-align: start;
      align-self: start;
  margin-top: 2%;
}
@media all and (max-width: 900px) {
  .header-survey section {
    width: 20%;
  }
}
.header-survey h1 {
  color: #fff;
  text-align: center;
  font-size: 18px;
  line-height: 140%;
  font-weight: 500;
  margin-top: 20px;
}
@media all and (max-width: 600px) {
  .header-survey h1 {
    font-size: 3.5VW;
    margin-top: 2.2222222222VW;
    top: 0.9vw;
    position: relative;
  }
}
.header-survey__logo {
  max-width: 200px;
  width: 100%;
}
@media all and (max-width: 600px) {
  .header-survey__logo {
    position: absolute;
    width: 9.763285VW;
    top: 4.415459VW;
    left: 4.8309178744VW;
  }
}
.header-survey__progress-bar {
  width: 50%;
  max-width: 600px;
}
@media all and (max-width: 600px) {
  .header-survey__progress-bar {
    width: 95%;
    margin-top: 12.077294686VW !important;
  }
}
.header-serp {
  height: 129px;
  background: #0030AD;
}
@media all and (max-width: 600px) {
  .header-serp {
    height: 26VW;
  }
}
.header-serp__logo {
  max-width: 200px;
  width: 100%;
}
@media all and (max-width: 600px) {
  .header-serp__logo {
    position: absolute;
    width: 9.6VW;
    height: 9.6vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    top: 1.6VW;
    left: 4.8309178744VW;
  }
}
.header-serp__title {
  font-size: 18px;
  color: #fff;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  text-align: center;
  margin: 10px;
}
@media all and (max-width: 900px) {
  .header-serp__title {
    font-size: 2VW;
  }
}
@media all and (max-width: 600px) {
  .header-serp__title {
    display: none;
  }
}
.header__skip-btn {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  padding: 10px 20px;
  font-size: 13px;
}

/** _footer.scss **/
/*     ========= FOOTER =========    */
.footer {
  text-align: center;
  font-family: "Roboto", sans-serif;
  color: #7F7F7F;
  font-size: 11px;
  line-height: 144%;
  width: 100%;
  margin: 100px auto 10px;
  padding: 30px;
  border-top: 1px solid #E5E5E5;
}
@media all and (max-width: 600px) {
  .footer {
    text-align: left;
    width: 100%;
    font-size: 2.6570048309VW;
    padding: 7.2463768116VW 4.8309178744VW;
  }
}
.footer__text {
  max-width: 720px;
  margin: auto;
}
.footer__copyright {
  margin: 20px auto;
}
.footer__links ul {
  list-style: none;
  width: 308px;
  margin: 5px auto;
  padding: 0;
}
@media all and (max-width: 600px) {
  .footer__links ul {
    width: 90%;
    margin-left: 0;
  }
}
.footer__links li {
  display: inline-block;
  padding: 0 5px;
}
.footer__links li:not(:last-child) {
  border-right: 1px solid #7F7F7F;
}
.footer__links li:first-child {
  padding-left: 0;
}
.footer__links a {
  color: #7F7F7F;
  text-decoration: none;
}
.footer__logo {
  width: 40px;
  margin: 40px auto;
}
@media all and (max-width: 600px) {
  .footer__logo {
    width: 10.6666666667VW;
    margin: 9.6618357488VW auto;
  }
}

/*** COMPONENTS - UK Rewards: holds all of your styles for buttons, carousels, sliders, and similar page components (think widgets). 
Your project will typically contain a lot of component files — as the whole site/app should be mostly composed of small modules. ***/
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  margin: 10px auto;
  padding: 0;
  width: 100%;
  height: 63px;
  max-width: 345px;
  min-width: 120px;
  border-radius: 100px;
  border: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: #000;
  font-size: 21px;
  text-align: center;
  font-style: normal;
  text-decoration: none;
  background: #135ec7;
  cursor: pointer;
  -webkit-transition: 0.2s linear all;
  transition: 0.2s linear all;
}
@media all and (max-width: 600px) {
  .btn {
    max-width: 80VW;
    min-width: 32VW;
    height: 16.8vw;
    border-radius: 24VW;
    font-size: 5.6VW;
    margin: 4.8vw auto;
  }
}
.btn a {
  color: inherit;
  text-decoration: none;
}
.btn--orange {
  background: #FF755C;
  color: #373737;
}
.btn--orange:hover {
  background: #054D92;
  color: #fff;
}
.btn--green {
  background: #00F0C0;
}
.btn--green:hover {
  background: #06f4c4;
}
.btn--gray {
  background: #ECECEC;
  color: #000000;
  border-radius: 100px;
}
.btn--white {
  background: #ffffff;
  color: #373737;
  border: 2px solid #cacaca;
}

.skip-btn {
  display: block;
  color: #959595;
  font-size: 13px;
  margin: 10px auto;
  cursor: pointer;
  text-decoration: none;
}
.skip-btn--header {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 20px;
}
@media all and (max-width: 600px) {
  .skip-btn--header {
    padding: 1.4154589372VW 3.8309178744VW;
    margin: -0.084541VW auto;
  }
}
.skip-btn--white {
  color: #fff;
}
.skip-btn--blue {
  color: #1172D7;
}

.go-to-next {
  cursor: pointer;
}

.global-skipToResults {
  text-align: center;
  font-size: 17px;
  font-family: Roboto, sans-serif;
  color: #000;
  cursor: pointer;
  font-weight: 700;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 50px auto 10px;
}
.global-skipToResults a {
  text-decoration: underline;
  color: inherit;
  display: block;
}
@media all and (max-width: 600px) {
  .global-skipToResults {
    font-size: 4.4vw;
  }
}

.skip-to-result-link {
  display: block;
  text-decoration: underline;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  margin: 1em auto;
  text-align: center;
}

ins {
  text-decoration: none;
}

.offer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  background: #fff;
  width: 500px;
  max-width: 338px;
  min-height: 280px;
  margin: 20px auto;
  padding: 20px;
  text-decoration: none;
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border: 1px solid #0000001f;
}
@media all and (max-width: 600px) {
  .offer {
    width: 133.33333vw;
    max-width: 93.33333vw;
    min-height: 80vw;
    margin: 2.66667vw auto;
    padding: 5.33333vw 10.66667vw;
    border-radius: 2.66667vw;
  }
}
.offer__img {
  position: relative;
  width: 60px;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  border-radius: 100px;
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
}
@media all and (max-width: 600px) {
  .offer__img {
    width: 21.33333vw;
    border-radius: 26.66667vw;
  }
}
.offer__title {
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  text-align: center;
  color: #00DBAF;
  padding-top: 5px;
  letter-spacing: 1px;
}
@media all and (max-width: 600px) {
  .offer__title {
    font-size: 4.8vw;
    padding-top: 1.33333vw;
  }
}
.offer__title h1 {
  margin: 10px 0;
}
@media all and (max-width: 600px) {
  .offer__title h1 {
    margin: 2.66667vw 0;
  }
}
.offer__description {
  font-size: 13px;
  line-height: 180%;
  color: #373737;
  text-align: center;
  font-family: "Roboto", sans-serif;
}
@media all and (max-width: 600px) {
  .offer__description {
    font-size: 4.53333vw;
    line-height: 5.86667vw;
  }
}
.offer__description p {
  margin: 0px 0 15px;
}
@media all and (max-width: 600px) {
  .offer__description p {
    margin: 0px 0 4vw;
  }
}
.offer__btn {
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  background: #00F0C0;
  text-shadow: 0px 0px 3px #00F0C0;
  max-width: 230px;
  width: 100%;
  position: relative;
  margin: auto;
  border-radius: 40px;
  padding: 13px 10px;
  color: #000;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  /*box-shadow: 0px 4px 6px #0000004f;*/
}
@media all and (max-width: 600px) {
  .offer__btn {
    font-size: 4.53333vw;
    line-height: 5.86667vw;
    text-shadow: 0px 0px 0.8vw #00F0C0;
    max-width: 50.66667vw;
    border-radius: 10.66667vw;
    padding: 2.66667vw;
  }
}
.offer__btn:active {
  -webkit-transform: translate(0, 1px);
          transform: translate(0, 1px);
}

.serp-ad-slot {
  background: #FFFEC8;
  width: 100%;
  height: 100px;
  position: relative;
  font-family: "Roboto", sans-serif;
  padding: 10px 20px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media all and (max-width: 600px) {
  .serp-ad-slot {
    height: 24.154589372VW;
    padding: 2.4154589372VW 4.8309178744VW;
  }
}
.serp-ad-slot__sponsored-text {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 10px;
  color: #606060;
  padding: 5px;
}
@media all and (max-width: 600px) {
  .serp-ad-slot__sponsored-text {
    font-size: 2.4154589372VW;
    padding: 1.2077294686VW;
  }
}
.serp-ad-slot__title {
  font-size: 20px;
  font-weight: bold;
  color: #0030AD;
  margin: 0;
  text-decoration: underline;
  text-transform: capitalize;
}
@media all and (max-width: 600px) {
  .serp-ad-slot__title {
    font-size: 3.8647342995VW;
  }
}
.serp-ad-slot__subtitle {
  font-weight: bold;
  font-size: 18px;
  color: #007B63;
  margin: 0;
}
@media all and (max-width: 600px) {
  .serp-ad-slot__subtitle {
    font-size: 3.3816425121VW;
  }
}
.serp-ad-slot__description {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  margin: 0;
  text-transform: capitalize;
}
@media all and (max-width: 600px) {
  .serp-ad-slot__description {
    font-size: 2.8985507246VW;
  }
}
.serp-ad-slot__container {
  position: relative;
  width: 100%;
  height: 100px;
  background: red;
}

.serp-job-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Roboto", sans-serif;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #ECECEC;
  margin: 10px 0;
  position: relative;
  padding: 10px;
  text-decoration: none;
}
@media all and (max-width: 900px) {
  .serp-job-item {
    padding: 1.1111111111VW 2.2222222222VW;
    margin: 1.1111111111VW;
  }
}
@media all and (max-width: 600px) {
  .serp-job-item {
    padding: 2.415459VW 2.415459VW;
  }
}
.serp-job-item > div {
  -ms-flex-item-align: center;
      align-self: center;
}
.serp-job-item__img {
  width: 60px;
  position: relative;
  left: 0%;
}
@media all and (max-width: 900px) {
  .serp-job-item__img {
    width: 6.6666666667VW;
  }
}
@media all and (max-width: 600px) {
  .serp-job-item__img {
    width: 14.4927536232VW;
  }
}
.serp-job-item__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 67%;
  max-width: 500px;
}
@media all and (max-width: 900px) {
  .serp-job-item__details {
    width: 34.555556VW;
  }
}
@media all and (max-width: 600px) {
  .serp-job-item__details {
    width: 60.38647343VW;
    position: relative;
    left: 2.4154589372VW;
  }
}
.serp-job-item__title {
  color: #0030AD;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
}
@media all and (max-width: 900px) {
  .serp-job-item__title {
    font-size: 2.2222222222VW;
  }
}
@media all and (max-width: 600px) {
  .serp-job-item__title {
    font-size: 3.8647342995VW;
  }
}
.serp-job-item__sub-text {
  padding: 10px 0px 10px;
  color: #373737;
  font-size: 12px;
}
@media all and (max-width: 900px) {
  .serp-job-item__sub-text {
    font-size: 1.3333333333VW;
  }
}
@media all and (max-width: 600px) {
  .serp-job-item__sub-text {
    padding: 1.2077294686VW 0 0;
    font-size: 2.8985507246VW;
  }
}
.serp-job-item__company img {
  width: 10px;
  position: relative;
  vertical-align: text-top;
}
.serp-job-item__location img {
  width: 16px;
  position: relative;
  top: 1px;
  vertical-align: text-top;
  left: 2px;
}
.serp-job-item__date {
  background: rgba(0, 240, 192, 0.3);
  padding: 5px 10px;
  margin-left: 5px;
  border-radius: 5px;
  color: #00735C;
  text-transform: capitalize;
}
@media all and (max-width: 900px) {
  .serp-job-item__date {
    padding: 0.364734VW 0.811111VW;
  }
}
@media all and (max-width: 600px) {
  .serp-job-item__date {
    position: relative;
    display: block;
    margin-top: 1.2077294686VW;
    margin-left: 0.4830917874VW;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0.7246376812VW 1.2077294686VW;
    font-size: 2.8985507246VW;
  }
}
.serp-job-item__description {
  max-width: 450px;
}
.serp-job-item__description p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #959595;
  line-height: 130%;
  font-size: 12px;
}
@media all and (max-width: 900px) {
  .serp-job-item__description p {
    font-size: 1.3333333333VW;
  }
}
@media all and (max-width: 600px) {
  .serp-job-item__description {
    display: none;
  }
}
.serp-job-item__btn {
  position: relative;
  left: 3%;
}
.serp-job-item__btn a {
  text-decoration: none;
}
.serp-job-item__btn button {
  display: block;
  background: #00F0C0;
  padding: 12px 20px;
  border-radius: 80px;
  border: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #000;
  min-width: 120px;
  font-size: 13px;
}
@media all and (max-width: 900px) {
  .serp-job-item__btn button {
    padding: 1.5625VW 2.6041666667VW;
    font-size: 1.6927083333VW;
    min-width: 13.3333333333VW;
  }
}
.serp-job-item__btn button::before {
  content: "View & Apply";
}
@media all and (max-width: 600px) {
  .serp-job-item__btn button::before {
    content: "";
  }
}
@media all and (max-width: 600px) {
  .serp-job-item__btn button {
    width: 9.454106VW;
    height: 9.454106VW;
    padding: 2.698551VW;
    border-radius: 100%;
    min-width: auto;
  }
}
.serp-job-item__btn button img {
  display: none;
}
@media all and (max-width: 600px) {
  .serp-job-item__btn button img {
    display: block;
  }
}

.serp-listings-featured .serp-job-item {
  border-radius: 10px;
  margin-left: 0;
  margin-right: 0;
}
.serp-listings-featured .serp-job-item__details::before {
  content: "";
  position: relative;
  text-align: right;
  width: calc(100% + 120px);
}
@media all and (max-width: 600px) {
  .serp-listings-featured .serp-job-item__details::before {
    position: static;
    text-align: left;
    line-height: 150%;
  }
}
.serp-listings-featured .serp-job-item::before {
  content: "";
  display: block;
  height: 41px;
  width: 41px;
  -ms-flex-item-align: center;
      align-self: center;
  margin: 0 15px 0 0;
  background-size: 100% 100%;
}
@media all and (max-width: 600px) {
  .serp-listings-featured .serp-job-item::before {
    display: none;
  }
}
.serp-listings-featured .serp-job-item:nth-child(1) {
  background-color: #FFF4CB;
  border: 1px solid #E1D08E;
}
.serp-listings-featured .serp-job-item:nth-child(1) .serp-job-item__details::before {
  content: "Picked For You";
  color: #AD963A;
}
.serp-listings-featured .serp-job-item:nth-child(2) {
  background-color: #DAFDF6;
  border: 1px solid #90D9CA;
}
.serp-listings-featured .serp-job-item:nth-child(2) .serp-job-item__details::before {
  content: "Featured";
  color: #459C8A;
}
.serp-listings-featured .serp-job-item:nth-child(3) {
  background-color: #FFE7E3;
  border: 1px solid #EEB6AD;
}
.serp-listings-featured .serp-job-item:nth-child(3) .serp-job-item__details::before {
  content: "Popular";
  color: #C97464;
}
.serp-listings-featured .serp-job-item__description {
  display: none;
}
.serp-listings-featured .serp-job-item__btn {
  left: 0;
}
.serp-listings-featured .serp-job-item__btn button {
  background: #333333;
  color: #ffffff;
}
@media all and (max-width: 600px) {

}
.serp-listings-featured .serp-job-item__btn button img {
  display: none;
}
@media all and (max-width: 600px) {
  .serp-listings-featured .serp-job-item__btn button img {
    display: none;
  }
}

/** Inflow Job Item - Single Listing Layout **/
.inflow-job-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Roboto", sans-serif;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #ECECEC;
  position: relative;
  padding: 10px 0;
  width: 345px;
  min-height: 200px;
  margin: 10px auto;
  border: 1px solid #CACACA;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
}
@media all and (max-width: 900px) {
  .inflow-job-item {
    padding: 1.1111111111VW 2.2222222222VW;
    margin: 10px auto;
  }
}
@media all and (max-width: 600px) {
  .inflow-job-item {
    width: 83.3333333333VW;
    padding: 1.2vw 2.4vw;
    min-height: 48.309178744VW;
  }
}
.inflow-job-item > div {
  -ms-flex-item-align: center;
      align-self: center;
}
.inflow-job-item__img {
  width: 55px;
  min-height: 55px;
  position: relative;
  top: 10px;
  left: 0%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}
@media all and (max-width: 900px) {
  .inflow-job-item__img {
    width: 6.6666666667VW;
    min-height: 6.6666666667VW;
    top: 3vw;
  }
}
@media all and (max-width: 600px) {
  .inflow-job-item__img {
    width: 14.4927536232VW;
    min-height: 14.4927536232VW;
    top: 3vw;
  }
}
.inflow-job-item__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 67%;
  max-width: 500px;
}
@media all and (max-width: 600px) {
  .inflow-job-item__details {
    width: 60.38647343VW;
    position: relative;
    left: 2.4154589372VW;
  }
}
.inflow-job-item__title {
  color: #000000;
  font-size: 24px;
  font-weight: 800;
  line-height: 110%;
}
@media all and (max-width: 900px) {
  .inflow-job-item__title {
    font-size: 2.3333333333VW;
  }
}
@media all and (max-width: 600px) {
  .inflow-job-item__title {
    font-size: 5.7971014493VW;
  }
}
.inflow-job-item__title span {
  font-size: 15px;
  line-height: 130%;
  letter-spacing: 0.01em;
  color: #0030ad;
  font-weight: 400;
}
.inflow-job-item__sub-text {
  padding: 10px 0px 10px;
  color: #373737;
  font-size: 15px;
  line-height: 150%;
  font-family: "Roboto", sans-serif;
}
@media all and (max-width: 900px) {
  .inflow-job-item__sub-text {
    font-size: 1.6666666667VW;
  }
}
@media all and (max-width: 600px) {
  .inflow-job-item__sub-text {
    padding: 1.2077294686VW 0 0;
    font-size: 3.6231884058VW;
  }
}
.inflow-job-item__company img {
  width: 14px;
  position: relative;
  top: 2px;
}
@media all and (max-width: 600px) {
  .inflow-job-item__company img {
    width: 3.5VW;
    top: 0.3333333333VW;
  }
}
.inflow-job-item__location {
  display: block;
  position: relative;
  left: -3px;
}
.inflow-job-item__location img {
  width: 21px;
  position: relative;
  top: 2px;
}
@media all and (max-width: 600px) {
  .inflow-job-item__location img {
    width: 5.0724637681VW;
    top: 0.3333333333VW;
  }
}
.inflow-job-item__date {
  background: rgba(0, 240, 192, 0.3);
  padding: 5px 10px;
  margin-left: 5px;
  border-radius: 5px;
  color: #00735C;
}
@media all and (max-width: 900px) {
  .inflow-job-item__date {
    padding: 0.364734VW 0.811111VW;
  }
}
@media all and (max-width: 600px) {
  .inflow-job-item__date {
    position: relative;
    display: block;
    margin-top: 1.2077294686VW;
    margin-left: 0.4830917874VW;
    width: 27.3961352657VW;
    padding: 0.7246376812VW 1.2077294686VW;
    font-size: 2.8985507246VW;
  }
}
.inflow-job-item__description {
  max-width: 450px;
}
.inflow-job-item__description p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #959595;
  line-height: 130%;
  font-size: 12px;
}
@media all and (max-width: 900px) {
  .inflow-job-item__description p {
    font-size: 1.3333333333VW;
  }
}
@media all and (max-width: 600px) {
  .inflow-job-item__description {
    display: none;
  }
}
.inflow-job-item__view-details {
  font-size: 16px;
  margin-top: 20px;
  color: #0030AD;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 700;
}
@media all and (max-width: 600px) {
  .inflow-job-item__view-details {
    font-size: 3.8647342995VW;
    margin-top: 4.8309178744VW;
  }
}
.inflow-job-item__btn a {
  text-decoration: none;
}
.inflow-job-item__btn button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #00F0C0;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: #000;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 100px;
  width: 100%;
  height: 63px;
  min-width: 220px;
  max-width: 345px;
  font-size: 21px;
  text-align: center;
  margin: 40px auto 20px;
  cursor: pointer;
}
@media all and (max-width: 900px) {
  .inflow-job-item__btn button {
    min-width: 22.2222222222VW;
    margin: 9.6618357488VW auto;
    height: 16.8vw;
    border-radius: 24VW;
    font-size: 5.6VW;
    margin: 4.8vw auto;
  }
}
.inflow-job-item__btn button::before {
  content: "View Job";
  /*@include respond(phone){
      content:"";
  }*/
}
@media all and (max-width: 600px) {
  .inflow-job-item__btn button {
    width: 81vw;
    height: 16.8vw;
    border-radius: 24VW;
    font-size: 5.6VW;
    margin: 4.8vw auto;
  }
}
.inflow-job-item__btn button img {
  display: none;
  /*@include respond(phone){
      display:block;
  }*/
}

/** Inflow Job Item - Multiple Listings Layout **/
.inflow-job-item-v2 {
  width: 650px;
  margin: 20px auto;
  border: 1px solid #CACACA;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 15px;
  overflow: hidden;
  font-size: 0;
  cursor: pointer;
  position: relative;
  display: block;
  text-decoration: none;
}
@media all and (max-width: 600px) {
  .inflow-job-item-v2 {
    width: 96vw;
    margin: 4vw auto;
  }
}
.inflow-job-item-v2__info-header {
  font-size: 18px;
  color: #0030AD;
  font-weight: 500;
  border-bottom: 1px solid #CACACA;
  text-align: left;
  padding: 8px 15px 8px 30px;
  letter-spacing: 0.01em;
  line-height: 100%;
  background: #ECECEC url(img/zip-icon-black.svg) no-repeat 10px center;
  background-size: auto 0.8em;
}
@media all and (max-width: 600px) {
  .inflow-job-item-v2__info-header {
    font-size: 3.867vw;
    padding-left: 6vw;
  }
}
.inflow-job-item-v2 .inner {
  padding: 10px 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (max-width: 600px) {
  .inflow-job-item-v2 .inner {
    padding: 2.67vw;
  }
}
.inflow-job-item-v2__logo-holder {
  float: left;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  width: 60px;
  min-height: 60px;
  text-align: left;
  margin-right: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  justify-self: center;
  -ms-flex-item-align: center;
      align-self: center;
}
@media all and (max-width: 600px) {
  .inflow-job-item-v2__logo-holder {
    width: 12vw;
    min-height: 12vw;
    margin-right: 3vw;
  }
}
.inflow-job-item-v2__logo-holder img {
  width: 100%;
}
.inflow-job-item-v2__info-holder {
  float: left;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  width: calc(100% - 85px);
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-right: 130px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 70px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media all and (max-width: 600px) {
  .inflow-job-item-v2__info-holder {
    width: 60vw;
    min-height: 12vw;
    padding-right: 4vw;
  }
}
.inflow-job-item-v2__info-holder::before {
  content: "View Job";
  top: calc((100% - 40px) / 2);
  width: 140px;
  height: 40px;
  border-radius: 50px;
  background-image: none;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  line-height: 40px;
  background-color: #00F0C0;
  color: #000000;
  position: absolute;
  right: 17px;
  font-weight: 600;
}
@media all and (max-width: 600px) {
  .inflow-job-item-v2__info-holder::before {
    width: 19vw;
    font-size: 3.1400966184VW;
    line-height: 8VW;
    width: 19vw;
    height: 8VW;
  }
}
.inflow-job-item-v2__job-title {
  font-size: 20px;
  font-weight: 500;
  margin: -0.25em auto 0.25em;
  clear: both;
  width: 100%;
  color: #000;
}
@media all and (max-width: 600px) {
  .inflow-job-item-v2__job-title {
    font-size: 3.733vw;
    line-height: 110%;
    margin-top: 0;
  }
}
.inflow-job-item-v2__job-title::after {
  content: "";
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0.01em;
  color: #0030AD;
  font-weight: 400;
}
@media all and (max-width: 600px) {
  .inflow-job-item-v2__job-title::after {
    font-size: 4vw;
  }
}

@media all and (max-width: 600px) {
  .inflow-job-item-v2__company {
    font-size: 3.733vw;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/** Inflow Job Item - Single Listing Layout **/
.inflow-job-item-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Roboto", sans-serif;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  border-bottom: 1px solid #ECECEC;
  position: relative;
  padding: 30px 0;
  width: 345px;
  margin: 10px auto;
  border: 1px solid #CACACA;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
}
@media all and (max-width: 600px) {
  .inflow-job-item-center {
    width: 84VW;
    padding: 7.2vw 0;
  }
}
.inflow-job-item-center > div {
  -ms-flex-item-align: center;
      align-self: center;
}
.inflow-job-item-center__tag {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  padding: 0.5em 2em;
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  background-color: #E1E8FD;
  border-radius: 50px;
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.inflow-job-item-center__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 80%;
  max-width: 500px;
}
@media all and (max-width: 600px) {
  .inflow-job-item-center__details {
    width: 72vw;
    position: relative;
    left: 0;
  }
}
.inflow-job-item-center__title {
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 0.5em;
}
@media all and (max-width: 600px) {
  .inflow-job-item-center__title {
    font-size: 4.267vw;
  }
}
.inflow-job-item-center__title span {
  font-size: 15px;
  line-height: 130%;
  letter-spacing: 0.01em;
  color: #0030ad;
  font-weight: 400;
}
.inflow-job-item-center__sub-text {
  padding: 10px 0px 10px;
  color: #373737;
  font-size: 15px;
  line-height: 150%;
  font-family: "Roboto", sans-serif;
}
@media all and (max-width: 600px) {
  .inflow-job-item-center__sub-text {
    padding: 1.2 0 0;
    font-size: 3.467VW;
  }
}
.inflow-job-item-center__company img {
  width: 14px;
  position: relative;
  top: 2px;
}
@media all and (max-width: 600px) {
  .inflow-job-item-center__company img {
    width: 3.5VW;
    top: 0.3333333333VW;
  }
}
.inflow-job-item-center__location {
  display: block;
  position: relative;
  left: -3px;
}
.inflow-job-item-center__location img {
  width: 21px;
  position: relative;
  top: 2px;
}
@media all and (max-width: 600px) {
  .inflow-job-item-center__location img {
    width: 5.0724637681VW;
    top: 0.3333333333VW;
  }
}
.inflow-job-item-center__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 45px;
  background: #eeeeee;
  padding: 0;
  margin: auto;
  border-radius: 15px;
  color: #373737;
  font-size: 13px;
  text-align: center;
  font-weight: 400;
  margin-top: 20px;
}
@media all and (max-width: 600px) {
  .inflow-job-item-center__date {
    height: 12vw;
    font-size: 3.267vw;
    margin-top: 4.8vw;
    border-radius: 4vw;
  }
}
.inflow-job-item-center__view-details {
  font-size: 16px;
  margin-top: 10px;
  color: #054D92;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 700;
}
@media all and (max-width: 600px) {
  .inflow-job-item-center__view-details {
    font-size: 4.267VW;
    margin-top: 4.4VW;
  }
}
.inflow-job-item-center__btn a {
  text-decoration: none;
}
.inflow-job-item-center__btn button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #00F0C0;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: #000;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 100px;
  width: 100%;
  height: 63px;
  min-width: 220px;
  max-width: 345px;
  font-size: 21px;
  text-align: center;
  margin: 20px auto 20px;
  cursor: pointer;
}
.inflow-job-item-center__btn button::before {
  content: "View Job";
  /*@include respond(phone){
      content:"";
  }*/
}
.inflow-job-item-center__btn button.yes-btn::before {
  content: "Yes";
}
.inflow-job-item-center__btn button.no-btn::before {
  content: "No";
}
@media all and (max-width: 600px) {
  .inflow-job-item-center__btn button {
    max-width: 81vw;
    height: 16.8vw;
    border-radius: 24VW;
    font-size: 5.6VW;
    margin: 4.8vw auto;
  }
}
.inflow-job-item-center__btn button img {
  display: none;
  /*@include respond(phone){
      display:block;
  }*/
}

/** Inflow Job Item - Single Listing Layout **/
.inflow-job-item-featured {
  font-family: "Roboto", sans-serif;
  position: relative;
  display: block;
  padding: 25px 20px;
  width: 345px;
  margin: 20px auto;
  border: 1px solid #CACACA;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
}
@media all and (max-width: 900px) {
  .inflow-job-item-featured {
    padding: 20px;
    margin: 10px auto;
  }
}
@media all and (max-width: 600px) {
  .inflow-job-item-featured {
    width: 83.3333333333VW;
    padding: 6.4vw 4vw;
    margin: 4vw auto;
  }
}
.inflow-job-item-featured > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.inflow-job-item-featured::before {
  content: "NEW";
  position: absolute;
  display: block;
  background: #00F0C0;
  color: #000;
  top: -1px;
  right: 20px;
  line-height: 2em;
  padding: 0 1em;
  font-weight: 600;
  font-size: 11px;
}
.inflow-job-item-featured__img {
  width: 75px;
  min-height: 75px;
  position: relative;
  top: 0;
  left: 0%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media all and (max-width: 900px) {
  .inflow-job-item-featured__img {
    width: 75px;
    min-height: 75px;
  }
}
@media all and (max-width: 600px) {
  .inflow-job-item-featured__img {
    width: 20vw;
    min-height: 20VW;
  }
}
.inflow-job-item-featured__details {
  -ms-flex-item-align: center;
      align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 70%;
  text-align: left;
  max-width: 500px;
}
@media all and (max-width: 600px) {
  .inflow-job-item-featured__details {
    width: 50VW;
    position: relative;
  }
}
.inflow-job-item-featured__title {
  color: #141414;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
}
@media all and (max-width: 900px) {
  .inflow-job-item-featured__title {
    font-size: 2.3333333333VW;
  }
}
@media all and (max-width: 600px) {
  .inflow-job-item-featured__title {
    font-size: 3.733VW;
  }
}
.inflow-job-item-featured__sub-text {
  padding: 10px 0px 10px;
  color: #373737;
  font-size: 11px;
  line-height: 150%;
  font-family: "Roboto", sans-serif;
}
@media all and (max-width: 900px) {
  .inflow-job-item-featured__sub-text {
    font-size: 1.6666666667VW;
  }
}
@media all and (max-width: 600px) {
  .inflow-job-item-featured__sub-text {
    padding: 1.2077294686VW 0 0;
    font-size: 2.933VW;
  }
}
.inflow-job-item-featured__sub-text span {
  display: block;
}
.inflow-job-item-featured__view-details {
  display: block;
  background: #00F0C0;
  padding: 0;
  border-radius: 100px;
  border: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #000;
  width: 100%;
  min-width: 220px;
  max-width: 310px;
  font-size: 18px;
  line-height: 50px;
  margin: 24px auto 0;
  text-align: center;
  text-decoration: none;
}
@media all and (max-width: 600px) {
  .inflow-job-item-featured__view-details {
    line-height: 15.3vw;
    font-size: 4.8VW;
    margin: 6.4VW auto 0;
  }
}

/** Inflow Job Item - Multiple Listings Layout **/
.inflow-job-multiple {
  width: 550px;
  height: 72px;
  margin: 20px auto;
  border: 1px solid #000000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  font-family: Roboto;
}
@media all and (max-width: 600px) {
  .inflow-job-multiple {
    width: 92vw;
    height: 19.2vw;
    margin: 2.4vw auto;
  }
}
.inflow-job-multiple .inner {
  padding: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
}
@media all and (max-width: 600px) {
  .inflow-job-multiple .inner {
    padding: 0;
  }
}
.inflow-job-multiple__logo-holder {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 60px;
  height: 60px;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
  justify-self: center;
  -ms-flex-item-align: center;
      align-self: center;
}
@media all and (max-width: 600px) {
  .inflow-job-multiple__logo-holder {
    width: 12.8vw;
    height: 12.8vw;
  }
}
.inflow-job-multiple__logo-holder img {
  width: 100%;
}
@media all and (max-width: 600px) {
  .inflow-job-multiple__info-holder {
    width: 72vw;
    padding-right: 2.4vw;
    padding-left: 4.8vw;
  }
}
.inflow-job-multiple__info-holder::before {
  content: "";
}
.inflow-job-multiple__job-title {
  font-size: 17px;
  font-weight: 500;
  clear: both;
  width: 100%;
  color: #000000;
  font-family: Roboto;
  margin-bottom: 0.25em;
  margin-top: 0;
}
@media all and (max-width: 600px) {
  .inflow-job-multiple__job-title {
    font-size: 4.267vw;
    overflow: hidden;
    text-overflow: ellipsis;
    /*white-space: nowrap;*/
  }
}
.inflow-job-multiple__job-title::after {
  content: "";
}
@media all and (max-width: 600px) {
  .inflow-job-multiple__job-title::after {
    font-size: 4vw;
  }
}
.inflow-job-multiple__company {
  background: url(img/building-icon.svg) no-repeat 2% 1px;
  color: #373737;
  font-size: 15px;
  line-height: 130%;
  margin-bottom: 0;
  background-size: auto 1em !important;
  padding-left: 1.25em;
  display: inline-block;
  vertical-align: top;
}
@media all and (max-width: 600px) {
  .inflow-job-multiple__company {
    font-size: 3.467vw;
    max-width: 50%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.inflow-job-multiple__location {
  background: url(img/zip-icon-black.svg) 2% 1px no-repeat;
  color: #373737;
  font-size: 15px;
  line-height: 130%;
  margin-bottom: 0;
  background-size: auto 1em !important;
  padding-left: 1.25em;
  margin-left: 0.5em;
  display: inline-block;
  vertical-align: top;
}
@media all and (max-width: 600px) {
  .inflow-job-multiple__location {
    background-position: -1% center;
    font-size: 3.467vw;
  }
}

.blog-job-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Roboto", sans-serif;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #ECECEC;
  margin: 10px 0;
  position: relative;
  padding: 10px;
  text-decoration: none;
}
@media all and (max-width: 900px) {
  .blog-job-item {
    padding: 1.1111111111VW 2.2222222222VW;
    margin: 1.1111111111VW;
  }
}
@media all and (max-width: 600px) {
  .blog-job-item {
    padding: 2.415459VW 2.415459VW;
  }
}
.blog-job-item > div {
  -ms-flex-item-align: center;
      align-self: center;
}
.blog-job-item__img {
  width: 60px;
  position: relative;
  left: -1%;
}
@media all and (max-width: 900px) {
  .blog-job-item__img {
    width: 6.6666666667VW;
  }
}
@media all and (max-width: 600px) {
  .blog-job-item__img {
    width: 14.4927536232VW;
  }
}
.blog-job-item__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 67%;
  max-width: 500px;
}
@media all and (max-width: 900px) {
  .blog-job-item__details {
    width: 34.555556VW;
  }
}
@media all and (max-width: 600px) {
  .blog-job-item__details {
    width: 60.38647343VW;
    position: relative;
    left: 2.4154589372VW;
  }
}
.blog-job-item__title {
  color: #0030AD;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
}
@media all and (max-width: 900px) {
  .blog-job-item__title {
    font-size: 2.2222222222VW;
  }
}
@media all and (max-width: 600px) {
  .blog-job-item__title {
    font-size: 3.8647342995VW;
  }
}
.blog-job-item__sub-text {
  padding: 10px 0px 10px;
  color: #373737;
  font-size: 12px;
}
@media all and (max-width: 900px) {
  .blog-job-item__sub-text {
    font-size: 1.3333333333VW;
  }
}
@media all and (max-width: 600px) {
  .blog-job-item__sub-text {
    padding: 1.2077294686VW 0 0;
    font-size: 2.8985507246VW;
  }
}
.blog-job-item__company img {
  width: 10px;
  position: relative;
  top: -2px;
}
.blog-job-item__location img {
  width: 16px;
  position: relative;
  top: -2px;
}
.blog-job-item__date {
  background: rgba(0, 240, 192, 0.3);
  padding: 5px 10px;
  margin-left: 5px;
  border-radius: 5px;
  color: #00735C;
  text-transform: capitalize;
}
@media all and (max-width: 900px) {
  .blog-job-item__date {
    padding: 0.364734VW 0.811111VW;
  }
}
@media all and (max-width: 600px) {
  .blog-job-item__date {
    position: relative;
    display: block;
    margin-top: 1.2077294686VW;
    margin-left: 0.4830917874VW;
    width: 22.3961352657VW;
    padding: 0.7246376812VW 1.2077294686VW;
    font-size: 2.8985507246VW;
  }
}
.blog-job-item__description {
  max-width: 450px;
}
.blog-job-item__description p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #959595;
  line-height: 130%;
  font-size: 12px;
}
@media all and (max-width: 900px) {
  .blog-job-item__description p {
    font-size: 1.3333333333VW;
  }
}
@media all and (max-width: 600px) {
  .blog-job-item__description {
    display: none;
  }
}
.blog-job-item__btn {
  position: relative;
  left: 3%;
}
.blog-job-item__btn a {
  text-decoration: none;
}
.blog-job-item__btn button {
  display: block;
  background: #FF755C;
  padding: 12px 20px;
  border-radius: 15px;
  border: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #000;
  min-width: 120px;
  font-size: 13px;
}
@media all and (max-width: 900px) {
  .blog-job-item__btn button {
    padding: 1.5625VW 2.6041666667VW;
    font-size: 1.6927083333VW;
    min-width: 13.3333333333VW;
  }
}
.blog-job-item__btn button::before {
  content: "View Job";
}
@media all and (max-width: 600px) {
  .blog-job-item__btn button::before {
    content: "";
  }
}
@media all and (max-width: 600px) {
  .blog-job-item__btn button {
    width: 9.454106VW;
    height: 9.454106VW;
    padding: 2.698551VW;
    border-radius: 100%;
    min-width: auto;
  }
}
.blog-job-item__btn button img {
  display: none;
}
@media all and (max-width: 600px) {
  .blog-job-item__btn button img {
    display: block;
  }
}

.side-bar {
  width: 30%;
  max-width: 300px;
  position: relative;
  margin: 0% 2% 0 5%;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  top: 50px;
}
.side-bar__listing {
  /* margin-bottom: 7%;*/
}
@media all and (max-width: 600px) {
  .side-bar {
    width: 90%;
    max-width: 100%;
    margin: auto;
    top: 0;
  }
}
.side-bar__listing-title {
  text-align: center;
  margin-bottom: 10px;
}
.side-bar__listing-title h3 {
  font-size: 21px;
  color: #373737;
  margin: 8px auto;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
}
@media all and (max-width: 900px) {
  .side-bar__listing-title h3 {
    font-size: 2.3333333333VW;
  }
}
@media all and (max-width: 600px) {
  .side-bar__listing-title h3 {
    font-size: 5.0724637681VW;
  }
}
.side-bar__listing-title span {
  font-size: 13px;
  color: #959595;
  font-style: italic;
}
@media all and (max-width: 600px) {
  .side-bar__listing-title span {
    font-size: 3.1400966184VW;
  }
}
.side-bar-item {
  height: 60px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  border-radius: 5px;
  margin-bottom: 10px;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  padding: 0 10px;
  width: 100%;
  text-transform: capitalize;
  text-decoration: none;
  background: #fff;
  color: #0030ad;
  border: 1px solid #0030ad;
}
.side-bar-item:hover {
  color: #0030ad;
}
@media all and (max-width: 900px) {
  .side-bar-item {
    height: 5.6125VW;
  }
}
@media all and (max-width: 600px) {
  .side-bar-item {
    height: 16VW;
  }
}
.side-bar-item div {
  -ms-flex-item-align: center;
      align-self: center;
}
.side-bar-item a {
  text-decoration: none;
  color: #0030ad;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.side-bar-item__title {
  font-size: 16px;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media all and (max-width: 900px) {
  .side-bar-item__title {
    font-size: 1.5vw;
  }
}
@media all and (max-width: 600px) {
  .side-bar-item__title {
    font-size: 4.2666666667VW;
    width: 75VW;
  }
}
.side-bar-item__img {
  width: 40px;
  margin-right: 10px;
  display: none;
}
@media all and (max-width: 600px) {
  .side-bar-item__img {
    width: 10.8VW;
    margin-right: 2.4VW;
  }
}

@media all and (max-width: 600px) {
  .side-bar-item__btn {
    width: 3.666667VW;
  }
}
.side-bar-item__btn img {
  display: none;
}

.side-bar__listing--2 {
  background: #F7F7F7;
  padding: 20px 10px 10px;
}
.side-bar__listing--2 .side-bar__listing-title h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
@media all and (max-width: 900px) {
  .side-bar__listing--2 .side-bar__listing-title h3 {
    font-size: 2.3333333333VW;
    margin-bottom: 1.1111111111VW;
  }
}
@media all and (max-width: 600px) {
  .side-bar__listing--2 .side-bar__listing-title h3 {
    font-size: 5.6VW;
  }
}
.side-bar__listing--2 .side-bar__listing-title span {
  display: inline-block;
  padding-top: 10px;
  border-top: 1px solid #00DBAF;
}
.side-bar__listing--2 .side-bar-item {
  background: none;
  color: #000000;
  height: 40px;
}
@media all and (max-width: 600px) {
  .side-bar__listing--2 .side-bar-item {
    height: 9.6618357488VW;
  }
}
.side-bar__listing--2 .side-bar-item__title {
  font-size: 14px;
  line-height: 120%;
}
@media all and (max-width: 600px) {
  .side-bar__listing--2 .side-bar-item__title {
    font-size: 3.3816425121VW;
  }
}

.side-bar-v2 {
  width: 40%;
  max-width: 360px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  position: relative;
  margin: 0% 2% 0 5%;
  padding-bottom: 10px;
  font-family: "Roboto", sans-serif;
  color: #fff;
  font-size: 16px;
  top: 50px;
  border-radius: 24px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.35);
}
.side-bar-v2__listing {
  /* margin-bottom: 7%;*/
}
@media all and (max-width: 600px) {
  .side-bar-v2 {
    width: 90%;
    max-width: 100%;
    margin: auto;
    border-radius: 6.4vw;
  }
}
.side-bar-v2__listing-title h3 {
  font-size: 18px;
  line-height: 1em;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  padding-left: 30%;
  text-transform: uppercase;
}
@media all and (max-width: 900px) {
  .side-bar-v2__listing-title h3 {
    font-size: 2.3333333333VW;
  }
}
@media all and (max-width: 600px) {
  .side-bar-v2__listing-title h3 {
    font-size: 4.8VW;
  }
}
.side-bar-v2__listing-title span {
  font-size: 13px;
  font-style: italic;
}
@media all and (max-width: 600px) {
  .side-bar-v2__listing-title span {
    font-size: 3.1400966184VW;
  }
}
.side-bar-v2-item {
  width: 92%;
  height: 70px;
  background: #f8f8f8;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-radius: 10px;
  margin: 0 auto 10px;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  padding: 0;
  text-transform: capitalize;
  text-decoration: none;
  color: #373737;
  overflow: hidden;
  border: 1px solid #DADADA;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1), inset 0px 0px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1), inset 0px 0px 20px rgba(0, 0, 0, 0.05);
}
.side-bar-v2-item:hover {
  color: #373737;
}
@media all and (max-width: 900px) {
  .side-bar-v2-item {
    height: 5.6125VW;
  }
}
@media all and (max-width: 600px) {
  .side-bar-v2-item {
    height: 18.67VW;
  }
}
.side-bar-v2-item div {
  -ms-flex-item-align: center;
      align-self: center;
}
.side-bar-v2-item a {
  text-decoration: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.side-bar-v2-item__title {
  font-size: 14px;
  font-weight: 700;
  width: 56%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #373737;
}
@media all and (max-width: 900px) {
  .side-bar-v2-item__title {
    font-size: 1.5vw;
  }
}
@media all and (max-width: 600px) {
  .side-bar-v2-item__title {
    font-size: 3.733VW;
    width: 48VW;
  }
}
.side-bar-v2-item__title span {
  font-size: 12px;
  font-weight: 400;
  display: block;
}
@media all and (max-width: 600px) {
  .side-bar-v2-item__title span {
    font-size: 3.2VW;
  }
}
.side-bar-v2-item__img {
  width: 50px;
  height: 100%;
  background-color: #cacaca;
  margin-right: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
@media all and (max-width: 600px) {
  .side-bar-v2-item__img {
    width: 13.33VW;
    margin-right: 6.4VW;
  }
}
.side-bar-v2-item__img img {
  height: 23px;
  width: auto;
}
@media all and (max-width: 600px) {
  .side-bar-v2-item__img img {
    height: 8vw;
  }
}

@media all and (max-width: 600px) {
  .side-bar-v2-item__btn {
    width: 12vw;
    height: 12vw;
  }
}
.side-bar-v2-item__btn img {
  opacity: 0;
}

/** _survey.scss **/
.survey-header {
  background: #135EC7;
  margin-bottom: 4vw;
  height: 24vw;
}

.survey-header__sub-header {
  padding: 0px 0px;
  height: 9.6vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-family: "Roboto", sans-serif;
  position: relative;
  font-size: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.survey-header__reward {
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  font-size: 2.93333vw;
  line-height: 4.8vw;
  position: relative;
  left: 0px;
  width: 100%;
  margin-left: 0px;
  top: 0px;
  height: 4.8vw;
  margin-top: 0px;
}

#bottom-hf-header {
  font-family: "Poppins", sans-serif;
  margin: auto;
  width: 74%;
  height: 9.6vw;
  top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}


#survey-tab.survey-header__tab--survey {
  background: #00419C;
  display: inline-block;
  height: 9.6vw;
  border-radius: 9.6vw;
  width: 41.6vw;
}

#survey-tab:before {
  display: block;
  content: "Take Survey!";
}

#bottom-hf-header > div:after {
  width: 4vw;
  height: 1.06667vw;
  right: -5.06667vw;
  margin-top: -0.53333vw;
}

#bottom-hf-header > div:after {
  content: "";
  display: block;
  border-radius: 12px;
  background: #00419C;
  position: absolute;
  top: 50%;
  width: 4vw;
  height: 1.06667vw;
  right: -5.06667vw;
  margin-top: -0.53333vw;
}



#bottom-hf-header > div#reward-tab--desktop {
  display: none;
}

@media (min-width: 768px) {
  .survey-header {
    margin-bottom: 25px;
    height: 155px;
  }

  .survey-header__sub-header {
    padding: 0px 45px;
    height: 66px;
  }

  .survey-header__reward {
    font-size: 16px;
    line-height: 26px;
    position: absolute;
    left: 50%;
    width: 480px;
    margin-left: -240px;
    top: 50%;
    height: 26px;
    margin-top: -13px;
  }

  #bottom-hf-header {
    margin: auto;
    width: 650px;
    height: 110px;
    top: -18px;
  }

  #bottom-hf-header > div {
    font-size: 26px;
    line-height: 64px;
    min-width: 64px;
    height: 64px;
    background-size: 64px 64px;
  }

  #survey-tab.survey-header__tab--survey {
    background: #00419C;
    height: 64px;
    border-radius: 64px;
    display: inline-block;
    width: 398px;
    position: relative;
  }

  #survey-tab:before {
    display: block;
    content: "Take our brief survey!";
  }

  #bottom-hf-header > div:after {
    content: "";
    display: block;
    width: 28px;
    height: 8px;
    border-radius: 12px;
    background: #00419C;
    position: absolute;
    right: -33px;
    top: 50%;
    margin-top: -4px;
  }

  #bottom-hf-header > div#reward-tab {
    display: none;
  }

  #bottom-hf-header > div#reward-tab--desktop {
    width: 95px;
    height: 95px;
    overflow: hidden;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #fff;
  }
  #bottom-hf-header > div#reward-tab--desktop .survey-header__reward-img {
    max-width: 65%;
    max-height: 65%;
    margin: auto;
  }
}
/*===============
- Survey
===============*/
#surveyContainer {
  width: 95%;
  margin: 0 auto;
  /*===============
  - QUESTION
  ===============*/
  /*===============
  - RADIO & CHECKBOX
  ===============*/
}
#surveyContainer span.circle {
  display: none;
}
#surveyContainer form {
  width: 100%;
}
#surveyContainer fieldset {
  border: none;
  text-align: center;
}
#surveyContainer .sv_main {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  background-color: #fff;
}
#surveyContainer .sv_main .sv_container {
  color: #323937;
}
#surveyContainer .sv_main .sv_body {
  border-top: none;
  padding: 0 1em 1.6428em 1em;
}
#surveyContainer .sv_main .sv_p_root > .sv_row {
  border-bottom: none;
}
#surveyContainer .sv_main .sv_container .sv_body .sv_p_root .sv_q {
  padding: 0;
  text-align: center;
  background: #fff;
}
#surveyContainer .sv_main .sv_container .sv_body .sv_p_root .sv_q_title,
#surveyContainer .custom-question__text--1 {
  text-align: center;
  font-size: 21px;
  font-weight: 700;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 0;
  font-family: "Open Sans", sans-serif !important;
  margin: auto;
  max-width: 830px;
}
#surveyContainer .custom-question__text--2 {
  font-size: 16px;
  line-height: 140%;
  font-weight: 400;
  margin-bottom: 1rem;
}
#surveyContainer .custom-question__text--3 {
  font-size: 16px;
  line-height: 140%;
  font-weight: 400;
}
#surveyContainer .custom-question__text--3 span {
  display: block;
  margin-bottom: 0.5em;
}
@media all and (max-width: 600px) {
  #surveyContainer .custom-question__text--3 {
    font-size: 3.373vw;
    line-height: 130%;
  }
}
#surveyContainer .custom-question__text--3 .show-lb {
  display: block;
  cursor: pointer;
  font-weight: 600;
  text-decoration: underline;
  margin-bottom: 0.5em;
}
#surveyContainer .custom-question__terms {
  font-size: 15px;
  color: #000000;
  line-height: 130%;
  font-weight: 400;
}
#surveyContainer .custom-question__terms a {
  font-size: inherit;
  color: inherit;
  line-height: 130%;
  font-weight: bold;
}
@media all and (max-width: 600px) {
  #surveyContainer .custom-question__terms {
    font-size: 4vw;
  }
}
#surveyContainer .custom-question__logo {
  width: 290px;
  margin: auto;
}
#surveyContainer .sv_main .sv_container .sv_body .sv_p_root .sv_q_description {
  margin: 0 0 10px;
  /*margin-bottom: 10px;
  background-color: #f6f6f6;
  text-align: justify;
  display: block;
  width: 100%;
  max-width: 500px;
  margin: auto;
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #a8a8a8;
  padding: 18px 20px 50px;
  line-height: 150%;
  letter-spacing: 0;
  border-radius: 5px;*/
}
#surveyContainer .sv_q_checkbox,
#surveyContainer .sv_q_radiogroup {
  padding-right: 0;
  width: 100%;
  max-width: 328px;
  margin: 0 auto;
}
#surveyContainer .sv_q_checkbox_label input,
#surveyContainer .sv_q_radiogroup_label input {
  display: none !important;
}
#surveyContainer .sv_q_checkbox.checked > .sv_q_checkbox_label,
#surveyContainer .sv_q_radiogroup.checked > .sv_q_radiogroup_label {
  color: #0030AD;
  background-color: #BEFBFF;
}
@media (hover: hover) {
  #surveyContainer .sv_q_radiogroup_label:hover,
#surveyContainer .sv_q_checkbox_label:hover {
    color: #fff;
    background-color: #1e96d5;
  }
}
#surveyContainer .sv_q_checkbox_label,
#surveyContainer .sv_q_radiogroup_label {
  border-radius: 80px;
  background-color: #DFE8FF;
  color: #0030AD;
  margin: 5px;
  font-family: "Roboto", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px;
  line-height: 20px;
  height: auto;
  min-height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  text-transform: none;
  position: relative;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
}
#surveyContainer div[name=quesion11] .sv_q_title, #surveyContainer div[name=question12] .sv_q_title, #surveyContainer div[name=question8] .sv_q_title {
  display: none !important;
}
@media (min-width: 768px) {
  #surveyContainer {
    /*.sv_q_checkbox_label,
    .sv_q_radiogroup_label {
      min-height: 50px;
      font-size: 17px;
    }*/
  }
  #surveyContainer .sv_main .sv_container .sv_body .sv_p_root .sv_q_title,
#surveyContainer .custom-question__text--1 {
    font-size: 30px;
    padding: 10px 0 20px 0;
  }
}

/*===============
 CUSTOM OVERLAY
 ===============*/
.custom-qs-overlay {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: transparent;
  display: none;
}
.custom-qs-overlay__jobs-darkbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1e1e1e;
  opacity: 0.55;
}
.custom-qs-overlay__jobs-whitebox {
  font-size: 11px;
  font-weight: normal;
  line-height: 16px;
  text-align: left;
  width: 600px;
  position: relative;
  margin: auto;
  background: white;
  color: #525252;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  height: auto;
  border-radius: 5px;
  overflow: hidden;
  left: 100vw;
  top: 25%;
}
@media all and (max-width: 600px) {
  .custom-qs-overlay__jobs-whitebox {
    width: 95%;
    top: 8vw;
  }
}
.custom-qs-overlay__jobs-whitebox .lb-content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
  overflow: auto;
  font-size: 14px;
  line-height: 120%;
  text-align: justify;
}

/*===============
  SKIP BUTTON
  ===============*/
.sur_skip_question_btn {
  text-align: center;
  font-weight: 700;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  padding: 10px 30px;
  cursor: pointer;
  font-size: 17px;
  color: #121212;
  margin-top: 1em;
}

/*===============
  SPONSORED TAG
  ===============*/
.jobs-survey-sponsored {
  margin: 0 auto 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  padding: 0.5em 2em;
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  background-color: #E1E8FD;
  border-radius: 50px;
}
@media all and (max-width: 600px) {
  .jobs-survey-sponsored {
    font-size: 4vw;
  }
}

#tcpa_outer {
  height: auto;
  overflow: hidden;
  opacity: 1;
  -webkit-transition: 0.2s all linear;
  transition: 0.2s all linear;
  -webkit-box-sizing: content-box !important;
          box-sizing: content-box !important;
  margin-top: 35px;
}

#tcpa_inner {
  padding-bottom: 40px;
  -webkit-box-sizing: content-box !important;
          box-sizing: content-box !important;
}

.stp1-btn, .stp2-btn {
  position: relative;
  color: #0030AD;
  background-color: #DFE8FF;
  width: 100%;
  max-width: 328px;
  height: 50px;
  line-height: 50px;
  font-size: 17px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  text-align: center;
  margin: 0 auto 10px;
  border-radius: 20px;
  -webkit-transition: all 0 linear;
  transition: all 0 linear;
  cursor: pointer;
}


.stp2-btn ul {
  width: 90%;
  margin: auto;
  cursor: pointer;
  position: absolute;
  left: 5%;
}

.stp2-btn ul.btm {
  bottom: 0;
}

.stp2-btn ul, .stp2-btn li {
  padding: 0;
  margin: 0;
  list-style: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.stp2-btn ul li {
  height: 50px;
}

.stp2-btn ul li:nth-child(2) {
  border-top: 1px solid #a3e1e6;
  border-bottom: 1px solid #a3e1e6;
}

.tcpa {
  background-color: #f6f6f6;
  text-align: justify;
  display: block;
  width: 100%;
  max-width: 500px;
  margin: auto;
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #a8a8a8;
  padding: 18px 20px 50px;
  line-height: 150%;
  letter-spacing: 0;
  border-radius: 5px;
}

.v_number {
  font-style: italic;
  font-weight: bold;
}

#inline_skip {
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
  color: #0030AD;
}

div.sbmt_btn {
  width: 100%;
  max-width: 328px;
  height: 50px;
  margin: auto;
  margin-top: -35px;
  margin-bottom: 20px;
  text-align: center;
  border-radius: 20px;
  color: #0030AD;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  position: relative;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  background-color: #DFE8FF;
  font-family: "Roboto", sans-serif;
}
div.sbmt_btn:hover {
  color: #fff;
  background-color: #1e96d5;
}

.sbmt_btn input {
  display: none;
}

.sbmt_btn label {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 100;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 17px;
  font-family: "Roboto", sans-serif;
}

.ft-loading {
  border: 10px solid #f3f3f3;
  /* Light grey */
  border-top: 10px solid #054D92;
  /* Blue */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  position: relative;
  left: 0;
  right: 0;
  margin: 20px auto;
  top: 0;
  bottom: 0;
}
.ft-loading .serp-main-listings__title {
  opacity: 0;
}
.ft-loading .serp-main-listings a {
  opacity: 0;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/** Inflow Job Item - Single Listing Layout **/
.serpcamp-job-item-featured {
  font-family: "Roboto", sans-serif;
  position: relative;
  display: block;
  padding: 25px 20px;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 584px;
  margin: auto;
}
@media all and (max-width: 900px) {
  .serpcamp-job-item-featured {
    padding: 15px 20px;
    margin: 10px auto;
  }
}
@media all and (max-width: 600px) {
  .serpcamp-job-item-featured {
    width: 80VW;
    padding: 4vw 5.6vw;
    margin: 4vw auto;
  }
}
.serpcamp-job-item-featured > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media all and (max-width: 600px) {
  .serpcamp-job-item-featured > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: auto;
    margin-top: -14vw;
  }
}
.serpcamp-job-item-featured__img {
  width: 76px;
  min-height: 76px;
  position: relative;
  top: 0;
  left: 0%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-self: center;
}
@media all and (max-width: 900px) {
  .serpcamp-job-item-featured__img {
    width: 75px;
    min-height: 75px;
  }
}
@media all and (max-width: 600px) {
  .serpcamp-job-item-featured__img {
    width: 20vw;
    min-height: 20VW;
    margin-bottom: 4vw;
  }
}
.serpcamp-job-item-featured__details {
  -ms-flex-item-align: center;
      align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 44%;
  text-align: left;
  max-width: 500px;
}
@media all and (max-width: 600px) {
  .serpcamp-job-item-featured__details {
    width: 64VW;
    position: relative;
    text-align: center;
  }
}
.serpcamp-job-item-featured__title {
  color: #141414;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}
@media all and (max-width: 900px) {
  .serpcamp-job-item-featured__title {
    font-size: 2.3333333333VW;
  }
}
@media all and (max-width: 600px) {
  .serpcamp-job-item-featured__title {
    font-size: 5.33VW;
    margin-bottom: 2vw;
  }
}
.serpcamp-job-item-featured__sub-text {
  padding: 10px 0px 0;
  color: #373737;
  font-size: 11px;
  line-height: 150%;
  font-family: "Roboto", sans-serif;
}
@media all and (max-width: 900px) {
  .serpcamp-job-item-featured__sub-text {
    font-size: 1.6666666667VW;
  }
}
@media all and (max-width: 600px) {
  .serpcamp-job-item-featured__sub-text {
    padding: 1.2077294686VW 0 0;
    font-size: 2.933VW;
  }
}
.serpcamp-job-item-featured__sub-text span {
  display: block;
}
.serpcamp-job-item-featured__company {
  font-size: 16px;
}
@media all and (max-width: 600px) {
  .serpcamp-job-item-featured__company {
    font-size: 4.267vw;
  }
}
.serpcamp-job-item-featured__company img {
  width: auto;
  height: 1em;
  vertical-align: midd;
}
.serpcamp-job-item-featured__cta {
  -ms-flex-item-align: center;
      align-self: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.serpcamp-job-item-featured__date {
  display: block;
  color: #959595;
  font-size: 14px;
  margin-top: 0.5em;
}
.serpcamp-job-item-featured__view-details {
  display: block;
  background: #2557A7;
  padding: 0;
  border-radius: 12px;
  border: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #ffffff;
  width: 100%;
  min-width: 200px;
  max-width: 310px;
  font-size: 18px;
  line-height: 50px;
  margin: 0 auto 0;
  text-align: center;
  text-decoration: none;
}
@media all and (max-width: 600px) {
  .serpcamp-job-item-featured__view-details {
    width: 68vw;
    line-height: 15.3vw;
    font-size: 4.8VW;
    margin: 4VW auto 0;
  }
}
.serpcamp-job-item-featured__view-details img {
  width: auto;
  height: 1em;
  vertical-align: middle;
}

#sponsored-listing-template {
  font-family: "Roboto", sans-serif;
}
#sponsored-listing-template .sponsored-ad-slot {
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 7px rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  height: 90px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 10px 0;
  position: relative;
  padding: 10px;
  text-decoration: none;
  overflow: hidden;
}
@media all and (max-width: 900px) {
  #sponsored-listing-template .sponsored-ad-slot {
    padding: 1.1111111111VW 2.2222222222VW;
    margin: 1.1111111111VW auto;
  }
}
@media all and (max-width: 600px) {
  #sponsored-listing-template .sponsored-ad-slot {
    padding: 2.415459VW 2.415459VW;
    margin: 1.1111111111VW;
    height: 96px;
    width: 97%;
  }
}
#sponsored-listing-template .sponsored-ad-slot > div {
  -ms-flex-item-align: center;
      align-self: center;
}
#sponsored-listing-template .sponsored-ad-slot__ribbon {
  display: block;
  top: 30%;
  height: 1.5rem;
  width: 9.656rem;
  -webkit-transform: translate(-38px, -8px) rotate(-45deg);
          transform: translate(-38px, -8px) rotate(-45deg);
  background-color: #ffca00;
  color: #fff;
  text-align: center;
  position: relative;
  margin-left: 0%;
  padding-top: 5px;
  position: absolute;
  left: -1%;
}
@media all and (max-width: 600px) {
  #sponsored-listing-template .sponsored-ad-slot__ribbon {
    margin-top: -0.071795VW;
    height: 4.410256VW;
    width: 29.897436VW;
    padding-top: 0.882051VW;
    /* margin-left: -1.864103VW; */
    font-size: 2.1vw;
    left: 1%;
  }
}
#sponsored-listing-template .sponsored-ad-slot__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 63%;
  max-width: 500px;
  margin-left: 7%;
}
@media all and (max-width: 900px) {
  #sponsored-listing-template .sponsored-ad-slot__details {
    width: 56%;
    margin-left: 7vw;
  }
}
@media all and (max-width: 600px) {
  #sponsored-listing-template .sponsored-ad-slot__details {
    width: 60.38647343VW;
    position: relative;
    left: 2.4154589372VW;
  }
}
#sponsored-listing-template .sponsored-ad-slot__title {
  color: #0030AD;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
}
@media all and (max-width: 900px) {
  #sponsored-listing-template .sponsored-ad-slot__title {
    font-size: 2.2222222222VW;
  }
}
@media all and (max-width: 600px) {
  #sponsored-listing-template .sponsored-ad-slot__title {
    font-size: 3.8647342995VW;
  }
}
#sponsored-listing-template .sponsored-ad-slot__sub-text {
  padding: 10px 0px 10px;
  color: #373737;
  font-size: 12px;
}
@media all and (max-width: 900px) {
  #sponsored-listing-template .sponsored-ad-slot__sub-text {
    font-size: 1.3333333333VW;
  }
}
@media all and (max-width: 600px) {
  #sponsored-listing-template .sponsored-ad-slot__sub-text {
    padding: 1.2077294686VW 0 0;
    font-size: 2.8985507246VW;
  }
}
#sponsored-listing-template .sponsored-ad-slot__company img {
  width: 10px;
  position: relative;
}
#sponsored-listing-template .sponsored-ad-slot__location img {
  width: 16px;
  position: relative;
  left: 3px;
}
#sponsored-listing-template .sponsored-ad-slot__date {
  background: rgba(0, 240, 192, 0.3);
  padding: 5px 10px;
  margin-left: 5px;
  border-radius: 5px;
  color: #00735C;
  text-transform: capitalize;
}
@media all and (max-width: 900px) {
  #sponsored-listing-template .sponsored-ad-slot__date {
    padding: 0.364734VW 0.811111VW;
  }
}
@media all and (max-width: 600px) {
  #sponsored-listing-template .sponsored-ad-slot__date {
    position: relative;
    display: block;
    margin-top: 1.2077294686VW;
    margin-left: 0.4830917874VW;
    width: 32.3961352657VW;
    padding: 0.7246376812VW 1.2077294686VW;
    font-size: 2.8985507246VW;
  }
}
#sponsored-listing-template .sponsored-ad-slot__description {
  max-width: 450px;
}
#sponsored-listing-template .sponsored-ad-slot__description p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #959595;
  line-height: 130%;
  font-size: 12px;
}
@media all and (max-width: 900px) {
  #sponsored-listing-template .sponsored-ad-slot__description p {
    font-size: 1.3333333333VW;
  }
}
@media all and (max-width: 600px) {
  #sponsored-listing-template .sponsored-ad-slot__description {
    display: none;
  }
}
#sponsored-listing-template .sponsored-ad-slot__btn {
  position: relative;
  left: 0;
}
#sponsored-listing-template .sponsored-ad-slot__btn a {
  text-decoration: none;
}
#sponsored-listing-template .sponsored-ad-slot__btn button {
  display: block;
  background: #0030AD;
  padding: 13px 20px;
  border-radius: 15px;
  border: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #fff;
  min-width: 120px;
  font-size: 13px;
}
@media all and (max-width: 900px) {
  #sponsored-listing-template .sponsored-ad-slot__btn button {
    padding: 1.5625VW 2.6041666667VW;
    font-size: 1.6927083333VW;
    min-width: 13.3333333333VW;
  }
}
#sponsored-listing-template .sponsored-ad-slot__btn button::before {
  /*content: "View Job";*/
}
@media all and (max-width: 600px) {
  #sponsored-listing-template .sponsored-ad-slot__btn button::before {
    content: "";
  }
}
@media all and (max-width: 600px) {
  #sponsored-listing-template .sponsored-ad-slot__btn button {
    /*width: 9.454106VW;
    height: 9.454106VW;
    border-radius: 100%;
    min-width: auto;*/
  }
}
@media all and (max-width: 600px) {

}
#sponsored-listing-template .sponsored-ad-slot__btn button img {
  display: none;
}
@media all and (max-width: 600px) {
  #sponsored-listing-template .sponsored-ad-slot__btn button img {
    display: block;
  }
}
@media all and (max-width: 600px) {
  #sponsored-listing-template .sponsored-ad-slot__btn button span {
    display: none;
  }
}

/*** PAGES: any styles specific to individual pages will sit here. 
For example it’s not uncommon for the home page of your site to 
require page specific styles that no other page receives. ***/
.full-reg-page .header,
.reg-page .header {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.full-reg-page h1,
.reg-page h1 {
  font-family: "Roboto", Sans-serif;
  font-size: 24px;
  margin: 0 auto 70px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid #C4C4C4;
  padding: 10px 0 10px;
  background: #0030AD;
  letter-spacing: 2px;
}
@media all and (max-width: 600px) {
  .full-reg-page h1,
.reg-page h1 {
    font-size: 4VW;
    margin: 0;
    margin-bottom: 0;
    border-bottom: none;
    padding: 2.6666666667VW 0;
  }
}
.full-reg-page h2,
.reg-page h2 {
  font-family: Work Sans;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.03em;
  text-align: center;
  color: #054D92;
  margin: 10px 0 0;
}
@media all and (max-width: 600px) {
  .full-reg-page h2,
.reg-page h2 {
    font-size: 6.2801932367VW;
    line-height: 7.729468599VW;
    margin: 2.4154589372VW 0 0;
  }
}
.full-reg-page h2 img,
.reg-page h2 img {
  width: 25px;
  position: relative;
  top: 4px;
  left: 2px;
}
.full-reg-page p,
.reg-page p {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: center;
}
@media all and (max-width: 600px) {
  .full-reg-page p,
.reg-page p {
    font-size: 3.6231884058VW;
    line-height: 4.347826087VW;
  }
}
.full-reg-page .company-logo,
.reg-page .company-logo {
  width: 170px;
  margin: 50px auto 40px;
}
@media all and (max-width: 600px) {
  .full-reg-page .company-logo,
.reg-page .company-logo {
    width: 40vw;
    margin: 5.077294686VW auto 4.6618357488VW;
  }
}
.full-reg-page .company-logo img,
.reg-page .company-logo img {
  max-width: 150px;
  max-height: 90px;
  width: auto;
}
@media all and (max-width: 600px) {
  .full-reg-page .company-logo img,
.reg-page .company-logo img {
    max-width: 40vw;
    max-height: 18vw;
  }
}
.full-reg-page .company-banner,
.reg-page .company-banner {
  width: 325px;
  margin: -20px auto 20px;
}
@media all and (max-width: 600px) {
  .full-reg-page .company-banner,
.reg-page .company-banner {
    width: 85vw;
    margin: 5.6vw auto 5.6vw;
  }
}
.full-reg-page .full-banner,
.reg-page .full-banner {
  width: 325px;
  margin: -20px auto 20px;
}
@media all and (max-width: 600px) {
  .full-reg-page .full-banner,
.reg-page .full-banner {
    width: 100vw;
    margin: 0 auto 5.6vw;
  }
}
.full-reg-page .form-container,
.reg-page .form-container {
  max-width: 325px;
  width: 100%;
  margin: auto;
}
@media all and (max-width: 600px) {
  .full-reg-page .form-container,
.reg-page .form-container {
    width: 85%;
  }
}
.full-reg-page .form-container__optin-label,
.reg-page .form-container__optin-label {
  width: 95%;
  margin: 5px auto;
  display: block;
  font-size: 11px;
  line-height: 140%;
  color: #000000;
}
@media all and (max-width: 600px) {
  .full-reg-page .form-container__optin-label,
.reg-page .form-container__optin-label {
    margin: 1.2077294686VW auto;
    font-size: 2.933VW;
  }
}
.full-reg-page .form-container__optin-checkbox,
.reg-page .form-container__optin-checkbox {
  position: relative;
}
.full-reg-page .form-container a,
.reg-page .form-container a {
  display: block;
  color: #0030AD;
  font-size: inherit;
}
.full-reg-page .form-container__field-wrapper,
.reg-page .form-container__field-wrapper {
  margin: 10px auto;
}
@media all and (max-width: 600px) {
  .full-reg-page .form-container__field-wrapper,
.reg-page .form-container__field-wrapper {
    margin: 2.4154589372VW auto;
  }
}
.full-reg-page .form-container__field-wrapper .input-icon,
.reg-page .form-container__field-wrapper .input-icon {
  position: absolute;
  display: block;
  width: 45px;
  height: 57px;
  z-index: 9999;
  border-radius: 5px;
  pointer-events: none;
}
@media all and (max-width: 600px) {
  .full-reg-page .form-container__field-wrapper .input-icon,
.reg-page .form-container__field-wrapper .input-icon {
    background-size: 10.768116VW;
    height: 13.768115942VW;
    width: 12VW;
  }
}

.full-reg-page .form-container .ft-field-wrapper-flex,
.reg-page .form-container .ft-field-wrapper-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 350px;
}
.full-reg-page .form-container .ft-field-wrapper-flex-dob,
.reg-page .form-container .ft-field-wrapper-flex-dob {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: #0030AD solid 1px;
  border-radius: 5px;
  padding-left: 45px;
  position: relative;
  background: none !important;
}
.full-reg-page .form-container .ft-field-wrapper-flex-dob::before,


@media all and (max-width: 600px) {
  .full-reg-page .form-container .ft-field-wrapper-flex-dob,
.reg-page .form-container .ft-field-wrapper-flex-dob {
    padding-left: 12vw;
  }
}
.full-reg-page .form-container .ft-dob_month,
.full-reg-page .form-container .ft-dob_day,
.full-reg-page .form-container .ft-dob_year,
.reg-page .form-container .ft-dob_month,
.reg-page .form-container .ft-dob_day,
.reg-page .form-container .ft-dob_year {
  width: 33.3%;
  -moz-text-align-last: center;
       text-align-last: center;
  position: relative;
}
.full-reg-page .form-container .ft-dob_month label,
.full-reg-page .form-container .ft-dob_day label,
.full-reg-page .form-container .ft-dob_year label,
.reg-page .form-container .ft-dob_month label,
.reg-page .form-container .ft-dob_day label,
.reg-page .form-container .ft-dob_year label {
  position: absolute;
  color: #959595;
  text-transform: uppercase;
  top: 19%;
  left: 10%;
  font-size: 9px;
}
@media all and (max-width: 600px) {
  .full-reg-page .form-container .ft-dob_month label,
.full-reg-page .form-container .ft-dob_day label,
.full-reg-page .form-container .ft-dob_year label,
.reg-page .form-container .ft-dob_month label,
.reg-page .form-container .ft-dob_day label,
.reg-page .form-container .ft-dob_year label {
    font-size: 2.1739130435VW;
  }
}
.full-reg-page .form-container .ft-dob_month select,
.reg-page .form-container .ft-dob_month select {
  position: relative;
}
.full-reg-page .form-container .ft-date-of-birth-label,
.reg-page .form-container .ft-date-of-birth-label {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.full-reg-page .form-container .consent-border,
.reg-page .form-container .consent-border {
  border: 1px solid #00F0C0;
  padding: 10px 10px 40px;
  margin: 0;
  width: 100%;
  height: auto;
  margin-bottom: 60px;
  position: relative;
}
@media all and (max-width: 600px) {
  .full-reg-page .form-container .consent-border,
.reg-page .form-container .consent-border {
    padding: 2.4154589372VW 2.4154589372VW 9.6618357488VW;
    margin-bottom: 14.4927536232VW;
  }
}
.full-reg-page .form-container .optin-agree-box,
.reg-page .form-container .optin-agree-box {
  bottom: -35px;
  margin: auto;
  position: absolute;
  display: block;
  padding: 15px;
  width: 140px;
  border-radius: 10px;
  background: #00F0C0;
  color: #000;
  font-size: 18px;
  margin: 10px auto;
  text-align: center;
  left: 0;
  right: 0;
}
@media all and (max-width: 600px) {
  .full-reg-page .form-container .optin-agree-box,
.reg-page .form-container .optin-agree-box {
    bottom: -8.4541062802VW;
    padding: 3.6231884058VW;
    width: 33.8164251208VW;
    border-radius: 2.4154589372VW;
    font-size: 4.347826087VW;
    margin: 2.4154589372VW auto;
  }
}
.full-reg-page input[type=text],
.full-reg-page input[type=email],
.full-reg-page input[type=tel],
.reg-page input[type=text],
.reg-page input[type=email],
.reg-page input[type=tel] {
  border: #0030AD solid 1px;
  border-radius: 5px;
  display: block;
  max-width: 325px;
  width: 100%;
  height: 57px;
  font-size: 17px;
  /*margin: 10px auto;*/
  padding: 0 20px;
  padding-left: 60px;
}
@media all and (max-width: 600px) {
  .full-reg-page input[type=text],
.full-reg-page input[type=email],
.full-reg-page input[type=tel],
.reg-page input[type=text],
.reg-page input[type=email],
.reg-page input[type=tel] {
    height: 13.768115942VW;
    /*margin: 2.4154589371980677VW auto;*/
    padding: 0 4.8309178744VW;
    padding-left: 14.4927536232VW;
    font-size: 4.1062801932VW;
  }
}
.full-reg-page select,
.reg-page select {
  border: none;
  border-radius: 5px;
  display: block;
  height: 57px;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: 70px;
  font-size: 17px;
  background: transparent;
  direction: rtl;
  text-indent: 40%;
}
@media all and (max-width: 600px) {
  .full-reg-page select,
.reg-page select {
    border-radius: 1.2077294686VW;
    height: 13.768115942VW;
    line-height: 16.9082125604VW;
    font-size: 4.1062801932VW;
  }
}
.full-reg-page .submitPhone,
.reg-page .submitPhone {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.full-reg-page .cont-btn,
.reg-page .cont-btn {
  font-weight: 600;
}

@-moz-document url-prefix() {
  .full-reg-page .form-container .ft-dob_month select, .reg-page .form-container .ft-dob_month select {
    text-indent: 15%;
  }
}
/* 1792x828px at 326ppi iPhone 11 */
@media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) {
  /* .ft-dob_month {
  	select {
  			text-indent: 57%!important;
  	}
  }

  .ft-dob_day {
  	select {
  			text-indent: 41%!important;
  	}
  }
  .ft-dob_year {
  	select {
  			text-indent: 41%!important;
  	}
  }
  */
}
/* 2436x1125px at 458ppi - iPhone 11 Pro */
@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
  /*
  .ft-dob_month {
  	select {
  			text-indent: 57%!important;
  	}
  }

  .ft-dob_day {
  	select {
  			text-indent: 41%!important;
  	}
  }
  .ft-dob_year {
  	select {
  			text-indent: 41%!important;
  	}
  }
    */
}
.partial-reg-page .header,
.landing-page .header {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.partial-reg-page h1,
.landing-page h1 {
  font-family: "Roboto", Sans-serif;
  font-size: 24px;
  margin: 0px auto 70px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid #C4C4C4;
  padding: 10px 0 10px;
  letter-spacing: 2px;
  background: #0030AD;
}
@media all and (max-width: 600px) {
  .partial-reg-page h1,
.landing-page h1 {
    font-size: 4VW;
    margin: 0;
    margin-bottom: 4vw;
    border-bottom: none;
    padding: 2.6666666667VW 0;
  }
}
.partial-reg-page h2,
.landing-page h2 {
  font-size: 36px;
  font-weight: bold;
  margin: 10px auto;
  color: #054D92;
}
@media all and (max-width: 600px) {
  .partial-reg-page h2,
.landing-page h2 {
    font-size: 8.6956521739VW;
    margin: 2.4VW auto;
  }
}
.partial-reg-page .company-logo,
.landing-page .company-logo {
  width: 170px;
  margin: 50px auto 40px;
}
@media all and (max-width: 600px) {
  .partial-reg-page .company-logo,
.landing-page .company-logo {
    width: 40vw;
    margin: 5.077294686VW auto 4.6618357488VW;
  }
}
.partial-reg-page .company-logo img,
.landing-page .company-logo img {
  max-width: 150px;
  width: auto;
  max-height: 90px;
}
@media all and (max-width: 600px) {
  .partial-reg-page .company-logo img,
.landing-page .company-logo img {
    max-width: 40vw;
    max-height: 18vw;
  }
}
.partial-reg-page .company-banner,
.landing-page .company-banner {
  width: 325px;
  margin: 20px auto 0;
}
@media all and (max-width: 600px) {
  .partial-reg-page .company-banner,
.landing-page .company-banner {
    width: 85vw;
    margin: 5.6vw auto 0;
  }
}
.partial-reg-page .full-banner,
.landing-page .full-banner {
  width: 325px;
  margin: 20px auto 0;
}
@media all and (max-width: 600px) {
  .partial-reg-page .full-banner,
.landing-page .full-banner {
    width: 100vw;
    margin: 5.6vw auto 0;
  }
}
.partial-reg-page .form-container,
.landing-page .form-container {
  max-width: 325px;
  width: 100%;
  margin: 20px auto;
}
@media all and (max-width: 600px) {
  .partial-reg-page .form-container,
.landing-page .form-container {
    width: 85%;
    margin: 5.6vw auto;
  }
}
.partial-reg-page label,
.landing-page label {
  color: #959595;
  margin-bottom: 10px;
  font-size: 15px;
  display: block;
}
@media all and (max-width: 600px) {
  .partial-reg-page label,
.landing-page label {
    font-size: 3.6231884058VW;
  }
}
.partial-reg-page .location-field,
.landing-page .location-field {
  border: #0030AD solid 2px;
  border-radius: 10px;
  display: block;
  max-width: 325px;
  width: 100%;
  height: 50px;
  margin: auto;
  padding: 0 20px;
  background: url(zip-icon-black.svg) no-repeat 97% 50%;
  background-size: 8%;
  font-size: 15px;
}
.partial-reg-page .company-details,
.landing-page .company-details {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  list-style: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 250px;
  padding-left: 0;
  margin: 40px auto;
}
@media all and (max-width: 600px) {
  .partial-reg-page .company-details,
.landing-page .company-details {
    font-size: 4.1062801932VW;
    line-height: 9.6618357488VW;
    margin: 9.67VW auto;
  }
}
.partial-reg-page .company-details li,
.landing-page .company-details li {
  background: url(img/bullet-check.svg) no-repeat left center;
  padding-left: 30px;
}

.onestep-reg-page h1 {
  font-size: 24px;
  margin: 20px auto 70px;
  color: #054D92;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid #C4C4C4;
  padding-bottom: 15px;
  letter-spacing: 2px;
}
@media all and (max-width: 600px) {
  .onestep-reg-page h1 {
    font-size: 4.3816425121VW;
    margin: 4.8309178744VW auto 0;
    border-bottom: none;
    padding-bottom: 3.6231884058VW;
  }
}
.onestep-reg-page h2 {
  font-size: 36px;
  font-weight: bold;
  margin: 10px auto 30px;
  color: #0030AD;
}
@media all and (max-width: 600px) {
  .onestep-reg-page h2 {
    font-size: 7.2VW;
    margin: 2.4VW auto 4VW;
  }
}
.onestep-reg-page h2 span {
  color: #00F0C0;
}
.onestep-reg-page .company-logo {
  width: 170px;
  margin: 50px auto 40px;
}
@media all and (max-width: 600px) {
  .onestep-reg-page .company-logo {
    width: 40vw;
    margin: 5.077294686VW auto 4.6618357488VW;
  }
}
.onestep-reg-page .company-logo img {
  max-width: 150px;
  max-height: 90px;
}
@media all and (max-width: 600px) {
  .onestep-reg-page .company-logo img {
    max-width: 40vw;
    max-height: 18vw;
  }
}
.onestep-reg-page .form-container {
  max-width: 325px;
  width: 100%;
  margin: auto;
}
@media all and (max-width: 600px) {
  .onestep-reg-page .form-container {
    width: 85%;
  }
}
.onestep-reg-page .form-container__optin-label {
  width: 100%;
  margin: 5px auto;
  display: block;
  font-size: 11px;
  line-height: 140%;
  color: #000000;
}
@media all and (max-width: 600px) {
  .onestep-reg-page .form-container__optin-label {
    margin: 1.2077294686VW auto;
    font-size: 2.933VW;
  }
}
.onestep-reg-page .form-container__optin-label a {
  display: inline;
  font-size: inherit;
  color: #0030AD;
}
.onestep-reg-page .form-container .ft-field-wrapper-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 350px;
}
.onestep-reg-page .form-container .ft-field-wrapper-flex-dob {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-radius: 5px;
}
.onestep-reg-page .form-container .ft-field-wrapper-flex-dob.success {
  border: none;
}
.onestep-reg-page .form-container .ft-dob_month,
.onestep-reg-page .form-container .ft-dob_day,
.onestep-reg-page .form-container .ft-dob_year {
  width: 33.3%;
  -moz-text-align-last: left;
       text-align-last: left;
  position: relative;
}
.onestep-reg-page label {
  color: #959595;
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 120%;
  display: block;
}
@media all and (max-width: 600px) {
  .onestep-reg-page label {
    font-size: 4VW;
    margin: 0 0 2.4vw;
  }
}
.onestep-reg-page .form-field {
  border: #ffffff solid 2px;
  background: #ECECEC;
  color: #494949;
  font-weight: 500;
  border-radius: 10px;
  display: block;
  max-width: 325px;
  width: 100%;
  height: 50px;
  margin: 0 auto 20px;
  padding: 0 20px;
  font-size: 17px;
}
@media all and (max-width: 600px) {
  .onestep-reg-page .form-field {
    margin: 0 auto 4vw;
    font-size: 4.267vw;
  }
}
.onestep-reg-page .form-field:focus {
  border: #0030AD solid 2px;
  background: #ffffff;
  outline: none;
}
.onestep-reg-page .company-details {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  list-style: none;
  width: 260px;
  margin: 40px auto;
}
@media all and (max-width: 600px) {
  .onestep-reg-page .company-details {
    font-size: 4.1062801932VW;
    line-height: 9.6618357488VW;
    margin: 9.6618357488VW auto;
  }
}
.onestep-reg-page .company-details li {
  background: url(img/bullet-check.svg) no-repeat left center;
  padding-left: 30px;
}
.onestep-reg-page .cont-btn {
  font-weight: 600;
  font-size: 22px;
  max-width: unset;
}
@media all and (max-width: 600px) {
  .onestep-reg-page .cont-btn {
    max-width: unset;
    font-size: 5.87vw;
  }
}

.inflow-page .serp-main-listings {
  margin: 20px auto;
}
.inflow-page .inflow-listings {
  position: relative;
  max-width: 780px;
  width: 100%;
  height: auto;
  margin: 20px auto;
}
@media all and (max-width: 600px) {
  .inflow-page .inflow-listings {
    width: 97%;
  }
}
.inflow-page .inflow-listings h1 {
  font-family: "Work Sans", sans-serif;
  font-size: 32px;
  margin-bottom: 10px;
}
@media all and (max-width: 600px) {
  .inflow-page .inflow-listings h1 {
    font-size: 5.4154589372VW;
    margin-bottom: 2.4154589372VW;
  }
}
.inflow-page .inflow-listings p {
  font-size: 31px;
  font-weight: 600;
  margin-top: 0;
}
@media all and (max-width: 600px) {
  .inflow-page .inflow-listings p {
    font-size: 6.4VW;
  }
}
.inflow-page .go-to-next {
  cursor: pointer;
}
.inflow-page .go-to-next-btn {
  cursor: pointer;
  color: #959595;
  font-size: 17px;
  margin-top: 2em;
  text-decoration: underline;
}
@media all and (max-width: 600px) {
  .inflow-page .go-to-next-btn {
    font-size: 3.467vw;
  }
}
.inflow-page.skipBtnHidden .go-to-next-btn {
  display: none;
}
.inflow-page.skipBtnHidden .go-to-next.btn {
  display: none;
}

/** _offer-wall-page.scss **/
.offer-wall__main-content {
  position: relative;
  /*background: #e3e3e3;*/
  padding: 30px 0px;
  max-width: 1080px;
  margin: auto;
}
.offer-wall__main-content section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-box-align: initial;
  -ms-flex-align: initial;
  align-items: initial;
  margin: auto;
  max-width: 760px;
}
.offer-wall__main-content section > ins {
  -webkit-box-flex: 0;
      -ms-flex: 0 50%;
          flex: 0 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media all and (max-width: 600px) {
  .offer-wall__main-content section > ins {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

.serp-main-listings {
  position: relative;
  max-width: 780px;
  width: 100%;
  height: auto;
  margin: 20px 0;
}
@media all and (max-width: 600px) {
  .serp-main-listings {
    width: 97%;
    margin: 4.8309178744VW auto;
  }
}
.serp-main-listings__title {
  font-family: "Work Sans", sans-serif;
  text-transform: capitalize;
  font-size: 26px;
  text-align: center;
  font-weight: 500;
  margin: 40px;
}
@media all and (max-width: 600px) {
  .serp-main-listings__title {
    font-size: 4.8VW;
    margin: 6.661836VW 3.6618357488VW;
  }
}

.show-more-jobs-btn {
  position: relative;
  margin: 30px auto;
  display: block;
  background: #00F0C0;
  color: #303030;
  padding: 0;
  border-radius: 55px;
  border: 0;
  width: 320px;
  font-weight: bold;
  font-size: 16px;
  line-height: 18px;
  height: 40px;
  cursor: pointer;
}
.show-more-jobs-btn:hover {
  background: #03ebbc;
}
.show-more-jobs-btn.ft-loading {
  -webkit-animation: none;
          animation: none;
  font-size: 0;
}
.show-more-jobs-btn.ft-loading:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50%;
  border-top: 3px solid #000;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -10px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: 0.5s linear infinite spin;
          animation: 0.5s linear infinite spin;
}
@media all and (max-width: 900px) {
  .show-more-jobs-btn {
    width: 35.5555555556VW;
    font-size: 1.7777777778VW;
    padding: 1.3333333333VW 2.2222222222VW;
    margin: 3.2222222222VW auto;
  }
}
@media all and (max-width: 600px) {
  .show-more-jobs-btn {
    width: 90.1333333333VW;
    font-size: 4.2666666667VW;
    height: 10.9333333333VW;
    margin: 7.2222222222VW auto;
  }
}

.serp-page .header {
  background: #0030ad;
  border-bottom: 0;
}
@media all and (max-width: 600px) {
  .serp-page .serp-main-listings {
    width: 100%;
    margin: 1VW auto;
  }
}
.serp-page .serp-main-listings a:nth-of-type(even) {
  background: #f5f5f5;
}
@media all and (max-width: 600px) {
  .serp-page .serp-main-listings__title {
    font-size: 4.8VW;
    margin: 6vw auto;
    width: 90vw;
  }
}
.serp-page .show-more-jobs-btn, .serp-page .header__search button {
  background: #00f0c0;
}
.serp-page .serp-job-item {
  margin: 0;
  padding: 10px;
  height: 77px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  border-bottom: 1px solid #d1d1d1;
}
@media all and (max-width: 900px) {
  .serp-page .serp-job-item {
    margin: 0;
    padding: 2.2222222222VW 1.1111111111VW;
  }
}
@media all and (max-width: 600px) {
  .serp-page .serp-job-item {
    margin: 0;
    padding: 1.3333333333VW 1.6666666667VW;
    height: 20.833333VW;
  }
}
.serp-page .serp-job-item.new::after {
  content: "New";
  width: 80px;
  height: 15px;
  z-index: 99;
  transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  line-height: 15px;
  top: 8px;
  left: -27px;
  color: white;
  font-size: 9px;
  text-align: center;
  text-transform: uppercase;
  background: #ff6600;
  position: absolute;
  display: block;
}
.serp-page .serp-job-item__img {
  display: none;
}
.serp-page .serp-job-item__title {
  font-size: 17px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #000;
}
@media all and (max-width: 600px) {
  .serp-page .serp-job-item__title {
    /* font-size: 4.533333333333333VW;*/
    line-height: 125%;
  }
}
.serp-page .serp-job-item__details {
  position: relative;
  left: 30px;
}
@media all and (max-width: 600px) {
  .serp-page .serp-job-item__details {
    width: 74.386473VW;
    left: 7.415459VW;
  }
}
.serp-page .serp-job-item__sub-text {
  color: #959595;
  font-weight: 100;
  margin: 0;
  padding: 1px 0;
}
@media all and (max-width: 600px) {
  .serp-page .serp-job-item__sub-text {
    font-size: 3.7333333333VW;
    padding: 0.8333333333VW 0;
  }
}
.serp-page .serp-job-item__company {
  display: none;
}
.serp-page .serp-job-item__location {
  padding: 3px 0;
  display: block;
  font-size: 12px;
}
.serp-page .serp-job-item__location img {
  display: none;
}
.serp-page .serp-job-item__date {
  background: none;
  color: #373737;
  padding: 0;
  font-size: 11px;
  display: block;
  margin: 0;
}
.serp-page .serp-job-item__description {
  display: none;
}
.serp-page .serp-job-item__btn button {
  background: #00f0c0;
  border-radius: 55px;
  background: none;
  min-width: 70px;
  padding: 0;
}

@media all and (max-width: 600px) {
  .serp-page .serp-job-item__btn button img {
    display: none;
  }
}

.sms-page .header {
  background: #0030AD;
  border: 0;
}
@media all and (max-width: 600px) {
  .sms-page .header-serp__logo {
    width: 33.763285VW;
  }
}
.sms-page .header__search button {
  background: #00F0C0;
}
.sms-page .serp-job-item {
  margin: 0;
  border-bottom: 1px solid #d1d1d1;
  overflow: hidden;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sms-page .serp-job-item div.new:after {
  content: "New";
  width: 80px;
  height: 15px;
  z-index: 99;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  line-height: 15px;
  top: 8px;
  left: -27px;
  color: white;
  font-size: 9px;
  text-align: center;
  text-transform: uppercase;
  background: #ff6600;
  position: absolute;
  display: block;
}
@media all and (max-width: 600px) {
  .sms-page .serp-job-item div.new:after {
    width: 19.3236714976VW;
    height: 3.6231884058VW;
    line-height: 3.6231884058VW;
    top: 0px;
    left: -14.115942VW;
    font-size: 2.1739130435VW;
  }
}
.sms-page .serp-job-item__img {
  display: none;
}
.sms-page .serp-job-item__title {
  color: #373737;
  font-size: 17px;
  font-weight: 500;
  line-height: 120%;
  font-family: "Work Sans", sans-serif;
  max-width: 420px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sms-page .serp-job-item__sub-text {
  padding: 2px 0px 0px;
}
.sms-page .serp-job-item__details {
  width: 80%;
  max-width: 570px;
  margin-left: 5%;
}
.sms-page .serp-job-item__location img {
  display: none;
}
.sms-page .serp-job-item__company {
  display: none;
}
.sms-page .serp-job-item__description {
  display: none;
}
.sms-page .serp-job-item__date {
  background: none;
  margin-left: 0;
  color: #9f9f9f;
  font-size: 11px;
  padding: 5px 0px 0;
  display: block;
}
.sms-page .serp-job-item:nth-child(odd) {
  background-color: #f5f5f5;
}
.sms-page .serp-job-item__btn button::before {
  content: ">>";
}
.sms-page .serp-job-item__btn button {
  background: none;
}
.sms-page .serp-job-item__btn {
  position: relative;
  margin-right: 4%;
  font-size: 22px;
  display: block;
  line-height: 22px;
  color: #b7b7b7;
}
.sms-page .show-more-jobs-btn {
  background: #00F0C0;
}

.blog-page .blog-main-listings {
  position: relative;
  max-width: 900px;
  width: 100%;
  height: auto;
  margin: 20px 10px;
}
@media all and (max-width: 600px) {
  .blog-page .blog-main-listings {
    width: 97%;
    margin: 4.8309178744VW auto;
  }
}
.blog-page .blog-main-listings__title {
  font-family: "Roboto", sans-serif;
  text-transform: capitalize;
  font-size: 36px;
  text-align: center;
  font-weight: 600;
  line-height: 140%;
  margin: 40px;
}
@media all and (max-width: 600px) {
  .blog-page .blog-main-listings__title {
    font-size: 7.111111VW;
    margin: 3.6618357488VW;
  }
}

.jobspotter-page .header {
  background: #0030ad;
  border-bottom: 0;
}
@media all and (max-width: 600px) {
  .jobspotter-page .serp-main-listings {
    width: 100%;
    margin: 1VW auto;
  }
}
.jobspotter-page .serp-main-listings a:nth-of-type(even) {
  background: #f5f5f5;
}
@media all and (max-width: 600px) {
  .jobspotter-page .serp-main-listings__title {
    font-size: 4.8VW;
    margin: 6vw auto;
    width: 90vw;
  }
}
.jobspotter-page .show-more-jobs-btn, .jobspotter-page .header__search button {
  background: #00f0c0;
}
.jobspotter-page .serp-job-item {
  margin: 0;
  padding: 10px;
  height: 77px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  border-bottom: 1px solid #d1d1d1;
}
@media all and (max-width: 900px) {
  .jobspotter-page .serp-job-item {
    margin: 0;
    padding: 2.2222222222VW 1.1111111111VW;
  }
}
@media all and (max-width: 600px) {
  .jobspotter-page .serp-job-item {
    margin: 0;
    padding: 1.3333333333VW 1.6666666667VW;
    height: 20.833333VW;
  }
}
.jobspotter-page .serp-job-item.new::after {
  content: "New";
  width: 80px;
  height: 15px;
  z-index: 99;
  transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  line-height: 15px;
  top: 8px;
  left: -27px;
  color: white;
  font-size: 9px;
  text-align: center;
  text-transform: uppercase;
  background: #ff6600;
  position: absolute;
  display: block;
}
.jobspotter-page .serp-job-item__img {
  display: none;
}
.jobspotter-page .serp-job-item__title {
  font-size: 17px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #000;
}
@media all and (max-width: 600px) {
  .jobspotter-page .serp-job-item__title {
    /* font-size: 4.533333333333333VW;*/
    line-height: 125%;
  }
}
.jobspotter-page .serp-job-item__details {
  position: relative;
  left: 30px;
}
@media all and (max-width: 600px) {
  .jobspotter-page .serp-job-item__details {
    width: 74.386473VW;
    left: 7.415459VW;
  }
}
.jobspotter-page .serp-job-item__sub-text {
  color: #959595;
  font-weight: 100;
  margin: 0;
  padding: 1px 0;
}
@media all and (max-width: 600px) {
  .jobspotter-page .serp-job-item__sub-text {
    font-size: 3.7333333333VW;
    padding: 0.8333333333VW 0;
  }
}
.jobspotter-page .serp-job-item__company {
  display: none;
}
.jobspotter-page .serp-job-item__location {
  padding: 3px 0;
  display: block;
  font-size: 12px;
}
.jobspotter-page .serp-job-item__location img {
  display: none;
}
.jobspotter-page .serp-job-item__date {
  background: none;
  color: #373737;
  padding: 0;
  font-size: 11px;
  display: block;
  margin: 0;
}
.jobspotter-page .serp-job-item__description {
  display: none;
}
.jobspotter-page .serp-job-item__btn button {
  background: #00f0c0;
  border-radius: 55px;
  background: none;
  min-width: 70px;
  padding: 0;
}

@media all and (max-width: 600px) {
  .jobspotter-page .serp-job-item__btn button img {
    display: none;
  }
}

.partial-reg-page-social h1,
.landing-page h1 {
  font-family: "Roboto", Sans-serif;
  font-size: 24px;
  margin: 0px auto;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px 0 10px;
  letter-spacing: 2px;
  background: #0030AD;
}
@media all and (max-width: 600px) {
  .partial-reg-page-social h1,
.landing-page h1 {
    font-size: 4VW;
    margin: 0;
    border-bottom: none;
    padding: 2.6666666667VW 0;
  }
}
.partial-reg-page-social h2,
.landing-page h2 {
  font-family: Work Sans;
  font-size: 46px;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 auto;
  color: #ffffff;
  text-align: center;
  letter-spacing: -0.01em;
}
@media all and (max-width: 600px) {
  .partial-reg-page-social h2,
.landing-page h2 {
    text-align: left;
    font-size: 11.2vw;
    line-height: 100%;
    margin: 0 auto 2.4vw;
  }
}
.partial-reg-page-social h3,
.landing-page h3 {
  font-family: Work Sans;
  color: #fff;
  font-weight: 400;
  font-size: 20px;
  margin: 0 auto 1em;
  text-align: center;
}
@media all and (max-width: 600px) {
  .partial-reg-page-social h3,
.landing-page h3 {
    text-align: left;
    font-size: 5.33vw;
  }
}
.partial-reg-page-social h3 span,
.landing-page h3 span {
  color: #00f0be;
}
.partial-reg-page-social .themed-img,

.partial-reg-page-social .themed-img .company-logo,
.landing-page .themed-img .company-logo {
  display: block;
  position: absolute;
  text-align: center;
  background: #ffffff;
  padding: 15px 10px;
  left: 0;
  top: 0;
  max-width: 200px;
  margin-top: 50px;
}
@media all and (max-width: 600px) {
  .partial-reg-page-social .themed-img .company-logo,
.landing-page .themed-img .company-logo {
    max-width: 48vw;
    padding: 3.2vw 2.4vw;
    margin-top: 4.8vw;
  }
}
.partial-reg-page-social .themed-img .company-logo img,
.landing-page .themed-img .company-logo img {
  max-width: 170px;
  max-height: 90px;
}
@media all and (max-width: 600px) {
  .partial-reg-page-social .themed-img .company-logo img,
.landing-page .themed-img .company-logo img {
    max-width: 40vw;
    max-height: 18vw;
  }
}
.partial-reg-page-social .headline-title,
.landing-page .headline-title {
  display: none;
}
.partial-reg-page-social .company-banner,
.landing-page .company-banner {
  display: none;
}
.partial-reg-page-social .company-logo,
.landing-page .company-logo {
  display: none;
}
.partial-reg-page-social .form-container,
.landing-page .form-container {
  max-width: 600px;
  width: 100%;
  margin: auto;
  padding: 20px 0;
}
@media all and (max-width: 600px) {
  .partial-reg-page-social .form-container,
.landing-page .form-container {
    width: 88%;
    padding: 4vw 0;
  }
}

@media all and (max-width: 600px) {
  .partial-reg-page-social label,
.landing-page label {
    font-size: 3.6231884058VW;
  }
}
.partial-reg-page-social .location-field,
.landing-page .location-field {
  border: none;
  border-bottom: 1px solid #ffffff;
  background: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  border-radius: 0;
  display: block;
  max-width: 325px;
  width: 100%;
  height: 50px;
  margin: auto;
  padding: 0 20px;
  font-size: 15px;
}
.partial-reg-page-social .company-details,
.landing-page .company-details {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  list-style: none;
  width: 260px;
  margin: 40px auto;
}
@media all and (max-width: 600px) {
  .partial-reg-page-social .company-details,
.landing-page .company-details {
    font-size: 4.1062801932VW;
    line-height: 9.6618357488VW;
    margin: 9.6618357488VW auto;
  }
}
.partial-reg-page-social .company-details li,
.landing-page .company-details li {
  background: url(img/bullet-check.svg) no-repeat left center;
  padding-left: 30px;
}
.partial-reg-page-social .cont-btn,
.landing-page .cont-btn {
  font-weight: 600;
  color: #001F6F;
  max-width: 325px;
}
@media all and (max-width: 600px) {
  .partial-reg-page-social .cont-btn,
.landing-page .cont-btn {
    max-width: unset;
  }
}

.lander-page h1 {
  margin: 0px auto 40px;
}
.lander-page .container-max-width {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.lander-page .logo-section {
  width: 100%;
  height: 277px;
  background: #0030AD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 20px auto;
}
@media all and (max-width: 900px) {
  .lander-page .logo-section {
    height: 30.7777777778VW;
    margin: 2.2222222222VW auto;
  }
}
@media all and (max-width: 600px) {
  .lander-page .logo-section {
    height: 50VW;
  }
}
.lander-page .logo-section .container-max-width {
  position: relative;
  margin-top: 60px;
}
@media all and (max-width: 900px) {
  .lander-page .logo-section .container-max-width {
    margin-top: 6.6666666667VW;
  }
}
@media all and (max-width: 600px) {
  .lander-page .logo-section .container-max-width {
    margin-top: 15.3846153846VW;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.lander-page .logo-section .logo {
  width: 39.8888888889VW;
}
.lander-page input {
  width: 319px;
  height: 45px;
  border: 2px solid #0030AD;
  border-radius: 7px;
  padding: 0 15px;
  margin: 5px;
}
@media all and (max-width: 900px) {
  .lander-page input {
    width: 35.4444444444VW;
    height: 11.5384615385VW;
    padding: 0 3.8461538462VW;
  }
}
@media all and (max-width: 600px) {
  .lander-page input {
    display: block;
    width: 81.7948717949VW;
    height: 11.5384615385VW;
    margin: 2.5641025641VW 0;
    padding: 0 3.8461538462VW;
  }
}
.lander-page .btn {
  max-width: 319px;
  height: 45px;
  background: #00F0C0;
  border-radius: 40px;
  border: none;
  text-align: center;
  display: block;
  margin: 20px auto;
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 19px;
  padding: 10px;
  cursor: pointer;
}
@media all and (max-width: 900px) {
  .lander-page .btn {
    max-width: 35.4444444444VW;
    height: 5VW;
    margin: 2.2222222222VW auto;
    padding: 1.1111111111VW;
    font-size: 2.1111111111VW;
  }
}
@media all and (max-width: 600px) {
  .lander-page .btn {
    max-width: 81.7948717949VW;
    height: 11.5384615385VW;
    margin: 5.1282051282VW auto;
    padding: 2.5641025641VW;
    font-size: 4.8717948718VW;
  }
}
.lander-page .jobs-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.lander-page .jobs-section .container-max-width {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.lander-page .jobs-section .job-item {
  width: 237px;
  margin: 10px;
  cursor: pointer;
}
@media all and (max-width: 900px) {
  .lander-page .jobs-section .job-item {
    width: 26.3333333333VW;
    margin: 1.1111111111VW;
  }
}
@media all and (max-width: 600px) {
  .lander-page .jobs-section .job-item {
    width: 60.7692307692VW;
    margin: 1.1111111111VW;
  }
}

/** Import custom theme or /default theme **/
/** All third party code from external libraries and frameworks
 — such as Normalize, Bootstrap, jQueryUI, etc. **/

 body {
   padding: 0;
   margin: 0;
 }
 .about-program-darkbox {
   position: fixed;
   z-index: 99999;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: #1e1e1e;
   opacity: 0.8;
   display: none;
 }
 .about-program-whitebox {
   font-family: Roboto, sans-serif;
   background: #fff;
   border-radius: 1.33vw 1.33vw 0 0;
   width: 100vw;
   height: 100vw;
   position: fixed;
   bottom: 0;
   left: 0;
   text-align: center;
   overflow: hidden;
   z-index: 999999;
   padding-bottom: 0;
   transition: 0.2s linear;
   transform: translateY(100%);
 }
 .lb-active .about-program-whitebox {
   transform: translateY(0);
 }
 .lb-ready .about-program-whitebox {
   transform: translateY(84vw);
 }
 .about-program-inner-box {
   text-align: center;
   position: relative;
   padding: 0 0 8vw;
   height: 84vw;
   overflow: scroll;
 }
 .about-program-inner-box > div {
   padding-top: 4vw;
   padding-bottom: 10vw;
 }
 .about-program-whitebox h1 {
   border-bottom: 1px solid #ececec;
   margin: 0 auto;
   height: 16vw;
   line-height: 120%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   padding: 0;
   font-weight: 500;
   font-size: 4.267vw;
   color: #373737;
   background: #ececec;
   text-transform: none;
   letter-spacing: 0.01em;
 }
 .about-program-whitebox h1:before {
   content: "TAP TO LEARN";
   color: #959595;
   font-size: 2.933vw;
   font-weight: 600;
   display: block;
   line-height: 120%;
 }
 .lb-active .about-program-whitebox h1 {
   background: #fff;
 }
 .lb-active .about-program-whitebox h1:before {
   display: none;
 }
 .about-program-ex {
   position: absolute;
   top: 1.13333vw;
   right: 1.4vw;
   width: 8vw;
   height: 8vw;
   cursor: pointer;
   background: url(img/icon-exit-dk-grey.svg) center center/4vw 4vw no-repeat;
   z-index: 9999999;
 }
 .pr-info-btn {
   display: block;
   margin: auto;
   line-height: 13.6vw;
   width: 55vw;
   font-family: Poppins, sans-serif;
   font-style: normal;
   font-weight: 700;
   font-size: 4.53333vw;
   text-align: center;
   color: #000;
   cursor: pointer;
   border-radius: 12vw;
   background: #ff755c;
   position: absolute;
   bottom: 8vw;
   left: 50%;
   transform: translateX(-50%);
   z-index: 9999;
 }
 .fdj_themed .pr-info-btn {
   background: #00f0c0;
 }
 .column-wrapper {
   width: 100%;
   position: relative;
   text-align: center;
   margin: 0 auto;
 }
 .column-wrapper > div {
   margin: auto;
 }
 .pr-section {
   padding-bottom: 8vw;
 }
 .pr-section h2 {
   font-family: "Work Sans", sans-serif;
   font-size: 5.867vw;
   color: #373737;
   margin: 0;
 }
 .pr-section .block {
   width: 84vw;
   margin: 2.4vw auto 4vw;
   color: #515151;
   font-size: 3.467vw;
   line-height: 150%;
 }
 .column-wrapper .icons {
   height: 11.2vw;
   margin: 4vw auto;
   display: flex;
   flex-direction: column;
   justify-content: center;
   text-align: center;
 }
 .column-wrapper .icons img {
   height: 100%;
   margin: auto;
   align-self: center;
 }
 .pr-section .block span {
   display: block;
   font-size: 2.93vw;
   margin-top: 1em;
 }
 @media all and (min-width: 600px) {
   .about-program-whitebox {
     border-radius: 5px 5px 0 0;
     width: 500px;
     height: 400px;
     left: 50%;
     margin-left: -250px;
   }
   .lb-ready .about-program-whitebox {
     transform: translateY(340px);
   }
   .about-program-inner-box {
     padding: 0 0 30px;
     height: 340px;
     overflow: scroll;
   }
   .about-program-inner-box > div {
     padding-top: 30px;
     padding-bottom: 30px;
   }
   .about-program-whitebox h1 {
     height: 60px;
     font-size: 17px;
   }
   .about-program-whitebox h1:before {
     font-size: 11px;
   }
   .about-program-ex {
     position: absolute;
     top: 5px;
     right: 5px;
     width: 30px;
     height: 30px;
     background: url(img/icon-exit-dk-grey.svg) center center/15px 15px no-repeat;
     z-index: 9999999;
   }
   .pr-info-btn {
     line-height: 50px;
     width: 200px;
     font-size: 16px;
     border-radius: 12vw;
     bottom: 30px;
   }
   .pr-section {
     padding-bottom: 8vw;
     opacity: 0;
     transition: 0.15s linear 0.2s;
   }
   .lb-active .pr-section {
     opacity: 1;
   }
   .pr-section h2 {
     font-family: "Work Sans", sans-serif;
     font-size: 24px;
     margin: 0;
   }
   .pr-section .block {
     width: 84%;
     margin: 10px auto 15px;
     color: #515151;
     font-size: 14px;
     line-height: 150%;
   }
   .column-wrapper .icons {
     height: 50px;
     margin: 15px auto;
     display: flex;
     flex-direction: column;
     justify-content: center;
     text-align: center;
   }
   .pr-section .block span {
     display: block;
     font-size: 12px;
     margin-top: 1em;
   }
 }
html {
  -webkit-text-size-adjust: 100%;
  line-height: 1.15;
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
[hidden],
template {
  display: none;
}
* {
  box-sizing: border-box;
}
.sv_window {
  word-wrap: normal;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #5f9ea0;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  bottom: 3px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  padding: 1px;
  position: fixed;
  right: 10px;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
}
.sv_window_title {
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
  font-size: 14px;
  margin: 0;
  padding: 8px 14px;
}
.sv_window_content {
  margin: 0;
  padding: 8px;
}
.sv_window_title a,
.sv_window_title a:link,
.sv_window_title a:visited {
  color: #000;
  font-size: 14px;
  font-style: normal;
  text-decoration: none;
}
.sv_main.sv_frame .sv_container {
  margin: auto;
  max-width: 80%;
  padding: 0 1em;
}
.sv_main.sv_frame .sv_container .sv_header {
  padding-bottom: 1em;
  padding-top: 5em;
}
.sv_main {
  background-color: #f4f4f4;
}
.sv_main hr {
  border-bottom: 1px solid #e7e7e7;
}
.sv_main button,
.sv_main input[type="button"] {
  background-color: #1ab394;
  color: #fff;
}
.sv_main button:hover,
.sv_main input[type="button"]:hover {
  background-color: #179d82;
}
.sv_main .sv_q_dropdown_control,
.sv_main .sv_q_other input,
.sv_main .sv_q_text_root,
.sv_main input:not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="image"]):not([type="checkbox"]):not([type="radio"]),
.sv_main select,
.sv_main textarea {
  background-color: #fff;
  border: 1px solid #e7e7e7;
  color: #6d7072;
}
.sv_main .sv_q_dropdown_control:focus,
.sv_main .sv_q_other input:focus,
.sv_main .sv_q_text_root:focus,
.sv_main input:not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="image"]):not([type="checkbox"]):not([type="radio"]):focus,
.sv_main select:focus,
.sv_main textarea:focus {
  border: 1px solid #1ab394;
}
.sv_main .sv_select_wrapper {
  background-color: #fff;
}
.sv_main .sv_select_wrapper:before {
  background-color: #1ab394;
}
.sv_main .sv_header {
  color: #6d7072;
}
.sv_main .sv_custom_header {
  background-color: #e7e7e7;
}
.sv_main .sv_container {
  color: #6d7072;
}
.sv_main .sv_body {
  background-color: #fff;
  border-top: 2px solid #1ab394;
}
.sv_main .sv_progress {
  background-color: #e7e7e7;
  margin-bottom: 2em;
}
.sv_main .sv_progress_bar {
  background-color: #1ab394;
}
.sv_main .sv_p_root > .sv_row {
  border-bottom: 1px solid #e7e7e7;
}
.sv_main .sv_p_root > .sv_row:nth-child(odd) {
  background-color: #fff;
}
.sv_main .sv_p_root > .sv_row:nth-child(2n) {
  background-color: #f4f4f4;
}
.sv_main .sv_q_erbox:not([style*="display: none"]):not([style*="display:none"]) {
  background-color: #fcdfe2;
  border: 1px solid #ed5565;
  color: #ed5565;
}
.sv_main .sv_q_erbox:not([style*="display: none"]):not([style*="display:none"]) + .sv_select_wrapper select,
.sv_main .sv_q_erbox:not([style*="display: none"]):not([style*="display:none"]) + input,
.sv_main .sv_q_erbox:not([style*="display: none"]):not([style*="display:none"]) + textarea {
  border: 1px solid #ed5565;
}
.sv_main .sv_q_erbox:not([style*="display: none"]):not([style*="display:none"]) + .sv_select_wrapper select:focus,
.sv_main .sv_q_erbox:not([style*="display: none"]):not([style*="display:none"]) + input:focus,
.sv_main .sv_q_erbox:not([style*="display: none"]):not([style*="display:none"]) + textarea:focus {
  outline: 5px auto #ed5565;
}
.sv_main table.sv_q_matrix tr,
.sv_main table.sv_q_matrix_dropdown tr,
.sv_main table.sv_q_matrix_dynamic tr {
  border-bottom: 1px solid #e7e7e7;
}
.sv_main .sv_q_m_cell_selected {
  background-color: #179d82;
  color: #fff;
}
.sv_main .sv_q_rating_item.active .sv_q_rating_item_text {
  background-color: #179d82;
  border-color: #179d82;
  color: #fff;
}
.sv_main .sv_q_rating_item .sv_q_rating_item_text {
  border: 1px solid #e7e7e7;
}
.sv_main .sv_q_rating_item .sv_q_rating_item_text:hover {
  border: 1px solid #179d82;
}
.sv_main .sv_q_imgsel.checked label > div {
  background-color: #1ab394;
}
.sv_main .sv_q_file_remove:hover {
  color: #1ab394;
}
.sv_main .sv-boolean__switch {
  background-color: #1ab394;
}
.sv_main .sv-boolean__slider {
  background-color: #fff;
}
.sv_main {
  font-family: Segoe UI, Frutiger, Frutiger Linotype, Dejavu Sans, Helvetica Neue, Arial, sans-serif;
  font-size: 14px;
  position: relative;
  width: 100%;
}
.sv_main hr {
  border: none;
}
.sv_main button,
.sv_main input[type="button"] {
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.85em;
  font-weight: 700;
  line-height: 2em;
  min-width: 100px;
  padding: 0 2em;
}
.sv_main .sv_custom_header {
  height: 74%;
  max-height: 275px;
  position: absolute;
  width: 100%;
}
.sv_main .sv_container {
  position: relative;
}
.sv_main .sv_container .sv_header {
  padding: 1em;
}
.sv_main .sv_container .sv_header h3 {
  font-size: 2em;
  font-weight: 300;
  margin: 0;
}
.sv_main .sv_container .sv_body {
  padding: 1em 1em 1.6428em;
}
.sv_main .sv_container .sv_body.sv_completed_page {
  padding: 5em 1em;
  text-align: center;
}
.sv_main .sv_container .sv_body.sv_completed_page > h3 {
  font-size: 30px;
  font-weight: 300;
  margin: 0;
}
.sv_main .sv_container .sv_body .sv_progress {
  height: 0.3em;
}
.sv_main .sv_container .sv_body .sv_progress .sv_progress_bar {
  height: 100%;
  margin-top: 2em;
  min-width: 100px;
  position: relative;
}
.sv_main .sv_container .sv_body .sv_progress .sv_progress_bar > span {
  display: inline-block;
  position: absolute;
  top: -1.5em;
  white-space: nowrap;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_page_title {
  font-size: 1em;
  font-weight: 400;
  margin-top: 0.1em;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_p_title {
  font-size: 1.15em;
  font-weight: 700;
  margin: 1.5em 0 0;
}
.sv_main .sv_container .sv_body .sv_p_root > .sv_row {
  padding: 0;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q_title {
  font-size: 1em;
  font-weight: 700;
  margin: 0.5em 0;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q_description {
  margin-top: -0.6em;
  min-height: 0.6em;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q_flow .sv_q_checkbox_inline,
.sv_main .sv_container .sv_body .sv_p_root .sv_q_flow .sv_q_imagepicker_inline,
.sv_main .sv_container .sv_body .sv_p_root .sv_q_flow .sv_q_radiogroup_inline {
  display: inline-block;
  line-height: 2em;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q {
  box-sizing: border-box;
  overflow: auto;
  padding: 0.5em 1em 1.5em;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q .sv_panel_dynamic .sv_q_title {
  font-weight: 400;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q .sv_panel_dynamic .sv-paneldynamic__progress-container {
  margin-left: 40px;
  margin-right: 250px;
  margin-top: 10px;
  position: relative;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q .sv_q_erbox:not([style*="display: none"]):not([style*="display:none"]) {
  margin: 1em 0;
  padding: 1em;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q .sv_q_dropdown_control,
.sv_main .sv_container .sv_body .sv_p_root .sv_q .sv_q_other input,
.sv_main .sv_container .sv_body .sv_p_root .sv_q .sv_q_text_root,
.sv_main .sv_container .sv_body .sv_p_root .sv_q input:not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="image"]):not([type="checkbox"]):not([type="radio"]),
.sv_main .sv_container .sv_body .sv_p_root .sv_q select,
.sv_main .sv_container .sv_body .sv_p_root .sv_q textarea {
  box-sizing: border-box;
  font-size: 1em;
  line-height: 2em;
  padding-left: 1em;
  position: relative;
  width: 100%;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q .sv_q_dropdown_control:focus,
.sv_main .sv_container .sv_body .sv_p_root .sv_q .sv_q_other input:focus,
.sv_main .sv_container .sv_body .sv_p_root .sv_q .sv_q_text_root:focus,
.sv_main .sv_container .sv_body .sv_p_root .sv_q input:not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="image"]):not([type="checkbox"]):not([type="radio"]):focus,
.sv_main .sv_container .sv_body .sv_p_root .sv_q select:focus,
.sv_main .sv_container .sv_body .sv_p_root .sv_q textarea:focus {
  outline: none;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q .sv_q_dropdown_control,
.sv_main .sv_container .sv_body .sv_p_root .sv_q .sv_q_other input,
.sv_main .sv_container .sv_body .sv_p_root .sv_q input:not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="image"]):not([type="checkbox"]):not([type="radio"]),
.sv_main .sv_container .sv_body .sv_p_root .sv_q select {
  height: calc(2em + 1px);
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q div.sv_q_dropdown_control,
.sv_main .sv_container .sv_body .sv_p_root .sv_q div.sv_q_text_root {
  min-height: 2.43em;
  min-width: 7em;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q .sv_select_wrapper {
  display: inline-block;
  position: relative;
  width: 100%;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q .sv_select_wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  display: block;
  padding-right: 2.5em;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q .sv_select_wrapper select::-ms-expand {
  display: none;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q .sv_select_wrapper:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzNCAzNCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMzQgMzQiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwYXRoIHN0eWxlPSJmaWxsOiNmZmYiIGQ9Im0xMiAxNiAyLTIgMyAzIDMtMyAyIDItNSA1eiIvPjwvc3ZnPg==);
  background-position: 50%;
  background-repeat: no-repeat;
  content: "";
  padding: 1em;
  position: absolute;
  right: 1px;
  right: 0;
  top: 1px;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q input[type="color"] {
  min-height: 2em;
  padding: 0;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q input[type="checkbox"],
.sv_main .sv_container .sv_body .sv_p_root .sv_q input[type="radio"] {
  font-size: 1em;
  height: 1.2em;
  margin: -0.1em 0.55em 0 0;
  vertical-align: middle;
  width: 1.2em;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q input[type="checkbox"]:focus,
.sv_main .sv_container .sv_body .sv_p_root .sv_q input[type="radio"]:focus {
  outline: 1px dotted #1ab394;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q .sv_q_checkbox.sv_q_checkbox_inline:not(:last-child),
.sv_main .sv_container .sv_body .sv_p_root .sv_q .sv_q_imgsel.sv_q_imagepicker_inline:not(:last-child),
.sv_main .sv_container .sv_body .sv_p_root .sv_q .sv_q_radiogroup.sv_q_radiogroup_inline:not(:last-child) {
  margin-right: 1.5em;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q .sv_q_imgsel label > div {
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  overflow: hidden;
  padding: 4px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q .sv_q_imgsel label > div > img {
  display: block;
  pointer-events: none;
  position: relative;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q .sv_q_radiogroup_clear {
  margin-top: 0.5em;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q .sv_q_checkbox_inline,
.sv_main .sv_container .sv_body .sv_p_root .sv_q .sv_q_imagepicker_inline,
.sv_main .sv_container .sv_body .sv_p_root .sv_q .sv_q_radiogroup_inline {
  display: inline-block;
  line-height: 2em;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q .sv_q_footer {
  padding: 1em 0;
}
.sv_main .sv_container .sv_body .sv_p_root table {
  border-collapse: collapse;
  width: 100%;
}
.sv_main .sv_container .sv_body .sv_p_root table.sv_q_matrix .sv_matrix_dynamic_button,
.sv_main .sv_container .sv_body .sv_p_root table.sv_q_matrix_dropdown .sv_matrix_dynamic_button,
.sv_main .sv_container .sv_body .sv_p_root table.sv_q_matrix_dynamic .sv_matrix_dynamic_button {
  padding: 0.3em 2em;
}
@media (min-width: 768px) {
  .sv_main .sv_container .sv_body .sv_p_root table.sv_q_matrix td {
    min-width: 10em;
  }
}
.sv_main .sv_container .sv_body .sv_p_root table.sv_q_matrix td .sv_q_m_label {
  display: block;
  position: static;
  width: 100%;
}
.sv_main .sv_container .sv_body .sv_p_root table.sv_q_matrix_dropdown .sv_qcbc .sv_q_checkbox_control_label {
  margin-right: 1.5em;
}
.sv_main .sv_container .sv_body .sv_p_root table td,
.sv_main .sv_container .sv_body .sv_p_root table th {
  padding: 0 1em;
  text-align: left;
}
.sv_main .sv_container .sv_body .sv_p_root table td {
  padding: 0.5em;
}
.sv_main .sv_container .sv_body .sv_p_root table th {
  font-weight: 700;
  line-height: 1.3em;
  padding: 0.5em;
  vertical-align: bottom;
}
.sv_main .sv_container .sv_body .sv_p_root fieldset.sv_qcbc {
  line-height: 2em;
  padding-top: 0.1em;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q_other {
  margin-left: 1em;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q_select_column {
  display: inline-block;
  min-width: 10%;
  vertical-align: top;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q_rating {
  line-height: 2em;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q_rating .sv_q_rating_item {
  cursor: pointer;
  display: inline;
  font-weight: 400;
  word-spacing: -0.3em;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q_rating .sv_q_rating_item > * {
  word-spacing: normal;
}
@media (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .sv_main .sv_container .sv_body .sv_p_root .sv_q_rating .sv_q_rating_item > * {
    word-spacing: normal;
  }
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q_rating .sv_q_rating_item .sv_q_rating_item_text {
  display: inline-block;
  margin-left: -1px;
  min-width: 2em;
  padding: 0 0.3em;
  text-align: center;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q_rating .sv_q_rating_item:not(:first-child) .sv_q_rating_item_text:not(:hover) {
  border-left-color: transparent;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q_rating .sv_q_rating_min_text {
  margin-right: 0.5em;
}
.sv_main .sv_container .sv_body .sv_p_root .sv_q_rating .sv_q_rating_max_text {
  margin-left: 0.5em;
}
.sv_main .sv_container .sv_body .sv_nav {
  min-height: 2em;
  padding: 1em 0;
}
.sv_main .sv_container .sv_body .sv_nav .sv_complete_btn,
.sv_main .sv_container .sv_body .sv_nav .sv_next_btn,
.sv_main .sv_container .sv_body .sv_nav .sv_start_btn {
  float: right;
}
.sv_main .sv_container .sv_body .sv_nav .sv_prev_btn,
[dir="rtl"] .sv_main .sv_container .sv_body .sv_nav .sv_complete_btn,
[dir="rtl"] .sv_main .sv_container .sv_body .sv_nav .sv_next_btn,
[dir="rtl"] .sv_main .sv_container .sv_body .sv_nav .sv_start_btn,
[style*="direction:rtl"] .sv_main .sv_container .sv_body .sv_nav .sv_complete_btn,
[style*="direction:rtl"] .sv_main .sv_container .sv_body .sv_nav .sv_next_btn,
[style*="direction:rtl"] .sv_main .sv_container .sv_body .sv_nav .sv_start_btn {
  float: left;
}
[dir="rtl"] .sv_main .sv_container .sv_body .sv_nav .sv_prev_btn,
[style*="direction:rtl"] .sv_main .sv_container .sv_body .sv_nav .sv_prev_btn {
  float: right;
}
@media (max-width: 600px) {
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_q,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_qstn {
    display: block;
    width: 100% !important;
  }
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_q .title-left,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_qstn .title-left {
    float: none;
  }
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_q .sv_q_checkbox_inline,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_q .sv_q_imagepicker_inline,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_q .sv_q_radiogroup_inline,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_q table.sv_q_matrix,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_q table.sv_q_matrix_dropdown,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_q table.sv_q_matrix_dynamic,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_qstn .sv_q_checkbox_inline,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_qstn .sv_q_imagepicker_inline,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_qstn .sv_q_radiogroup_inline,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_qstn table.sv_q_matrix,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_qstn table.sv_q_matrix_dropdown,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_qstn table.sv_q_matrix_dynamic {
    display: block;
  }
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_q table.sv_q_matrix thead,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_q table.sv_q_matrix_dropdown thead,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_q table.sv_q_matrix_dynamic thead,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_qstn table.sv_q_matrix thead,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_qstn table.sv_q_matrix_dropdown thead,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_qstn table.sv_q_matrix_dynamic thead {
    display: none;
  }
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_q table.sv_q_matrix tbody,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_q table.sv_q_matrix td,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_q table.sv_q_matrix tr,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_q table.sv_q_matrix_dropdown tbody,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_q table.sv_q_matrix_dropdown td,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_q table.sv_q_matrix_dropdown tr,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_q table.sv_q_matrix_dynamic tbody,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_q table.sv_q_matrix_dynamic td,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_q table.sv_q_matrix_dynamic tr,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_qstn table.sv_q_matrix tbody,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_qstn table.sv_q_matrix td,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_qstn table.sv_q_matrix tr,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_qstn table.sv_q_matrix_dropdown tbody,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_qstn table.sv_q_matrix_dropdown td,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_qstn table.sv_q_matrix_dropdown tr,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_qstn table.sv_q_matrix_dynamic tbody,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_qstn table.sv_q_matrix_dynamic td,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_qstn table.sv_q_matrix_dynamic tr {
    display: block;
  }
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_q table.sv_q_matrix_dropdown td:before,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_q table.sv_q_matrix_dynamic td:before,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_qstn table.sv_q_matrix_dropdown td:before,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_qstn table.sv_q_matrix_dynamic td:before {
    content: attr(headers);
  }
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_q table.sv_q_matrix td label.sv_q_m_label,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_qstn table.sv_q_matrix td label.sv_q_m_label {
    display: inline;
  }
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_q table.sv_q_matrix td:after,
  .sv_main .sv_container .sv_body .sv_p_root .sv_row .sv_qstn table.sv_q_matrix td:after {
    content: attr(headers);
  }
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
.landing-page .company-details li,
.partial-reg-page .company-details li {
  background-position-y: 9px;
}
.ft-loading {
  display: none;
}
.partial-reg-page .company-details {
  margin-bottom: 4vw;
}
.skip-btn--header {
  position: relative;
  text-align: center;
  color: #373737;
  font-weight: 700;
  font-size: 18px;
  line-height: 45px;
  padding: 0;
  width: 220px;
  border-radius: 60px;
  border: 2px solid #cacaca;
  font-family: Rotobo, sans-serif;
}
.ft-hidden {
  display: none;
}

.ft-modal-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: 0.7;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999998;
}

.ft-modal-window {
  left: 50%;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 999999;
}

form.validated input:invalid {
  box-shadow: 0 0 5px 1px red;
}

body.modal-is-open {
  overflow: hidden;
}
