@charset "UTF-8";
/*

	Zirelco Marketing Theme
	Author: Goran Ramljak
	Version: 0.0.1

*/
/* Helpers - Functions, mixins, variables */
/* Font variables - start */
/* Colors variables - start */
/* Background Colors Variations */
/* Newly defined colors  / Fonts */
/* Select - color, style */
/* Font - primary font family */
/* Mixins - start */
/* Media queries Mixins - start */
/* Media queries Mixins - end */
/* Css3 */
/* Fonts */
/* Animation */
/*
Usage

@include keyframes(slide-down) {
	0% { opacity: 1; }
	90% { opacity: 0; }
}

.element {
	width: 100px;
	height: 100px;
	background: black;
	@include animation('slide-down 5s 3');
}

*/
/* Animation ends */
/* Killer Feature - start */
/* Killer Feature - end */
/* Input border mixin - start */
/* Input border mixin - end */
/* Example: @include transition(all,2s,ease-out); 
@mixin transition($what: all, $time: 0.3s) {
    -webkit-transition: $what $time;
    -moz-transition:    $what $time;
    -ms-transition:     $what $time;
    -o-transition:      $what $time;
    transition:         $what $time;
}
*/
/* Simple button - start */
/* Simple button - end */
/* Rotate background - start */
/* Border radius */
/* Vertical align */
/* Rotate background - end */
/* Input focus */
/* Input placeholder color */
/* Blue header background - gradient */
/* Red header background - gradient */
/* Dark header background - gradient */
/* Article Backgrounds */
/* Header Positions & Sticky Element*/
/* This is nonsense
@mixin stickyness {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
*/
/* BASE - Base styles, normalize, reset, typography */
/* Base CSS */
* {
  box-sizing: border-box; }

html {
  height: 100%; }

body {
  min-height: 100%;
  overflow-y: scroll;
  -webkit-font-smoothing: antialiased; }
  body:hover .stations-wrap {
    display: none; }

::-moz-selection {
  /* Code for Firefox */
  color: #fff;
  background: #0037ff; }

::selection {
  color: #fff;
  background: #0037ff; }

a {
  -webkit-transition: -webkit-transform 300ms ease;
  transition: -webkit-transform 300ms ease;
  transition: transform 300ms ease;
  transition: transform 300ms ease, -webkit-transform 300ms ease;
  cursor: pointer;
  position: relative; }
  a:hover {
    text-decoration: none; }

a.no-underline:after, a.no-underline:before {
  display: none; }

.normal-weight {
  font-weight: normal; }

button,
.btn {
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.022);
  white-space: nowrap;
  -webkit-transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  border: none;
  cursor: pointer; }
  button:hover, button:focus,
  .btn:hover,
  .btn:focus {
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
    background: #1c9442;
    color: #fff; }

button.ghost {
  white-space: nowrap;
  -webkit-transition: border-color 0.2s ease-in, color 0.2s ease-in;
  -moz-transition: border-color 0.2s ease-in, color 0.2s ease-in;
  -ms-transition: border-color 0.2s ease-in, color 0.2s ease-in;
  -o-transition: border-color 0.2s ease-in, color 0.2s ease-in;
  transition: border-color 0.2s ease-in, color 0.2s ease-in;
  color: #2979ff;
  background: transparent;
  border-color: #d4e4ff;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  border-width: 3px;
  cursor: pointer;
  padding: 10px 20px;
  font-size: 16px; }
  button.ghost:hover {
    border-color: #2979ff; }

.has-error .form-control {
  border-color: red; }
  .has-error .form-control:focus {
    border-color: red; }

.has-error label.error {
  color: red;
  padding-left: 0; }

/* Buttons - start */
/* Reset bootstrap - style

.container {
  width: 1430px;
  @include tablet {
    width: 100%;
  }
  @include mobile {
    width: 100%;
  }
  @include desktopLg {
    width: 100%;
  }
}
 */
@media (max-width: 1024px) and (min-width: 767px) {
  .blog-container {
    width: 100%; } }

@media (max-width: 767px) and (min-width: 300px) {
  .blog-container {
    width: 100%; } }

@media (max-width: 1500px) and (min-width: 1025px) {
  .blog-container {
    width: 100%; } }

/* Boostrap dropdown */
.dropdown-menu a {
  width: 100%;
  padding: 3px 20px 10px 17px;
  clear: both;
  font-family: Roboto;
  font-weight: 300;
  font-size: 14px;
  color: #4a4a4a;
  text-align: inherit;
  white-space: nowrap;
  background: 0 0;
  border: 0;
  line-height: 35px; }
  .dropdown-menu a.barney {
    color: #171717; }

.dropdown-menu .dropdown-divider {
  height: 1px;
  margin: .5rem 0;
  overflow: hidden;
  background-color: #e5e5e5;
  font-size: 1rem;
  color: #373a3c;
  text-align: left;
  list-style: none; }

button:active, button:focus, button:hover {
  outline: none !important; }

/* SVG div */
#blockColorblindContent {
  display: none; }

ul {
  margin-bottom: 0rem; }

/* Normalize - style */
html {
  min-height: 100%;
  position: relative; }

body {
  /*margin-bottom: 55px;*/
  /*padding-bottom: 55px;*/ }

a {
  outline: 0; }
  a:focus {
    outline: 0; }

.wrapper {
  /*padding-bottom: 100px;*/
  position: relative;
  min-height: calc(100% - 61px); }

select {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0; }
  select:active {
    outline: 0; }
  select:focus {
    outline: 0; }
  select:-ms-expand {
    display: none; }
  select::-ms-expand {
    display: none; }

input {
  /*
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    */
  border-radius: 0; }
  input[type="submit"] {
    border: 0; }
  input:active {
    outline: 0; }
  input:focus {
    outline: 0; }

/* Typography - style */
@font-face {
  font-family: 'Titillium Web', sans-serif;
  src: url("../fonts/Titillium_Web/regular/RobotoRegular.eot");
  src: url("../fonts/Titillium_Web/regular/RobotoRegular.eot") format("embedded-opentype"), url("../fonts/Titillium_Web/regular/RobotoRegular.woff2") format("woff2"), url("../fonts/Titillium_Web/regular/RobotoRegular.woff") format("woff"), url("../fonts/Titillium_Web/regular/RobotoRegular.ttf") format("truetype"), url("../fonts/Titillium_Web/regular/RobotoRegular.svg#RobotoRegular") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Titillium Web', sans-serif;
  src: url("../fonts/Titillium_Web/bold/Roboto-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Titillium_Web/bold/Roboto-Bold.woff") format("woff"), url("../fonts/Titillium_Web/bold/Roboto-Bold.ttf") format("truetype"), url("../fonts/Titillium_Web/bold/Roboto-Bold.svg#Roboto-Bold") format("svg");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'Titillium Web', sans-serif;
  src: url("../fonts/Titillium_Web/light/Roboto-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Titillium_Web/light/Roboto-Medium.woff") format("woff"), url("../fonts/Titillium_Web/light/Roboto-Medium.ttf") format("truetype"), url("../fonts/Titillium_Web/light/Roboto-Medium.svg#Roboto-Medium") format("svg");
  font-weight: 500;
  font-style: normal; }

body {
  font-size: 16px;
  font-family: "Titillium Web", sans-serif; }

h1 {
  font-size: 40px;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700; }
  @media (max-width: 767px) and (min-width: 300px) {
    h1 {
      font-size: 30px; } }

h2 {
  font-size: 30px;
  color: #171717;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700; }
  @media (max-width: 767px) and (min-width: 300px) {
    h2 h2 {
      font-size: 10px; } }

h3, h4 {
  font-weight: 700; }

h5 {
  font-size: 14px;
  color: #171717;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700; }
  @media (max-width: 767px) and (min-width: 300px) {
    h5 h2 {
      font-size: 10px; } }

p, ul li {
  font-family: "Titillium Web", sans-serif;
  color: #6b7c93;
  font-size: 16px; }

/* Article - styling */
p.initial {
  color: #171717;
  font-size: 20px; }
  p.initial:first-child:first-letter {
    color: #FF7100;
    float: left;
    font-family: Georgia;
    font-size: 75px;
    line-height: 60px;
    padding-top: 10px;
    padding-right: 12px;
    padding-left: 3px; }

article h2 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 17px; }

article p {
  font-size: 17px;
  color: #4a4a4a;
  line-height: 29px; }

/* Layout - Header, footer, forms, sidebar */
.logo {
  margin-top: 18px;
  float: left; }
  @media (max-width: 992px) and (min-width: 767px) {
    .logo {
      margin-right: 18px; } }

.main-content {
  min-height: 100vh;
  background-color: #14A0AA; }

.styled li:nth-of-type(1) a::before {
  background: #f4e58a url(https://codyhouse.co/demo/stripe-navigation/img/cd-gallery-icons.svg) no-repeat 0 0; }

.styled {
  padding: 0px;
  float: left; }
  .styled li {
    list-style: none;
    float: left;
    width: 100%;
    margin-bottom: 12px; }
    .styled li a {
      display: block;
      float: left;
      width: 100%;
      /* margin-bottom:12px; */ }
      .styled li a::before {
        background: red;
        content: '';
        display: inline-block;
        float: left;
        height: 54px;
        width: 54px;
        margin-right: .6em;
        border-radius: 50%;
        -webkit-transition: background .2s;
        transition: background .2s;
        position: relative; }

ul.links-list {
  list-style: none;
  padding: 0px; }

/* button within the navigation */
.content .dropdown button {
  width: 100%;
  margin-top: 16px; }

.styled a em {
  display: block;
  line-height: 16px;
  font-size: 16px;
  padding: .4em 0 .2em;
  color: #1a1a1a;
  font-style: normal; }

.styled a span {
  font-size: 14px;
  color: #a6a6a6;
  display: block;
  line-height: 16px; }

.custom-dropdown {
  position: relative;
  height: 60px;
  background-color: #FFFFFF;
  z-index: 100; }
  .custom-dropdown:before {
    content: 'mobile';
    display: none; }
  .custom-dropdown .nav-trigger {
    position: absolute;
    top: 0;
    right: 0;
    height: 60px;
    width: 60px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    color: transparent; }
    .custom-dropdown .nav-trigger span {
      position: absolute;
      background-color: #1A1A1A;
      height: 3px;
      width: 26px;
      left: 50%;
      top: 50%;
      bottom: auto;
      right: auto;
      transform: translateX(-50%) translateY(-50%);
      transition: background-color .3s; }
      .custom-dropdown .nav-trigger span:before, .custom-dropdown .nav-trigger span:after {
        position: absolute;
        background-color: #1A1A1A;
        height: 3px;
        width: 26px;
        content: '';
        left: 0;
        transition: transform .3s; }
      .custom-dropdown .nav-trigger span:before {
        transform: translateY(-9px); }
      .custom-dropdown .nav-trigger span:after {
        transform: translateY(9px); }
  .custom-dropdown.nav-open .nav-trigger span {
    background-color: transparent; }
    .custom-dropdown.nav-open .nav-trigger span:before {
      transform: rotate(45deg); }
    .custom-dropdown.nav-open .nav-trigger span:after {
      transform: rotate(-45deg); }
  .custom-dropdown.nav-open .morph-dropdown-wrapper {
    display: block; }
  .custom-dropdown .label {
    display: block;
    color: #1A1A1A;
    margin-bottom: .8em; }

.main-nav {
  display: none; }
  .main-nav ul {
    padding: 0;
    margin: 0;
    overflow: hidden; }

.morph-dropdown-wrapper {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  padding: 1.2em 5%;
  box-shadow: inset 0 1px 0 #e6e6e6;
  background-color: #FFFFFF; }

@media only screen and (min-width: 768px) {
  .main-content {
    padding-top: 80px; }
  .custom-dropdown {
    position: absolute;
    height: 80px;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0;
    text-align: center;
    background-color: transparent; }
    .custom-dropdown:before {
      content: 'desktop'; }
    .custom-dropdown .nav-trigger {
      display: none; }
    .custom-dropdown .main-nav {
      display: inline-block;
      float: right; }
      .custom-dropdown .main-nav > ul > li {
        display: inline-block;
        float: left; }
        .custom-dropdown .main-nav > ul > li > a {
          display: block;
          padding: 0 1.8em;
          height: 70px;
          line-height: 70px;
          color: #000000;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          -webkit-transition: opacity .2s;
          transition: opacity .2s; }
    .custom-dropdown.is-dropdown-visible .main-nav > ul > li > a {
      opacity: .6; }
    .custom-dropdown.is-dropdown-visible .main-nav > ul > li.active > a {
      opacity: 1; }
  .custom-dropdown .morph-dropdown-wrapper {
    display: block;
    top: 58px;
    width: auto;
    padding: 0;
    box-shadow: none;
    background-color: transparent;
    transform: translateZ(0);
    will-change: transform;
    transform: translateY(20px);
    transition: transform .3s; }
  .custom-dropdown.is-dropdown-visible .morph-dropdown-wrapper {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  .custom-dropdown .dropdown-list {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    transform: translateZ(0);
    will-change: transform, width, height;
    transition: visibility .3s;
    box-shadow: 1px 1px 3px rgba(115, 127, 136, 0.3);
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */ }
    .custom-dropdown .dropdown-list:before {
      content: '';
      position: absolute;
      bottom: 100%;
      left: 50%;
      right: auto;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      height: 0;
      width: 0;
      border: 8px solid transparent;
      border-bottom-color: #FFFFFF;
      opacity: 0;
      -webkit-transition: opacity .3s;
      transition: opacity .3s; }
  .no-csstransitions .custom-dropdown .dropdown-list {
    display: none; }
  .custom-dropdown .dropdown-list > ul {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0; }
  .custom-dropdown.is-dropdown-visible .dropdown-list {
    visibility: visible;
    -webkit-transition: width .3s, height .3s, -webkit-transform .3s;
    transition: width .3s, height .3s, -webkit-transform .3s;
    transition: transform .3s, width .3s, height .3s;
    transition: transform .3s, width .3s, height .3s, -webkit-transform .3s;
    background: #fff; }
  .custom-dropdown.is-dropdown-visible .dropdown-list::before {
    opacity: 1; }
  .custom-dropdown .dropdown {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    -webkit-transition: opacity .3s, visibility .3s;
    transition: opacity .3s, visibility .3s; }
  .custom-dropdown .dropdown.active {
    opacity: 1;
    visibility: visible; }
  .custom-dropdown .dropdown.move-left .content {
    -webkit-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    transform: translateX(-100px); }
  .custom-dropdown .dropdown.move-right .content {
    -webkit-transform: translateX(100px);
    -ms-transform: translateX(100px);
    transform: translateX(100px); }
  .custom-dropdown .label {
    /* hide the label on bigger devices */
    display: none; }
  .custom-dropdown .content {
    padding: 2.2em 1.8em;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    text-align: left;
    width: 390px;
    float: Left; }
  .custom-dropdown .bg-layer {
    /* morph dropdown background */
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 1px;
    /* background: #FFFFFF; */
    opacity: 0;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }
  .custom-dropdown.is-dropdown-visible .bg-layer {
    opacity: 1;
    -webkit-transition: opacity .3s, -webkit-transform .3s;
    transition: opacity .3s, -webkit-transform .3s;
    transition: transform .3s, opacity .3s;
    transition: transform .3s, opacity .3s, -webkit-transform .3s; } }

@media only screen and (max-width: 768px) {
  .dropdown-list ul {
    list-style: none;
    padding: 0px; }
  .custom-dropdown .label {
    font-weight: bold; } }

/* Morphing & Preload */
#morph {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  pointer-events: none;
  z-index: 99; }

.preloader {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 19999;
  height: 100%;
  width: 100%; }

.no-js #preloader, .oldie #preloader {
  display: none; }

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  width: 240px; }

/* Share on Social Networks */
.twitter-share, .facebook-share {
  background: red;
  color: #57cff4;
  cursor: pointer;
  display: inline-block;
  padding: 1em 2em;
  -webkit-border-radius: 6px;
  border-radius: 6px; }
  .twitter-share:hover, .facebook-share:hover {
    position: relative;
    top: -1px; }

h1 span {
  opacity: 20%;
  text-decoration: line-through; }

/* Share on Social Networks */
/* Preload Text Animation */
@keyframes letter-in {
  0% {
    top: 1.2em; }
  100% {
    top: 0em; } }

@keyframes letter-out {
  0% {
    top: 0em; }
  100% {
    top: -1.2em; } }

div.changing-title {
  font-size: 33px;
  height: 40px;
  position: relative;
  width: 100%;
  overflow-y: hidden;
  text-align: center;
  margin-left: 1em;
   transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1); }
  div.changing-title h1 {
    font-size: 1em;
    position: absolute;
    left: 0;
    top: 0;
    margin: 0; }
    div.changing-title h1 .letter {
      position: relative;
      top: 1.2em; }
      div.changing-title h1 .letter.in {
        animation-name: letter-in;
        animation-duration: 0.3s;
        animation-timing-function: ease-out;
        animation-fill-mode: forwards; }
      div.changing-title h1 .letter.out {
        top: 0em;
        animation-name: letter-out;
        animation-duration: 0.3s;
        animation-timing-function: ease-in;
        animation-fill-mode: forwards; }

/* Accesibility */
a.skip-main {
  left: 0px;
  position: absolute;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -999; }
  a.skip-main:focus, a.skip-main:active {
    color: #fff;
    background-color: #23b351;
    left: auto;
    top: auto;
    height: auto;
    overflow: auto;
    width: 100px;
    margin: 10px 35%;
    padding: 10px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */
    text-align: center;
    font-size: 12px;
    z-index: 999; }
  @media (max-width: 1500px) and (min-width: 1025px) {
    a.skip-main {
      overflow: hidden; } }
  @media (max-width: 992px) and (min-width: 300px) {
    a.skip-main {
      height: auto;
      min-height: 500px; } }
  @media (max-width: 1024px) and (min-width: 767px) {
    a.skip-main {
      min-height: 700px; } }
  @media (max-width: 767px) and (min-width: 300px) {
    a.skip-main {
      background: none #e3e4e6; } }

/* Types of Intro Component... */
/* Go through components and search  for common patterns and add them to mixins */
/* Top Header - v1 */
#top-wrapper-v1 {
  position: relative;
  top: -73px;
  padding-top: 100px;
  height: 110vh; }
  #top-wrapper-v1.yellow {
    background-image: linear-gradient(57deg, #ff8e00, #ff8e00 27%, #ffba00); }
  #top-wrapper-v1 .mobile-phone-cta {
    background: url("../../res/img/phones.png") no-repeat;
    width: 690px;
    height: 542px;
    background-size: cover;
    position: absolute;
    bottom: 19px;
    float: right;
    left: 50%;
    /*
        video {
            width: 320px;
            border-top-left-radius: 55px;
            border-top-right-radius: 55px;
        }
        */ }
    @media (max-width: 767px) and (min-width: 300px) {
      #top-wrapper-v1 .mobile-phone-cta {
        display: none; } }
  #top-wrapper-v1 .alignment-helper {
    position: relative;
    height: 80%; }
    #top-wrapper-v1 .alignment-helper .text-wrapper {
      padding-top: 150px; }
      @media (max-width: 992px) and (min-width: 300px) {
        #top-wrapper-v1 .alignment-helper .text-wrapper {
          padding-top: 0px; } }
      @media (max-width: 767px) and (min-width: 300px) {
        #top-wrapper-v1 .alignment-helper .text-wrapper {
          padding-top: 0px; } }
      #top-wrapper-v1 .alignment-helper .text-wrapper .form {
        margin-top: 30px; }
        #top-wrapper-v1 .alignment-helper .text-wrapper .form input {
          border: none;
          -webkit-box-shadow: none;
          -moz-box-shadow: none;
          box-shadow: none; }
      #top-wrapper-v1 .alignment-helper .text-wrapper h1, #top-wrapper-v1 .alignment-helper .text-wrapper h5, #top-wrapper-v1 .alignment-helper .text-wrapper p {
        color: #fff; }
  #top-wrapper-v1 .text-wrapper h5 {
    opacity: .7; }
  #top-wrapper-v1 .killer-features {
    background: #ffffff1f;
    padding: 32px 0px;
    position: absolute;
    bottom: 0px;
    width: 100%; }
    @media (max-width: 767px) and (min-width: 300px) {
      #top-wrapper-v1 .killer-features {
        padding: 16px 0px; } }
    #top-wrapper-v1 .killer-features .col-md-4 {
      background: #fff;
      -webkit-border-radius: 6px;
      border-radius: 6px;
      background-clip: padding-box;
      /* stops bg color from leaking outside the border: */
      -webkit-box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.19), 0 0 2px 0 rgba(0, 0, 0, 0.15);
      -moz-box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.19), 0 0 2px 0 rgba(0, 0, 0, 0.15);
      box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.19), 0 0 2px 0 rgba(0, 0, 0, 0.15);
      padding: 20px;
      float: left;
      width: 31.97%;
      margin-right: 20px; }
      @media (max-width: 767px) and (min-width: 300px) {
        #top-wrapper-v1 .killer-features .col-md-4 {
          width: 100%;
          margin-right: 0px;
          margin-bottom: 12px; } }
      #top-wrapper-v1 .killer-features .col-md-4:last-child {
        margin-right: 0px; }
        @media (max-width: 767px) and (min-width: 300px) {
          #top-wrapper-v1 .killer-features .col-md-4:last-child {
            margin-bottom: 0px; } }
      #top-wrapper-v1 .killer-features .col-md-4 h5::before {
        content: "";
        height: 21px;
        width: 30px;
        display: block;
        float: left;
        background-size: 20px !important; }
      #top-wrapper-v1 .killer-features .col-md-4 h5.financial::before {
        background: url("../img/ico_financial_impact.svg") no-repeat; }
      #top-wrapper-v1 .killer-features .col-md-4 h5.inovation::before {
        background: url("../img/ico_tech_innovation.svg") no-repeat; }
      #top-wrapper-v1 .killer-features .col-md-4 h5.scalability::before {
        background: url("../img/ico_scalability.svg") no-repeat; }
      #top-wrapper-v1 .killer-features .col-md-4 p {
        margin-bottom: 0px;
        color: #8898AA; }

/* Impressum Properties */
.impressum {
  padding-top: 100px; }

/* About Us Properties */
.intro-wrapper {
  margin-top: 50px; }
  .intro-wrapper h1 {
    font-size: 56px;
    margin-bottom: 0px; }
    @media (max-width: 767px) and (min-width: 300px) {
      .intro-wrapper h1 {
        text-indent: 20px;
        font-size: 30px; } }
    .intro-wrapper h1::before {
      content: "";
      height: 50px;
      width: 50px;
      box-shadow: 0 2px 4px 0 rgba(136, 152, 170, 0.15);
      display: block;
      float: left;
      position: absolute;
      left: 0px;
      top: 26px;
      -webkit-border-radius: 50px;
      border-radius: 50px;
      background-clip: padding-box;
      /* stops bg color from leaking outside the border: */ }
      @media (max-width: 767px) and (min-width: 300px) {
        .intro-wrapper h1::before {
          display: none; } }
    .intro-wrapper h1.market::before {
      background: #FFF url("../img/ico_markets.svg") no-repeat center;
      background-size: 26px !important;
      left: 25px; }
    .intro-wrapper h1.client::before {
      background: #FFF url("../img/ico_product.svg") no-repeat center;
      background-size: 26px !important;
      left: 30px; }
    .intro-wrapper h1.location::before {
      background: #FFF url("../img/ico_location.svg") no-repeat center;
      background-size: 26px !important; }
    .intro-wrapper h1.founded::before {
      background: #FFF url("../img/ico_founded.svg") no-repeat center;
      background-size: 20px !important; }

.about-wrapper h1 {
  color: #171717; }

.about-wrapper p {
  color: #fff;
  font-size: 12px;
  opacity: .5; }

@keyframes blob {
  0%,
  100% {
    border-radius: 56% 93% 56% 94%; }
  20% {
    border-radius: 89% 26% 70% 30%; }
  40% {
    border-radius: 56% 93% 56% 94%; }
  60% {
    border-radius: 68% 60% 94% 96%; }
  80% {
    border-radius: 34% 74% 59% 82%; } }

#illustration-area {
  padding: 100px 0px;
  transition: 0.6s ease;
  animation: blob 120s linear infinite alternate;
  margin-bottom: 55px;
  /*
    h1,h3,p,a{
        color:$white-color;
    }
*/ }
  @media (max-width: 767px) and (min-width: 300px) {
    #illustration-area {
      padding-top: 50px;
      animation: none; } }
  #illustration-area .half {
    margin-top: 80px;
    float: left;
    width: 50%; }
    @media (max-width: 767px) and (min-width: 300px) {
      #illustration-area .half {
        width: 100%; } }
  #illustration-area .contact-body {
    overflow: hidden;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  #illustration-area .city-address {
    float: left; }
    #illustration-area .city-address:first-of-type {
      margin-top: -4px;
      margin-bottom: 70px;
      width: 100%; }
    #illustration-area .city-address h3 {
      text-transform: uppercase;
      margin-bottom: 0px; }
      @media (max-width: 767px) and (min-width: 300px) {
        #illustration-area .city-address h3 {
          margin-top: 0px; } }
    #illustration-area .city-address p {
      margin-bottom: 0px; }
  #illustration-area .illustration {
    max-width: 637px;
    max-height: 529px; }
    @media (max-width: 767px) and (min-width: 300px) {
      #illustration-area .illustration {
        width: 100%;
        height: 50%; } }
  #illustration-area .contact-row {
    line-height: 24px; }
    #illustration-area .contact-row:first-of-type {
      margin-bottom: 20px; }
    #illustration-area .contact-row ul li {
      float: left;
      margin-left: 20px; }
      #illustration-area .contact-row ul li:first-of-type {
        margin-left: 0px; }

.about-subtitle {
  text-transform: uppercase;
  font-weight: bold; }
  @media (max-width: 767px) and (min-width: 300px) {
    .about-subtitle {
      margin-right: 20px; } }

/* Top Header - Shrinked */
#top-wrapper-shrinked {
  padding: 150px 0px;
  position: relative;
  top: -73px; }
  #top-wrapper-shrinked .text-wrapper h1, #top-wrapper-shrinked .text-wrapper p {
    color: #fff; }

/* General Form For Submitting */
.form {
  /* Mailchimp Input Field */
  /* Mailchimp Input Field */ }
  .form input {
    float: left;
    width: 60%;
    /* 267px */
    margin-right: 10px; }
    @media (max-width: 767px) and (min-width: 300px) {
      .form input {
        width: 58%; } }
  .form button, .form input.button {
    background: #23b351;
    border: transparent; }
  .form input.button {
    width: 35%;
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    font-family: "Titillium Web", sans-serif;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    color: #FFF;
    height: 34px; }
    .form input.button:hover {
      border: none;
      box-shadow: none;
      outline: 0; }

/* Just add darkGradient as class OVO IDE U BASE */
.darkGradient {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000c1b+0,4c5a66+100 */
  background: #000c1b;
  /* Old browsers */
  background: -moz-linear-gradient(45deg, #000c1b 0%, #4c5a66 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, #000c1b 0%, #4c5a66 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #000c1b 0%, #4c5a66 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000c1b', endColorstr='#4c5a66',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */ }

.orangeGradient {
  background-image: -webkit-linear-gradient(315deg, #ff6f00, #ff3d00);
  background-image: -o-linear-gradient(315deg, #ff6f00 0, #ff3d00 100%);
  background-image: linear-gradient(-225deg, #ff6f00, #ff3d00); }

/* Floating Call To Action - Component */
#floating-cta .container {
  -webkit-border-radius: 6px;
  border-radius: 6px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  -webkit-box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.19), 0 0 2px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.19), 0 0 2px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.19), 0 0 2px 0 rgba(0, 0, 0, 0.15);
  background: #fff;
  padding: 12px 20px 20px 20px; }
  #floating-cta .container .badge {
    width: 126px;
    height: 41px;
    display: inline-block;
    float: left;
    margin-right: 10px; }
  #floating-cta .container p {
    margin-bottom: 0px; }
  #floating-cta .container a {
    display: block;
    line-height: 109px;
    background: #EAEAEA;
    text-align: center;
    position: absolute;
    right: -5px;
    top: -12px;
    -webkit-border-radius: 0px 6px 6px 0px;
    border-radius: 0px 6px 6px 0px;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */
    padding: 0px 110px; }

/* Sticky Component / Wrapper */
.meta-helper {
  position: absolute; }

.helper {
  height: 61px;
  position: relative;
  top: -73px; }

#sticky-wrapper {
  background: #fff;
  box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.12);
  height: 60px;
  display: none;
  -webkit-animation: slide 0.5s forwards;
  -webkit-animation-delay: 1s;
  animation: slide 0.5s forwards;
  animation-delay: 1s; }
  @media (max-width: 1024px) and (min-width: 767px) {
    #sticky-wrapper {
      height: 67px;
      width: 100%; } }
  @media (max-width: 767px) and (min-width: 300px) {
    #sticky-wrapper {
      height: 170px;
      width: 100%; } }
  #sticky-wrapper h4 {
    margin-top: 8px;
    margin-bottom: 0px;
    line-height: 23px; }
  #sticky-wrapper p {
    margin-bottom: 0px; }
  #sticky-wrapper .form {
    padding-top: 13px; }
    @media (max-width: 767px) and (min-width: 300px) {
      #sticky-wrapper .form {
        padding-top: 0px;
        margin-top: 10px; } }
    #sticky-wrapper .form #mc-embedded-subscribe {
      width: 30%; }
      @media (max-width: 767px) and (min-width: 300px) {
        #sticky-wrapper .form #mc-embedded-subscribe {
          width: 100%;
          margin-top: 16px; } }
    #sticky-wrapper .form #mce-EMAIL {
      border: 2px solid #dae1e6; }
    @media (max-width: 1024px) and (min-width: 767px) {
      #sticky-wrapper .form input {
        float: left;
        width: 62%; } }
    @media (max-width: 767px) and (min-width: 300px) {
      #sticky-wrapper .form input {
        width: 100%; } }
  #sticky-wrapper .button-only {
    margin-top: 13px; }

.nav--scrolled {
  position: fixed !important;
  width: 100%;
  top: 0;
  z-index: 99;
  display: block !important; }
  @media (max-width: 767px) and (min-width: 300px) {
    .nav--scrolled {
      width: 375px; } }

@-webkit-keyframes slide {
  100% {
    top: 0; } }

@keyframes slide {
  100% {
    top: 0; } }

.greyish-background {
  background-color: #fafbfc;
  padding: 113px 20px 118px; }

/* Benefits */
#benefits {
  padding: 113px 118px; }
  #benefits .row {
    margin-bottom: 50px; }
    #benefits .row .benefits-wrapper {
      padding-left: 50px; }
      #benefits .row .benefits-wrapper h3::before {
        content: "";
        background: url(https://eligible.com/assets/redesign2017/icons/icon-starshield-17dd5e5c971d43dfbe836fa7f17bda8e82e8cc13815e28731c1f9a741b376df6.svg) no-repeat;
        height: 46px;
        width: 46px;
        display: block;
        float: left;
        position: absolute;
        left: 0px;
        background-size: 45px;
        top: -3px; }

/* General Rule For Lists
ul{
    li{
    margin-top:14px;
    line-height:17px;

    &:first-child{
        margin-top:0px;
    }

    }
}
 */
/* Left/Right Content */
.focus {
  padding: 30px 0px 80px 0px; }
  .focus .image-center-wrapper {
    text-align: center;
    /* Box Shadow for product picts
        img{
            max-width: 100%;
            -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,.07), 0 10px 40px 0 rgba(0,0,0,.06), 0 16px 80px 0 rgba(0,0,0,.04);
            box-shadow: 0 4px 8px 0 rgba(0,0,0,.07), 0 10px 40px 0 rgba(0,0,0,.06), 0 16px 80px 0 rgba(0,0,0,.04);
        }
        */ }
    .focus .image-center-wrapper img {
      max-height: 771px; }
  .focus ul {
    padding-left: 24px; }
    .focus ul li::before {
      content: "";
      background: url(https://eligible.com/assets/redesign2017/icons/icon-time-0b2b8cb2bd494fd17bb34805f8ed109ef29f13ee71e55f8930d048f52e01f1a0.svg) no-repeat;
      height: 18px;
      width: 18px;
      display: block;
      float: left;
      position: absolute;
      left: 12px;
      background-size: 18px; }
  .focus h3::before {
    box-shadow: 0 2px 4px 0 rgba(136, 152, 170, 0.15);
    -webkit-border-radius: 50px;
    border-radius: 50px;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */
    content: "";
    height: 40px;
    width: 40px;
    display: block;
    position: relative;
    top: -30px; }
  .focus h3.value::before {
    background: #FFF url("../../res/img/get_more_value.svg") no-repeat center center;
    background-size: 24px; }
  .focus h3.rewards::before {
    background-size: 24px !important;
    background: #FFF url("../../res/img/rewards.svg") no-repeat center center; }
  .focus h3.checkout::before {
    background: #FFF url("../../res/img/barcode_one_checkout.svg") no-repeat center center;
    background-size: 24px; }
  .focus h3.cards::before {
    background: #FFF url("../../res/img/integrated_notification.svg") no-repeat center center;
    background-size: 24px; }

.vertical-alignment {
  display: flex;
  justify-content: center;
  flex-direction: column; }

/* Carousel / Testimonials */
.carousel {
  background: #f9fafe;
  padding: 50px 0px 50px 0px;
  margin-bottom: 50px;
  position: relative;
  top: -73px; }
  .carousel a:hover:before, .carousel a:hover:after {
    display: none; }
  .carousel .slide {
    padding: 0 40px 0px 40px; }
    .carousel .slide .carousel-control {
      height: 40px;
      width: 40px;
      background: #ebedf7;
      color: #737999;
      -webkit-border-radius: 24px 24px 24px 24px;
      border-radius: 24px 24px 24px 24px;
      background-clip: padding-box;
      /* stops bg color from leaking outside the border: */
      margin-top: 20px;
      display: block;
      position: absolute;
      top: 0;
      bottom: 0;
      text-align: center;
      line-height: 35px;
      font-size: 25px;
      left: 0px; }
      .carousel .slide .carousel-control.right {
        right: 0;
        left: auto; }
      .carousel .slide .carousel-control:hover:before, .carousel .slide .carousel-control:hover:after {
        display: none; }
    .carousel .slide .carousel-indicators {
      left: 0;
      top: auto;
      bottom: -40px; }
      .carousel .slide .carousel-indicators li {
        background: #a3a3a3;
        -webkit-border-radius: 50% 50% 50% 50%;
        border-radius: 50% 50% 50% 50%;
        background-clip: padding-box;
        /* stops bg color from leaking outside the border: */
        width: 8px;
        height: 8px; }
        .carousel .slide .carousel-indicators li.active {
          background: #707070; }

/* OmniKar */
.pattern-wrapper {
  background: url("../../res/img/pattern.svg");
  background-size: 3943px 2150px;
  height: 100%;
  justify-content: space-between;
  -webkit-box-align: center;
  text-align: center; }

/* Banner */
a.white {
  /* color:$white-color; */ }
  a.white:hover:before, a.white:after {
    background: #fff; }

.banner {
  padding: 113px 0px 118px;
  position: relative; }
  @media (max-width: 767px) and (min-width: 300px) {
    .banner {
      padding: 50px 0px 50px; }
      .banner .col-md-4 {
        margin-bottom: 30px; }
        .banner .col-md-4:last-child {
          margin-bottom: 0px; } }
  .banner .container {
    position: relative;
    z-index: 2; }
  .banner .pattern-wrapper, .banner canvas {
    /* skloni opacity ako ces koristiti samo pattern pozadinu. opacity je tu sad zbog canvasa*/
    opacity: 0.3;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    z-index: 0; }
  .banner h1 {
    color: #fff; }
  .banner.yellowExtended {
    margin-top: 480px;
    background-image: linear-gradient(57deg, #ff8e00, #ff8e00 27%, #ffba00); }
    @media (max-width: 767px) and (min-width: 300px) {
      .banner.yellowExtended {
        margin-top: 0px; } }
    .banner.yellowExtended p {
      color: #fff; }
    .banner.yellowExtended .pattern-wrapper {
      background: url("../../res/img/cross_sell_background.png");
      background-size: cover; }
    .banner.yellowExtended::before {
      content: "";
      /*background: url('../../res/img/footer_devices.png') no-repeat center center; */
      height: 500px;
      width: 100%;
      display: block;
      float: left;
      position: absolute;
      z-index: 1;
      top: -420px;
      background-size: contain;
      left: 70%;
      -webkit-transform: translateX(-70%);
      transform: translateX(-70%); }
      @media (max-width: 767px) and (min-width: 300px) {
        .banner.yellowExtended::before {
          display: none; } }

/* Feature Discovery Wrapper */
.feature-discovery-wrapper .tabs-wrapper {
  /*border-bottom: 1px solid #dee2e6;*/ }
  .feature-discovery-wrapper .tabs-wrapper .alignment-helper {
    display: table;
    margin: 0 auto; }
    .feature-discovery-wrapper .tabs-wrapper .alignment-helper ul.nav-tabs {
      list-style: none;
      padding-top: 20px;
      border-bottom: 0px; }
      .feature-discovery-wrapper .tabs-wrapper .alignment-helper ul.nav-tabs li {
        margin: 0 auto;
        display: block; }
        .feature-discovery-wrapper .tabs-wrapper .alignment-helper ul.nav-tabs li .active.show {
          transform: translateY(-2px);
          color: #171717;
          background: #fff;
          box-shadow: 0 2px 4px 0 rgba(136, 152, 170, 0.15); }
        .feature-discovery-wrapper .tabs-wrapper .alignment-helper ul.nav-tabs li button {
          color: #6b7c93;
          -webkit-box-shadow: none;
          -moz-box-shadow: none;
          box-shadow: none;
          -webkit-border-radius: 8px 8px 8px 8px;
          border-radius: 8px 8px 8px 8px;
          background-clip: padding-box;
          /* stops bg color from leaking outside the border: */
          margin-right: 10px; }
          .feature-discovery-wrapper .tabs-wrapper .alignment-helper ul.nav-tabs li button:hover {
            background: #ebedf0; }

.feature-discovery-wrapper .tab-content {
  padding-top: 80px;
  padding-bottom: 40px; }
  .feature-discovery-wrapper .tab-content .tab-pane img {
    width: 100%; }

.feature-discovery-wrapper button {
  padding: 16px 32px;
  border: none;
  background: none;
  height: 100%;
  font-size: 16px;
  line-height: 31px; }
  .feature-discovery-wrapper button svg {
    float: left;
    margin-right: 16px;
    display: block; }
  .feature-discovery-wrapper button svg path {
    fill: #8498AC; }
  .feature-discovery-wrapper button.active svg path {
    fill: #FFBA00; }

/* Icon left - content right */
.left-icon {
  padding-left: 50px;
  padding-top: 24px; }
  .left-icon i {
    background: url(https://eligible.com/assets/redesign2017/icons/icon-layers-ca25067911171c3f29dc110256dd741629a34bfc23a1307cf1666d42324a4fd8.svg) no-repeat;
    height: 54px;
    width: 54px;
    display: block;
    position: absolute;
    left: -50px; }

/* SEO Wrapper */
@media (max-width: 767px) and (min-width: 300px) {
  .seo-wrapper.line-none .row .col-md-4 {
    margin-top: 80px; } }

.seo-wrapper.line-none .row:first-of-type {
  border-bottom: none; }

.seo-wrapper .row:first-of-type {
  border-bottom: 1px solid #e8e9ea;
  padding-bottom: 24px; }
  @media (max-width: 767px) and (min-width: 300px) {
    .seo-wrapper .row:first-of-type {
      border-bottom: none; } }
  .seo-wrapper .row:first-of-type h4 {
    margin-top: 30px; }
    .seo-wrapper .row:first-of-type h4::before {
      box-shadow: 0 2px 4px 0 rgba(136, 152, 170, 0.15);
      -webkit-border-radius: 50px;
      border-radius: 50px;
      background-clip: padding-box;
      /* stops bg color from leaking outside the border: */
      content: "";
      background-size: contain;
      height: 40px;
      width: 40px;
      display: block;
      position: absolute;
      top: -30px; }
    .seo-wrapper .row:first-of-type h4.registration::before {
      background: #FFF url("../img/fast_registration.svg") no-repeat center center;
      background-size: 60%; }
    .seo-wrapper .row:first-of-type h4.cards::before {
      background: #FFF url("../img/ico_card_two.svg") no-repeat center center;
      background-size: 60%; }
    .seo-wrapper .row:first-of-type h4.secure::before {
      background: #FFF url("../img/secure.svg") no-repeat center center;
      background-size: 70%; }

.seo-wrapper.multi .row:first-of-type {
  border-bottom: none;
  padding-bottom: 0px; }

.seo-wrapper.multi:nth-of-type(2) {
  border-top: 1px solid #e8e9ea;
  padding-top: 80px;
  margin-top: 60px; }

.feature {
  width: 100%;
  float: left;
  margin-bottom: 55px;
  border-bottom: 1px solid #e6e6f1; }
  .feature:last-of-type {
    border-bottom: none; }
  .feature .image {
    float: left;
    display: inline-block;
    width: 41%; }
    @media (max-width: 767px) and (min-width: 300px) {
      .feature .image {
        width: 100%; } }
    .feature .image img {
      height: auto;
      width: 100%;
      -webkit-border-radius: 4px 4px 4px 4px;
      border-radius: 4px 4px 4px 4px;
      background-clip: padding-box;
      /* stops bg color from leaking outside the border: */ }
  .feature .text {
    display: inline-block;
    padding: 0px 0px 0px 20px;
    width: 50%; }
    @media (max-width: 767px) and (min-width: 300px) {
      .feature .text {
        width: 100%;
        padding: 0px;
        margin-top: 20px; } }
  .feature:last-child {
    margin-bottom: 0px; }

.floating-section {
  margin: 40px 0px 100px 0px; }
  @media (max-width: 767px) and (min-width: 300px) {
    .floating-section {
      margin-bottom: 60px;
      margin-top: 0px; } }
  .floating-section .intro {
    width: 80%;
    margin-bottom: 64px; }
  .floating-section .mini-sign-up {
    background-color: #f4f7f9;
    -webkit-border-radius: 0.4rem;
    border-radius: 0.4rem;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */
    /*         @include border-radius(6px); */
    padding-top: 20px;
    position: -webkit-sticky;
    position: sticky;
    /* height: 214px; */
    padding: 10px 20px 25px 20px;
    top: 20px;
    border: 1px solid #dbdbe5;
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 16px 36px 0px;
    /* validation should work straight away  like facebook and toogl feature*/ }
    @media (max-width: 767px) and (min-width: 300px) {
      .floating-section .mini-sign-up {
        -webkit-border-radius: 0px;
        border-radius: 0px;
        background-clip: padding-box;
        /* stops bg color from leaking outside the border: */
        margin-top: 20px; } }
    .floating-section .mini-sign-up h3 {
      margin-bottom: 0;
      padding-left: 5rem; }
    .floating-section .mini-sign-up .validation {
      display: none;
      width: 100%; }
    .floating-section .mini-sign-up label {
      margin-bottom: 1rem;
      width: 100%; }
    .floating-section .mini-sign-up .input-group-prepend {
      margin-bottom: 12px; }

/* Sticky Wrapper */
.input-group-prepend {
  margin-top: 12px; }
  .input-group-prepend .first, .input-group-prepend .second {
    width: 49%;
    padding: 8px 0px 8px 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    text-shadow: none;
    border-color: #ccd0d5; }
    .input-group-prepend .first:hover, .input-group-prepend .first:focus, .input-group-prepend .first .selected, .input-group-prepend .second:hover, .input-group-prepend .second:focus, .input-group-prepend .second .selected {
      background: #ebedf0;
      color: #6c757d;
      transform: none; }
  .input-group-prepend .first {
    border-right: none;
    border-radius: 4px 0px 0px 4px; }
  .input-group-prepend .second {
    border-radius: 0px 4px 4px 0px; }

/* Ovdje jos nedostaju sve ikonice izlistane */
/* Dark features */
#dark-features {
  background: rgba(0, 12, 27, 0.9);
  padding: 3.125rem 0px; }
  #dark-features .row:first-of-type {
    border-bottom: 1px solid rgba(71, 80, 93, 0.25);
    margin-bottom: 3.125rem;
    padding-bottom: 30px; }
  #dark-features .row:nth-child(2) {
    margin-bottom: 40px; }
  #dark-features .left-icon i {
    background: url(https://eligible.com/assets/redesign2017/icons/icon-starshield-17dd5e5c971d43dfbe836fa7f17bda8e82e8cc13815e28731c1f9a741b376df6.svg) no-repeat; }
  #dark-features .row.small-icons h5 {
    margin-top: 30px; }
    #dark-features .row.small-icons h5::before {
      content: "";
      background: url(https://eligible.com/assets/redesign2017/icons/icon-data-2f438320fe8ebc98d1905e7bc8163b9d7a0506407c36331e73d5b2c3363f5b0d.svg) no-repeat;
      height: 24px;
      width: 24px;
      display: block;
      position: absolute;
      top: 1px; }
  #dark-features p, #dark-features h5, #dark-features h3 {
    color: #a3a8ae; }

/* Form Disclaimer / Your data is secure */
.disclaimer {
  width: 100%;
  float: left;
  color: #fff;
  opacity: 0.6; }
  @media (max-width: 767px) and (min-width: 300px) {
    .disclaimer {
      text-align: center; } }

/* Easy Access Option 3 */
.easy-access-option3 {
  margin: 50px 0px; }
  .easy-access-option3 h3 {
    font-weight: normal;
    font-size: 1.5rem;
    margin-bottom: 0px;
    line-height: 33px; }
  .easy-access-option3 button {
    width: 100%; }

/* Security Component */
.security {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000c1b+0,4c5a66+100 */
  background: #000c1b;
  /* Old browsers */
  background: -moz-linear-gradient(45deg, #000c1b 0%, #4c5a66 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, #000c1b 0%, #4c5a66 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #000c1b 0%, #4c5a66 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000c1b', endColorstr='#4c5a66',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  padding: 5.25rem 0rem; }
  .security .iso-logo, .security .iso-list {
    float: left; }
  .security .iso-logo {
    margin-right: 20px; }
  .security h1, .security h5 {
    color: #fff; }
  .security span {
    color: #fff;
    opacity: 0.6;
    display: block; }
  .security .iso-certificates {
    float: left;
    margin-top: 30px; }
    .security .iso-certificates ul li.list-inline-item {
      float: left;
      padding: .45455em 1.36364em;
      border-right: 1px solid #3c4343; }
      .security .iso-certificates ul li.list-inline-item:last-child {
        border-right: 0px; }

/* cookie monster */
.cookies {
  background: #171717;
  padding: 10px 0px;
  position: fixed;
  width: 1140px;
  /* ovo moras predefinati prema .containeru ovisno o velicini ekrana */
  line-height: 37px;
  z-index: 98;
  -webkit-border-radius: 12px 12px 12px 12px;
  border-radius: 12px 12px 12px 12px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  bottom: 20px; }
  @media (max-width: 767px) and (min-width: 300px) {
    .cookies {
      width: 92%; } }
  .cookies a {
    color: #fff; }
    .cookies a:after {
      background: #fff; }
    .cookies a:hover:before {
      background: #fff; }
  .cookies .pull-right {
    text-align: right; }
    @media (max-width: 767px) and (min-width: 300px) {
      .cookies .pull-right button {
        width: 100%;
        margin-top: 20px; } }
  .cookies p {
    color: #fff;
    margin-bottom: 0px; }
    @media (max-width: 767px) and (min-width: 300px) {
      .cookies p {
        line-height: 24px; } }
  .cookies.none {
    display: none; }

button, input.btn {
  background: #23b351;
  color: #fff;
  border: none; }
  button:hover, input.btn:hover {
    background: #1c9442; }

/* This is how we can help you */
.benefits-wrapper-two {
  padding: 80px 0px; }
  .benefits-wrapper-two .row:first-of-type {
    margin-bottom: 80px; }

.badge {
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
  color: #fff;
  background: #0037ff;
  font-size: 9px;
  font-weight: bold;
  padding: 1px 3px 0;
  -webkit-border-radius: 2px 2px 2px 2px;
  border-radius: 2px 2px 2px 2px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  /*
    transition: all .2s ease;
    */
  height: 12px;
  position: absolute;
  left: -35px;
  top: 5px; }
  @media (max-width: 767px) and (min-width: 300px) {
    .badge {
      right: -45px;
      left: auto; } }

/* Static Clients */
.clients {
  margin-bottom: 80px; }
  .clients .row:first-of-type {
    margin-bottom: 50px; }
  .clients .col-md-2, .clients .col-md-3 {
    display: flex;
    flex-direction: column;
    justify-content: center; }
    @media (max-width: 767px) and (min-width: 300px) {
      .clients .col-md-2, .clients .col-md-3 {
        margin-bottom: 40px; } }
    .clients .col-md-2 img, .clients .col-md-3 img {
      max-width: 139px;
      margin: 0 auto; }

/* Business Call To Action */
.business-cta {
  border-top: 1px solid #e6e6f1; }
  @media (max-width: 767px) and (min-width: 300px) {
    .business-cta {
      border-top: none; } }
  .business-cta .form {
    margin-top: 10px; }
    @media (max-width: 767px) and (min-width: 300px) {
      .business-cta .form {
        width: 100%; } }
    .business-cta .form input.required {
      border: 2px solid #dae1e6; }
      @media (max-width: 767px) and (min-width: 300px) {
        .business-cta .form input.required {
          width: 100%;
          margin-bottom: 20px; } }
    @media (max-width: 767px) and (min-width: 300px) {
      .business-cta .form button {
        width: 100%; } }
  .business-cta .col-md-6 {
    padding: 30px 0px 60px 20px;
    float: left; }
    @media (max-width: 767px) and (min-width: 300px) {
      .business-cta .col-md-6 {
        padding: 20px 20px 20px 20px; } }
    .business-cta .col-md-6:first-of-type {
      border-right: 1px solid #e6e6f1; }
      @media (max-width: 767px) and (min-width: 300px) {
        .business-cta .col-md-6:first-of-type {
          padding: 20px 20px 20px 20px;
          border-right: none;
          border-bottom: 1px solid #e6e6f1; } }

/* Intro wrapper */
.intro-wrapper {
  margin-bottom: 80px; }
  @media (max-width: 767px) and (min-width: 300px) {
    .intro-wrapper {
      margin-bottom: 20px;
      /* exception for this component only */ }
      .intro-wrapper .text-center {
        text-align: left !important; } }
  @media (max-width: 767px) and (min-width: 300px) {
    .intro-wrapper .col-md-3 {
      float: left; } }

/* Content left only  - Promjeni kod index.html ovu classu. prije je bila Content Left sad sam promjenoio*/
.floating-navigation-left {
  padding: 120px 0px;
  background: #F5F9FC url("../img/punti_product_big.svg") no-repeat;
  background-position: center 20%;
  background-size: contain; }
  @media (max-width: 767px) and (min-width: 300px) {
    .floating-navigation-left {
      padding: 50px 0px; } }
  .floating-navigation-left .container {
    position: relative; }
    .floating-navigation-left .container::before {
      content: '';
      width: 103%;
      height: 102%;
      left: -20px;
      box-shadow: 0 2px 4px 0 rgba(136, 152, 170, 0.15);
      background: #fff;
      -webkit-border-radius: 40px;
      border-radius: 40px;
      background-clip: padding-box;
      /* stops bg color from leaking outside the border: */
      position: absolute; }
  .floating-navigation-left .sticky-element {
    position: -webkit-sticky;
    position: sticky;
    padding-top: 20px;
    position: -webkit-sticky;
    position: sticky;
    height: 394px;
    top: 90px; }
    @media (max-width: 767px) and (min-width: 300px) {
      .floating-navigation-left .sticky-element {
        position: relative;
        height: auto;
        top: 0px;
        margin-bottom: 80px; } }
    .floating-navigation-left .sticky-element span {
      color: #6b7c93; }
    .floating-navigation-left .sticky-element button {
      margin-top: 30px; }
      @media (max-width: 767px) and (min-width: 300px) {
        .floating-navigation-left .sticky-element button {
          width: 100%; } }
  .floating-navigation-left .row {
    margin-bottom: 80px; }
    .floating-navigation-left .row:last-of-type {
      margin-bottom: 0px; }
  .floating-navigation-left .menu-left {
    margin-top: 30px; }
    .floating-navigation-left .menu-left a {
      font-size: 16px;
      font-weight: 400;
      color: #6b7c93;
      text-align: left;
      margin-bottom: 11px;
      display: block; }
      @media (max-width: 767px) and (min-width: 300px) {
        .floating-navigation-left .menu-left a {
          color: #171717; } }
      .floating-navigation-left .menu-left a:hover, .floating-navigation-left .menu-left a.active {
        color: #171717;
        text-decoration: none; }
      .floating-navigation-left .menu-left a span {
        margin-right: 11px;
        color: #FF7100; }
  .floating-navigation-left .menu-left.gimme span {
    color: #3C1E85; }
  .floating-navigation-left section:first-of-type {
    padding-top: 0px; }
  @media (max-width: 767px) and (min-width: 300px) {
    .floating-navigation-left section {
      padding-top: 0px;
      margin-bottom: 0px; } }
  .floating-navigation-left section:last-of-type {
    margin-bottom: 0px; }
  .floating-navigation-left section img {
    margin: 0 auto;
    display: block;
    margin-bottom: 50px;
    max-width: 100%; }
    @media (max-width: 767px) and (min-width: 300px) {
      .floating-navigation-left section img {
        max-width: 100%;
        max-height: auto; } }

.floating-navigation-left.gimme {
  background: #F5F9FC url("../img/gimme_product_big.svg") no-repeat;
  background-position: center 20%;
  background-size: contain; }

/* Removes underline in links */
.no-underline a:after, .no-underline a:before {
  display: none; }

/* Backgrounds */
.backgrounds {
  overflow: hidden; }
  .backgrounds .character {
    background: url("../../res/img/girl_sitting.svg") no-repeat;
    background-size: 27%;
    width: 100%;
    display: block;
    height: 110%;
    position: absolute;
    z-index: -2;
    top: 450px;
    right: 0px;
    background-position: right; }
  .backgrounds .deco {
    background: url(https://lunatap.com/static/img/section1bg2.png) no-repeat;
    background-size: 80%;
    width: 100%;
    display: block;
    height: 100%;
    position: absolute;
    left: -530px;
    top: 9px; }
  .backgrounds .deco-two {
    background: url(https://lunatap.com/static/img/section1bg2.png) no-repeat;
    background-size: 80%;
    width: 100%;
    display: block;
    height: 100%;
    position: absolute;
    right: -60rem;
    top: 9px; }

/* Industries - 4 items in a row with description */
.industries {
  background: #fff;
  padding: 88px 0px 60px 0px; }
  @media (max-width: 767px) and (min-width: 300px) {
    .industries {
      padding: 50px 0px 60px 0px; } }
  .industries .item-wrap {
    width: 100%; }
    .industries .item-wrap a {
      display: block;
      -webkit-transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      -moz-transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      -ms-transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      -o-transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      /*
            -webkit-transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            -o-transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            */
      color: #171717; }
      .industries .item-wrap a img {
        border-radius: 14px;
        max-width: 100%;
        margin-bottom: 12px; }
        @media (max-width: 767px) and (min-width: 300px) {
          .industries .item-wrap a img {
            width: 100%;
            max-height: 309px; } }
      .industries .item-wrap a:hover {
        transform: translateY(-3px); }
      .industries .item-wrap a:after, .industries .item-wrap a:before {
        display: none; }

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* NEW CSS FOR ZIRELCO ONLY */
.news {
  text-align: center;
  padding-bottom: 70px; }

.navbar-nav > li:last-of-type {
  margin-top: 10px; }

.nav > li > a:hover, .nav > li > a:focus {
  background-color: transparent !important;
  color: #171717; }

.main-background {
  /*
       url("https://assets.website-files.com/5db165cbf782f992df567ae5/5db165f7f47aa6659a189d4a_illustrations-main%20(1).png"),
       */
  display: block;
  min-height: 900px;
  background-image: url(""), url("../../res/img/dark_background_template.svg");
  background-position: 50% 280px, 50% -382px;
  background-color: #E7F0F7;
  background-size: 2240px, auto;
  background-repeat: no-repeat, no-repeat; }

.main-background.product-background {
  background-image: url(""), url("../img/mask-dark-orange.svg");
  background-position: 20% 110px, center -902px;
  background-color: #fff; }

.main-background.punti-background {
  background: #F5F9FC; }

.main-background.blue-background {
  /* https://assets.website-files.com/5db165cbf782f992df567ae5/5db165f7f47aa6659a189d4a_illustrations-main%20(1).png */
  background-image: url(""), url("../img/mask-dark-blue.svg");
  background-position: 20% 110px, center -902px;
  background-color: #fff; }

.services-content {
  margin-top: 20%; }

.focus {
  margin-bottom: 40px; }
  .focus:last-of-type {
    margin-bottom: 0px; }
  .focus img {
    border: 1px solid #dbdbe5;
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 16px 36px 0px;
    max-width: 400px;
    width: 100%; }

.products h1 {
  text-align: center;
  color: #171717; }

.products .form {
  margin-top: 40px;
  text-align: center; }

.columns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1220px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1; }

.column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-perspective: 500px;
  perspective: 500px;
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px); }

.block h1, .block p {
  color: #FFF;
  width: 80%; }

a.block {
  min-height: 450px;
  max-width: 340px;
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  -webkit-animation: reveal 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
  -moz-animation: reveal 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
  animation: reveal 0.6s cubic-bezier(0.2, 0.6, 0.2, 1); }
  a.block h1 {
    color: #fff !important; }

.block img {
  max-width: 100px; }

.block p {
  -webkit-animation: animate 1s cubic-bezier(0.2, 0.6, 0.2, 1);
  -moz-animation: animate 1s cubic-bezier(0.2, 0.6, 0.2, 1);
  animation: animate 1s cubic-bezier(0.2, 0.6, 0.2, 1);
  -webkit-animation-fill-mode: backwards;
  -moz-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s; }

a.block:hover {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03); }

.column:nth-child(1) a.block::after {
  background: url("../../res/img/gimme_circle.svg") no-repeat;
  background-size: contain; }

.column:nth-child(2) a.block::after {
  background: url("../../res/img/punti_circle.svg") no-repeat;
  background-size: contain; }

.column a.block::after {
  content: "";
  /* hamburger icon */
  /*
    background: url(https://assets.website-files.com/5db165cbf782f992df567ae5/5db1725a71caa20da0ccacc2_desktop-timely-mask.svg) no-repeat;
*/
  display: block;
  position: absolute;
  overflow: visible;
  max-width: 120%;
  -webkit-transform: translate3d(0px, 0px, -14px);
  transform: translate3d(0px, 0px, -14px);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  width: 100%;
  height: 100%;
  z-index: -1; }

.hero-section {
  max-width: 530px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  margin-bottom: 40px; }

/* Easy Access Option 2 */
.easy-access-option2 {
  margin: 50px 0px;
  position: relative; }
  .easy-access-option2 h1, .easy-access-option2 p {
    color: #fff;
    margin: 0px; }
  .easy-access-option2 .container {
    -webkit-border-radius: 16px 16px 16px 16px;
    border-radius: 16px 16px 16px 16px;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */
    padding: 2.25rem 3.375rem; }
    @media (max-width: 767px) and (min-width: 300px) {
      .easy-access-option2 .container {
        padding: 20px; } }
    .easy-access-option2 .container input {
      border: none; }
      .easy-access-option2 .container input:hover {
        border: none; }
    .easy-access-option2 .container.purple {
      background: #3C1E85;
      background-image: url("../img/gimme-opener.png");
      /* fallback */
      background-image: url("../img/gimme-opener.png"), linear-gradient(-225deg, #3C1E85, #3C1E85);
      background-position: right center;
      background-size: contain;
      background-repeat: no-repeat; }
    .easy-access-option2 .container.orange {
      text-align: center;
      background-image: -webkit-linear-gradient(315deg, #ff6f00, #ff3d00);
      background-image: -o-linear-gradient(315deg, #ff6f00 0, #ff3d00 100%);
      background-image: linear-gradient(-225deg, #ff6f00, #ff3d00); }
    .easy-access-option2 .container.punti {
      background: #FF7100;
      background-image: url("../img/texture_punti.png"), url("../img/punti-opener.png");
      background-position: center center, center right;
      background-size: cover, contain;
      background-repeat: no-repeat; }
  @media (max-width: 767px) and (min-width: 300px) {
    .easy-access-option2 {
      margin: 0 auto;
      width: 90%; }
      .easy-access-option2 .form input, .easy-access-option2 .form button {
        width: 100%; }
      .easy-access-option2 .form button {
        margin-top: 20px; } }
  .easy-access-option2 canvas {
    pointer-events: none;
    opacity: 0.3;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    z-index: 0; }

/* Twitter overwrite */
.navbar-brand {
  line-height: 56px;
  padding: 15px 0px 0px; }

/* MOBILE */
.navbar.dark li a {
  color: #171717; }

.navbar li a {
  color: #fff; }

.navbar .dropdown-menu {
  left: -80px; }
  .navbar .dropdown-menu li a {
    color: #6b7c93; }

@media (max-width: 767px) and (min-width: 300px) {
  .navbar .navbar-nav.pull-right {
    float: left !important; }
    .navbar .navbar-nav.pull-right li > .dropdown {
      width: 100%;
      margin-left: 10px; }
      .navbar .navbar-nav.pull-right li > .dropdown .divider {
        margin: 0px;
        background-color: transparent; }
      .navbar .navbar-nav.pull-right li > .dropdown .dropdown-menu > li > a {
        color: #fff;
        padding: 5px 15px 5px 5px; }
  .navbar .navbar-toggle {
    background: #fff; }
  .navbar .navbar-toggle .icon-bar {
    background: #021030; } }

/* ==========================================================================
   Expert
   ========================================================================== */
.expert {
  background: #E7F0F7 url("../../res/img/expert_big.svg");
  background-position: 80% top;
  background-size: 83%;
  background-repeat: no-repeat;
  /* Custom checkbox */
  /* Custom checkbox */ }
  .expert label,
  .expert textarea,
  .expert input {
    float: left;
    width: 100%;
    padding-bottom: 6px; }
  .expert label {
    margin-top: 12px; }
  .expert textarea {
    min-height: 200px;
    padding: 10px;
    padding: 15px; }
  .expert input {
    padding: 0 15px; }
  .expert input, .expert textarea {
    outline: 0;
    border: 2px solid #eceff1;
    -webkit-transition: border-color .2s ease-in-out, color .2s ease-in-out;
    -o-transition: border-color .2s ease-in-out, color .2s ease-in-out;
    transition: border-color .2s ease-in-out, color .2s ease-in-out;
    height: 40px; }
    .expert input:focus, .expert textarea:focus {
      border-color: #ff6f00; }
  .expert .checkbox {
    width: 30px;
    height: 30px;
    margin-right: 10px; }
  .expert .allow {
    line-height: 37px; }
  .expert #form {
    -webkit-border-radius: 30px;
    border-radius: 30px;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */
    background: #fff;
    box-shadow: 6px 6px 30px 0px rgba(60, 81, 99, 0.11);
    padding-top: 50px;
    margin-top: 50px; }
  .expert .check {
    margin: 22px 0px;
    padding: 0px;
    float: left; }
  .expert .recommended {
    padding: 20px 0px;
    width: 100%;
    float: left;
    margin-top: 50px;
    background: #F6FBFE;
    -webkit-border-radius: 0px 0px 30px 30px;
    border-radius: 0px 0px 30px 30px;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */ }
    .expert .recommended ul li {
      list-style: none;
      display: inline-block; }
  .expert footer {
    margin-top: 100px; }

/* ==========================================================================
Services
========================================================================== */
.services-background, .about-background {
  background-color: #E7F0F7;
  background-image: url("../../res/img/services_big.svg");
  background-repeat: no-repeat;
  background-position: -260px -410px; }

.services-background .intro-section span {
  color: #6b7c93; }

.services-background .intro-section {
  margin: 80px 0px 10px 0px; }

.services-background button {
  width: 100%; }

.services-background .floating-navigation-left {
  background: transparent;
  background-position: 20% 110px, center -902px;
  padding-bottom: 40px; }
  .services-background .floating-navigation-left .container::before {
    height: 102%;
    top: -30px; }
  .services-background .floating-navigation-left span {
    color: #6b7c93; }
  .services-background .floating-navigation-left h3 {
    font-weight: 400;
    margin-top: 12px;
    line-height: 30px; }
  .services-background .floating-navigation-left .row:first-of-type::before {
    content: '';
    height: 200px;
    background: #f4f7f9;
    border: 1px solid #e6e6f1;
    width: 103%;
    position: absolute;
    left: -20px;
    top: -30px;
    -webkit-border-radius: 10px 10px 0px 0px;
    border-radius: 10px 10px 0px 0px;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */ }

.about-background .floating-navigation-left {
  background: none;
  padding: 0px 0px 70px 0px; }
  .about-background .floating-navigation-left .who-are-we .container::before {
    height: 110%; }
  .about-background .floating-navigation-left .row {
    margin-bottom: 0px; }

.about-background .intro-section {
  margin: 80px 0px 10px 0px; }
  .about-background .intro-section span {
    color: #6b7c93; }

.about-background .contact-body {
  margin-bottom: 30px; }

.about-background .the-team .row:nth-of-type(2) {
  margin-bottom: 20px; }

.about-background .the-team img {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  margin-bottom: 10px; }

/* Forms (modal, payment, etc) style - start */
.form input, .form textarea {
  color: #171717;
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  resize: none; }
  .form input:hover, .form textarea:hover {
    outline: 0; }

.form input.btn {
  color: #fff;
  border: none; }

.filter input {
  border: 0;
  padding-left: 15px;
  border-radius: 2px;
  background-color: #f2f2f2;
  height: 40px;
  width: 310px;
  -webkit-box-shadow: 0 0 0 0 transparent;
  -moz-box-shadow: 0 0 0 0 transparent;
  box-shadow: 0 0 0 0 transparent;
  color: #9b9b9b;
  font-size: 14px; }
  @media (max-width: 1024px) and (min-width: 767px) {
    .filter input {
      width: 100%; } }
  @media (max-width: 767px) and (min-width: 300px) {
    .filter input {
      width: 100%; } }

#ui-datepicker-div {
  width: auto;
  border-top: 1px solid #9b9b9b;
  padding: 0 17px 17px 17px;
  z-index: 999 !important;
  margin-top: -2px;
  border-left: 1px solid #419bf9;
  border-right: 1px solid #419bf9;
  border-bottom: 1px solid #419bf9;
  box-shadow: 0 0 4px 0 #419bf9;
  -webkit-border-radius: 0 0 2px 2px;
  border-radius: 0 0 2px 2px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */ }
  @media (max-width: 767px) and (min-width: 300px) {
    #ui-datepicker-div {
      padding: 0 4px 10px 4px; } }
  #ui-datepicker-div table {
    margin: 0; }
  #ui-datepicker-div .ui-datepicker-header {
    border-radius: 0;
    background-color: #fff;
    border: 0; }
  #ui-datepicker-div .ui-datepicker-title {
    color: #171717;
    text-transform: uppercase;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    margin-top: 12px;
    line-height: 20px;
    margin-bottom: 4px; }
  #ui-datepicker-div .ui-widget-header .ui-datepicker-prev {
    margin-top: 16px;
    left: 2px; }
    #ui-datepicker-div .ui-widget-header .ui-datepicker-prev.ui-datepicker-prev-hover {
      background: none;
      border-radius: 0;
      border: 0;
      color: red;
      left: 2px;
      top: 2px;
      cursor: pointer; }
    #ui-datepicker-div .ui-widget-header .ui-datepicker-prev span {
      background: url("../img/icons/ic_chevron_left.svg") center no-repeat;
      margin-left: -12px; }
  #ui-datepicker-div .ui-widget-header .ui-datepicker-next {
    margin-top: 16px;
    right: 2px; }
    #ui-datepicker-div .ui-widget-header .ui-datepicker-next.ui-datepicker-next-hover {
      background: none;
      border-radius: 0;
      border: 0;
      color: red;
      right: 2px;
      top: 2px;
      cursor: pointer; }
    #ui-datepicker-div .ui-widget-header .ui-datepicker-next span {
      margin-left: -4px;
      background: url("../img/icons/ic_chevron_right.svg") center no-repeat; }
  #ui-datepicker-div .ui-datepicker-mouseover1 {
    background: #d8d8d8; }
  #ui-datepicker-div .ui-datepicker-calendar thead:first-child th {
    padding: .7em .3em 10px .3em; }
  #ui-datepicker-div .ui-datepicker-calendar th span {
    color: #4a4a4a;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: 400; }
  #ui-datepicker-div .ui-datepicker-calendar td {
    padding: 0 !important;
    margin: 0;
    vertical-align: top; }
  #ui-datepicker-div .ui-datepicker-calendar .ui-state-default {
    border: 0;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #4a4a4a;
    width: 49px;
    height: 28px;
    margin: 0;
    padding: 0;
    line-height: 28px;
    background-color: transparent;
    font-size: 16px;
    display: block;
    vertical-align: top; }
    @media (max-width: 767px) and (min-width: 300px) {
      #ui-datepicker-div .ui-datepicker-calendar .ui-state-default {
        width: auto; } }
  #ui-datepicker-div .ui-datepicker-calendar .ui-datepicker-today .ui-state-hover {
    color: #fff !important; }
  #ui-datepicker-div .ui-datepicker-calendar .ui-datepicker-today .ui-state-default {
    color: #171717;
    display: block;
    vertical-align: top; }
  #ui-datepicker-div .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default {
    background-color: #171717;
    color: #fff; }
  #ui-datepicker-div .ui-datepicker-calendar .ui-state-hover {
    background-color: #171717;
    color: #fff; }
  #ui-datepicker-div .ui-datepicker-calendar .seldepdate span {
    background-color: #4a4a4a !important;
    opacity: 1;
    color: #fff !important;
    margin-top: 1px;
    line-height: 28px; }
  #ui-datepicker-div .ui-datepicker-calendar .seldepdate .ui-state-default {
    margin-top: 0; }
  #ui-datepicker-div .ui-datepicker-calendar .seldepdate a, #ui-datepicker-div .ui-datepicker-calendar .seldepdate span.ui-state-default {
    color: #fff !important; }
  #ui-datepicker-div .ui-datepicker-calendar .seldepdate:hover {
    line-height: 28px; }

/* Datepicker - end */
/* Forms (modal, payment, etc) style - end */
/* Footer - style */
.dark-version footer .container {
  border-top: 1px solid #5F738C3D; }

footer .container {
  border-top: 1px solid #e6e6f1;
  padding-top: 25px; }

footer ul {
  list-style: none;
  padding: 0px; }

footer a, footer p {
  font-size: 14px; }
  footer a:after, footer p:after {
    background: #fff; }
  footer a:hover:before, footer p:hover:before {
    background: #fff; }

@media (max-width: 767px) and (min-width: 300px) {
  footer .col-md-3 {
    margin-bottom: 26px; }
    footer .col-md-3:last-of-type {
      margin-bottom: 0px; } }

footer .copyright {
  padding: 20px 0px;
  margin-top: 40px;
  border-top: 1px solid #e6e6f1; }
  @media (max-width: 767px) and (min-width: 300px) {
    footer .copyright ul {
      float: left !important; } }
  footer .copyright ul li {
    display: inline-block;
    float: left;
    margin-left: 20px; }
    footer .copyright ul li:first-of-type {
      margin-left: 0px; }

@media (max-width: 767px) and (min-width: 300px) {
  footer {
    padding-top: 16px; }
    footer img {
      margin-top: 10px; } }

/*
Usage

//@include button-reset();

*/
/*                                           */
/* Product Page - Continues to the next page */
/*                                           */
.product-wrapper h1 {
  margin-bottom: 30px; }

.product-wrapper .row:first-of-type {
  padding: 15vh 0px 7vh 0px;
  position: relative;
  z-index: 99; }

.product-wrapper .device {
  margin: 0 auto;
  background: url("../img/notification_card.png") no-repeat 50%;
  background-size: contain;
  height: 70vh;
  width: 100%; }

.happy-wrapper {
  padding: 220px 0px 270px 0px;
  background-image: linear-gradient(57deg, #ff8e00, #ff8e00 27%, #ffba00);
  position: relative;
  top: -158px;
  z-index: -1; }
  .happy-wrapper h3, .happy-wrapper span, .happy-wrapper p {
    color: #fff; }

.happy-client {
  background: url(https://lunatap.com/static/img/section2img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  width: 47%;
  height: 715px;
  top: 0px;
  position: absolute;
  right: 0px; }

/* Continuity - Continues to the next page */
.continuity {
  padding: 88px 0px;
  background: #3F46AD;
  width: 100%; }
  .continuity h2 {
    color: #fff;
    margin-bottom: 30px; }

/* FAQ - Product Page */
.faq {
  padding: 80px 0px; }
  .faq h3 {
    margin-bottom: 80px; }
  .faq .panel-group .panel .panel-heading h4 a:not(.collapsed) i:before {
    content: "\e160"; }

/* Simple accordion */
.accord-parent {
  max-width: 800px;
  margin: auto;
  padding: 4em 0em; }
  .accord-parent h1 {
    text-align: center;
    padding: 0em 0em 1em 0em; }

.accord-item {
  border-bottom: 1px solid #e0e0e0;
  position: relative; }
  .accord-item--inner {
    padding: 1em 0em 1em 2em;
    cursor: pointer; }
  .accord-item.is-active .indi--top {
    transform: rotate(90deg); }
  .accord-item.is-active .indi--bot {
    margin-top: 0px; }

.question {
  font-weight: 800; }

.answer {
  display: none; }

.indicator {
  position: absolute;
  top: 1.5em;
  left: 0;
  height: 13px;
  width: 14px;
  outline: none;
  border: none;
  background: transparent;
  box-shadow: none; }
  .indicator span {
    background: black;
    position: absolute;
    transition: all 300ms ease; }

.indi--top {
  height: 100%;
  width: 2px;
  top: 0;
  left: 50%;
  margin-left: -1px; }

.indi--bot {
  height: 2px;
  width: 100%;
  left: 0;
  top: 50%;
  margin-top: -1px; }

/* Types of Intro Component... */
/* Go through components and search  for common patterns and add them to mixins */
/* Top Header - v1 */
.products h1, .appstore, ul.social, .cookies {
  -webkit-animation: animate 1s cubic-bezier(0.2, 0.6, 0.2, 1);
  -moz-animation: animate 1s cubic-bezier(0.2, 0.6, 0.2, 1);
  animation: animate 1s cubic-bezier(0.2, 0.6, 0.2, 1);
  -webkit-animation-fill-mode: backwards;
  -moz-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s; }

h2 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s; }

.appstore {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s; }

ul.social {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s; }

.logo {
  background-image: url(../img/Appicon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 6vh;
  height: 6vh;
  -webkit-animation: reveal 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
  -moz-animation: reveal 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
  animation: reveal 0.6s cubic-bezier(0.2, 0.6, 0.2, 1); }

@-webkit-keyframes reveal {
  0% {
    -webkit-transform: scale(0); }
  100% {
    -webkit-transform: scale(1); } }

@keyframes reveal {
  0% {
    transform: scale(0); }
  100% {
    transform: scale(1); } }

@-webkit-keyframes animate {
  0% {
    -webkit-transform: translateY(50%);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0%);
    opacity: 1; } }

@keyframes animate {
  0% {
    transform: translateY(50%);
    opacity: 0; }
  100% {
    transform: translateY(0%);
    opacity: 1; } }

/* ORNIKAR */
.styles_Loader__1k8dD svg {
  -webkit-animation: styles_spin__2O8EB 1.1s linear infinite;
  animation: styles_spin__2O8EB 1.1s linear infinite; }

@-webkit-keyframes styles_spin__2O8EB {
  0% {
    -webkit-transform: rotate(-1deg);
    transform: rotate(-1deg); }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@keyframes styles_spin__2O8EB {
  0% {
    -webkit-transform: rotate(-1deg);
    transform: rotate(-1deg); }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@-webkit-keyframes styles_init__1YfSQ {
  0% {
    stroke-dashoffset: 169.64px; }
  to {
    stroke-dashoffset: 0; } }

@keyframes styles_init__1YfSQ {
  0% {
    stroke-dashoffset: 169.64px; }
  to {
    stroke-dashoffset: 0; } }

@-webkit-keyframes styles_offset__3rt57 {
  to {
    stroke-dashoffset: 34px; } }

@keyframes styles_offset__3rt57 {
  to {
    stroke-dashoffset: 34px; } }

@-webkit-keyframes styles_rotation__1gJ9u {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn); } }

@keyframes styles_rotation__1gJ9u {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn); } }

/* THIS GOES TO PUNTI APP */
.styles_Overlay__19dvT {
  background-color: rgba(41, 48, 51, 0.1);
  position: fixed;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.styles_SlideInFromRightEnter__1QGJ4 {
  -webkit-transform: translateX(100%);
  transform: translateX(100%); }

.styles_SlideInFromRightEnterActive__282vM {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1); }

.styles_SlideInFromRightEnterActive__282vM,
.styles_SlideInFromRightExit__1VF1Y {
  -webkit-transform: translateX(0);
  transform: translateX(0); }

.styles_SlideInFromRightExitActive__1Ia80 {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1); }

.styles_SlideInFromBottomEnter__117lu {
  -webkit-transform: translateY(100%);
  transform: translateY(100%); }

.styles_SlideInFromBottomEnterActive__1wXEL {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1); }

.styles_SlideInFromBottomEnterActive__1wXEL,
.styles_SlideInFromBottomExit__3khco {
  -webkit-transform: translateY(0);
  transform: translateY(0); }

.styles_SlideInFromBottomExitActive__1RWbs {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1); }

.styles_EnterActive__1ktx4,
.styles_ExitActive__2UrKK {
  -webkit-transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1); }

.styles_Enter__3DdUi {
  opacity: 0;
  -webkit-transform: rotate(5deg) translateY(50px) scale(0.8);
  transform: rotate(5deg) translateY(50px) scale(0.8); }

.styles_EnterActive__1ktx4,
.styles_Exit__1cWMQ {
  opacity: 1;
  -webkit-transform: rotate(0) translateY(0) scale(1);
  transform: rotate(0) translateY(0) scale(1); }

.styles_ExitActive__2UrKK {
  opacity: 0;
  -webkit-transform: rotate(5deg) translateY(50px) scale(0.8);
  transform: rotate(5deg) translateY(50px) scale(0.8); }

/* THIS GOES TO PUNTI APP */
.styles_FadeInEnter__38_7x {
  opacity: 0; }

.styles_FadeInEnterActive__2GdfT {
  opacity: 1;
  -webkit-transition: opacity .25s ease-in;
  -o-transition: opacity .25s ease-in;
  transition: opacity .25s ease-in; }

.styles_FadeInExit__3oIf1 {
  opacity: 1; }

.styles_FadeInExitActive__3Cv-T {
  opacity: 0;
  -webkit-transition: opacity .25s ease-out;
  -o-transition: opacity .25s ease-out;
  transition: opacity .25s ease-out; }

.styles_MenuItem__29Y3D a {
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  color: #b0bec5;
  -webkit-transition: color .2s ease-out,-webkit-box-shadow .2s ease-out;
  transition: color .2s ease-out,-webkit-box-shadow .2s ease-out;
  -o-transition: box-shadow .2s ease-out,color .2s ease-out;
  transition: box-shadow .2s ease-out,color .2s ease-out;
  transition: box-shadow .2s ease-out,color .2s ease-out,-webkit-box-shadow .2s ease-out; }

.styles_MenuItem__29Y3D {
  border-radius: 10px;
  background: 0 0;
  font-size: 1.6rem;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
  -webkit-transition: background .2s ease-out;
  -o-transition: background .2s ease-out;
  transition: background .2s ease-out;
  line-height: 20px; }

.styles_Fill__ZS3B1 {
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-animation: styles_rotation__1gJ9u 1.8s linear .5s infinite;
  animation: styles_rotation__1gJ9u 1.8s linear .5s infinite; }

.styles_Fill__ZS3B1 circle {
  stroke: #ff6f00;
  -webkit-animation: styles_offset__3rt57 1.8s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s infinite alternate, styles_rotation__1gJ9u 2.16s linear 0.5s infinite;
  animation: styles_offset__3rt57 1.8s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s infinite alternate, styles_rotation__1gJ9u 2.16s linear 0.5s infinite; }

.styles_Base__3L0hQ circle {
  stroke: #eceff1;
  -webkit-animation: styles_init__1YfSQ 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s forwards;
  animation: styles_init__1YfSQ 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s forwards; }

/*                        */
/* DARK VERSION VARIABLES */
/*                        */
.dark-version h1,
.dark-version h2,
.dark-version h3,
.dark-version h4,
.dark-version h5,
.dark-version a {
  color: #171717 !important; }

.dark-version footer .copyright {
  border-top: 1px solid #5f738c3d;
  margin-top: 16px;
  padding: 16px 0px; }
  .dark-version footer .copyright p {
    color: #171717; }

/* $white-color; */
/* Article - styling */
.article-wrapper h1, .article-wrapper h2, .article-wrapper h3, .article-wrapper h4, .article-wrapper h5, .article-wrapper p {
  color: #fff; }

.articles {
  padding-top: 44px; }

.article-background {
  display: block;
  min-height: 400px;
  background-image: url("https://assets.website-files.com/5db165cbf782f992df567ae5/5db165f7f47aa6659a189d4a_illustrations-main%20(1).png"), url("https://assets.website-files.com/5db165cbf782f992df567ae5/5db166af083f4b05ada0f101_mask-dark-blue.svg");
  background-position: 50% 280px, 50% -382px;
  background-color: #021030;
  background-size: 2240px, auto;
  background-repeat: no-repeat, no-repeat; }

p.initial {
  font-size: 20px; }

p.initial:first-child:first-letter {
  color: #FF7100;
  float: left;
  font-family: Georgia;
  font-size: 75px;
  line-height: 60px;
  padding-top: 10px;
  padding-right: 12px;
  padding-left: 3px; }

article h2 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 17px; }

article p {
  font-size: 17px;
  line-height: 29px; }

.image-full-width img {
  width: 100%; }

.recommended-area {
  margin-bottom: 55px; }
  .recommended-area a {
    float: left; }
    @media (max-width: 767px) and (min-width: 300px) {
      .recommended-area a {
        width: 100%; } }
    .recommended-area a h3 {
      color: #021030; }
  .recommended-area img {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */
    width: 100%; }
    @media (max-width: 767px) and (min-width: 300px) {
      .recommended-area img {
        width: 100%; } }
  .recommended-area .headline {
    margin-bottom: 44px;
    text-align: center; }

.supersocialshare {
  position: absolute;
  position: -webkit-sticky;
  position: sticky;
  top: 50%;
  width: 62px;
  padding: 0px;
  position: sticky;
  top: 20px; }
  @media (max-width: 767px) and (min-width: 300px) {
    .supersocialshare {
      display: none; } }
  .supersocialshare .share-count {
    width: 100%;
    height: 30%;
    background: #eee;
    text-align: center;
    padding-top: 1px; }
  .supersocialshare .share {
    position: relative;
    display: block;
    width: 100%;
    height: 54px;
    text-align: center;
    color: #fff;
    font-size: 24px; }
    .supersocialshare .share i {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }

.supersocialshare .share.share-facebook {
  background: #3b5998; }

.supersocialshare .share.share-twitter {
  background: #1da1f2; }

.supersocialshare .share.share-google {
  background: #dd4b39; }

/* Used in Articles */
/* New Layout */
/* Product Pages */
.intro-section {
  text-align: center;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center; }
  .intro-section span {
    font-weight: 700;
    line-height: 1.3125;
    color: #FF7100; }
  .intro-section span.gimme {
    color: #3C1E85; }
  .intro-section h1 {
    font-weight: 700;
    color: #171717;
    margin-bottom: 0.6em;
    letter-spacing: -1.8px; }
  .intro-section p {
    font-weight: 400;
    letter-spacing: -0.2px; }

.modes {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -50px; }
  .modes ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.08);
    padding: 0px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */ }
    .modes ul li {
      width: 100%;
      border-right: 1px solid #dcdcdc;
      list-style: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: left; }
      .modes ul li:hover {
        background: #f3f7fb57; }
      .modes ul li:first-of-type {
        -webkit-border-radius: 6px 0px 0px 6px;
        border-radius: 6px 0px 0px 6px;
        background-clip: padding-box;
        /* stops bg color from leaking outside the border: */
        background-image: url("../../res/img/users.svg");
        background-repeat: no-repeat;
        background-size: 13%;
        text-indent: 80px;
        background-position: 30px center; }
      .modes ul li:last-of-type {
        -webkit-border-radius: 0px 6px 6px 0px;
        border-radius: 0px 6px 6px 0px;
        background-clip: padding-box;
        /* stops bg color from leaking outside the border: */
        background-image: url("../../res/img/customers.svg");
        background-repeat: no-repeat;
        background-size: 13%;
        text-indent: 80px;
        background-position: 30px center;
        border-right: none; }
      .modes ul li.active {
        border-top: 5px solid #FF7100; }
      .modes ul li.active.gimme {
        border-top: 5px solid #3C1E85; }
    .modes ul a {
      padding: 3rem 0rem 3rem 5rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      height: 100%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      color: #171717;
      text-align: left;
      position: relative;
      -webkit-border-radius: 6px;
      border-radius: 6px;
      background-clip: padding-box;
      /* stops bg color from leaking outside the border: */ }
    .modes ul span {
      color: #6b7c93;
      font-size: 14px; }
    .modes ul h4 {
      font-weight: 400;
      letter-spacing: -0.2px; }

.shadow-helper {
  position: relative;
  height: 80vh;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.08);
  background-image: url("../../res/img/punti_product.svg");
  background-position: -260px -410px;
  background-size: auto;
  background-repeat: no-repeat;
  background-color: white; }

.shadow-helper.gimme {
  background-image: url("../../res/img/gimme_product.svg"); }

/* Modal windows - style */
body.modal-open {
  overflow-y: hidden; }

.modal-dialog {
  min-width: 700px; }
  @media (max-width: 992px) and (min-width: 300px) {
    .modal-dialog {
      min-width: 95%;
      width: 95%;
      margin: 0 auto; } }

.modal iframe {
  width: 100%; }

.modal .content {
  min-height: 200px;
  padding-bottom: 10px; }

.modal .modal-header {
  padding: 25px 34px;
  -webkit-border-radius: 0px 30px 30px 0px;
  border-radius: 0px 30px 30px 0px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  border-bottom: none; }
  @media (max-width: 767px) and (min-width: 300px) {
    .modal .modal-header h4 span {
      display: block;
      clear: both;
      margin-bottom: 30px; } }

.modal .modal-footer {
  border-top: none;
  -webkit-border-radius: 30px 0px 0px 30px;
  border-radius: 30px 0px 0px 30px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  padding: 15px 30px; }

.modal .modal-body {
  padding: 0; }

.modal-content {
  box-shadow: -10px 0 40px 0 rgba(41, 48, 51, 0.1) !important;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */ }

.modal-title {
  float: left;
  margin-bottom: 10px; }
