.cd-img-replace {
  /* replace text with background images */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.cd-btn {
  display: inline-block;
  width: 120px;
  height: 40px;
  line-height: 40px;
  margin-right: 8px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.2rem;
  color: #ffffff;
  background-color: #1565c0;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.no-touch .cd-btn:hover {
  background-color: #756da4;
}
@media only screen and (min-width: 1170px) {
  .cd-btn {
    width: 250px;
    height: 60px;
    line-height: 60px;
    margin-right: 15px;
    font-size: 1.4rem;
    letter-spacing: 2px;
  }
}

/* -------------------------------- 

Main components 

-------------------------------- */
.cd-product {
   margin: 15px auto 60px;
    max-width: 1170px;
    position: relative;
    width: 90%;
}

.cd-product-intro {
  padding: 50px 0;
  text-align: center;
}
.cd-product-intro h1 {
  margin-bottom: 10px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
}
.cd-product-intro p {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 0 20px;
  font-size: 1.4rem;
  line-height: 1.8;
}
.cd-product-intro::before {
  /* never visible - this is used in jQuery to check the current MQ */
  content: 'mobile';
  display: none;
}
@media only screen and (min-width: 1170px) {
  .cd-product-intro {
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    top: 200px;
    left: 0;
    width: 50%;
    padding: 0;
    text-align: left;
    -webkit-transition: -webkit-transform 0.6s, opacity 0.6s;
    -moz-transition: -moz-transform 0.6s, opacity 0.6s;
    transition: transform 0.6s, opacity 0.6s;
  }
  .is-product-tour .cd-product-intro {
    opacity: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .cd-product-intro h1 {
    font-size: 4rem;
  }
  .cd-product-intro p {
    font-size: 1.6rem;
    padding: 10px 0 44px;
    margin: 0;
  }
  .cd-product-intro::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'desktop';
  }
}

.no-csstransforms3d #cd-start {
  /* remove start button if CSS 3D Transforms are not supported */
  display: none;
}

.cd-product-mockup {
}
.cd-product-mockup img {
  display: block;
  position: relative;
  /* Firefox bug - 3D CSS transform, jagged edges */
  outline: 1px solid transparent;
}
@media only screen and (min-width: 1170px) {
  .cd-product-mockup {
    margin-bottom: 0;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: center top;
    -moz-transform-origin: center top;
    -ms-transform-origin: center top;
    -o-transform-origin: center top;
    transform-origin: center top;
    -webkit-transform: rotateX(-60deg) rotateZ(-40deg) translateX(50px) translateY(300px);
    -moz-transform: rotateX(-60deg) rotateZ(-40deg) translateX(50px) translateY(300px);
    -ms-transform: rotateX(-60deg) rotateZ(-40deg) translateX(50px) translateY(300px);
    -o-transform: rotateX(-60deg) rotateZ(-40deg) translateX(50px) translateY(300px);
    transform: rotateX(-60deg) rotateZ(-40deg) translateX(50px) translateY(300px);
    -webkit-transition: -webkit-transform 0.6s;
    -moz-transition: -moz-transform 0.6s;
    transition: transform 0.6s;
  }
  .cd-product-mockup::before {
    /* mockup shadow */
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    /* play with these values to create a realistic shadow */
    height: 45%;
    -webkit-transform: translateZ(-100px) translateY(480px);
    -moz-transform: translateZ(-100px) translateY(480px);
    -ms-transform: translateZ(-100px) translateY(480px);
    -o-transform: translateZ(-100px) translateY(480px);
    transform: translateZ(-100px) translateY(480px);
    -webkit-transition: -webkit-transform 0.6s;
    -moz-transition: -moz-transform 0.6s;
    transition: transform 0.6s;
  }
  .is-product-tour .cd-product-mockup {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .is-product-tour .cd-product-mockup::before {
    -webkit-transform: translateZ(-100px) translateX(226px) translateY(216px);
    -moz-transform: translateZ(-100px) translateX(226px) translateY(216px);
    -ms-transform: translateZ(-100px) translateX(226px) translateY(216px);
    -o-transform: translateZ(-100px) translateX(226px) translateY(216px);
    transform: translateZ(-100px) translateX(226px) translateY(216px);
  }
}

.no-csstransforms3d .cd-product:after {
  content: "";
  display: table;
  clear: both;
}
.no-csstransforms3d .cd-product-mockup {
  float: right;
}
.no-csstransforms3d .cd-product-mockup::before {
  display: none;
}

.cd-3d-right-side, .cd-3d-bottom-side {
  display: none;
}
@media only screen and (min-width: 1170px) {
  .cd-3d-right-side, .cd-3d-bottom-side {
    display: block;
    position: absolute;
    left: 0;
    background-image: url(../img/cd-app-image.png);
    /* Firefox bug - 3D CSS transform, jagged edges */
    outline: 1px solid transparent;
  }
  .cd-3d-right-side::after, .cd-3d-bottom-side::after {
    /* darken the right/bottom sides */
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
  }
}

@media only screen and (min-width: 1170px) {
  .cd-3d-right-side {
    top: -1px;
    width: 0;
    height: 100%;
    background-size: auto 100%;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: translateZ(-1px) translateY(1px) rotateY(-90deg);
    -moz-transform: translateZ(-1px) translateY(1px) rotateY(-90deg);
    -ms-transform: translateZ(-1px) translateY(1px) rotateY(-90deg);
    -o-transform: translateZ(-1px) translateY(1px) rotateY(-90deg);
    transform: translateZ(-1px) translateY(1px) rotateY(-90deg);
  }

  .cd-3d-bottom-side {
    bottom: 0;
    width: 100%;
    height: 0px;
    background-position: bottom center;
    background-size: 100% auto;
    -webkit-transform-origin: center bottom;
    -moz-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    -o-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: translateZ(-1px) rotateX(-90deg);
    -moz-transform: translateZ(-1px) rotateX(-90deg);
    -ms-transform: translateZ(-1px) rotateX(-90deg);
    -o-transform: translateZ(-1px) rotateX(-90deg);
    transform: translateZ(-1px) rotateX(-90deg);
  }
  .cd-3d-bottom-side::after {
    background-color: rgba(0, 0, 0, 0.4);
  }
}
.no-csstransforms3d .cd-3d-right-side, .no-csstransforms3d .cd-3d-bottom-side {
  display: none;
}

.cd-close-product-tour {
  /* close icon - product tour */
  display: none;
}
@media only screen and (min-width: 1170px) {
  .cd-close-product-tour {
    display: block;
    position: absolute;
    top:0;
    right: 0;
    height: 40px;
    width: 40px;
    opacity: 0;
    visibility: hidden;
  }
  .no-touch .cd-close-product-tour:hover {
    opacity: .8;
  }
  .cd-close-product-tour::after, .cd-close-product-tour::before {
    /* these are used to create the 'X' icon */
    content: '';
    height: 40px;
    width: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #1565c0;
  }
  .cd-close-product-tour::after {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
  }
  .cd-close-product-tour::before {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -o-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  }
  .cd-close-product-tour.is-visible {
    visibility: visible;
    opacity: 1;
  }
}

.cd-single-point {
  position: absolute;
  border-radius: 50%;
}
.cd-single-point > a {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: inherit;
  background: transparent;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  z-index: 2;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.cd-single-point > a::after, .cd-single-point > a:before {
  /* rotating plus icon */
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background-color: #ffffff;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-single-point > a::after {
  height: 2px;
  width: 8px;
}
.cd-single-point > a::before {
  height: 8px;
  width: 2px;
}
.cd-single-point::after {
  /* this is used to create the pulse animation */
  content: '';
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: inherit;
  background-color: transparent;
  -webkit-animation: cd-pulse 2s infinite;
  -moz-animation: cd-pulse 2s infinite;
  animation: cd-pulse 2s infinite;
}
.cd-single-point:nth-of-type(1) {
   background: #f700f6 none repeat scroll 0 0;
    border: 1px solid #0000fe;
    bottom: 39%;
    left: 10%;
}
.cd-single-point:nth-of-type(2) {
	background: red none repeat scroll 0 0;
    left: 36.2%;
    top: 52.2%;
}
.cd-single-point:nth-of-type(3) {
  left: 8%;
  top: 35%;
  background: #ff0000;
}
.cd-single-point:nth-of-type(4) {
	background: #00ff01 none repeat scroll 0 0;
    left: 41%;
    top: 45%;
}
.cd-single-point:nth-of-type(5) {
	background: red none repeat scroll 0 0;
    border: 1px solid #0000fe;
    left: 50.5%;
    top: 34.5%;
}
.cd-single-point:nth-of-type(6) {
	background: #00ff01 none repeat scroll 0 0;
    left: 52%;
    top: 32%;
}
.cd-single-point:nth-of-type(7) {
	background: #ff0000 none repeat scroll 0 0;
    left: 50.5%;
    top: 28%;
}
.cd-single-point:nth-of-type(8) {
	background: #ff0000 none repeat scroll 0 0;
    left: 50.5%;
    top: 28%;
}
.cd-single-point:nth-of-type(9) {
	background: #00ff01 none repeat scroll 0 0;
    left: 57.5%;
    top: 27%;
}
.cd-single-point:nth-of-type(10) {
	 background: red none repeat scroll 0 0;
    border: 1px solid #0000fe;
    left: 57.5%;
    top: 39%;
}
.cd-single-point:nth-of-type(11) {
	background: red none repeat scroll 0 0;
    left: 51.5%;
    top: 64%;
}
.cd-single-point:nth-of-type(12) {
	 background: red none repeat scroll 0 0;
    left: 56%;
    top: 45%;
}
.cd-single-point:nth-of-type(13) {
	background: #00ff01 none repeat scroll 0 0;
    bottom: 21%;
    left: 38.3%;
}
.cd-single-point:nth-of-type(13) {
	background: #00ff01 none repeat scroll 0 0;
    bottom: 21%;
    left: 38.3%;
}
.cd-single-point:nth-of-type(14) {
	background: #0000fe none repeat scroll 0 0;
    bottom: 20%;
    left: 40%;
}
.cd-single-point:nth-of-type(15) {
	background: #0000fe none repeat scroll 0 0;
    bottom: 17%;
    left: 42%;
}
.cd-single-point:nth-of-type(16) {
	 background: #f700f6 none repeat scroll 0 0;
    border: 1px solid #0000fe;
    bottom: 7%;
    left: 49%;
}
.cd-single-point:nth-of-type(17) {
	background: #f700f6 none repeat scroll 0 0;
    border: 1px solid #0000fe;
    bottom: 15%;
    left: 54%;
}
.cd-single-point:nth-of-type(18) {
	background: #f700f6 none repeat scroll 0 0;
    border: 1px solid #0000fe;
    bottom: 13%;
    left: 55.5%;
}
.cd-single-point:nth-of-type(19) {
	background: #f700f6 none repeat scroll 0 0;
    border: 1px solid #0000fe;
    bottom: 16%;
    right: 33.5%;
}
.cd-single-point:nth-of-type(20) {
	background: #f700f6 none repeat scroll 0 0;
    border: 1px solid #0000fe;
    bottom: 16%;
    right: 28.5%;
}
.cd-single-point:nth-of-type(21) {
	background: #f700f6 none repeat scroll 0 0;
    border: 1px solid #0000fe;
    bottom: 27%;
    left: 68.5%;
}
.cd-single-point:nth-of-type(22) {
	background: #0000fe none repeat scroll 0 0;
    bottom: 39%;
    right: 26.5%;
}
.cd-single-point:nth-of-type(23) {
	background: #0000fe none repeat scroll 0 0;
    bottom: 40%;
    right: 14%;
}
.cd-single-point:nth-of-type(24) {
	background: red none repeat scroll 0 0;
    bottom: 52%;
    right: 36.5%;
}
.cd-single-point:nth-of-type(25) {
	background: red none repeat scroll 0 0;
    border: 1px solid #0000fe;
    bottom: 45%;
    right: 35%;
}
.cd-single-point.is-open > a {
	
}
.cd-single-point.is-open > a::after, .cd-single-point.is-open > a::before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  transform: translateX(-50%) translateY(-50%) rotate(135deg);
}
.cd-single-point.is-open::after {
  /* remove pulse effect */
  display: none;
}
.cd-single-point.is-open .cd-more-info {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s, -webkit-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s, -moz-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s, transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
}
.cd-single-point.visited > a {
  
}
.cd-single-point.visited::after {
  /* pulse effect no more active on visited elements */
  display: none;
}
@media only screen and (min-width: 480px) {
  .cd-single-point.is-open .cd-more-info.cd-left {
    right: 140%;
  }
  .cd-single-point.is-open .cd-more-info.cd-right {
    left: 140%;
  }
  .cd-single-point.is-open .cd-more-info.cd-top {
    bottom: 140%;
  }
  .cd-single-point.is-open .cd-more-info.cd-bottom {
    top: 140%;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-single-point {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
  .cd-single-point::after {
    -webkit-animation: none;
    -moz-animation: none;
    animation: none;
  }
  .points-enlarged .cd-single-point {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-animation: cd-bounce 0.4s;
    -moz-animation: cd-bounce 0.4s;
    animation: cd-bounce 0.4s;
  }
  .points-pulsing .cd-single-point::after {
    -webkit-animation: cd-pulse 2s infinite;
    -moz-animation: cd-pulse 2s infinite;
    animation: cd-pulse 2s infinite;
  }
}

.no-csstransforms3d .cd-single-point {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

@-webkit-keyframes cd-bounce {
  0% {
    -webkit-transform: scale(0);
  }
  60% {
    -webkit-transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes cd-bounce {
  0% {
    -moz-transform: scale(0);
  }
  60% {
    -moz-transform: scale(1.2);
  }
  100% {
    -moz-transform: scale(1);
  }
}
@keyframes cd-bounce {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
  60% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes cd-pulse {
  0% {
    -webkit-transform: scale(1);
    box-shadow: inset 0 0 1px 1px rgba(234, 74, 85, 0.8);
  }
  50% {
    box-shadow: inset 0 0 1px 1px rgba(234, 74, 85, 0.8);
  }
  100% {
    -webkit-transform: scale(1.6);
    box-shadow: inset 0 0 1px 1px rgba(234, 74, 85, 0);
  }
}
@-moz-keyframes cd-pulse {
  0% {
    -moz-transform: scale(1);
    box-shadow: inset 0 0 1px 1px rgba(234, 74, 85, 0.8);
  }
  50% {
    box-shadow: inset 0 0 1px 1px rgba(234, 74, 85, 0.8);
  }
  100% {
    -moz-transform: scale(1.6);
    box-shadow: inset 0 0 1px 1px rgba(234, 74, 85, 0);
  }
}
@keyframes cd-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    box-shadow: inset 0 0 1px 1px rgba(234, 74, 85, 0.8);
  }
  50% {
    box-shadow: inset 0 0 1px 1px rgba(234, 74, 85, 0.8);
  }
  100% {
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    -o-transform: scale(1.6);
    transform: scale(1.6);
    box-shadow: inset 0 0 1px 1px rgba(234, 74, 85, 0);
  }
}
.cd-single-point .cd-more-info {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  text-align: left;
  line-height: 1.5;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 2em 1em 1em;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s, -webkit-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s, -moz-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
}
.cd-single-point .cd-more-info::before {
  /* triangle next to the interest point description - hidden on mobile */
  content: '';
  position: absolute;
  height: 0;
  width: 0;
  display: none;
  border: 8px solid transparent;
}
.cd-single-point .cd-more-info h2 {
  font-size: 16px;
  text-transform: uppercase;
    font-weight: bold;
    padding-bottom: 10px;
}
.cd-single-point .cd-more-info p {
  color: #3d385a;
}
@media only screen and (min-width: 480px) {
  .cd-single-point .cd-more-info {
    border-radius: 0.25em;
    box-shadow: 0 0 20px rgba(61, 56, 90, 0.3);
    height: auto;
    line-height: 1.4;
    overflow-y: visible;
    padding: 0 0 10px 20px;
    position: absolute;
    width: 240px;
  }
  .cd-single-point .cd-more-info::before {
    display: block;
  }
  .cd-single-point .cd-more-info.cd-left, .cd-single-point .cd-more-info.cd-right {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .cd-single-point .cd-more-info.cd-left::before, .cd-single-point .cd-more-info.cd-right::before {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .cd-single-point .cd-more-info.cd-left {
    right: 160%;
    left: auto;
  }
  .cd-single-point .cd-more-info.cd-left::before {
    border-left-color: rgba(255, 255, 255, 0.95);
    left: 100%;
  }
  .cd-single-point .cd-more-info.cd-right {
    left: 160%;
  }
  .cd-single-point .cd-more-info.cd-right::before {
    border-right-color: rgba(255, 255, 255, 0.95);
    right: 100%;
  }
  .cd-single-point .cd-more-info.cd-top, .cd-single-point .cd-more-info.cd-bottom {
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .cd-single-point .cd-more-info.cd-top::before, .cd-single-point .cd-more-info.cd-bottom::before {
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .cd-single-point .cd-more-info.cd-top {
    bottom: 160%;
    top: auto;
  }
  .cd-single-point .cd-more-info.cd-top::before {
    border-top-color: rgba(255, 255, 255, 0.95);
    top: 100%;
  }
  .cd-single-point .cd-more-info.cd-bottom {
    top: 160%;
  }
  .cd-single-point .cd-more-info.cd-bottom::before {
    border-bottom-color: rgba(255, 255, 255, 0.95);
    bottom: 100%;
  }
  .cd-single-point .cd-more-info h2 {
    margin-bottom: 0;
  }
  .cd-single-point .cd-more-info p {
    font-size: 1.3rem;
  }
}

.cd-close-info {
  /* close the interest point description - only on mobile */
  position: fixed;
  top: 0;
  right: 0;
  height: 44px;
  width: 44px;
}
.cd-close-info::after, .cd-close-info:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  background-color: #ea4a55;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -webkit-transition-property: transform 0.2s;
  -moz-transition-property: transform 0.2s;
  transition-property: transform 0.2s;
}
.cd-close-info::after {
  height: 2px;
  width: 16px;
}
.cd-close-info::before {
  height: 16px;
  width: 2px;
}
@media only screen and (min-width: 480px) {
  .cd-close-info {
    display: none;
  }
}
.content li::before {
	display: none !important;
}

@media (max-width: 767px) {
	.cd-product-intro {
		display: none;
	}
	.cd-single-point {
		display: none;
	}
}
@media (max-width: 480px) {
	.cd-product-intro {
		display: none;
	}
	.cd-single-point {
		display: none;
	}
}
.is-open {
	display: block;
    position: absolute;
    z-index: 9999;
}