/*!***************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/app.css ***!
  \***************************************************************/
#octo-extension-root {
    display: none !important;
}

/* raleway-200 - latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 200;
  src: url(fonts/raleway-v22-latin-200.eot);
  src: local(''),
    url(fonts/raleway-v22-latin-200.eot?#iefix) format('embedded-opentype'),
    url(fonts/raleway-v22-latin-200.woff2) format('woff2'),
    url(fonts/raleway-v22-latin-200.woff) format('woff'),
    url(fonts/raleway-v22-latin-200.ttf) format('truetype'),
    url(img/raleway-v22-latin-200.svg#Raleway) format('svg');
}

/* raleway-regular - latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url(fonts/raleway-v22-latin-regular.eot);
  src: local(''),
    url(fonts/raleway-v22-latin-regular.eot?#iefix) format('embedded-opentype'),
    url(fonts/raleway-v22-latin-regular.woff2) format('woff2'),
    url(fonts/raleway-v22-latin-regular.woff) format('woff'),
    url(fonts/raleway-v22-latin-regular.ttf) format('truetype'),
    url(img/raleway-v22-latin-regular.svg#Raleway) format('svg');
}

/* raleway-600 - latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  src: url(fonts/raleway-v22-latin-600.eot);
  src: local(''),
    url(fonts/raleway-v22-latin-600.eot?#iefix) format('embedded-opentype'),
    url(fonts/raleway-v22-latin-600.woff2) format('woff2'),
    url(fonts/raleway-v22-latin-600.woff) format('woff'),
    url(fonts/raleway-v22-latin-600.ttf) format('truetype'),
    url(img/raleway-v22-latin-600.svg#Raleway) format('svg');
}

@font-face {
  font-family: 'LEIXO';
  src: url(fonts/LEIXO-Regular.eot);
  src: url(fonts/LEIXO-Regular.eot?#iefix) format('embedded-opentype'),
       url(fonts/LEIXO-Regular.woff2) format('woff2'),
       url(fonts/LEIXO-Regular.woff) format('woff'),
       url(fonts/LEIXO-Regular.ttf)  format('truetype');
}

body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  background: white;
  transition: background 0.35s linear;
}

a {
    text-decoration: none;
}

.app_icon {
    height: 100%;
}

body.scrolled {
  background: #f9f9f9;
}

.nav {
    height: 70px;
    position: fixed;
    width: 100%;
    background: white;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 0px 10px 5px #00000000;
    transition: box-shadow 0.35s linear;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-bottom: 2px solid #1469d814;
}

.flex {
    display: flex;
}

.nav .inner {
    display: flex;
    height: 70px;
    padding-left: 15px;
    padding-right: 15px;
    margin: auto;
    justify-content: space-between;
    align-content: center;
    flex-direction: row;
    align-items: center;
}

.nav .logo {
    width: 160px;
    display: inline-flex;
    cursor: pointer;
    align-items: center;
}

.nav .logo img {
    width: 100%;
}

.nav-offset {
  height: 70px;
}

.nav .menu {
  display: inline-block;
  margin-left: 75px;
}

.nav .menu-item {
  display: inline-block;
  margin: 20px;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.25s linear;
}

.nav .menu-item:hover {
  color: #fd870d;
}

.nav .actions {
  display: inline-block;
}

.nav .menu-btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all .15s ease-in-out;
  /* border: 3px solid #fff; */
}

.menu-btn-line {
  width: 25px;
  height: 3px;
  background: black;
  border-radius: 5px;
  transition: all .15s ease-in-out;
}

.menu-btn-line::before,
.menu-btn-line::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 3px;
  background: black;
  border-radius: 5px;
  transition: all .15s ease-in-out;
}

.menu-btn-line::before {
  transform: translateY(-8px);
}

.menu-btn-line::after {
  transform: translateY(8px);
}

/* ANIMATION */
.menu-btn.open .menu-btn-line {
  background: transparent;
}

.menu-btn.open .menu-btn-line::before {
  transform: rotate(45deg);
}

.menu-btn.open .menu-btn-line::after {
  transform: rotate(-45deg);
}

.nav .mobile-menu {
  display: none;
}

.nav.open .mobile-menu {
  display: block;
  height: 100vh;
  background: #fcfcfc;
  z-index: 100;
}

.mobile-menu .menu-item {
  display: block;
  padding: 20px;
  margin: 0px 20px 0px 20px;
  border-bottom: 1px solid #0000001a;
}

@media only screen and (max-width: 675px) {
  .nav .menu {
    display: none;
  }
  .nav .actions {
    display: none;
  }
  .nav .menu-btn {
    display: flex;
  }
}

.btn {
  padding: 6px 18px;
  border-radius: 100px;
  color: white;
  font-size: 17px;
  cursor: pointer;
  transition: background 0.25s linear;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn.blue {
  background: #1469d8;
}

.btn.blue:hover {
  background: #3a86ea;
}

.btn.orange {
  background: #fc7f06;
}

.btn.orange:hover {
  background: #f9983a;
}

.content {
    padding: 30px 10px;
}

.content .banner {
  text-align: center;
  max-width: 675px;
  margin: auto;
  padding: 50px 40px 0px 40px;
}

.content .header {
    margin-top: 25px;
    margin-bottom: 0px;
    font-size: 30px;
    font-weight: 600;
    color: #012853;
}

.content .sub-header {
    font-size: 18px;
    text-align: center;
    line-height: 36px;
    margin: 10px 0px;
}

.content .banner .image {
  width: 225px;
  height: 100px;
  margin: auto;
}

.flex-box {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.flex-box-vert {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.flex-box-vert li {
    margin : 10px 0px;
    text-align: left;
}

.badge-block {
  padding: 12px 18px;
  background: #f1f1f1;
  border-radius: 100px;
  margin: 5px;
  color: black;
  font-size: 14px;
}

.bullet-header {
    text-align: left;
    font-size: 20px;
    font-weight: 400;
}

.bullet-block {
    padding: 6px 12px;
    background: #f1f1f1;
    border-radius: 100px;
    margin: 5px;
    color: #012853;
    font-size: 17px;
}

.bullet-list {
  padding: 20px;
  text-align: left;
  max-width: 350px;
  margin: auto;
}

.bullet-list>div {
  padding: 17px 25px;
  font-size: 18px;
  font-weight: 600;
  color: black;
  background: #fd820724;
  margin: 15px;
  border-radius: 100px;
}

.bullet-list span {
  position: relative;
  bottom: 2px;
}

.bullet {
  width: 20px;
  height: 20px;
  position: relative;
  top: 2px;
  display: inline-block;
  margin-right: 15px;
  border-radius: 3px;
}

.callout {
  background: #ff9901;
  color: white;
  min-height: 300px;
  padding: 40px;
}

.callout .sub-header {
  font-size: 25px !important;
  line-height: 50px !important;
  font-weight: 300 !important;
}

.callout .actions {
  margin: auto;
  padding: 25px;
}

.callout .actions .btn {
  display: inline-block;
}

.callout .banner {
  max-width: 100%;
}

@media only screen and (max-width: 425px) {
  .content .header {
    font-size: 28px;
  }

  .content .sub-header {
    font-size: 14px;
    line-height: 28px;
  }

  .content .banner {
    padding: 10px;
  }

  .content .banner .image {
    height: 80px;
  }

  .badge-block {
    font-size: 13px;
    padding: 10px 15px;
  }

  .bullet-list {
    padding: 0px;
  }

  .bullet-list>div {
    padding: 12px 20px;
    font-size: 15px;
  }

  .bullet-block {
      font-size: 14px;
  }

  .bullet-header {
      font-size: 17px;
  }

  .bullet {
    width: 15px;
    height: 15px;
  }

  .callout {
    padding: 0px;
  }

  .callout .sub-header {
    font-size: 17px !important;
    line-height: 30px !important;
  }
}

.form {
  max-width: 425px;
  margin: 10px auto 0px auto;
  text-align: center;
  background: white;
  box-shadow: 0px 2px 6px 4px #00000008;
  border-radius: 15px;
  padding: 10px;
  border: 1px solid #00000017;
}

#spinner_container {
  display: none;
  opacity: 0;
  transition: opacity 0.25s linear;
  position: absolute;
  z-index: 999;
  background: white;
}

#message_container {
  display: none;
  position: absolute;
  z-index: 900;
  background: white;
}

#spinner {
  margin: auto;
  width: 40px;
  height: 40px;
  position: relative;
}

#message_text {
  position: relative;
}

#message_container #title {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

#message_container #message {
  line-height: 30px;
  padding: 0px 20px;
}

.success #title {
  color: #22D42C;
}

.error #title {
  color: #EA3135;
}

.form .field {
  width: calc(100% - 25px);
  display: inline-block;
  margin: 10px 0px;
}

.form .field.half {
    width: calc(50% - 10px);
    margin: 10px 0px;
}

.form input, .form textarea, .form select {
  width: 100%;
  padding: 8px 9px;
  border: 0px;
  border-bottom: 1px solid #1469d8;
  border-radius: 3px;
  font-size: 16px;
  color: #00000085;
  transition: background 0.25s linear, outline-color 0.25s linear, border-color 0.25s linear;
}

.form textarea {
  min-height: 80px;
  font-family: 'Raleway', sans-serif;
  resize: none;
}

.form .label {
    text-align: left;
    font-size: 13px;
    color: #6a6a6a;
    margin-top: 5px;
}

.form .field.required input:active, .form .field.required input:focus, .form .field.required input:target {
  outline-color: red;
}

.invalid input, .invalid textarea, .invalid_email input {
  border-color: red;
  background: #fdf1f1;
}

.required .label:after {
  content: "*";
  position: absolute;
  color: #FB275D;
  font-size: 20px;
  top: -2px;
}

.form-btn {
    display: inline-block;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.form .input {
  position: relative;
}

.form .invalid .input:after, .form .invalid_email .input:after {
  content: "Required";
  color: red;
  font-size: 10px;
  position: absolute;
  left: 0;
  bottom: -12.5px;
}

.form .invalid_email .input:after {
  content: "Invalid Email";
}

@media only screen and (max-width: 425px) {
  .form {
    margin: 10px 20px;
  }

  .form textarea {
    min-height: 65px;
  }

  .form .field {
    margin: 7.5px 5px;
  }

  .form .field.half {
      width: 100%;
  }

  .form .label {
    font-size: 13px;
  }

  .form .field.mobile_full {
    width: calc(100% - 25px);
    margin: 7.5px 5px;
  }
}

.plan_container {
  text-align: center;
  color: white;
  min-height: 300px;
  text-align: center;
}

.plan_table {
  display: table;
  table-layout: fixed;
  width: 100%;
  max-width: 750px;
  margin: auto;
  border-collapse: separate;
  border-spacing: 15px;
}

.plan_row {
  display: table-row;
}

.plan {
  display: table-cell;
  width: 20%;
  color: black;
  padding: 7.5px;
  text-align: left;
  border-radius: 3px;
  position: relative;
  padding: 15px;
  background: white;
  padding-bottom: 80px;
}

.plan .title {
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #2470da;
}

.plan .cost {
  font-size: 13px;
}

.plan .dollars {
  font-size: 20px;
}

.plan .features {
  font-size: 14px;
  margin-top: 20px;
  border-top: 1px solid #0c0c0c1c;
  padding: 5px 5px 15px 5px;
}

.plan .features div {
  padding-top: 15px;
}

.plan_container .button_container {
  position: absolute;
  bottom: 20px;
  text-align: center;
  margin: auto;
  left: 0px;
  width: 100%;
}

.plan_container .button_container .btn {
  width: 100px;
  margin: auto;
}

@media only screen and (max-width: 575px) {
  .plan {
    display: block;
    width: auto;
    margin: 20px 10px;
  }

  .plan .title {
    width: calc(50% - 5px);
    display: inline-block;
    font-size: 22px;
  }

  .plan .cost {
    width: calc(50% - 5px);
    display: inline-block;
    text-align: right;
  }

  .plan .dollars {
    font-size: 18px;
  }

  .plan .features {
    margin-top: 5px;
    font-size: 13px;
  }
}

.faq-item {
  background: #80808012;
  margin: 10px;
  padding: 20px;
  text-align: left;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  position: relative;
}

.faq-item .title {
display: flex;
  pointer-events: none;
}

.faq-item .answer {
  height: 0px;
  text-align: left;
  overflow: hidden;
  font-size: 14px;
  line-height: 25px;
}

.faq-item.open .answer {
  height: auto;
}

.faq-item .answer>div {
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #00000017;
}

.faq-item .arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7px 0 7px;
  border-color: #010101 transparent transparent transparent;
  position: absolute;
  right: 20px;
  top: 27px;
}

.faq-item.open .arrow {
  border-width: 0 7px 10px 7px;
  border-color: transparent transparent #010101 transparent;
}

@media only screen and (max-width: 425px) {
  .faq-item {
    padding: 15px;
  }

  .faq-item .title {
    font-size: 12px;
    padding-right: 10px;
  }

  .faq-item .answer {
    font-size: 11px;
    line-height: 20px;
  }

  .faq-item .arrow {
    border-width: 5px 4px 0 4px;
    right: 12px;
    top: 20px;
  }

  .faq-item.open .arrow {
    border-width: 0 4px 5px 4px;
  }

  .faq-item.open .answer {
    height: auto;
  }
}

.footer {
  text-align: center;
  padding: 30px 0px;
}

.footer .footer-logo {
  width: 120px;
  height: 30px;
  margin: auto;
}

.footer .footer-text {
  margin-top: 15px;
  font-size: 11px;
}

.cube1, .cube2 {
  background-color: #1469d8;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-cubemove 1.8s infinite ease-in-out;
  animation: sk-cubemove 1.8s infinite ease-in-out;
}

.cube2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes sk-cubemove {
  25% {
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5)
  }

  50% {
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg)
  }

  75% {
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5)
  }

  100% {
    -webkit-transform: rotate(-360deg)
  }
}

@keyframes sk-cubemove {
  25% {
    transform: translateX(42px) rotate(-90deg) scale(0.5);
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
  }

  50% {
    transform: translateX(42px) translateY(42px) rotate(-179deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
  }

  50.1% {
    transform: translateX(42px) translateY(42px) rotate(-180deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
  }

  75% {
    transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  }

  100% {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
  }
}





.footer a {
    color : #55b0ff;
}

.transition-none {
    transition : none !important;
}

.error-404 {
    color : #1b1b1b;
    font-size: 35px;
    max-width: 400px;
    margin: auto;
    background: #ffffff7a;
    padding: 30px;
    border-radius: 3px;
}

.error-404 .small{
    font-size: 20px;
}

.image-main-container{
    padding : 0px !important;
}

#image-viewer {
    display : none;
    top : 0;
    position: fixed;
    height: 100vh;
    width: 100%;
    background: #000000e8;
    z-index: 1000;
}

#image-viewer .desktop-image {
    width: calc(100% - 130px);
    height: 90vh;
    margin: 75px 65px;
}

#image-viewer .desktop-image img {
    width: calc(100% - 130px);
    border-radius: 7px;
    box-shadow: -6px 6px 10px 2px #0e0e0ecc;
}

#image-viewer .desktop-image .control-left > div {
    top: calc(25vw);
    left: -55px;
}

#image-viewer .control-right {
    right : 0;
}

#image-viewer .desktop-image .control-right > div {
    top: calc(25vw);
    left: 8px;
}

#img-viewer-title {
    font-size: 30px;
    color: white;
    text-align: center;
    position: absolute;
    width: 100%;
    font-weight: 200;
    top: 15px;
}

.close-viewer {
    cursor : pointer;
    z-index : 100;
    position : absolute;
}

.close-viewer svg {
    font-size: 35px;
    color: white;
    padding: 20px;
}

.hero-panel.chart {
    padding: 20px 0px;
    max-width: 900px;
}

.w-4 {
    width: calc(25% - 10px);
    display: inline-block;
    margin: 0px 0px;
    vertical-align: top;
}

.chart-text {
    position: absolute;
    width: calc(25% - 10px);
}

.chart-text .value {
    font-size: 48px;
    position: relative;
    top: 35px;
    color: #094aaf;
    font-weight: 500;
}

.chart-text .subtitle {
    font-size: 14px;
    position: relative;
    top: 10px;
    margin: 10px 35px;
    color: #5a5a5a;
}

.chart-text .subtitle span {
    color: #094aaf;
    font-weight: 500;
}

.footer {
    color: black;
    background-color: transparent;
    border-top: 2px solid #0000002b;
    border-bottom: 2px solid #0000002b;
    margin: 20px 40px;
}

.footer div {
    font-size: 12px;
    font-weight: 400;
    color: #012853;
    text-align: center;
}

.middle-align > * {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.noscroll {
  overflow: hidden;
}

.dd-menu {
    display: none;
}

.dd-menu a {
    cursor: pointer;
    display: block;
    padding: 5px 0px;
    font-size: 15px;
    text-decoration: none;
    color : #1b1b1b;
    transition: all 0.35s cubic-bezier(.7, 1, .7, 1);
}

.dd-menu span {
    font-size: 12px;
    position: relative;
    bottom : 2.5px;
    color : gray;
}

.dropdown svg {
    position: relative;
    bottom: 3.5px;
    font-size: 12px;
    left: 3px;
}

.dd-menu a:hover {
    color : #55b0ff;
}

.dropdown.open .dd-menu {
    display: block;
    position: absolute;
    background: white;
    padding: 15px 15px;
    color: black;
    border-radius: 3px;
    text-align: left;
    width: 225px;
    box-shadow: -2px 2px 5px 2px #00000026;
}



.hero {
    width: 100%;
    position: relative;
    background-position: center;
    background-size: cover;
    max-height: 868px;
    padding: 182px 0px 0;
    min-height : 300px;
    text-align: center;
}

.hero.sm {
    padding: 115px 0px 0;
    min-height: 150px;
}
.hero.xs {
    padding: 80px 0px 0;
    min-height: 80px;
}

.hero.xs .big {
    font-size: 38px;
}

.hero.xs .tag {
    font-size: 22px;
    margin-top: 0px;
    font-weight: 100;
    padding-bottom: 25px;
}

ul.numbered {
    list-style: decimal;
}

.ios-store-link {
    position: relative;
    top: 15px;
    padding: 10px;
    height: 39px !important;
    width: 120px;
    display: inline-block;
}

.base-text {
    padding: 50px;
    max-width: 750px;
    margin: auto;
    line-height: 30px;
    color: rgba(0, 0, 0, 0.7);
}

.base-text h1 {
    font-size: 20px;
    font-weight: 500;
    padding-top:15px;
}

.base-text h2 {
    font-size: 18px;
    color: #0f4a97;
    font-weight: 500;
}

.background_blue {
    background-image: url(img/background_blue.png);
    color: white;
}

.background_green {
    background-image: url(img/background_green.png);
    color: white;
}

.background_orange{
    background-image: url(img/background_orange.png);
    color: white;
}

.hero .big {
    font-size: 42px;
    padding: 0px 15px;
}

.hero .tag {
    font-size: 24px;
    margin-top: 10px;
    font-weight: 100;
    padding: 0px 15px;
}

.hero .action {
    display: inline-block;
    padding: 6px 15px;
    background: #094aaf;
    border-radius: 3px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
    color: white;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.7, 1, 0.7, 1);
}

.hero .action:hover {
    background-color: #55b0ff;
}

.hero-panel {
    background-color: white;
    width: 95%;
    max-width: 800px;
    border-radius: 3px;
    margin: auto;
    position: relative;
    bottom: 73px;
    text-align: center;
    padding: 40px 0px;
    box-shadow: 0 0 64px 0 rgba(53,88,187,0.23);
}

.hero-panel.big {
    max-width: 900px;
}

.w-3 {
    width: calc(30% - 15px);
    display: inline-block;
    margin: 0px 15px;
    vertical-align: top;
}

.panel-icon {
    text-align: center;
    font-size: 42px;
    color: #55b0ff;
}

.panel-title {
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 10px;
}

.panel-text {
    text-align: center;
    font-size: 15px;
    color: #3a4450;
    line-height: 25px;
}

.tagline {
    text-align: center;
    font-weight: 400;
    font-size: 20px;
    width: 60%;
    margin: auto;
    padding: 25px 0px;
    position: relative;
    bottom: 40px;
}

.mobile-screens {
    padding-top: 50px;
    max-width: 825px;
    margin: auto;
}

.mobile-screen {
    display: inline-block;
    width : 100%;
    margin-bottom: 50px;
}

.mobile-image {
    display: inline-block;
    width: 250px;
    height: 513px;
    padding-left: 65px;
}

.mobile-image img {
    width: 250px;
    position: absolute;
}

.desktop-image {
    height: 345px;
    width: 550px;
    margin: auto;
}

.control-left, .control-right {
    position: relative;
    z-index: 10;
    width : 0px;
}

.control-right {
    float:right;
}

.control-left {
    float:left;
}

.screen_btn svg {
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.control-left svg {
    transform: rotate(180deg);
    position: relative;
    right: 2px;
}

.control-right svg {
}

.control-left > div, .control-right > div{
    background: #f7f7f7;
    width: 45px;
    height: 45px;
    text-align: center;
    border-radius: 45px;
    box-shadow: -2px 2px 4px 0px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    transition: background 0.35s cubic-bezier(.7, 1, .7, 1);
    padding : 0px !important;
}

.control-left > div:hover, .control-right > div:hover {
    background: #cacaca;
}

.mobile-image .control-left > div {
    position: absolute;
    top: 205px;
    right: -6px;
}

.mobile-image .control-right > div {
    top: 205px;
    position: absolute;
    left: -7px;
}

.desktop-image .control-left > div {
    top: 165px;
    position: relative;
    right: 55px;
}

.desktop-image .control-right > div {
    top: 145px;
    position: relative;
    left: 10px;
}

.control-right svg, .control-left svg {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #0f4a97;
}

.mobile-text {
    display: inline-block;
    width: calc(100% - 350px);
    vertical-align: top;
}

.mobile-text > div {
    width: 75%;
    padding: 25px;
    line-height: 28px;
    margin: auto;
}

.mobile-text > .title, .desktop-text > .title {
    font-size: 28px;
    padding: 0px;
    font-weight: 300;
    color: #769ed9;
    padding-top: 50px;
}

.mobile-image img, .desktop-image img  {
    opacity: 0;
    position: absolute;
}

.mobile-image img.open, .desktop-image img.open  {
    opacity: 1;
}

.mobile-screens {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.call-to-action {
    background: rgb(1 40 83);
    color: white;
    text-align: center;
    padding: 40px 10px;
    color: black;
    margin: 10px 20px;
    border-radius: 65px;
    max-width: 700px;
}

.call-to-action .title {
    font-family: LEIXO;
    text-transform: lowercase;
    font-size: 30px;
    font-weight: bold;
    padding: 5px 20px;
    color: white;
}

.call-to-action .text {
    font-size: 22px;
    color: white;
    padding: 0px 40px;
    margin: 20px 0px;
    line-height: 40px;
}

@media only screen and (max-width: 575px) {
    .call-to-action .title {
        font-size: 28px;
    }
    .call-to-action .text {
        font-size: 18px;
    }
}

.button {
    font-size: 18px;
    padding: 10px 14px;
    border: none;
    color: #ffffff;
    background: #094aaf;
    display: inline-block;
    box-shadow: none;
    border-radius: 100px;
    margin: 5px 2.5px;
    outline: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.7, 1, 0.7, 1);
}

.button:hover {
    background: #55b0ff;
}

.button.alt {
    background: #ea9337;
}

.button.alt:hover  {
    background: #ea9337;
}

.button.submit {
    margin : 15px;
}

.form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.form .required {
    color: #e65c5c;
    left: 3px;
    font-size: 13px;
    bottom: 3px;
    position: relative;
}

.form .field {
    width: 100%;
    display: inline-block;
}

.form .field > div {
        padding: 0px 10px;
}

.field.text-area {
    width: 100%;
}

.form .field label {
    width: 100%;
    font-weight: 500;
    padding-bottom: 5px;
    color: #020202;
    display: block;
    font-size: 13px;
}

.form .field label.subtext {
    font-weight: 300;
    font-size: 15px;
    color: gray;
}

.form .field input, .form .field textarea,
.form .field select {
    width: 100%;
    font-size: 16px;
    padding: 8px 0px;
    font-weight: 100 !important;
    color: #444444;
    border: 0px;
    border-bottom: 1px solid #1469d8;
    box-sizing: border-box;
    outline: none;
}



.form .field textarea {
    width: 100%;
    height: 85px;
    border: 1px solid #1469d8;
    margin-top: 10px;
    border-radius: 7px;
}

.form .field input[type="checkbox"] {
    width: 20px;
    box-shadow: none;
}

.field.checkbox {
    width: 100%;
}

.checkbox-label {
    width: calc(100% - 40px) !important;
    display: inline-block !important;
    font-weight: 300 !important;
    font-size: 16px !important;
    padding: 6px 0px !important;
    position: relative;
    bottom: 1px;
}

#pilot_success, #contact_success, #demo_success, #ea_learn_more {
    display: none;
}

.success_msg {
    display: block;
    text-align: center;
    font-size: 20px;
    padding: 75px 0px;
}

#spinner {
    display: none;
    position: fixed;
    height: 100vh;
    width: 100%;
    z-index: 1000;
    background: #00000029;
    color: #004786;
    text-align: center;
}

#spinner > div {
    top: 50vh;
    position: relative;
}

#error_container {
    position: fixed;
    display: none;
    top: 90px;
    z-index: 100;
    background: #e64444fc;
    left: calc(50vw - 180px);
    width: 360px;
    border-radius: 2px;
    color: white;
    box-shadow: -3px 3px 5px #0000004a;
}

#error_container > div {
    padding: 20px
}

#error_title_container {
    font-size: 22px;
}

#error_msg {
    font-size: 15px;
    padding-top: 5px;
}

.content > * {
    max-width: 650px;
    margin: auto;
}

.content > .title {
    text-align: center;
    font-size: 33px;
    font-weight: 500;
    color: #094aaf;
    text-transform: lowercase;
    font-family: LEIXO;
    margin-bottom: 20px;
    margin-top: 20px;
}

.content .text {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    padding: 15px;
    line-height: 32px;
}

@media only screen and (max-width: 575px) {
    .content > .title {
        font-size: 28px;
    }
    .content .text {
        font-size: 16px;
    }
}


.gs_table table {
  width: 100%;
  border-radius: 15px;
  text-align: center;
  border-spacing: 0px;
}

.gs_table .table_logo img {
    width : 150px;
}

.gs_table .pharmalite {
  background: #094aaf0a;
}

.gs_table table b {
  font-weight: 600;
  color : #012853;
}

.gs_table table svg {
  font-size : 20px;
}

.gs_table table th {
  padding: 20px 10px;
  font-size: 22px;
  text-transform: lowercase;
  font-family: LEIXO;
}

.gs_table table tbody tr:nth-child(odd) {
  background: #0404040a;
}

.gs_table table td {
  padding: 15px 10px;
  font-size: 15px;
}

.gs_table .checkbox svg, .gs_table .times svg {
    height : 35px;
}

@media only screen and (max-width: 575px) {
    .gs_table table th {
        padding: 15px 10px;
        font-size: 15px;
    }
    .gs_table table td {
        padding: 10px 7.5px;
        font-size: 12px;
    }
    .gs_table .table_logo img {
        width: 85px;
    }
    .gs_table .checkbox svg, .gs_table .times svg {
        height : 25px;
    }
}

