:root {
  --color-primary: #3f8ead ;
  --color-hover: #00a2e2;
  --color-text: #576165;
  --color-very-light-gray: #eee;
  --color-box-bg: #ccdde4;
  --color-footer-bg: #004461;
}

html {
  -webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6, .navbar a {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  color: black;
}

h2{
  font-size: 2em;
  margin-bottom: 1.5em;
}

h4{
  font-size: 1.25em;
}

h5{
  font-size: 1em;
  margin: 1.5em 0 0.75em;
}

ul li, ol li, address{
  font-weight: 300;
}

body {
  font-family: "Merriweather", Helvetica, sans-serif;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 300;
}
body p {
  line-height: 1.75;
  font-weight: 300;
  margin: 0 0 0.5em 0;
}

@media (min-width: 768px){
  .navbar-right .dropdown-menu {
      right: unset;
      left: 0;
  }
}

.lead {
  color: black;
}

section{
  padding: 2em 1em;
}

.sub-section{
  margin-bottom: 4em;
}

@media (max-width: 1300px) {
  .container {
    max-width: 980px;
  }
}
.form-control {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-color: #dbdbdb;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
.form-control:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-color: #3d77c3;
}

/*==================================================
=            CUSTOM MODAL & TRANSITIONS            =
==================================================*/
.modal .modal-content {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  border: none;
}
.modal.modal-large .modal-dialog {
  width: 80%;
}
.modal.modal-dark {
  background: #052d40;
}
.modal.modal-dark .custom-close {
  color: white;
}
.modal.modal-dark .modal-dialog, .modal.modal-dark .modal-content {
  background: #052d40;
}
.modal .modal-header {
  border: none;
}
.modal .custom-close {
  font-size: 3em;
  top: 20px;
  right: 30px;
  position: absolute;
  opacity: 1;
}

.modal-backdrop {
  background: #fff;
  border-top: 5px solid black;
  -webkit-transition: all 0.1s ease-in;
  -moz-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}
.modal-backdrop.in {
  opacity: 1;
}

@-webkit-keyframes fadeAndScaleIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeAndScaleIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeAndScaleOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
  }
}

@keyframes fadeAndScaleOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
  }
}

.fade-and-zoom {
  -webkit-animation-duration: .15s;
  -moz-animation-duration: .15s;
  -ms-animation-duration: .15s;
  animation-duration: .15s;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  -ms-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: backwards;
  -moz-animation-fill-mode: backwards;
  -ms-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

.fade-and-zoom {
  -webkit-animation-name: fadeAndScaleIn;
  -moz-animation-name: fadeAndScaleIn;
  -ms-animation-name: fadeAndScaleIn;
  animation-name: fadeAndScaleIn;
}

/*-----  End of CUSTOM MODAL & TRANSITIONS  ------*/
/*===============================
=            BUTTONS            =
===============================*/
.btn {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  border: none;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}


.btn-ghost {
  border: 5px solid black;
  color: black;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn-ghost.light {
  border: 5px solid #e3e3e3;
  color: #a8a8a8;
}
.btn-ghost.light:hover {
  border-color: #cacaca;
  color: black;
}



.btn-primary {
  color: var(--color-primary);
  background: transparent;
  border: 2px solid var(--color-primary);
}
.btn-primary:hover, .btn-primary:focus {
  border: 2px solid var(--color-primary);
  color: white;
  background-color: var(--color-primary);
}
.btn-primary:active, .btn-primary:active:focus, .btn-primary.active {
  color: white;
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
}


.btn-white {
  background: white;
  color: black;
  text-shadow: none;
  border: 1px solid #f0f0f0;
}

.btn-danger {
  background-color: #c74a46;
  color: white;
}
.btn-danger:hover {
  color: white;
  background-color: #bb3d39;
}
.btn-danger:active, .btn-danger.active {
  background-color: #a73633;
  -webkit-box-shadow: inset rgba(0, 0, 0, 0.4) 0 2px 2px;
  -moz-box-shadow: inset rgba(0, 0, 0, 0.4) 0 2px 2px;
  box-shadow: inset rgba(0, 0, 0, 0.4) 0 2px 2px;
}


/*-----  End of BUTTONS  ------*/

a{
  color: var(--color-primary);
}

a:active, a:hover, a:focus{
  color: var(--color-hover);
}



ul.unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

/*==================================
=            TYPOGRAPHY            =
==================================*/
#stats{
  font-size: 1.5em;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  margin-bottom: 1em;
  line-height: 1.25;
}

#stats .stat{
  font-size: 2em;
  color: var(--color-footer-bg);
}

.subtext {
  color: #8e8e8e;
}


/*-----  End of TYPOGRAPHY  ------*/
/*=====================================
=            CENTERED TABS            =
=====================================*/
.tab-centered {
  border-bottom: 1px solid #ccc;
}
.tab-centered .nav.nav-tabs {
  margin-bottom: -7px;
  display: inline-block;
}
.tab-centered .nav.nav-tabs li.active a {
  border-top: 1px solid black;
}
.tab-centered .nav.nav-tabs li a {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  text-transform: uppercase;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
}

.tab-content {
  padding: 20px 0;
}

/*-----  End of CENTERED TABS  ------*/
/*=========================================
=            GALLERY FILTERING            =
=========================================*/
.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

.isotope,
.isotope .isotope-item {
  /* change duration value to whatever you like */
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}

/*-----  End of GALLERY FILTERING  ------*/
/*==================================
=            MAP MARKER            =
==================================*/
@-webkit-keyframes anim-pulse {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1.5);
  }
}

/*-----  End of MAP MARKER  ------*/
#main-navigation.navbar.navbar-white {
  background: url('../images/white-border.jpg?1401890724') left center repeat-x white;
  border: none;
  border-top: 5px solid #052d40;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
#main-navigation.navbar.navbar-white .navbar-collapse li, #main-navigation.navbar.navbar-white .navbar-brand, #main-navigation.navbar.navbar-white .navbar-toggle {
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

#main-navigation.navbar.navbar-white .navbar-collapse li, #main-navigation.navbar.navbar-white.top-nav-slim .navbar-toggle {
  padding: 20px 6px;
}

#main-navigation.navbar.navbar-white .navbar-collapse li li.divider {
  padding: 0;
}

#main-navigation.navbar.navbar-white .navbar-brand {
  height: 60px;
  line-height: 60px;
  padding: 0 15px;
}


#main-navigation.navbar.navbar-white .navbar-toggle {
  border: none;
  background: white;
  padding: 15px 10px;
}
#main-navigation.navbar.navbar-white .navbar-toggle:hover {
  opacity: 0.5;
}
#main-navigation.navbar.navbar-white .navbar-toggle .icon-bar {
  background-color: black;
}
#main-navigation.navbar.navbar-white .navbar-brand {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: black;
  background: #fff;
}
#main-navigation.navbar.navbar-white .navbar-collapse {
  border: none;
}
#main-navigation.navbar.navbar-white .navbar-collapse.collapsing, #main-navigation.navbar.navbar-white .navbar-collapse.in {
  background: #fff;
}
#main-navigation.navbar.navbar-white .navbar-collapse.collapsing li, #main-navigation.navbar.navbar-white .navbar-collapse.in li {
  padding: 15px 10px;
}
#main-navigation.navbar.navbar-white .navbar-collapse li button {
  margin: 0;
}
#main-navigation.navbar.navbar-white .navbar-collapse li a {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0 2px;
  margin: 0;
  background: #fff;
  color: #a8a8a8;
}
#main-navigation.navbar.navbar-white .navbar-collapse li a i {
  font-size: 16px;
}
#main-navigation.navbar.navbar-white .navbar-collapse li a:hover {
  color: #8e8e8e;
}
#main-navigation.navbar.navbar-white .navbar-collapse li a span {
  border-bottom: 3px solid transition;
}
#main-navigation.navbar.navbar-white .navbar-collapse li .navbar-link-primary {
  color: var(--color-primary);
}
#main-navigation.navbar.navbar-white .navbar-collapse li .navbar-link-primary:hover {
  color: var(--color-hover);
}
#main-navigation.navbar.navbar-white .navbar-collapse li.active a {
  color: black;
}
#main-navigation.navbar.navbar-white .navbar-collapse li.active a span {
  border-bottom: 3px solid black;
}
#main-navigation.navbar.navbar-translucent {
  border-bottom: none;
}
#main-navigation.navbar.navbar-translucent .navbar-brand, #main-navigation.navbar.navbar-translucent .navbar-nav > li > a {
  color: #f0f0f0;
}
#main-navigation.navbar.navbar-translucent .navbar-brand span, #main-navigation.navbar.navbar-translucent .navbar-nav > li > a span {
  border-bottom: 2px solid transparent;
}
#main-navigation.navbar.navbar-translucent .navbar-nav > .active > a, #main-navigation.navbar.navbar-translucent .navbar-nav > .active > a:hover, #main-navigation.navbar.navbar-translucent .navbar-nav > .active > a:focus {
  background: rgba(0, 0, 0, 0.5);
}
#main-navigation.navbar.navbar-translucent .navbar-nav > .active > a span, #main-navigation.navbar.navbar-translucent .navbar-nav > .active > a:hover span, #main-navigation.navbar.navbar-translucent .navbar-nav > .active > a:focus span {
  border-bottom: 2px solid #fff;
}
#main-navigation.navbar.navbar-translucent .navbar-collapse li .navbar-link-primary {
  color: var(--color-primary);
}
#main-navigation.navbar.navbar-translucent .navbar-collapse li .navbar-link-primary:hover {
  color: var(--color-hover);
}
#main-navigation.navbar.navbar-translucent .navbar-collapse li a {
  padding: 15px 12px;
}



.popover {
  width: 200px;
}

#content{
  margin-bottom: 150px;
}

#content.padded {
  padding-top: 76px; /* 60px of navbar + 1em */
}


.screen {
  /*min-height: 650px;*/
  background: #fff;
  margin: 0;
}


#home{
  margin-bottom: 2em;
  background: var(--color-box-bg);
  padding: 0 1em;
}

#home .container{
  background: url('/static/images/worldmap.svg') no-repeat center bottom;
  background-size: contain;
}


#home  h2{
  color: #fff;
  font-size: 2em;
  margin: 0.5em 0;
  line-height: 1.5;
}


#home  h2>span{
  background: rgba(0, 0, 0, 0.35);
  padding: 0 0.25em;
}

#home p{
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 2em;
}

@media (min-width: 767px) {
  #home  h2{
    font-size: 3em;
    margin: 1em 0;
  }

  #home p{
    font-size: 1.5em;
  }

}






/*-----  End of DARK BG CAROUSEL  ------*/

#about .about-text, #services .about-text {
  margin-top: 30px;
}

.feature-item, .feature-item-with-image{
  margin-bottom: 2em;
}

#about .about-features .feature-item, #services .feature-item {
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
#about .about-features .feature-item h2, #about .about-features .feature-item h3, #about .about-features .feature-item h4, #about .about-features .feature-item h5, #about .about-features .feature-item p, #about .about-features .feature-item i, #services .about-features .feature-item h2, #services .about-features .feature-item h3, #services .about-features .feature-item h4, #services .about-features .feature-item h5, #services .about-features .feature-item p, #services .about-features .feature-item i {
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

#about .about-features .feature-item h5{
  margin: 1em 0 0.5em 0;
}

#about .about-features .feature-item.second, #services .about-features .feature-item.second {
  border-left: 1px solid var(--color-very-light-gray);;
  border-right: 1px solid var(--color-very-light-gray);
}
#about .about-features .feature-item .icon, #services .about-features .feature-item .icon {
  margin-top: 10px;
}
#about .about-features .feature-item .icon i, #services .about-features .feature-item .icon i {
  font-size: 1.8em;
}

.feature-item-with-image{
  display: flex;
  flex-direction: column;
}

.feature-item-with-image .feature-image{
  margin-bottom: 1em;
  align-self: center;
}

@media (min-width: 767px) {
  .feature-item-with-image{
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 4em;
  }

  .feature-item-with-image .feature-image{
    min-width: 50%;
    margin: 0 1em 0 0;
  }

  .feature-item-with-image .feature-text{
    align-self: center;
    margin: 0 0 0 1em;
    max-width: 500px;
  }

  .feature-item-with-image.image-right{
    flex-direction: row-reverse;
  }

  .feature-item-with-image.image-right .feature-image{
    margin: 0 0 0 1em;
    display: flex;
    justify-content: flex-end;
  }

  .feature-item-with-image.image-right .feature-text{
    margin: 0 1em 0 0;
  }


}


footer {
  background: var(--color-footer-bg);
  color: #9db4bd;
  padding: 1.5em;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

#copyright{
  border-bottom: 1px solid;
  padding-bottom: 0.5em;
}

footer #footer-nav{
  text-transform: uppercase;
  text-align: right;
}

footer #footer-nav>ul>li{
  display: inline-block;
  font-size: 0.75em;
  padding-left: 0.25em;
}

footer #footer-nav>ul>li:not(:last-child):after {
  content: '|';
  padding-left: 0.25em;
}

footer #footer-nav>ul>li>a{
  color:inherit;
}

footer #footer-nav>ul>li>a:hover, footer #footer-nav>ul>li>a:focus{
  color:white;
  text-decoration: none;
}




/*==================================
=            ANIMATIONS            =
==================================*/
@-webkit-keyframes cd-scroll-right {
  0%, 100% {
    -webkit-transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(3px);
  }
}

@-moz-keyframes cd-scroll-right {
  0%, 100% {
    -moz-transform: translateX(0);
  }

  50% {
    -moz-transform: translateX(3px);
  }
}

@keyframes cd-scroll-right {
  0%, 100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(3px);
    -moz-transform: translateX(3px);
    -ms-transform: translateX(3px);
    -o-transform: translateX(3px);
    transform: translateX(3px);
  }
}

/*-----  End of ANIMATIONS  ------*/
/*-----  End of FEATURE COMPARISION TABLE  ------*/


.error{
    color: #a94442;
    font-weight: normal;
}

#message-received{
    margin-top: 2em;
}

#new-entity{
    display:none;
    margin-top: 30px;
}

.btn-inline{
  margin: 0.5em;
}

#main-search input{
  width: 100%;
  height: 50px;
  padding: 0 20px 0 20px;

  margin-bottom: 10px;

  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}

.twitter-typeahead{
  width: 100%;
}
.tt-dropdown-menu{
  /*background: white;*/
  /*border: 1px solid grey;*/
  width: 100%;
}



.tt-query {
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
   -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.tt-hint {
color: #999
}

.tt-dropdown-menu {
/*width: 422px;*/
margin-top: 4px;
padding: 4px 0;
background-color: #fff;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.2);
-webkit-border-radius: 4px;
   -moz-border-radius: 4px;
        border-radius: 4px;
-webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
   -moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
        box-shadow: 0 5px 10px rgba(0,0,0,.2);
}

.tt-suggestion {
padding: 3px 20px;
line-height: 24px;
}

.tt-suggestion.tt-cursor {
color: #fff;
background-color: #0097cf;

}

.tt-suggestion p {
margin: 0;
}


/* modal X button */
.modal .custom-close{
z-index: 100;
}






#terms-of-use-modal .modal-dialog,
#terms-of-use-modal .modal-content {
height: 90%;
}

#terms-of-use-modal .modal-body {
max-height: 100%;
overflow-y: auto;
}

#terms-of-use-modal p{
text-align: justify;
}


#site-news{
margin-top: 30px;
}

.navbar-brand>img{
display: inline;
}

#membership{
  background: var(--color-very-light-gray);
}

#membership #membership-cta{
  text-align: center;
  margin: 2em 0 3em 0;
}

section h4::before{
  display: block;
  content: " ";
  margin-top: -100px;
  height: 100px;
  visibility: hidden;
  pointer-events: none;
}


/* about CC */
#cc-screenshots img:first{
  margin-bottom: 0.5em;
}

/* ***************** */
/* OUR PLATFROM page */
/* ***************** */

@media (min-width: 992px) {
  #subnav {
    position: fixed;
  }
}

#download-brochure{
  margin: 2em 10px;
}

#subnav .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: var(--color-very-light-gray);
}

/* for scrollspy */
.nav-pills>li.active>a, .nav-pills>li.active>a:focus, .nav-pills>li.active>a:hover {
  color: #fff;
  background-color: var(--color-primary);
}

#platform-sections section:first-of-type{
  padding-top: 1em;
}

#platform-icons{
  display: flex;
  justify-content: space-between;
}

.platform-screenshot, #platform-icons {
  margin-top: 2em;
}


#platform-icons .platform-icon{
  font-size: 7vw;
}

#platform-icons .platform-icon-label{
  font-size: 2.5vw;
}

@media (min-width: 992px) {
  #platform-icons .platform-icon{
    font-size: 3em;
  }

  #platform-icons .platform-icon-label{
    font-size: 1.25em;
  }
}


/* PRICING panels */

#pricing .product-name{
  margin: 1em 0;
}

#pricing .price-intro{
  margin: 0;
  line-height: 1;
}

#pricing .price-sub{
  font-size: 90%;
  font-style:italic;
}


#pricing .price-monthly{
  font-size: 2em;
  font-weight: bold;
}

#pricing .price-hourly{
  font-size: 1.5em;
  font-weight: bold;
}

/* old pricing */

#pricing-panels .panel{
  border: none;
  border-radius: 0;
  text-align: center;
  background: var(--color-box-bg);
}

#pricing-panels .pricing-header {
  padding: 0.5em 0;
  height: 6em;
}

@media (min-width: 992px) {
  #pricing-panels .pricing-header {
    height: 8em;
  }
}

#pricing-panels .pricing-title {
  color: black;
  font-weight: bold;
  font-size: 1.25em;
}

#pricing-panels .pricing-monthly, #pricing-panels .pricing-yearly{
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
}

#pricing-panels .pricing-monthly{
  font-size: 1.125em;
  color: var(--color-footer-bg);
  margin-bottom: 0.5em;
}

#pricing-panels .pricing-monthly .periodicity{
  font-size: 75%;
  color: black;
}

#pricing-panels .pricing-yearly {
  font-size: 0.875em;
}

#pricing-panels .panel .panel-footer{
  border: none;
  background: rgba(0, 0, 0, 0.1);
  font-size: 0.75em;
  color: black;
}

.swiss-flag{
  display: inline-block;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMjAgMzIwIj4NCjxwYXRoIGZpbGw9IiNkNTJiMWUiIGQ9Im0wLDBoMzIwdjMyMGgtMzIweiIvPg0KPGcgZmlsbD0iI2ZmZiI+DQo8cGF0aCBkPSJtNjAsMTMwaDIwMHY2MGgtMjAweiIvPg0KPHBhdGggZD0ibTEzMCw2MGg2MHYyMDBoLTYweiIvPg0KPC9nPg0KPC9zdmc+DQo=');
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-size: auto;
  width: 1em;
  height: 1em;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: left top;
}
