/*

Table of Contents
- - - - - - - - -

    BASE
        - General
        - Links
        - Lists

    TYPOGRAPHY
        - Text Weight
        - Paragraph and Title spacing
        - Body text Titles
        - SPPB Titles

    HEADER
        - General
        - Overheader - Contact details
        - Header Logo
        - Main Menu
        - Off-Canvas Hamburger Toggler
        - Off-Canvas Menu

    FOOTER

    COOKIES NOTIFICATION BAR
    COOKIEBOT

    SECTIONS
        - Hero Section
        - Blogfeed section on the homepage

    ELEMENTS
        - Buttons
        - Scroll to top plugin
        - Tooltips
        - Language Selector
		- Image with quotes
		- Image with fade
        - Price Table Switch
        - Price card
        - Highlights Slider
        - Social icons
        - Circular elements
        - Shadow icons
        - Service Plan Tags
        - Google Maps

    FORMS

    WIKI (Blog)
        - List View
        - Detail View
        - Table of content - dot navigation
        - Codepen embed
		- PrismJS
		- Social Share

	REFERENCES
		- References List View
		- References Detail View

    SHAME: Messy temporary stuff

- - - - - - - - -

*/

/******************************************************************************/
/* BASE					                                                      */
/******************************************************************************/

/* General
*******************************************************************************/
html {
  scroll-behavior: smooth;
}

body {
  color: #777;
  line-height: 1.6;
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
}

body.itemid-700 {
  background: none;
}

.col-center {
  float: none;
  margin: 0 auto;
}

.nowrap {
  white-space: nowrap;
}

#sp-main-body {
  padding: 50px 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.body-innerwrapper {
  overflow-x: hidden;
  -webkit-transition: margin-left 400ms cubic-bezier(0.7, 0, 0.3, 1);
  transition: margin-left 400ms cubic-bezier(0.7, 0, 0.3, 1);
}

.body-innerwrapper:after {
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.8);
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
  transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
  z-index: 999;
}

.layout-boxed .body-innerwrapper {
  max-width: 1240px;
  margin: 0 auto;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* Links
*******************************************************************************/

a,
.sp-module ul > li > a {
  color: #28d8cc;
}
a {
  -webkit-transition: color 400ms, background-color 400ms;
  transition: color 400ms, background-color 400ms;
}

a,
a:hover,
a:focus,
a:active,
.sp-module ul > li > a:hover {
  text-decoration: none;
  color: #00bac0;
}

/* Lists
*******************************************************************************/

ul,
ol {
  margin-top: 5px;
  margin-bottom: 30px;
  list-style: none;
}

ul li,
ol li {
  margin-bottom: 12px;
}

#sp-main-body ul {
  padding-left: 20px;
}

#sp-main-body ul > li:before {
  content: "•";
  font-family: Arial;
  line-height: 0;
  display: inline-block;
  vertical-align: middle;
  font-size: 1.2em;
  width: 0.8em;
  margin-left: -0.8em;
  color: #28d8cc;
}

#sp-main-body ol {
  padding-left: 40px;
}

#sp-main-body ol > li {
  counter-increment: step-counter;
}

#sp-main-body ol > li:before {
  display: inline-block;
  content: counter(step-counter);
  font-size: 18px;
  width: 28px;
  margin-left: -38px;
  line-height: 14px;
  border-radius: 100%;
  padding: 5px;
  text-align: center;
  color: #fff;
  background: #28d8cc;
  margin-right: 10px;
  font-weight: 600;
  border: 2px solid;
}

#sp-main-body ul.list-with-icon {
  padding-left: 40px;
}

#sp-main-body ul.list-with-icon > li:before {
  display: none;
}

#sp-main-body ul.list-with-icon > li > i {
  margin-left: -38px;
  display: inline-block;
  width: 38px;
  color: #28d8cc;
}

/******************************************************************************/
/* TYPOGRAPHY						                                          */
/******************************************************************************/

/* Text Weight
*******************************************************************************/

p strong,
ul strong,
li strong {
  font-weight: 600;
}

/* Paragraph and Title spacing
*******************************************************************************/

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

h4.category-name + h1 {
  margin-top: 0;
}

p {
  margin: 0 0 16px;
}

aside {
  color: #999;
  font-size: 14px;
  margin: 0 0 8px;
}

/* Body text titles
*******************************************************************************/

h1 {
  color: #00bac0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

h2 {
  color: #2b303d;
  line-height: 1.4;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

h3 {
  color: #666;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

h4 {
  color: #666;
  font-weight: 500 !important;
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

h5 {
  font-size: 18px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}

h4.category-name {
  font-weight: 600;
}

h6 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}

/* SPPB Titles
*******************************************************************************/

h2.sppb-addon-title {
  color: #2b303d;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  h2.sppb-addon-title {
    font-size: 32px;
  }
}

h3.sppb-addon-title {
  color: #2b303d;
  font-size: 34px;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  h3.sppb-addon-title {
    font-size: 28px;
  }
}

h4.sppb-addon-title {
  color: #d13ad6;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  margin: 0;
}

/******************************************************************************/
/* HEADER					                                                  */
/******************************************************************************/

/* General
*******************************************************************************/

#sp-header > .row {
  margin: 0;
}

#sp-header {
  color: #444444;
  box-shadow: none;
  position: fixed;
  width: 100%;
  height: 123px;
  z-index: 3;
}

#sp-menu {
  height: 123px;
  position: absolute;
  width: 100%;
}

#sp-header.headroom--unpinned,
#hamburger.headroom--unpinned {
  margin-top: -123px;
}

#sp-header {
  transition: all 0.6s ease, background-color 0.6s ease, top 2s !important;
  background: transparent;
}

#sp-header.headroom--not-top.headroom--unpinned,
#hamburger.headroom--not-top.headroom--unpinned,
#hamburger.headroom--not-top.headroom--pinned {
  transition: all 0.6s ease, background-color 0.5s, top 2s !important;
}

@media only screen and (max-width: 1199px) {
 #sp-header .row {
  display: flex;
 }
 #sp-logo {
  order: 2;
 }
 #sp-menu {
  order: 1;
 }
}

/* Overheader - Contact details
/******************************************************************************/

#sp-menu .sp-module.header-contact {
  position: absolute !important;
  right: 0;
  width: 100%;
  background-color: #fcfcfc;
  color: #bbb;
}

#sp-menu .header-contact-info {
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding-left: 0;
  flex-wrap: wrap;
}

.sp-module ul.header-contact-info li {
  display: flex;
  border-bottom: none;
  justify-content: center;
  align-items: center;
  margin: 0 30px 0 0;
}

.sp-module ul.header-contact-info li:nth-last-of-type(1) {
  margin: 0 50px 0 0;
}

@media (max-width: 767px) {
  .sp-module ul.header-contact-info li:nth-last-of-type(1) {
    margin: 0 10px 0 0;
  }
}

#sp-menu .sp-module ul.header-contact-info li a {
  margin: 0;
  padding: 0;
  padding-top: 3px;
  font-size: 13px;
  color: #bbb;
  border-top: 0;
  border-bottom: none;
  line-height: 30px;
}

#sp-menu .sp-module ul.header-contact-info li.lang-active a {
  color: #00bac0;
  font-weight: bold;
}

#sp-menu .sp-module ul.header-contact-info li a:hover,
#sp-menu .sp-module ul.header-contact-info li a:active,
#sp-menu .sp-module ul.header-contact-info li a:focus {
  border-bottom: none;
}

.sp-module ul.header-contact-info li.lang-switch {
  margin-right: 0;
}

.sp-module ul.header-contact-info li.lang-switch .lang-inline li:first-child a:after {
  display: none;

}

@media (max-width: 767px) {
  #sp-menu .sp-module ul.header-contact-info li a span {
    display: none;
  }
}

.header-contact-info li i {
  margin-right: 10px;
  font-size: 14px;
}

#sp-logo,
.sp-megamenu-parent {
  margin-top: 33px;
  z-index: 10;
}

/* Header Logo
*******************************************************************************/

#sp-header .logo {
  display: block;
}

a.logo img {
  height: 60px;
  width: auto;
  transition: all 0.4s ease;
  margin-top: 15px;
}

#sp-header .sp-retina-logo {
  display: none;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (-moz-min-device-pixel-ratio: 1.5),
  only screen and (-o-min-device-pixel-ratio: 1.5),
  only screen and (min-device-pixel-ratio: 1.5) {
  #sp-header .sp-default-logo {
    display: none;
  }

  #sp-header .sp-retina-logo {
    display: block;
  }
}

/* Main Menu
/******************************************************************************/

#sp-menu {
  background: #ffffff !important;
}

/* Base level setup */

.sp-megamenu-parent {
  list-style: none;
  padding: 0;
  z-index: 9;
  display: block;
  float: right;
}

.sp-megamenu-parent > li {
  display: inline-block;
  position: relative;
  padding: 0;
  margin-bottom: 0;
}

.sp-megamenu-parent > li.menu-justify {
  position: static;
}

.sp-megamenu-parent > li > a {
  display: inline-block;
  padding: 0 15px;
}

.sp-megamenu-parent > li.sp-has-child > a:after {
  font-family: "FontAwesome";
  content: "";
}

.sp-megamenu-parent .sp-module {
  padding: 10px;
}

.sp-megamenu-parent .sp-mega-group {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sp-megamenu-parent .sp-mega-group .sp-mega-group-child {
  list-style: none;
  padding: 0;
  margin: 0;
}

#sp-menu .sp-module ul > li > a,
.sp-megamenu-parent > li > a {
  font-family: 'Montserrat', sans-serif;
  padding: 0 5px;
  margin: 25px 30px;
  font-size: 18px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  line-height: 36px;
  border-top: 2px solid rgba(255, 255, 255, 0);
  border-bottom: 2px solid rgba(255, 255, 255, 0);
  color: #2b303d;
  transition: all 0.4s ease;
}
@media (min-width: 992px) and (max-width: 1200px) {
  #sp-menu .sp-module ul > li > a,
  .sp-megamenu-parent > li > a {
    margin: 25px 15px;
    font-size: 17px;
  }
}

#sp-menu .sp-module ul > li > a:hover,
#sp-menu .sp-module ul > li > a:focus,
.sp-megamenu-parent > li:hover > a,
.sp-megamenu-parent > li:focus > a {
  color: #00bac0;
  border-bottom: 2px solid;
  transition: all 0.4s ease;
}

.sp-megamenu-parent > li.active > a {
  color: #00bac0;
  font-weight: 600;
}

@media (max-width: 991px) {
  .sp-megamenu-parent > li > a {
    margin-right: 20px;
    margin-left: 20px;
  }
}

/* Off-Canvas Hamburger Toggler
*******************************************************************************/

.close-offcanvas {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10000;
  color: #000;
  border: 2px solid #eee;
  border-radius: 100%;
  width: 22px;
  height: 22px;
  line-height: 18px;
  text-align: center;
  font-size: 12px;
}

#hamburger {
  position: fixed;
}

@media (min-width: 992px) {
  .hamburger {
    display: none !important;
  }
}

.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 36px 30px 0 0;
  overflow: visible;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #2b303d;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

/* Off-Canvas Menu
/******************************************************************************/

.offcanvas .body-innerwrapper:after {
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.offcanvas-menu {
  width: 100% !important;
  height: 100%;
  background: #00bac0 !important;
  position: fixed;
  top: 0;
  opacity: 0;
  z-index: -1;
  overflow-y: scroll;
  transition: opacity 400ms cubic-bezier(0.7, 0, 0.3, 1),
    right 0ms cubic-bezier(0.7, 0, 0.3, 1) !important;
}

.offcanvas .offcanvas-menu {
  opacity: 1;
}

.offcanvas-menu .offcanvas-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
}

.offcanvas-menu .offcanvas-inner .sp-module {
  margin: 0;
}

.offcanvas-menu .offcanvas-inner .sp-module ul > li {
  text-align: center;
  font-size: 36px;
  border: none;
}

@media (max-width: 475px) {
  .offcanvas-menu .offcanvas-inner .sp-module ul > li {
    font-size: 28px;
  }
}

.offcanvas-menu .offcanvas-inner .sp-module ul > li a {
  border-bottom: 1px dotted #e8e8e8;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  padding: 4px 20px;
}

.offcanvas-menu .offcanvas-inner .sp-module ul > li a:hover {
  background: none !important;
}

.offcanvas-menu .offcanvas-inner .sp-module ul > li > a:before {
  display: none;
}

.offcanvas-menu .offcanvas-inner .sp-module:first-child {
  margin-top: 0;
}

.offcanvas-menu .offcanvas-inner .sp-module .sp-module-content > ul {
  margin: 0 -20px;
}

.offcanvas-menu .offcanvas-inner .search {
  margin-top: 25px;
}

.offcanvas-menu .offcanvas-inner .search input {
  width: 100%;
  border-radius: 0;
  border: 1px solid #eee;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.offcanvas-menu .offcanvas-inner .sp-module ul > li > a {
  color: #fff;
  border: none;
  font-weight: 300;
  white-space: nowrap;
}

.offcanvas-menu .offcanvas-inner .sp-module ul > li > a:hover,
.offcanvas-menu .offcanvas-inner .sp-module ul > li > a:focus,
.offcanvas-menu .offcanvas-inner .sp-module ul > li > a:active {
  color: #fff;
}

.offcanvas-menu .offcanvas-inner .sp-module ul > li {
  margin-top: 25px;
}

/******************************************************************************/
/* SECTIONS                                                                   */
/******************************************************************************/

/* Hero Section
*******************************************************************************/

/* Basic layout */

.hero-header {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  align-items: center;
  margin: 100px 50px 120px;
}
@media (max-width: 767px) {
  .hero-header {
    padding: 0 15px;
  }
}

.hero-header .text-wrapper {
  margin: 3.5% 7% 0 0;
}

.hero-header .image-wrapper {
  margin: 0 -3% 0 0;
  width: 560px;
  height: 560px;
}

/* Text container */

.hero-header h1 {
  margin: 2% 0 5% 0;
  font-size: 70px;
  font-weight: 700;
  color: #2b303d;
  line-height: 1.15;
}
@media (max-width: 767px) {
  .hero-header h1 {
    font-size: 32px;
  }
}

.hero-header h4 {
  margin: 0;
  font-weight: 400;
  line-height: 1.3;
  color: #bbb;
  font-size: 24px;
}
@media (max-width: 767px) {
  .hero-header h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 1600px) {
  .hero-header .image-wrapper {
    width: 480px;
    height: 480px;
  }

  .hero-header {
    font-size: 66px;
  }
}

@media (max-width: 1450px) {
  .hero-header .image-wrapper {
    width: 440px;
    height: 440px;
  }

  .hero-header {
    font-size: 62px;
  }
}

@media (max-width: 1300px) {
  .hero-header .image-wrapper {
    width: 400px;
    height: 400px;
  }

  .hero-header {
    font-size: 58px;
  }
}

@media (max-width: 1150px) {
  .hero-header .image-wrapper {
    width: 350px;
    height: 350px;
  }

  .hero-header {
    font-size: 58px;
  }
}

@media (max-width: 1050px) {
  .hero-header .image-wrapper {
    width: 300px;
    height: 300px;
  }

  .hero-header {
    font-size: 56px;
  }
}

@media (max-width: 992px) {
  .hero-header {
    flex-direction: column;
    margin: 120px 0 70px 0;
  }

  .hero-header .image-wrapper {
    margin: 0;
  }

  .hero-header .text-wrapper {
    margin: 80px 0 0 0;
    text-align: center;
  }
}

@media (min-width: 992px) {
  .hero-header .text-wrapper {
    width: 650px;
  }
}

@media (max-width: 580px) {
  .hero-header br {
    display: none;
  }

  .hero-header .image-wrapper {
    width: 260px;
    height: 260px;
  }
}

/* Button */

@media (max-width: 767px) {
  .hero-header .btn span {
    display: none;
  }

  .hero-header .btn {
    font-size: 15px;
    padding: 12px 20px;
  }
}

/* Input field when used in hero section */

@media (max-width: 767px) {
  .hero-header input#updCheck {
    width: calc(100% - 30px);
    margin: 0 auto;
  }
}

/* ZT:: Hide the CustomFields showing in articles */
.fields-container {
  display: none!important;
}

/* Blogfeed section on the homepage
*******************************************************************************/

.blogfeed .sppb-addon-articles {
  margin-left: -15px;
}

.blogfeed .sppb-addon-articles .sppb-col-sm-4 {
  background: #fff;
  padding: 30px 30px 0 30px;
  transition: all 0.3s ease;
}

.blogfeed .sppb-addon-articles .sppb-col-sm-4:hover {
  background: #f4f4f4;
  transition: all 0.3s ease;
  /* box-shadow: 0px 3px 15px -2px; */
  z-index: 1;
}

.blogfeed .sppb-addon-articles h3 a {
  color: #2b303d;
  font-size: 20px;
  line-height: 1.3;
}

.blogfeed .sppb-addon-article .sppb-img-responsive {
  border-radius: 4px;
  margin-bottom: 20px;
}
@media (max-width: 767px) and (min-width: 576px) {
  .blogfeed .sppb-addon-article .sppb-img-responsive {
    float: left;
    width: 125px;
    margin-right: 25px;
  }
}
@media (max-width: 767px) {
  .blogfeed .sppb-addon-articles .sppb-col-sm-4 {
    padding: 30px 15px 0 15px;
  }
  .blogfeed .sppb-addon-articles {
    margin-left: 0;
  }
}
@media (max-width: 575px) {
  .blogfeed .sppb-addon-article .sppb-img-responsive {
    margin: 0 auto;
  }
  .blogfeed .sppb-addon-article h3 {
    margin-top: 20px;
  }
}

.blogfeed .sppb-addon-articles .sppb-article-meta > span {
  font-size: 14px;
  line-height: 12px;
  border-right: 1px solid;
  margin: 0;
  padding: 0 12px;
}

.blogfeed .sppb-addon-articles .sppb-article-meta > span:last-child {
  border: none;
}

/******************************************************************************/
/* FOOTER       					                                          */
/******************************************************************************/

#sp-footer {
  background: #00bac0;
}

.jt-footer .modal-link {
  font-size: 48px;
  line-height: 30px;
}

@media (max-width: 480px) {
  .jt-footer .modal-link {
    font-size: 36px;
    line-height: 24px;
  }
  .custom-contact-info li {
    margin-right: 6px !important;
}
}

@media (max-width: 380px) {
  .jt-footer .modal-link {
    font-size: 29px;
    line-height: 22px;
  }
  #sp-menu .sp-module ul.header-contact-info li a {
    font-size: 12px;
}
}

.jt-footer .footer-disclaimer {
  font-size: 13px;
}

/******************************************************************************/
/* COOKIES NOTIFICATION BAR 	   	                                          */
/******************************************************************************/

.cpnb-inner {
  padding: 25px 20px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#cpnb .cpnb-warningBox-show-fade-in {
  background-color: #2b303d !important;
  font-size: 16px !important;
  font-family: Montserrat, sans-serif;
}

#cpnb a {
  text-shadow: none;
}

#cpnb .cpnb-buttons .cpnb-button {
  font-size: 13px;
  padding: 8px 25px;
  border: 1px solid #ffffff;
  border-radius: 100px;
  background-color: #2b303d;
}

#cpnb .cpnb-buttons .cpnb-button:hover {
  background-color: #ffffff;
  color: #000000;
}

@media (max-width: 1550px) {
  #cpnb * {
    text-align: center;
    float: none;
  }

  #cpnb .cpnb-message {
    margin-bottom: 15px;
  }

  .cpnb-inner {
    display: block;
  }
}

/*
 * --- Cookiebot
**/
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtons #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll,
#CookiebotWidget-widgetContent #CookiebotWidget-buttons #CookiebotWidget-btn-change{
	background-color: #28d8cc !important;
	border-color: #28d8cc !important;
}
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtons #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection,
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtons .CybotCookiebotDialogBodyButton,
#CookiebotWidget #CookiebotWidget-buttons #CookiebotWidget-btn-withdraw{
	border-color: #28d8cc !important;
}
#CybotCookiebotDialogTabContent input:checked+.CybotCookiebotDialogBodyLevelButtonSlider{
	background-color: #28d8cc  !important;
}
#CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink.CybotCookiebotDialogActive{
	color: #28d8cc !important; 
	border-color: #28d8cc !important;
}
.CybotCookiebotDialogBodyBottomWrapper #CybotCookiebotDialogBodyEdgeMoreDetails a#CybotCookiebotDialogBodyEdgeMoreDetailsLink,
#CybotCookiebotDialogBodyContentText p:nth-child(2) a,
#CybotCookiebotDialogBodyContentText p:nth-child(3) a,
#CybotCookiebotDialogBodyContentTitle,
#CybotCookiebotDialog #CybotCookiebotDialogDetailFooter a,
.CookiebotWidget-show-consent-details,
#CybotCookiebotDialogBodyContentText p a{
	color: #28d8cc !important;
}
.CookiebotWidget-consents-list svg{
	fill: #28d8cc !important;
}
.CookiebotWidget-consents-list ul li:nth-child(4){
	display: none !important;

}

/******************************************************************************/
/* ELEMENTS							                                          */
/******************************************************************************/

/* Buttons
/******************************************************************************/

/* General styles */

.btn,
.sppb-btn {
  border-radius: 100px;
  border-color: #fff;
  color: #fff;
  font-weight: 600;
  padding: 6px 22px;
  font-size: 15px;
  line-height: 1.33;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  text-transform: uppercase;
}

.btn-default,
.sppb-btn-default {
  background-color: #28d8cc;
  border: 1px solid #28d8cc;
}

.btn-primary,
.sppb-btn-primary {
  background-color: fff;
  color: #00bac0;
}

.sppb-btn-rounded {
  border-radius: 100px;
}

/* .grey .sppb-btn-default {
  background-color: #d7dadd;
  border: 1px solid #d7dadd;
} */

/* Regular size */

.btn,
.sppb-btn {
  padding: 8px 24px;
  font-size: 16px;
}

/* Small size */

.btn-sm,
.sppb-btn-sm {
  padding: 4px 16px;
  font-size: 14px;
}

/* Large size */

.btn-lg,
.sppb-btn-lg {
  padding: 12px 48px;
  font-size: 18px;
}

/* Extra large size */

.btn-xlg,
.sppb-btn-xlg {
  padding: 14px 64px;
  font-size: 20px;
}

/* Hover */

.btn:hover,
.sppb-btn:hover,
.btn:focus,
.sppb-btn:focus,
.btn:active,
.sppb-btn:active {
  border-color: #00bac0;
  background-color: #00bac0;
  color: #fff;
}

/* .grey .sppb-btn-default:hover,
.grey .sppb-btn-default:focus,
.grey .sppb-btn-default:active {
  background-color: #BEC1C4;
  border: 1px solid #BEC1C4;
} */


/* Scroll to top plugin
*******************************************************************************/

/* ScrollToTop Button */
#scrollToTop {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  font-size: 22px;
  width: 40px;
  height: 40px;
  background: #28d8cc;
  color: white;
  border: none;
  border-radius: 20px;
  border-color: #28d8cc;
  outline-color: transparent;
  z-index: 1;
}
#scrollToTop:hover {
  background: #333;
  transition: background 0.4s ease;
}

/* #scrollToTop {
	font-size: 28px !important;
	line-height: 1.2;
	padding-top: 0px !important;
	padding-bottom: 2px !important;
	transition: all 0.3s !important;
	z-index: 9998 !important;
	border-radius: 20px !important;
}

#scrollToTop:before {
	font-family: Font awesome\5 Pro;
	content: "\f106";
} */

/* Tooltips
*******************************************************************************/

.tooltip-inner {
  max-width: 240px;
  padding: 10px;
  color: #fff;
  background-color: #28d8cc;
  border-radius: 0;
  font-size: 13px;
}

.tooltip.bottom .tooltip-arrow {
  border-bottom-color: #28d8cc;
}

.tooltip.in {
  opacity: 1;
  filter: alpha(opacity=90);
}

/* Language Selector
*******************************************************************************/

#sp-main-body .mod-languages ul > li:before {
  content: none;
}

#sp-main-body .mod-languages ul,
.mod-languages ul.lang-inline {
  padding-left: 0;
}

.mod-languages li:first-child {
  margin-left: 0;
}

.mod-languages li:first-child a:after {
  border-bottom: 1px solid #28d8cc;
}

.mod-languages ul.lang-inline li {
  display: inline;
  margin-left: 5px;
  margin-right: 5px;
}

.lang-inline li:first-child a:after {
  border: 1px solid #868686;
  background-color: #868686;
  content: "";
  height: 20px;
  right: -12px;
  position: absolute;
  top: 6px;
}

.lang-inline a {
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  margin-right: 9px;
  line-height: 30px !important;
}

.lang-inline li.lang-active a,
.lang-inline li:hover a {
  border-bottom: 1px solid #00bac0;
  color: #00bac0;
}

/* Image with quotes
*******************************************************************************/

.image-with-quote {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}

.image-with-quote img {
  filter: grayscale();
}

.image-with-quote i.top {
  position: absolute !important;
  top: -35px;
  right: -30px;
  z-index: 1;
}

.image-with-quote i.bottom {
  position: absolute !important;
  bottom: -35px;
  left: -20px;
  z-index: 1;
}

.image-with-quote--right {
  position: absolute;
  right: 0;
}

/* Referenzen page option */

.image-with-quote--references {
  max-width: 220px;
  margin-bottom: 50px;
  margin-top: 8px;
}

.image-with-quote--references i.bottom {
  position: absolute !important;
  bottom: -15px;
  left: 10px;
  z-index: 1;
}

@media (max-width: 767px) {
  .image-with-quote--references {
    margin-top: 30px;
  }
}

/* Image with fade
*******************************************************************************/
.performance-image {
  position: relative;
}

.performance-image.img-fade img:hover {
  opacity: 0;
}

.performance-image img {
  transition: 0.5s;
  display: block;
}

.performance-image.img-fade img {
  position: absolute;
}

.performance-image p {
  font-weight: 700;
  position: absolute;
  right: 0;
  left: 0;
  top: 250px;
}

/* Price Table Switch
*******************************************************************************/

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

.price-switch2 .choose_a_plan-flex {
  display: flex;
  align-items: center;
}

.d-inline-block {
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .price-switch2 .choose_a_plan-flex {
    display: block;
  }
}

.price-switch2 .price-switch .choose_a_plan-button {
  position: relative;
  border: none;
  height: 40px;
  width: 120px;
  border-radius: 50px;
  background: #777;
  margin: 40px 0px;
}

.price-switch2 .choose_a_plan-button:focus,
.price-switch2 .choose_a_plan-button.focus,
.price-switch2 .choose_a_plan-button:focus.active,
.price-switch2 .choose_a_plan-button.focus.active {
  outline: none !important;
}

.price-switch2 .choose_a_plan-button > .handle {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 38px;
  height: 38px;
  border-radius: 50px;
  transition: left 0.25s;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: contain;
}

.price-switch2 .choose_a_plan-button.active {
  transition: background-color 0.25s;
}

.price-switch2 .choose_a_plan-button.active > .handle {
  left: 81px;
  transition: left 0.25s;
}

.price-switch2 .choose_a_plan-button.active:before {
  opacity: 0.5;
}

.price-switch2 .choose_a_plan-button.active:after {
  opacity: 1;
}

.price-switch2 .choose_a_plan-button:before,
.price-switch2 .choose_a_plan-button:after {
  color: #777;
}

.price-switch2 .choose_a_plan-button.active {
  background-color: #777;
}

.price-switch2 .price-switch .price-switch-top-text {
  font-size: 26px;
  color: #777777;
  font-weight: bolder;
  line-height: 1.2;
}

.price-switch2 .price-switch .price-switch-bottom-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.price-switch2 .prices {
  min-height: 1500px;
}

.price-switch2 #sppb-tab1-2 {
  position: absolute !important;
  top: 0px;
}

@media only screen and (max-width: 767px) {
  .price-switch2 .col-sm-5 {
    text-align: center;
    margin: 25px 0px;
  }
}

.price-card .vat-price-normal-text {
  font-size: 14px;
  line-height: 14px;
}

.price-switch2 .price-switch-left-text,
.price-switch2 .price-switch-right-text {
  cursor: pointer;
  text-align: center;
}

#price-left,
#price-center {
  min-width: 136px;
  display: inline-block;
  text-align: right;
  margin-left: 5px;
}
@media (max-width: 767px) {
  #price-left,
  #price-center {
    min-width: 90px;
  }
}

#price-right {
  width: 165px;
  display: inline-block;
  text-align: right;
  margin-left: 5px;
  direction: rtl;
}
@media (max-width: 767px) {
  #price-right {
    width: 90px;
  }
}

#price-left-vat,
#price-center-vat {
  min-width: 40px;
  display: inline-block;
  text-align: right;
  margin-left: 5px;
}

#price-right-vat {
  min-width: 45px;
  display: inline-block;
  text-align: right;
  margin-left: 5px;
}

/* Price card
*******************************************************************************/

.price-card p {
  margin: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 18px;
}

.price-card__special-title {
  padding: 5px 20px 10px;
  font-size: 16px;
  line-height: 1;
  color: #ffffff;
  background: #28d8cc;
}

.price-card__title {
  background: #000000;
  height: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.price-card__title h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
}

.price-card__price {
  height: 225px;
  color: #ffffff;
  background: #d13ad6;
  display: flex;
  justify-content: center;
  align-items: center;
}

.price-card__price p {
  margin-bottom: 20px;
  line-height: 1;
}

.price-card__price span {
  font-family: Montserrat, sans-serif;
  font-size: 100px;
  line-height: 70px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .price-card__price span {
    font-size: 75px;
  }
}

.price-card__price span.price-card__currency {
  font-size: 50px;
}

.price-card__price p:last-of-type {
  font-size: 14px;
  margin-bottom: 0;
}

.price-card__value {
  padding-top: 25px;
  padding-bottom: 30px;
  color: #ffffff;
  background: #28d8cc;
}

@media (min-width: 992px) {
  .price-card__value {
    height: 220px;
  }
}

@media (min-width: 1200px) {
  .price-card__value {
    height: 195px;
  }
}

.price-card__button {
  margin: 30px 20px;
}

.price-card__cta {
  background: #ffffff;
  padding-bottom: 25px;
}

.price-card__features {
  font-size: 18px;
  background: #dddddd;
  padding: 25px 20px;
}

.price-card__features p {
  margin-bottom: 15px;
}

#sp-main-body .price-card__features ul {
  padding: 0;
  margin: 0;
}

#sp-main-body .price-card__features ul > li:before {
  list-style-type: none !important;
  margin-bottom: 15px;
  content: none;
}

@media (max-width: 440px) {
  .price-switch-top-text {
    font-size: 20px !important;
  }

  .price-switch-bottom-text {
    font-size: 13px !important;
  }
}

/* Highlights Slider
*******************************************************************************/

.highlights-slider {
  box-shadow: 0px 0px 25px -2px rgba(0, 0, 0, 0.25);
  margin: 50px 0 80px;
  background: #2b303d;
}

.highlights-slider.sp-smart-slider.carousel .carousel-inner {
  padding-bottom: 0;
}

.highlights-slider .container {
  width: 100% !important;
  padding: 0;
}

.highlights-slider .slider-content {
  padding: 30px;
  padding-bottom: 70px;
}

@media (min-width: 992px) {
  .highlights-slider .slider-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 35%;
  }
}

.highlights-slider .slider-content .slider-title {
  color: #d13ad6;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  margin-top: 0px;
}

.highlights-slider .slider-content .slider-text {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}

@media (min-width: 1200px) {
  .highlights-slider .slider-content .slider-text {
    font-size: 18px;
  }
}

.highlights-slider .slider-image {
  padding: 30px;
  background: #ffffff;
}

@media (min-width: 992px) {
  .highlights-slider .slider-image {
    width: 65%;
    float: right;
  }
}

.highlights-slider.sp-smart-slider.carousel .carousel-control {
  margin-top: 0;
  opacity: 1;
  font-size: 80px;
  font-weight: normal;
  color: #28d8cc;
  background: #ffffff;
  text-shadow: none;
}

@media (max-width: 1345px) and (min-width: 1200px) {
  .highlights-slider.sp-smart-slider.carousel .carousel-control {
    display: none;
  }
}

@media (max-width: 1145px) and (min-width: 992px) {
  .highlights-slider.sp-smart-slider.carousel .carousel-control {
    display: none;
  }
}

@media (max-width: 925px) {
  .highlights-slider.sp-smart-slider.carousel .carousel-control {
    display: none;
  }
}

.highlights-slider.sp-smart-slider.carousel .carousel-control:hover {
  color: #00bac0;
}

.highlights-slider.sp-smart-slider.carousel .carousel-control.left {
  left: -90px;
}

.highlights-slider.sp-smart-slider.carousel .carousel-control.right {
  right: -90px;
}

#sp-main-body
  .highlights-slider.sp-smart-slider.carousel
  .carousel-indicators
  li::before {
  display: none;
}

.highlights-slider.sp-smart-slider.carousel .carousel-indicators {
  width: 35%;
  left: 30px;
  margin: 0;
}

.highlights-slider.sp-smart-slider.carousel .carousel-indicators li {
  margin-left: 15px;
  border: none;
}

@media (min-width: 992px) {
  .highlights-slider.sp-smart-slider.carousel .carousel-indicators li {
    margin-left: 7px;
  }
}

.highlights-slider.sp-smart-slider.carousel .carousel-indicators .active {
  height: 13px;
}

.highlights-slider.sp-smart-slider.carousel
  .carousel-indicators
  li:first-of-type {
  margin-left: 0;
}

.highlights-slider.sp-smart-slider.carousel .carousel-indicators .active {
  background-color: #28d8cc;
}

#sp-main-body .highlights-slider.sp-smart-slider.carousel ol {
  padding-left: 0;
}

/* Social icons
*******************************************************************************/

/* Footer setup */

.footer-social-links {
  text-align: center;
}

@media (max-width: 992px) {
  .footer-social-links {
    text-align: left;
  }
}

.footer-social-links .raw-icon {
  display: inline-block;
  margin-right: 15px;
}

.footer-social-links a {
  color: #999;
}

.footer-social-links--white .raw-icon span.raw-icon-inner {
  background-color: #fff;
}

/* Personal social links */

.references-social-links i {
  font-size: 35px;
}

/* Circular elements
/******************************************************************************/

.sppb-hidden-md .jt-element {
  height: 240px !important;
}

.jt-element {
  position: relative;
  display: inline-block;
  height: 400px;
  width: 400px;
}

@media (max-width: 991px) {
  .jt-element {
    display: block;
    margin: 25px auto 50px auto;
  }
}

.jt-element .ring {
  width: inherit;
  height: inherit;
  position: absolute;
  border: 2px solid #02bbc0;
  border-radius: 100%;
}

.jt-element .disc {
  width: inherit;
  height: inherit;
  background: #02bbc0;
  position: absolute;
  border-radius: 100%;
}

.jt-element .square {
  width: inherit;
  height: inherit;
  background: #02bbc0;
  position: absolute;
}

.jt-element .triangle {
  position: absolute;
  width: 0;
  height: 0;
  background: transparent;
  border-left: 55px solid transparent;
  border-right: 55px solid transparent;
  border-bottom: 100px solid #02bbc0;
}

@media (max-width: 500px) {
  .jt-element .triangle {
    transform: scale(1.75) rotate(45deg) !important;
  }
}

.jt-element img {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

img.circular-img {
  border-radius: 100%;
}

.brwsr-ie i.outline.fa:before,
.brwsr-ie i.outline.fas:before,
.brwsr-ie i.outline.far:before,
.brwsr-ie i.outline.fal:before,
.brwsr-ie i.outline.fab:before {
  -webkit-text-stroke-width: 0;
  color: #2b303d;
}

/* Icon fixes */
.raw-icon span.raw-icon-inner {
  display: inline-block;
  text-align: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  height: 60px;
  width: 60px;
  background-color: #eee;
  border-radius: 100px;
}

.raw-icon span.raw-icon-inner i {
  line-height: 60px;
  font-size: 24px;
}

.raw-icon span.raw-icon-inner:hover {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
}

/*V1*/
.circular-element.circular-1 i {
  font-size: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 280px;
}

.circular-element.circular-1 .circ1 {
  border: 1.5px solid red;
  top: -2%;
  left: 5%;
  transform: scale(1);
  animation: scal 0.7s;
  animation-iteration-count: 1;
}

.circular-element.circular-1 .circ2 {
  border: 1.5px solid green;
  top: 0%;
  left: -4%;
  transform: scale(1);
  animation: scal 0.6s;
  animation-iteration-count: 1;
  /*animation: mymove 5s infinite;*/
}

.circular-element.circular-1 .circ3 {
  border: 1.5px solid red;
  top: 4%;
  left: 0%;
  transform: scale(1);
  animation: scal 0.4s;
  animation-iteration-count: 1;
  /*animation: mymove2 5s infinite;*/
}

.circular-element.circular-1 .circ4 {
  border: 1.5px solid green;
  top: 3%;
  left: 3%;
  transform: scale(1);
  animation: scal 0.5s;
  animation-iteration-count: 1;
  /*animation: mymove3 5s infinite;*/
}

/*.circular-element.circular-1 .circ.circ2:hover {
    animation-play-state: running;
}*/
@keyframes scal {
  0% {
    transform: scale(1.5);
    opacity: 0;
  }

  20% {
    transform: scale(1.48);
    opacity: 0;
  }

  40% {
    transform: scale(1.44);
    opacity: 0;
  }

  60% {
    transform: scale(1.38);
    opacity: 0.1;
  }

  80% {
    transform: scale(1.3);
    opacity: 0.2;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes mymove {
  0% {
    left: -4%;
    top: 0%;
  }

  50% {
    left: -5%;
    top: 2.5%;
  }

  100% {
    left: -4%;
    top: 0%;
  }
}

@keyframes mymove2 {
  0% {
    left: 0%;
    top: 4%;
  }

  50% {
    left: 4%;
    top: 7%;
  }

  100% {
    left: 0%;
    top: 4%;
  }
}

@keyframes mymove3 {
  0% {
    left: 3%;
    top: 3%;
  }

  20% {
    left: 5%;
    top: 3.5%;
  }

  40% {
    left: 6%;
    top: 4%;
  }

  60% {
    left: 7%;
    top: 7%;
  }

  80% {
    left: 6%;
    top: 6%;
  }

  100% {
    left: 3%;
    top: 3%;
  }
}

@keyframes mymove4 {
  0% {
    left: -4%;
    top: 0%;
  }

  50% {
    left: 0%;
    top: 4%;
  }

  100% {
    left: -4%;
    top: 0%;
  }
}

.circular-element.circular-1 {
  position: relative;
  display: inline-block;
  height: 400px;
  width: 400px;
  margin-bottom: 50px;
  margin-left: 100px;
}

.circular-element.circular-1 .circ {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 100%;
}

.circular-element.circular-1 .circ.circ2 {
  width: 405px;
  height: 400px;
}

.circular-element.circular-1 .circ.circ4 {
  width: 415px;
  height: 405px;
}

.circular-element.circular-1 .circ.circ1 {
  width: 385px;
  height: 380px;
}

.circular-element.circular-1 .circ.circ3 {
  width: 385px;
  height: 380px;
}

.circular-element.circular-1 .bubble {
  position: absolute;
  width: 275px;
  height: 250px;
  border-radius: 100%;
}

.circular-element.circular-1 .bubble1 {
  background: green;
  right: 0px;
  top: 80px;
  width: 185px;
  height: 180px;
}

.circular-element.circular-1 .bubble2 {
  background: red;
  left: -15px;
  height: 300px;
  width: 325px;
}

.circular-element.circular-1 img.circular-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 415px;
  z-index: 3;
}

.circular-element.circular-1.circular-bubbles .circ.circ2 {
  z-index: 2;
  height: 450px;
  width: 480px;
}

.mytag-icon-element .icon-bg-element.onblique {
  border-radius: 20%;
}

.mytag-icon-element .icon-bg-element.circular {
  border-radius: 100%;
}

.mytag-icon-element .icon-bg-element {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -47%);
}

.mytag-icon-element {
  position: relative;
  display: inline-block;
  height: 300px;
  width: 545px;
  margin-bottom: 50px;
}

.mytag-icon-element i.fa {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* Shadow icons
*******************************************************************************/

.outline {
  position: relative;
}

i.fa.outline,
i.far.outline,
i.fas.outline,
i.fal.outline,
i.fab.outline {
  font-size: 350px;
  color: transparent;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #2b303d;
  position: relative;
}

i.outline i.shadow-icon:before {
  -webkit-text-stroke-width: 0;
}

i.outline i.shadow-icon:after {
  content: none;
}

i.outline i.shadow-icon {
  position: absolute !important;
  top: 4%;
  left: -2%;
  z-index: -2;
  color: #ddd;
}

/* Service Plan Tags
/******************************************************************************/

#sp-main-body .assigned-plan-tags ul {
  padding: 0;
  margin: 4px 0 0 0;
}

#sp-main-body .assigned-plan-tags li:before {
  display: none;
}

.assigned-plan-tags li {
  display: inline;
  list-style: none;
  background: #bbb;
  border-radius: 3px;
  color: #fff;
  font-size: 14px;
  margin-right: 4px;
  padding: 2px 8px;
  text-transform: uppercase;
}

/* Google Maps
*******************************************************************************/

.jt-map {
  min-height: 330px;
}

.jt-map .gm-style-iw p {
  margin: 0px;
}

/******************************************************************************/
/* FORMS					                                                  */
/******************************************************************************/

.form-loader {
  text-align: center;
  display: none;
}

.fInfoMsg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.8);
}

.fInfoMsg > .msgInfo {
  background: #fff;
  min-width: 460px;
  min-height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  padding: 30px;
}

.fInfoMsg .closeInfo {
  line-height: 1;
  color: #fff;
  cursor: pointer;
}

.fInfoMsg > .msgInfo .inf {
  padding-top: 20px;
}

.fInfoMsg > .msgInfo .inf h3 {
  color: #2b303d;
  margin-top: 0;
}

.fInfoMsg > .msgInfo .inf p {
  line-height: 1.5;
  font-size: 18px;
}

input#updCheck {
  border: 1px solid #f7f7f7;
  width: 100%;
  background: #f7f7f7;
  color: #999;
  font-size: 23px;
  box-shadow: none;
  height: 56px;
  padding-left: 18px;
  padding-right: 18px;
}

input#updCheck.invalid {
  border: 1px solid red;
}

form.jt-form select,
.chzn-container {
  height: 40px;
  max-width: 100% !important;
}

form p:empty {
  display: none;
}

form.jt-form .chzn-container-single .chzn-single {
  color: #999;
  border-radius: 0;
  background: #f7f7f7;
  border: none;
  box-shadow: none;
  font-size: 16px;
  line-height: 30px;
  height: 40px;
  padding: 6px 12px;
}

.chzn-container-active.chzn-with-drop .chzn-single div b {
  background-position: 0px 12px;
}

form.jt-form .chzn-container-single .chzn-single div b {
  background-position: 0px 12px;
}

form.jt-form .chzn-container .chzn-drop {
  border: none;
}

form.jt-form .chzn-container .chzn-results li {
  font-size: 15px;
  padding: 6px 8px;
}

form.jt-form .chzn-container .chzn-results li.highlighted {
  background-color: #28d8cc;
  background-image: none;
}

#rl_modals article.item form.jt-form button.btn, .inline-form form.jt-form button.btn {
  padding: 12px 48px;
  font-size: 18px;
  background-color: #28d8cc;
  border: 1px solid #28d8cc;
  border-radius: 100px;
  color: #fff;
  font-weight: 600;
  line-height: 1.33;
  transition: all 0.4s;
  text-transform: uppercase;
  transition: all 0.4s ease;
  width: 100%;
}

#rl_modals article.item .page-header {
  display: none;
}

#rl_modals article.item .entry-header.has-post-format {
  display: none;
}

#rl_modals article.item h2 {
  margin-top: 16px;
}

#rl_modals
  article.item
  form.jt-form
  .form-group.rsform-block.rsform-block-sbmt {
  /*padding-right: 30px;*/
}

#rl_modals article.item form.jt-form .rsform-block.rsform-block-introtext {
  font-size: 16px;
  margin-bottom: 30px;
}

#rl_modals article.item form.jt-form button.btn:hover, .inline-form form.jt-form button.btn:hover {
  border-color: #00bac0;
  background-color: #00bac0;
  color: #fff;
  outline: 0;
  text-decoration: none;
}

#rl_modals article.item form.jt-form button.btn:active, .inline-form form.jt-form button.btn:active {
  border-color: #00bac0;
  background-color: #00bac0;
  color: #fff;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  outline: 0;
}

#rl_modals article.item form.jt-form button.btn:focus, .inline-form form.jt-form button.btn:focus {
  border-color: #00bac0;
  background-color: #00bac0;
  color: #fff;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

#rl_modals {
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  border: none;
  left: 50% !important;
  transform: translateX(-50%) translateZ(0) scale(1);
  overflow: visible !important;
  height: auto !important;
}

#rl_modals #rl_modals_wrapper {
  background: #fff;
}

#rl_modals #rl_modals_loaded_content {
  margin-top: 0;
  margin-bottom: 0;
  width: 100% !important;
  position: relative !important;
  margin-bottom: 0;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
}

#rl_modals #rl_modals_loaded_content article.item {
  padding: 50px;
  margin-bottom: 0;
  width: 100%;
}

#rl_modals #rl_modals_loaded_content article.item form.jt-form, .inline-form form.jt-form {
  max-width: 100%;
}

#rl_modals #rl_modals_loaded_content form.jt-form input[type="text"], .inline-form form.jt-form input[type="text"] {
  border-radius: 0;
  box-shadow: none;
  background: #f7f7f7;
  color: #999;
  font-size: 18px;
  box-shadow: none;
  border: none;
  height: 40px;
}

#rl_modals #rl_modals_loaded_content form.jt-form textarea, .inline-form form.jt-form textarea {
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: #f7f7f7;
  resize: vertical;
}

input#updCheck::placeholder,
#rl_modals
  #rl_modals_loaded_content
  form.jt-form
  input[type="text"]::placeholder,
#rl_modals #rl_modals_loaded_content form.jt-form textarea::placeholder, .inline-form form.jt-form input[type="text"]::placeholder, .inline-form form.jt-form textarea::placeholder {
  color: #c2c2c2;
}

#rl_modals #rl_modals_loaded_content form.jt-form label {
  color: #2b303d;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
}

.inline-form form.jt-form label.control-label {
  display: none;
}

.inline-form .form-control, .inline-form form.jt-form input[type="text"] {
  font-size: 17px;
}
input[name='my_name'],
input[name='your_name'],
input[name='your_name_here'],
input[name='my_address'],
input[name='your_address'],
input[name='your_address_here']{
  display: none !important;
}


/*'Joomla Update' landing page form changes*/

.jupdate .inline-form form.jt-form label.control-label {
  display: inline-block;
  text-align: left;
}

.jupdate .inline-form form.jt-form label.control-label:not([for]) {
  display: none;
}

.jupdate .inline-form form.jt-form label.control-label + span {
  display: block;
  font-size: 14px;
  font-style: italic;
}

.jupdate img.sppb-img-responsive {
  max-width: 200px;
}

.jupdate .text-image-intro .text-image .sppb-addon-content {
  display: flex;
}

@media only screen and (min-width: 992px) {
  
  .jupdate .inline-form form.jt-form .flex-block {
    display: flex;
    justify-content: space-between;
  }
  .jupdate .inline-form form.jt-form .flex-block .wrap {
      width: 40%;
  }
  .jupdate .inline-form form.jt-form .flex-block .wrap + .formControls {
      width: calc(60% - 20px);
  }
  .jupdate .inline-form form.jt-form .flex-block .wrap + .formControls #website-info {
    margin-top: 5px;
  }
  .jupdate img.sppb-img-responsive {
    max-width: 100%;
  }

}

/* END OF 'Joomla Update' landing page form changes*/

#rl_modals #rl_modals_loaded_content form.jt-form .rsform-block label > span, .inline-form form.jt-form .rsform-block label > span {
  font-weight: 300;
}

#rl_modals #rl_modals_title {
  display: none !important;
}

#rl_modals #rl_modals_close {
  width: 40px;
  height: 40px;
  background: #fff;
  opacity: 0;
  border-radius: 50%;
  transition: opacity 0.3s ease;
  text-align: center;
}

#rl_modals #rl_modals_close:after {
  content: "\f00d";
  font: 700 26px/100% "Font Awesome\ 5 Pro";
  font-weight: 500;
  color: #2b303d;
  width: 26px;
  height: 26px;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -13px;
  margin-top: -12px;
}

#rl_modals.complete #rl_modals_close {
  opacity: 1;
}

#rl_modals #rl_modals_loaded_content form.jt-form .rsform-block-datenschutz, .inline-form form.jt-form .rsform-block-datenschutz1, .inline-form form.jt-form .rsform-block-show-extra-fields {
  margin-bottom: 15px;
  padding-top: 11px;
}

#rl_modals
  #rl_modals_loaded_content
  form.jt-form
  .rsform-block-datenschutz
  .formControls
  label, .inline-form form.jt-form .rsform-block-datenschutz1 .formControls label, .inline-form form.jt-form .rsform-block-show-extra-fields .formControls label {
  position: relative;
  padding-left: 38px;
  font-size: 16px;
  height: 27px;
  line-height: 1.5;
}

#rl_modals
  #rl_modals_loaded_content
  form.jt-form
  .rsform-block-datenschutz
  .formControls
  label
  input[type="checkbox"], .inline-form form.jt-form .rsform-block-datenschutz1 .formControls label input[type="checkbox"], .inline-form form.jt-form .rsform-block-show-extra-fields .formControls label input[type="checkbox"] {
  opacity: 0;
  margin-left: -30px;
}

#rl_modals
  #rl_modals_loaded_content
  form.jt-form
  .rsform-block-datenschutz
  .formControls
  label.focused:before, .inline-form form.jt-form .rsform-block-datenschutz1 .formControls label.focused:before, .inline-form form.jt-form .rsform-block-show-extra-fields .formControls label.focused:before {
  outline: 5px auto #28d8cc;
  outline-offset: -2px;
}

#rl_modals
  #rl_modals_loaded_content
  form.jt-form
  .rsform-block-datenschutz
  .formControls
  label:before, .inline-form form.jt-form .rsform-block-datenschutz1 .formControls label:before, .inline-form form.jt-form .rsform-block-show-extra-fields .formControls label:before {
  content: "";
  width: 28px;
  height: 28px;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  border: 1px solid #2b303d;
  z-index: 2;
}

#rl_modals
  #rl_modals_loaded_content
  form.jt-form
  .rsform-block-datenschutz
  .formControls
  label.checked:after, .inline-form form.jt-form .rsform-block-datenschutz1 .formControls label.checked:after, .inline-form form.jt-form .rsform-block-show-extra-fields .formControls label.checked:after {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  left: 5px;
  top: 5px;
  background: #00bac0;
  z-index: 3;
}

#component159 {
	display: none !important;
}

#rl_modals
  #rl_modals_loaded_content
  form.jt-form
  .form-group.rsform-block.rsform-block-thecaptcha, .inline-form form.jt-form .form-group.rsform-block.rsform-block-thecaptcha {
  margin-bottom: 0;
  height: 1px;
}

#rl_modals #rl_modals_loaded_content form.jt-form .help-block.formValidation, .inline-form form.jt-form .help-block.formValidation {
  font-size: 14px;
  margin-bottom: 5px;
  color: #d13ad6;
}

#rl_modals #rl_modals_loaded_content,
#rl_modals #rl_modals_wrapper,
#rl_modals #rl_modals_content {
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
}

#rl_modals #cboxLoadingGraphic {
  display: none !important;
}

#rl_modals .rsform-block.hasTip div.formControls, .inline-form .rsform-block.hasTip div.formControls {
  position: relative;
}

#rl_modals .rsform-block.hasTip div.formControls a.tipToggle, .inline-form .rsform-block.hasTip div.formControls a.tipToggle {
  width: 20px;
  height: 20px;
  line-height: 1;
  display: block;
  right: 10px;
  top: 10px;
  position: absolute;
}

#rl_modals .rsform-block.hasTip div.formControls a.tipToggle i, .inline-form .rsform-block.hasTip div.formControls a.tipToggle i {
  font-weight: 300;
}

#rl_modals .rsform-block.hasTip div.formControls a.tipToggle:focus, .inlne-form .rsform-block.hasTip div.formControls a.tipToggle:focus {
  outline: none;
}

#rl_modals #rl_modals_loaded_content form.jt-form label.col-sm-3.control-label, .inline-form form.jt-form label.col-sm-3.control-label {
  padding-right: 0;
}

#rl_modals
  form.jt-form
  .form-group.rsform-block.rsform-block-datenschutz
  > label,
#rl_modals form.jt-form .form-group.rsform-block.rsform-block-sbmt > label, .inline-form form.jt-form .form-group.rsform-block.rsform-block-datenschutz > label, .inline-form form.jt-form .form-group.rsform-block.rsform-block-sbmt > label {
  display: none;
}

#rl_modals
  #rl_modals_loaded_content
  form.jt-form
  .rsform-block-datenschutz-text, .inline-form form.jt-form .rsform-block-datenschutz-text {
  font-size: 12px;
  margin-bottom: 30px;
  font-style: italic;
}
#rl_modals .introduction {
  display: none;
}

/* ZT:: Hiding the honeypot field */
.form-group.rsform-block-address-2 {
	margin-bottom: 0;
	overflow: hidden;
	height: 0;
}
.form-group.rsform-block-address-2 .help-block.formValidation{
	margin:0 !important;
	font-size: 0!important;
}
input#address_2{
	position: absolute;
	left:-3000px;
	height: 0px!important;
	width: 0px;
	visibility: collapse;
	line-height: 0px;
	font-size: 0px!important;
	padding: 0px;
}
/* ZT:: END Hiding the honeypot field */

/* Override RS column widths */
@media only screen and (min-width: 320px) {
  #rl_modals,
  #rl_modals #rl_modals_wrapper,
  #rl_modals #rl_modals_content {
    width: 300px !important;
  }

  #rl_modals #rl_modals_loaded_content article.item {
    padding: 15px;
  }
}

@media only screen and (min-width: 380px) {
  #rl_modals,
  #rl_modals #rl_modals_wrapper,
  #rl_modals #rl_modals_content {
    width: 380px !important;
  }

  #rl_modals article.item form.jt-form button.btn {
    padding: 8px 10px;
  }

  #rl_modals #rl_modals_loaded_content article.item {
    padding: 30px;
  }
}

@media only screen and (min-width: 480px) {
  #rl_modals,
  #rl_modals #rl_modals_wrapper,
  #rl_modals #rl_modals_content {
    width: 480px !important;
  }

  #rl_modals #rl_modals_loaded_content article.item {
    padding: 25px 50px 20px 50px;
  }

  #rl_modals article.item form.jt-form button.btn {
    padding: 12px 48px;
  }
}

@media only screen and (min-width: 768px) {
  #rl_modals,
  #rl_modals #rl_modals_wrapper,
  #rl_modals #rl_modals_content {
    width: 650px !important;
  }
}

@media only screen and (min-width: 992px) {
  #rl_modals,
  #rl_modals #rl_modals_wrapper,
  #rl_modals #rl_modals_content {
    width: 760px !important;
  }
}

@media only screen and (min-width: 1200px) {
  #rl_modals,
  #rl_modals #rl_modals_wrapper,
  #rl_modals #rl_modals_content {
    width: 800px !important;
  }
}

/* ################## */
@media only screen and (max-width: 1199px) {
  #rl_modals
    #rl_modals_loaded_content
    form.jt-form
    label.col-sm-3.control-label {
    width: 40%;
  }

  #rl_modals #rl_modals_loaded_content form.jt-form .col-sm-9.formControls {
    width: 60%;
  }
}

@media only screen and (max-width: 991px) {
  #rl_modals
    #rl_modals_loaded_content
    form.jt-form
    label.col-sm-3.control-label {
    width: 40%;
  }

  #rl_modals #rl_modals_loaded_content form.jt-form .col-sm-9.formControls {
    width: 60%;
  }
}

@media only screen and (max-width: 767px) {
  #rl_modals
    #rl_modals_loaded_content
    form.jt-form
    label.col-sm-3.control-label {
    width: 100%;
  }

  #rl_modals #rl_modals_loaded_content form.jt-form .col-sm-9.formControls {
    width: 100%;
  }

  #rl_modals
    #rl_modals_loaded_content
    form.jt-form
    .form-group.rsform-block.rsform-block-thecaptcha {
    height: 0;
  }

  #rl_modals article.item form.jt-form button.btn {
    font-size: 14px;
    padding: 10px 28px;
  }
}

@media only screen and (max-width: 479px) {
  #rl_modals .rsform-block.hasTip div.formControls a.tipToggle {
    right: 22px;
  }

  #rl_modals
    #rl_modals_loaded_content
    form.jt-form
    .rsform-block-datenschutz
    .formControls
    label {
    max-width: 90%;
    padding-top: 0;
  }

  #rl_modals article.item form.jt-form button.btn {
    font-size: 14px;
    padding: 10px 10px;
  }

  #rl_modals .rsform-block.hasTip div.formControls a.tipToggle {
    right: 8px;
    top: 10px;
  }

  #rl_modals #rl_modals_loaded_content form.jt-form .rsform-block-datenschutz {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 379px) {
  #rl_modals article.item form.jt-form button.btn {
    font-size: 12px;
    padding: 10px 8px;
  }
}

@media only screen and (max-width: 320px) {
  #rl_modals,
  #rl_modals #rl_modals_wrapper,
  #rl_modals #rl_modals_content {
    width: 288px !important;
  }

  #rl_modals
    #rl_modals_loaded_content
    form.jt-form
    .rsform-block-datenschutz
    .formControls
    label {
    font-size: 14px;
  }

  #rl_modals article.item form.jt-form button.btn {
    font-size: 12px;
    padding: 8px 10px;
  }
}

/******************************************************************************/
/* Wiki (Blog)    			                                                  */
/******************************************************************************/

/* List View
*******************************************************************************/

.article-info {
  margin: 0 -8px 5px;
  line-height: 12px;
}

.article-info > dd {
  display: inline-block;
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  margin: 0 8px;
}

.article-info > dd > i {
  display: inline-block;
  margin-right: 3px;
}

.intro-image img {
  border-radius: 3px;
}

.entry-header h2 {
  font-size: 32px;
}

.entry-header.has-post-format {
  margin-left: 0 !important;
}

.entry-header.has-post-format .post-format {
  display: none;
}

.entry-wrap p {
  font-size: 20px;
}

.blog-list-view article.item > div.entry-image {
  max-width: 300px;
  min-width: 300px;
  width: 100%;
  margin-right: 40px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .blog-list-view article.item > div.entry-image {
    margin-bottom: 30px;
    margin-right: 0;
  }
}

.blog-list-view .page-title h1 {
  color: #2b303d;
  font-size: 56px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .blog-list-view .page-title h1 {
    font-size: 32px;
  }
}

.blog-list-view article {
  background: #fff;
  padding: 30px;
  transition: all 0.3s ease;
}

.blog-list-view .items-row article:hover {
  background: #f8f8f8;
  transition: all 0.3s ease;
}

.blog-list-view .readmore {
  text-align: right;
  margin-bottom: 0;
}

.blog-list-view article.item {
  display: flex;
}

.blog-list-view article.item .entry-header .category-name > a,
.blog-list-view article.item .entry-header .category-name > span {
  color: #d13ad6;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
}

.blog-list-view article.item .entry-header h2[itemprop="name"] > span {
  color: #00bac0;
}

.blog-list-view article.item .entry-header h2 {
  margin: 4px 0 4px 0;
}

.blog-list-view article.item .article-info > dd {
  text-transform: initial;
  margin-left: 0;
}

.blog-list-view article.item .article-info {
  margin-left: 0;
}

.blog-list-view article.item .article-info > dd.createdby {
  margin-right: 0;
}

.blog-list-view article.item .article-info > dd.published {
  margin-left: -3px;
}

@media (max-width: 767px) {
  .blog-list-view .blog article.item {
    flex-direction: column;
  }

  .blog-list-view article.item > div.entry-image {
    min-width: 200px;
  }
}
div.blog-cats > ul {
  padding-left: 0;
}
div.blog-cats > ul > li {
  border: 3px solid #d13ad6;
  box-shadow: 0px 0px #d13ad6;
  color: #d13ad6;
  display: inline-block;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  margin-right: 10px;
  padding: 0;
  transition: 0.3s;
}
div.blog-cats > ul > li a {
  padding: 5px 20px;
  display: inline-block;
}
div.blog-cats > ul > li > a,
div.blog-cats > ul > li > a:hover {
  color: inherit;
}
div.blog-cats > ul > li.active {
  background: #d13ad6;
  color: #fff;
}
div.blog-cats > ul > li:hover,
div.blog-cats > ul > li:focus {
  box-shadow: 4px 4px #d13ad6;
}
div.blog-cats > ul > li.active:hover,
div.blog-cats > ul > li.active:focus {
  box-shadow: 0 0 #d13ad6;
}

.sppb-addon.be-the-first-form input[type="checkbox"] {
  display: inline-block;
  opacity: 0;
}
.sppb-addon.be-the-first-form p.fieldacyterms {
  font-size: 16px;
  position: relative;
  margin-bottom: 30px;
}

.sppb-addon.be-the-first-form p.fieldacyterms > label {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #fff;
  box-shadow: 0px 0px 0px 2px rgba(40, 216, 204, 1);
  left: 3px;
  top: 3px;
  cursor: pointer;
  border-radius: 50%;
}

.sppb-addon.be-the-first-form p.fieldacyterms > label + span {
  padding-left: 20px;
}

.sppb-addon.be-the-first-form input[type="checkbox"]:checked + label {
  background: rgba(40, 216, 204, 1);
}

.sppb-addon.be-the-first-form input[type="text"] {
  border: none;
  border-radius: 3px;
  margin-bottom: 10px;
  padding: 5px 10px;
}

.sppb-addon.be-the-first-form h2.sppb-addon-title {
  line-height: 1.2;
}

.sppb-addon.be-the-first-form .acysubbuttons {
  text-align: left;
}

.sppb-addon.be-the-first-form .acysubbuttons .button {
  color: #fff;
}

.sppb-addon.be-the-first-form .acymailing_introtext {
  margin-bottom: 30px !important;
}

#closepop {
  width: 28px !important;
  height: 28px !important;
  border: 1px solid #afafaf !important;
  color: #d13ad6;
  text-align: center !important;
  font-size: 14px !important;
  line-height: 28px !important;
  right: -14px !important;
  top: -14px !important;
}

/* ZT:: Ajax Pagination */

.blog-list-view .pagination-wrapper {
  padding: 30px 0 55px;
  text-align: center;
}

.blog-list-view .pagination-wrapper a.btn {
  margin: 10px;
}

#loadMoreLoader {
  padding: 30px 0;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease;
}

#loadMoreLoader.shown {
  visibility: visible;
  opacity: 1;
}

#loadMoreLoader i {
  font-size: 35px;
}

#loadMoreInfo {
  display: none;
  padding: 30px 0;
  text-align: center;
}

#loadMoreInfo.shown {
  display: none;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

article.item.added-item {
  animation-duration: 0.5s;
  animation-name: fadeIn;
}

/* Detail View
*******************************************************************************/

/* WTF? */

section.body-modules-wrapper
  .mod-sppagebuilder
  > .page-content
  > .sppb-section {
  z-index: 1;
  position: relative;
}

section.body-modules-wrapper + #sp-header {
  top: 0;
}

section.body-modules-wrapper > .moduletable {
  margin-top: 90px;
}

/* General Layout */

.blog-detail-view article.item {
  padding: 130px 0 0 0;
}

@media (max-width: 767px) {
  .blog-detail-view article.item {
    padding: 130px 0px 0px;
  }
}

/* Top details */

.blog-detail-view article.item .article-info > dd {
  text-transform: initial;
  margin-left: 0;
}

.blog-detail-view article.item .article-info {
  margin-left: 0;
}

.blog-detail-view article.item .article-info > dd.createdby {
  margin-right: 0;
}

.blog-detail-view article.item .article-info > dd.published {
  margin-left: -3px;
}

/* Main title */

.blog-detail-view article.item > .entry-header > h1 {
  margin-left: -6px;
  font-size: 70px;
}
@media (max-width: 767px) {
  .blog-detail-view article.item > .entry-header > h1 {
    font-size: 34px;
    margin-left: 0;
  }
}

/* Content Layout */

.blog-page.blog-detail-view div[itemprop="articleBody"] {
  display: grid;
  grid-template-columns: auto 50px 30px minmax(550px, 700px) 30px 50px auto;
}
@media (max-width: 767px) {
  .blog-page.blog-detail-view div[itemprop="articleBody"] {
    display: block;
  }
}
.blog-page.blog-detail-view div[itemprop="articleBody"] * {
  grid-column-start: 4;
  grid-column-end: 5;
}

/* Content width variations */

.blog-page.blog-detail-view div[itemprop="articleBody"] .content-width-lg {
  grid-column-start: 3;
  grid-column-end: 6;
}

.blog-page.blog-detail-view div[itemprop="articleBody"] .content-width-xl {
  grid-column-start: 2;
  grid-column-end: 7;
}
@media (min-width: 768px) {
  .blog-detail-view article.item li figure.content-width-xl {
    margin-left: -140px;
    margin-right: -80px;
  }
}

.blog-page.blog-detail-view div[itemprop="articleBody"] .content-width-xxl {
  grid-column-start: 1;
  grid-column-end: 8;
}

/* Intro text */

.blog-page.blog-detail-view div[itemprop="articleBody"] .introduction {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: #f8f8f8;
  font-weight: 600;
  padding: 32px 32px;
  margin-top: 60px;
  margin-bottom: 40px;
  grid-column-start: 1;
  grid-column-end: 8;
}

.blog-detail-view .introduction p:last-child {
  margin-bottom: 0;
}

/* Blog Typography */

.blog-detail-view article.item p {
  margin-bottom: 20px;
}

.blog-detail-view article.item h2 {
  margin: 75px 0 30px;
  font-size: 30px;
}
@media (max-width: 767px) {
  .blog-detail-view article.item h2 {
    font-size: 26px;
  }
}

.blog-detail-view article.item h3 {
  font-size: 24px;
}
@media (max-width: 767px) {
  .blog-detail-view article.item h3 {
    font-size: 22px;
  }
}

/* Quotes */

blockquote {
  font-style: italic;
  border-left: 8px solid #ddd;
  padding: 0 0 0 25px;
  color: #666;
  font-size: 20px;
  margin: 55px 0;
}

blockquote h3 {
  margin-top: 0;
  font-style: normal;
}

.blog-detail-view blockquote p:last-child {
  margin-bottom: 0;
}

/* Notebox */

.notebox {
  margin: 25px 0 50px 0;
  padding: 25px;
  font-size: 17px;
  border: 3px solid rgba(0, 186, 192, 1);
  box-shadow: 9px 9px rgba(0, 186, 192, 0.4);
  background: rgba(0, 186, 192, 0.04);
}

.notebox h3 {
  margin-top: 0;
  color: #00bac0;
  font-style: normal;
}

.blog-detail-view article.item .notebox p {
  margin-bottom: 5px;
}

.blog-detail-view article.item .notebox p:last-child {
  margin-bottom: 0;
}

/* You might be interested Notebox - Below Content */
.notebox.random-article-notebox {
  margin: 25px auto 50px auto;
  width: 60%;
  padding: 30px 25px 10px;
}
.notebox.random-article-notebox h3 {
  color: #2b303d;
}
.notebox.random-article-notebox ul {
  list-style: circle;
}
.notebox.random-article-notebox ul li a {
  font-size: 18px;
}

/* Who are we? Notebox */
.about-us-notebox {
  position: relative;
  right: 20%;
  width: 500px;
}

/* Images - figure */

.blog-detail-view article.item figure {
  padding: 0;
  margin: 55px 0;
}

.blog-detail-view article.item figure > figcaption {
  position: relative;
  font-size: 16px;
  display: table;
  padding: 15px 30px 0 0;
}

.blog-detail-view article.item figure > figcaption:before {
  content: "\f030";
  opacity: 0.8;
  font-family: "Font Awesome\ 5 Pro";
  font-style: normal;
  font-weight: 900;
  padding-right: 8px;
  display: table-cell;
  font-size: 18px;
}

/* Mod Positions */

#sp-above-content {
  margin-top: 180px;
}
#sp-below-content {
  margin-bottom: 50px;
}
#sp-below-content .sppb-section:nth-child(2) {
  padding: 0 15px;
}

/* Hide empty paragraphs */
.blog-page.blog-detail-view div[itemprop="articleBody"] p:empty {
  display: none;
}

/* Table of content - dot navigation
*******************************************************************************/

#spyScroller {
  right: 15px;
  position: absolute;
  z-index: 3;
  width: 40px;
  padding: 5px;
  text-align: center;
  transition: opacity 0.5s ease-out;
}

#spyScroller.affix {
  position: fixed !important;
  /*top:0!important; */
  right: 15px !important;
}

#spyScroller ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: auto !important;
}

#spyScroller ul li {
  margin-bottom: 10px !important;
  position: relative;
}

#spyScroller ul li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 30px;
  color: #c8c8c8;
  background-color: #fff;
  position: relative;
  padding: 0 !important;
  border: 1px solid #d13ad6;
}

#spyScroller ul li a > span {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
  background-color: #d13ad6;
}

#spyScroller ul li.active a > span,
#spyScroller ul li:hover a > span,
#spyScroller ul li:focus a > span {
  opacity: 1;
}

#spyScroller ul li > .titletext {
  transition: opacity 0.5s ease-out;
  opacity: 0;
  width: 220px;
  position: absolute;
  line-height: 24px;
  margin-top: -2px;
  font-size: 15px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  text-transform: uppercase;
  left: -230px;
  padding: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 0;
  pointer-events: none;
}

#spyScroller ul li > .titletext.noupper {
  text-transform: none !important;
}

#spyScroller ul li:hover > .titletext,
#spyScroller ul li:focus > .titletext {
  opacity: 1;
}

/* Codepen embed
/******************************************************************************/

.cp_embed_wrapper {
  line-height: 0;
  padding: 25px 0 55px;
}

/* PrismJS
/******************************************************************************/

/* PrismJS 1.15.0
https://prismjs.com/download.html#themes=prism-okaidia&languages=markup+css+clike+javascript+markup-templating+json+less+php+sql+scss */
/**
 * okaidia theme for JavaScript, CSS and HTML
 * Loosely based on Monokai textmate theme by http://www.monokai.nl/
 * @author ocodia
 */

code[class*="language-"],
pre[class*="language-"] {
  color: #f8f8f2;
  background: none;
  text-shadow: 0 1px rgba(0, 0, 0, 0.3);
  font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: 1.5;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

/* Code blocks */

pre[class*="language-"] {
  padding: 1em;
  margin: 0.5em 0;
  overflow: auto;
  border-radius: 0.3em;
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
  background: #272822;
}

/* Inline code */

:not(pre) > code[class*="language-"] {
  padding: 0.1em;
  border-radius: 0.3em;
  white-space: normal;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: slategray;
}

.token.punctuation {
  color: #f8f8f2;
}

.namespace {
  opacity: 0.7;
}

.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted {
  color: #f92672;
}

.token.boolean,
.token.number {
  color: #ae81ff;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
  color: #a6e22e;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string,
.token.variable {
  color: #f8f8f2;
}

.token.atrule,
.token.attr-value,
.token.function,
.token.class-name {
  color: #e6db74;
}

.token.keyword {
  color: #66d9ef;
}

.token.regex,
.token.important {
  color: #fd971f;
}

.token.important,
.token.bold {
  font-weight: bold;
}

.token.italic {
  font-style: italic;
}

.token.entity {
  cursor: help;
}

/* General Override */

pre {
  border: none;
  border-radius: 0;
}

pre[class*="language-"] {
  padding: 15px 25px 20px;
}

pre code {
  padding: 0;
  font-size: 16px;
  line-height: 1.2;
}

/* Inline */

:not(pre) > code[class*="language-"] {
  border-radius: 3px;
  padding: 2px 4px;
  background: #2d2f28;
}

/* Code Blocks */

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
  background: #1d1e22;
}

div.codeBlock {
  padding: 25px 0 55px;
  line-height: 0;
}

div.codeBlock > pre {
  margin: 0;
}

/* Social Share
/******************************************************************************/

#sp-right {
  position: fixed;
  top: 40%;
  right: 0;
}

/* Shariff */
#sp-main-body .shariff ul > li:before {
  display: none;
}
.sp-module .shariff ul > li > a {
  color: #fff;
}

/******************************************************************************/
/* REFERENCES (PROJECTS) ARTICLES                                             */
/******************************************************************************/

/* References Detail View
*******************************************************************************/

/* ... Everything inherited from Blog/jt Wiki  */

/* References Detail View
*******************************************************************************/

/* ... Top page styles inherited from Blog/jt Wiki */

/* Intro text */

.references-page.blog-detail-view .introduction {
  background: #f8f8f8;
  font-weight: 600;
  padding: 32px 32px;
  margin-top: 60px;
  margin-bottom: 40px;
}

.references-page.blog-detail-view .introduction p:last-child {
  margin-bottom: 0;
}

/* Logo row */

.reference-client-logo {
  margin-bottom: 20px;
  margin-top: 7px;
}

/******************************************************************************/
/* SHAME: MESSY TEMPORARY STUFF			                                      */
/******************************************************************************/

.sp-page-builder .page-content #start {
  background-position: 77% 40% !important;
}

.outline .fa:before,
.outline .fal:before,
.outline .far:before,
.outline .fas:before,
.outline .fab:before {
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #2b303d;
}

/* Workarounds and corrections */

.sppb-row-overlay {
  z-index: 1;
}

/* ZT:: #sp-below .sppb-container-inner responsive */

#sp-below .sppb-container-inner {
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  #sp-below .sppb-container-inner {
    max-width: 570px;
  }
}

@media (min-width: 768px) {
  #sp-below .sppb-container-inner {
    max-width: 750px;
  }
}

@media (min-width: 992px) {
  #sp-below .sppb-container-inner {
    max-width: 990px;
  }
}

@media (min-width: 1200px) {
  #sp-below .sppb-container-inner {
    max-width: 1170px;
  }
}

/* JP - contact form recaptcha styles */
.rsform-block-captcha {
  margin-bottom: 45px;
}
.rsform-block-captcha label {
  display: none;
}

/* JP - contact form system message */
#system-message {
  display: none;
}

.jupdate #sp-main-body {
	padding-bottom: 0;
}

/*Map locations*/
.locations-map-section img.sppb-img-responsive {
  height: 380px;
  object-fit: cover;
}