[data-component="interactive-graphic"] {
  font-family: 'Open Sans';
  font-weight: 300;
  color: #474747;
  font-size: 18px;
  margin-right: -30px;
}
[data-component="interactive-graphic"] .overlay {
  transition: height 2.3s ease;
  position: fixed;
  background-color: rgba(149, 193, 31, 0.9);
  z-index: 1000;
  right: 0;
  top: 20px;
  width: 400px;
  max-width: 96vw;
  text-align: left;
  padding: 0;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  color: #fff;
  transform: translate3d(420px, 0, 0);
  perspective: 1000px;
}
[data-component="interactive-graphic"] .overlay.in {
  animation-name: bounceOut;
  animation-timing-function: ease-in;
  animation-duration: 0.9s;
  animation-fill-mode: forwards;
}
[data-component="interactive-graphic"] .overlay.in.reference-overlay {
  animation-name: bounceOutLeft;
}
[data-component="interactive-graphic"] .overlay.out {
  animation-name: bounceIn;
  animation-direction: reverse;
  animation-timing-function: ease-in;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}
[data-component="interactive-graphic"] .overlay.out.reference-overlay {
  animation-name: bounceInLeft;
}
@keyframes bounceIn {
  0% {
    transform: translate3d(420px, 0, 0);
  }
  60% {
    transform: translate3d(0, 0, 0);
  }
  80% {
    transform: translate3d(15px, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceOut {
  0% {
    transform: translate3d(420px, 0, 0);
  }
  60% {
    transform: translate3d(0, 0, 0);
  }
  80% {
    transform: translate3d(15px, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  0% {
    transform: translate3d(-375px, 0, 0);
  }
  60% {
    transform: translate3d(0, 0, 0);
  }
  80% {
    transform: translate3d(15px, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceOutLeft {
  0% {
    transform: translate3d(-375px, 0, 0);
  }
  60% {
    transform: translate3d(0, 0, 0);
  }
  80% {
    transform: translate3d(15px, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
[data-component="interactive-graphic"] .overlay .overlay-inner {
  overflow: hidden;
  position: relative;
  padding: 20px 0 20px 30px;
  transition: height 2.3s ease;
  -webkit-overflow-scrolling: auto;
  max-height: 100vh;
  overflow-y: auto;
}
[data-component="interactive-graphic"] .overlay p {
  color: #fff;
}
[data-component="interactive-graphic"] .overlay .headline h3 {
  color: #fff;
  font-weight: 600 !important;
  font-size: 24px;
  text-align: left;
  padding: 0 5px 0 0;
}
[data-component="interactive-graphic"] .overlay .images {
  display: flex;
  flex-wrap: wrap;
}
[data-component="interactive-graphic"] .overlay .images a:first-child {
  width: 309px;
}
[data-component="interactive-graphic"] .overlay .images a:first-child img {
  width: 309px;
  height: auto;
}
[data-component="interactive-graphic"] .overlay .images img {
  width: 95px;
  border: 2px solid #fff;
  float: left;
  display: inline-block;
  margin-right: 12px;
  margin-bottom: 12px;
}
[data-component="interactive-graphic"] .overlay button {
  color: #fff;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  margin-bottom: 10px;
  padding: 2px 20px;
  border: none;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  min-height: 67px;
  text-align: left;
  font-family: 'Open Sans';
  font-weight: 600 !important;
  font-size: 16px;
  line-height: 1.2;
}
[data-component="interactive-graphic"] .overlay button.danger-none {
  background-color: #d5d703;
}
[data-component="interactive-graphic"] .overlay button.danger-damage {
  background-color: #f39200;
}
[data-component="interactive-graphic"] .overlay button.danger-renovation {
  background-color: #f60443;
}
[data-component="interactive-graphic"] .overlay button.back {
  width: 10px;
  min-height: 67px;
  background-color: #f70444;
  color: #ffffff;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  position: absolute;
  left: -30px;
  padding: 30px 12px;
}
[data-component="interactive-graphic"] .overlay button.back span.glyphicon {
  font-size: 26px;
  top: 20px;
  right: 0;
}
[data-component="interactive-graphic"] .overlay button .text {
  max-width: 270px;
}
[data-component="interactive-graphic"] .overlay button span.glyphicon {
  font-size: 30px;
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 21px;
}
[data-component="interactive-graphic"] .overlay .page1.out {
  animation-name: bouncePageOut;
  animation-direction: reverse;
  animation-timing-function: ease-in;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  position: absolute;
}
[data-component="interactive-graphic"] .overlay .page1.in {
  animation-name: bouncePageIn;
  animation-direction: normal;
  animation-timing-function: ease-in;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  position: static;
}
@keyframes bouncePageOut {
  0% {
    transform: translateX(-430px);
  }
  60% {
    transform: translateX(0px);
  }
  80% {
    transform: translateX(15px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes bouncePageIn {
  0% {
    transform: translateX(-430px);
  }
  60% {
    transform: translateX(0px);
  }
  80% {
    transform: translateX(15px);
  }
  100% {
    transform: translateX(0px);
  }
}
[data-component="interactive-graphic"] .overlay.full .headline {
  display: inline-block;
  max-width: 400px;
}
[data-component="interactive-graphic"] .overlay.full .page1 button {
  border-radius: 5px;
  width: 400px;
  max-width: 97vw;
}
[data-component="interactive-graphic"] .overlay.full .page1 button span.glyphicon {
  right: 45px;
}
[data-component="interactive-graphic"] .overlay .page2 .content {
  display: none;
  transform: translateX(430px);
}
[data-component="interactive-graphic"] .overlay .page2 .content.active {
  display: block;
  transform: translateX(0px);
}
[data-component="interactive-graphic"] .overlay .page2 .content h3 {
  color: #fff;
  font-weight: 600;
  text-align: left;
}
[data-component="interactive-graphic"] .overlay .page2 .content .wysiwyg,
[data-component="interactive-graphic"] .overlay .page2 .content .text {
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 600;
}
[data-component="interactive-graphic"] .overlay .page2 .content .text {
  padding-right: 10px;
}
[data-component="interactive-graphic"] .overlay .page2 .content p,
[data-component="interactive-graphic"] .overlay .page2 .content ul,
[data-component="interactive-graphic"] .overlay .page2 .content li {
  color: #000000;
  text-align: left;
}
[data-component="interactive-graphic"] .overlay .page2 .content ul {
  padding: 0 20px;
}
[data-component="interactive-graphic"] .overlay .page2 .content ul li {
  margin: 5px 0;
}
[data-component="interactive-graphic"] .overlay .page2 .content.in {
  display: block;
  animation-name: bounceContentIn;
  animation-direction: normal;
  animation-timing-function: ease-in;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}
[data-component="interactive-graphic"] .overlay .page2 .content.out {
  display: block;
  animation-name: bounceContentOut;
  animation-direction: reverse;
  animation-timing-function: ease-in;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}
@keyframes bounceContentIn {
  0% {
    transform: translateX(430px);
  }
  60% {
    transform: translateX(0px);
  }
  80% {
    transform: translateX(15px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes bounceContentOut {
  0% {
    transform: translateX(430px);
  }
  60% {
    transform: translateX(0px);
  }
  80% {
    transform: translateX(15px);
  }
  100% {
    transform: translateX(0px);
  }
}
[data-component="interactive-graphic"] .overlay [data-id="interactivegraphic-add-to-cart"] {
  margin-top: 20px;
  background-color: #779229;
  display: flex;
  padding: 10px 20px;
  margin-bottom: 20px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  width: 100%;
  text-align: center;
  color: #ffffff !important;
  text-decoration: none;
  line-height: 26px;
}
[data-component="interactive-graphic"] .overlay [data-id="interactivegraphic-add-to-cart"] .icon {
  display: flex;
  margin-left: auto;
  align-self: center;
  font-size: 26px;
  position: relative;
  right: -15px;
}
[data-component="interactive-graphic"] .flex {
  display: flex;
  justify-content: space-around;
}
[data-component="interactive-graphic"] .headline {
  font-family: 'Open Sans';
  font-weight: 800 !important;
  color: #ec008c;
  font-size: 48px;
}
[data-component="interactive-graphic"] .subline {
  font-family: 'Open Sans';
  font-weight: 800 !important;
  color: #ec008c;
  font-size: 36px;
}
@media (max-width: 768px) {
  [data-component="interactive-graphic"] h1,
  [data-component="interactive-graphic"] h2,
  [data-component="interactive-graphic"] .headline,
  [data-component="interactive-graphic"] .subline {
    font-size: 28px;
    text-align: center;
    padding-right: 20px !important;
  }
}
[data-component="interactive-graphic"] .module-intro {
  background: #ededed;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 0%, #ededed 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, #ededed 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, #ededed 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed', GradientType=0);
  /* IE6-9 */
}
@media (max-width: 1200px) {
  [data-component="interactive-graphic"] .module-intro .container {
    width: 100%;
  }
}
[data-component="interactive-graphic"] .module-info {
  background: #ededed;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ededed 0%, #dddddd 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ededed 0%, #dddddd 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ededed 0%, #dddddd 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dddddd', GradientType=0);
  /* IE6-9 */
}
[data-component="interactive-graphic"] .module-info .container {
  background-image: url("/website/static/img/asbesthaus/Wolken.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 100px 50px 50px 75px;
  text-align: left;
}
@media (max-width: 768px) {
  [data-component="interactive-graphic"] .module-info .container {
    padding: 0px 55px 70px 25px;
    background-size: cover;
  }
}
@media (max-width: 768px) {
  [data-component="interactive-graphic"] .module-info .container .text p {
    font-size: 16px;
    line-height: 20px;
  }
}
[data-component="interactive-graphic"] .module-info .container p span[style] {
  color: #474747 !important;
}
[data-component="interactive-graphic"] .module-scrolling-house {
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  background-color: #dddddd;
}
[data-component="interactive-graphic"] .module-scrolling-house .graphic {
  text-align: center;
}
[data-component="interactive-graphic"] .module-scrolling-house .graphic.floor-dg {
  background: #dddddd;
  margin-top: 50px;
}
[data-component="interactive-graphic"] .module-scrolling-house .graphic.floor-dg .house .level {
  top: 50%;
}
@media (max-width: 768px) {
  [data-component="interactive-graphic"] .module-scrolling-house .graphic.floor-dg .house .level {
    top: 20%;
  }
}
[data-component="interactive-graphic"] .module-scrolling-house .graphic.floor-og1 {
  background-color: #ececec;
}
[data-component="interactive-graphic"] .module-scrolling-house .graphic.floor-eg {
  background-color: #ececec;
}
[data-component="interactive-graphic"] .module-scrolling-house .graphic.floor-kg {
  background: #ececec;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ececec 10%, #858585 35%, #565656 35%, #565656 35%, #565656 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ececec 10%, #858585 35%, #565656 35%, #565656 35%, #565656 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ececec 10%, #858585 35%, #565656 35%, #565656 35%, #565656 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ececec', endColorstr='#565656', GradientType=0);
  /* IE6-9 */
}
@media (max-width: 1000px) {
  [data-component="interactive-graphic"] .module-scrolling-house .graphic.floor-kg {
    background: transparent;
  }
}
[data-component="interactive-graphic"] .module-scrolling-house .graphic.floor-p {
  padding-top: 70px;
  background: #ededed;
  /* Old browsers */
  background: -moz-linear-gradient(top, #565656 0%, #565656 10%, #b0b0b0 20%, #b0b0b0 30%, #565656 40%, #ededed 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #565656 0%, #565656 10%, #b0b0b0 20%, #b0b0b0 30%, #565656 40%, #ededed 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #565656 0%, #565656 10%, #b0b0b0 20%, #b0b0b0 30%, #565656 40%, #ededed 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#565656', endColorstr='#ededed', GradientType=0);
  /* IE6-9 */
}
@media (max-width: 1000px) {
  [data-component="interactive-graphic"] .module-scrolling-house .graphic.floor-p {
    background: transparent;
  }
}
[data-component="interactive-graphic"] .module-scrolling-house .graphic .house {
  position: relative;
}
[data-component="interactive-graphic"] .module-scrolling-house .graphic .house.house-container {
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  width: 954px;
}
@media (max-width: 768px) {
  [data-component="interactive-graphic"] .module-scrolling-house .graphic .house.house-container {
    width: 700px;
  }
}
@media (max-width: 500px) {
  [data-component="interactive-graphic"] .module-scrolling-house .graphic .house.house-container {
    width: 500px;
  }
}
[data-component="interactive-graphic"] .module-scrolling-house .graphic .house.house-container img {
  width: 100%;
}
[data-component="interactive-graphic"] .module-scrolling-house .graphic .house .level {
  position: absolute;
  top: 25%;
  left: -8%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 5px solid #fff;
  border-radius: 50%;
  background-color: #d5d703;
  width: 130px;
  height: 130px;
  z-index: 90;
  color: #fff;
}
@media (max-width: 768px) {
  [data-component="interactive-graphic"] .module-scrolling-house .graphic .house .level {
    width: 90px;
    height: 90px;
    top: 1px;
    bottom: 40px;
    left: 80px;
  }
}
@media (max-width: 500px) {
  [data-component="interactive-graphic"] .module-scrolling-house .graphic .house .level {
    width: 50px;
    height: 50px;
    bottom: 40px;
    left: 1%;
  }
}
[data-component="interactive-graphic"] .module-scrolling-house .graphic .house .level .label {
  font-weight: 800;
  font-size: 48px;
  display: block;
  min-width: 30px;
  padding: 0;
  line-height: 1;
}
@media (max-width: 768px) {
  [data-component="interactive-graphic"] .module-scrolling-house .graphic .house .level .label {
    font-size: 35px;
    padding-top: 5px;
  }
}
@media (max-width: 500px) {
  [data-component="interactive-graphic"] .module-scrolling-house .graphic .house .level .label {
    font-size: 18px;
    padding-top: 0;
  }
}
[data-component="interactive-graphic"] .module-scrolling-house .graphic .house .level .description {
  font-weight: 300;
  font-size: 13px;
  display: block;
  min-width: 30px;
}
@media (max-width: 768px) {
  [data-component="interactive-graphic"] .module-scrolling-house .graphic .house .level .description {
    display: none;
  }
}
[data-component="interactive-graphic"] .module-scrolling-house .submodule-pointers .circle {
  margin: 0 auto;
  width: 20px;
  height: 20px;
  border: 4px solid #ec008c;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 10px;
  opacity: 0;
  box-sizing: border-box;
  transition: all 0.6s;
  cursor: pointer;
}
[data-component="interactive-graphic"] .module-scrolling-house .submodule-pointers .one {
  animation: circleAnimation 8s infinite ease-in;
}
[data-component="interactive-graphic"] .module-scrolling-house .submodule-pointers .two {
  animation: circleAnimation 6s infinite ease-in;
}
[data-component="interactive-graphic"] .module-scrolling-house .submodule-pointers .three {
  animation: circleAnimation 4s infinite ease-in;
}
[data-component="interactive-graphic"] .module-scrolling-house .submodule-pointers .four {
  animation: circleAnimation 2s infinite ease-in;
}
[data-component="interactive-graphic"] .module-scrolling-house .submodule-pointers > div .point {
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 75;
}
[data-component="interactive-graphic"] .module-scrolling-house .submodule-pointers > div .point.interactive-graphic-tooltip:after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 130%;
  left: 20%;
  background: #ec008c;
  padding: 5px 15px;
  color: #fff;
  max-width: 300px;
  min-width: 240px;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  pointer-events: none;
  line-height: 1;
}
[data-component="interactive-graphic"] .module-scrolling-house .submodule-pointers > div .point.interactive-graphic-tooltip:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 20px solid #ec008c;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
  left: 23px;
  bottom: 90%;
  pointer-events: none;
}
[data-component="interactive-graphic"] .module-scrolling-house .submodule-pointers > div .point.interactive-graphic-tooltip:hover:after,
[data-component="interactive-graphic"] .module-scrolling-house .submodule-pointers > div .point.interactive-graphic-tooltip.active:after {
  bottom: 200%;
}
[data-component="interactive-graphic"] .module-scrolling-house .submodule-pointers > div .point.interactive-graphic-tooltip:hover:before,
[data-component="interactive-graphic"] .module-scrolling-house .submodule-pointers > div .point.interactive-graphic-tooltip.active:before {
  bottom: 170%;
}
[data-component="interactive-graphic"] .module-scrolling-house .submodule-pointers > div .point.interactive-graphic-tooltip:hover:after,
[data-component="interactive-graphic"] .module-scrolling-house .submodule-pointers > div .point.interactive-graphic-tooltip:hover:before,
[data-component="interactive-graphic"] .module-scrolling-house .submodule-pointers > div .point.interactive-graphic-tooltip.active:after,
[data-component="interactive-graphic"] .module-scrolling-house .submodule-pointers > div .point.interactive-graphic-tooltip.active:before {
  opacity: 1;
}
[data-component="interactive-graphic"] .module-scrolling-house .submodule-pointers > div .point.interactive-graphic-tooltip.left:after {
  right: 20%;
  left: unset;
}
[data-component="interactive-graphic"] .module-scrolling-house .submodule-pointers > div .point.interactive-graphic-tooltip.left:before {
  right: 23px;
  left: unset;
}
[data-component="interactive-graphic"] .module-scrolling-house .submodule-pointers > div .point img {
  width: 40px;
  height: 40px;
  cursor: pointer;
  opacity: 1;
  transition: all 0.6s;
}
@media (max-width: 500px) {
  [data-component="interactive-graphic"] .module-scrolling-house .submodule-pointers > div .point img {
    width: 30px;
    height: 30px;
  }
}
[data-component="interactive-graphic"] .module-scrolling-house .submodule-pointers > div .point:hover img,
[data-component="interactive-graphic"] .module-scrolling-house .submodule-pointers > div .point.active img {
  opacity: 0;
}
[data-component="interactive-graphic"] .module-scrolling-house .submodule-pointers > div .point:hover .circle,
[data-component="interactive-graphic"] .module-scrolling-house .submodule-pointers > div .point.active .circle {
  opacity: 1;
}
@keyframes circleAnimation {
  from {
    transform: scale(0);
    border-width: 4px;
  }
  to {
    transform: scale(5);
    border-width: 0;
  }
}
.submodule-fact-chart .rect-auto {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100 {
  position: relative;
  font-size: 120px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  float: left;
  background-color: #dddddd;
  margin: 25px 180px 50px 0;
}
@media (min-width: 1200px) {
  .submodule-fact-chart .c100:last-of-type {
    margin-right: 0;
  }
}
@media (max-width: 1200px) {
  .submodule-fact-chart .c100 {
    float: none;
    margin: 35px auto;
  }
}
@media (max-width: 768px) {
  .submodule-fact-chart .c100 {
    margin-bottom: 150px;
  }
}
.submodule-fact-chart .c100.center {
  float: none;
  margin: 0 auto;
}
.submodule-fact-chart .c100.big {
  font-size: 260px;
}
@media (max-width: 768px) {
  .submodule-fact-chart .c100.big {
    font-size: 160px;
  }
}
.submodule-fact-chart .c100.small {
  font-size: 80px;
}
.submodule-fact-chart .c100 .chart-label {
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
  position: absolute;
  display: block;
  width: 130px;
  color: #e12f7d;
  top: 173px;
  left: 100%;
}
@media (max-width: 768px) {
  .submodule-fact-chart .c100 .chart-label {
    right: unset !important;
    top: unset !important;
    bottom: -125px !important;
    left: 75% !important;
    margin-left: -190px;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    width: 380px;
    max-width: 85vw;
    height: 100px ;
    padding: 0 5px;
  }
}
.submodule-fact-chart .c100 > span {
  position: absolute;
  width: 100%;
  z-index: 100;
  left: 0;
  top: 0;
  width: 5em;
  line-height: 5em;
  font-size: 0.2em;
  color: #e12f7d;
  display: block;
  text-align: center;
  white-space: nowrap;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
}
@media (max-width: 768px) {
  .submodule-fact-chart .c100 > span {
    width: 3em;
    line-height: 3em;
    font-size: 0.33em;
  }
}
.submodule-fact-chart .c100:after {
  position: absolute;
  top: 0.1em;
  left: 0.1em;
  display: block;
  content: " ";
  border-radius: 50%;
  background-color: #f5f5f5;
  width: 0.8em;
  height: 0.8em;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-in;
}
.submodule-fact-chart .c100 .slice {
  position: absolute;
  width: 1em;
  height: 1em;
  clip: rect(0em, 1em, 1em, 0.5em);
}
.submodule-fact-chart .c100 .bar {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
}
.submodule-fact-chart .c100 .bar-line {
  position: absolute;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  transform: rotate(0deg);
  clip: unset !important;
  background: transparent !important;
  border: 0.1em solid transparent;
  border-color: transparent !important;
  box-shadow: -1px -2px 8px #858585;
}
.submodule-fact-chart .c100 .bar-line:after {
  width: 25%;
  content: " ";
  transform: rotate(-90deg);
  height: 2px;
  background: #e12f7d;
  display: block;
  top: 0;
  position: absolute;
  left: 50%;
  z-index: 800;
  transform-origin: 0 0;
}
@media (max-width: 768px) {
  .submodule-fact-chart .c100 .bar-line:after {
    display: none;
  }
}
.submodule-fact-chart .c100 .bar-line:before {
  width: 30%;
  content: " ";
  height: 2px;
  background: #e12f7d;
  display: block;
  top: -25%;
  position: absolute;
  left: 50%;
  z-index: 800;
  transform-origin: 0 0;
}
@media (max-width: 768px) {
  .submodule-fact-chart .c100 .bar-line:before {
    display: none;
  }
}
.submodule-fact-chart .c100.p100 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p100 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p100 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p99 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p99 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p99 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p98 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p98 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p98 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p97 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p97 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p97 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p96 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p96 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p96 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p95 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p95 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p95 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p94 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p94 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p94 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p93 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p93 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p93 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p92 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p92 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p92 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p91 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p91 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p91 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p90 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p90 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p90 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p89 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p89 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p89 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p88 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p88 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p88 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p87 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p87 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p87 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p86 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p86 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p86 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p85 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p85 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p85 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p84 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p84 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p84 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p83 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p83 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p83 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p82 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p82 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p82 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p81 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p81 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p81 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p80 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p80 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p80 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p79 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p79 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p79 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p78 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p78 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p78 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p77 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p77 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p77 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p76 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p76 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p76 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p75 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p75 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p75 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p74 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p74 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p74 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p73 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p73 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p73 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p72 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p72 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p72 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p71 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p71 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p71 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p70 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p70 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p70 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p69 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p69 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p69 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p68 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p68 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p68 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p67 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p67 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p67 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p66 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p66 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p66 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p65 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p65 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p65 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p64 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p64 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p64 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p63 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p63 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p63 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p62 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p62 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p62 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p61 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p61 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p61 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p60 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p60 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p60 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p59 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p59 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p59 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p58 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p58 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p58 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p57 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p57 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p57 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p56 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p56 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p56 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p55 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p55 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p55 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p54 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p54 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p54 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p53 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p53 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p53 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p52 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p52 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p52 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p51 .slice {
  clip: rect(auto, auto, auto, auto);
}
.submodule-fact-chart .c100.p51 .bar:after {
  transform: rotate(180deg);
}
.submodule-fact-chart .c100.p51 .fill {
  position: absolute;
  border: 0.1em solid #e12f7d;
  width: 1em;
  height: 1em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transform: rotate(180deg);
}
.submodule-fact-chart .c100 .line-dot p {
  font-size: 11px;
}
.submodule-fact-chart .c100 .line-dot:before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #e12f7d;
  border-radius: 50%;
  transform: rotate(306deg);
  transform-origin: 0 0;
  display: block;
  z-index: 850;
}
@media (max-width: 768px) {
  .submodule-fact-chart .c100 .line-dot {
    display: none;
  }
}
.submodule-fact-chart .c100.p15 .bar,
.submodule-fact-chart .c100.p15.p15 .bar-line {
  -webkit-transform: rotate(54deg);
  -moz-transform: rotate(54deg);
  -ms-transform: rotate(54deg);
  -o-transform: rotate(54deg);
  transform: rotate(54deg);
}
.submodule-fact-chart .c100.p15 .bar:before,
.submodule-fact-chart .c100.p15.p15 .bar-line:before {
  -webkit-transform: rotate(306deg);
  -moz-transform: rotate(306deg);
  -ms-transform: rotate(306deg);
  -o-transform: rotate(306deg);
  transform: rotate(306deg);
}
.submodule-fact-chart .c100.p15 .bar .line-dot:before,
.submodule-fact-chart .c100.p15.p15 .bar-line .line-dot:before {
  top: -50%;
  left: 66%;
}
.submodule-fact-chart .c100.p15 .chart-label {
  top: 49px;
  left: 270px;
}
.submodule-fact-chart .c100.p25 .bar,
.submodule-fact-chart .c100.p25.p25 .bar-line {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.submodule-fact-chart .c100.p25 .bar:before,
.submodule-fact-chart .c100.p25.p25 .bar-line:before {
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}
.submodule-fact-chart .c100.p25 .bar .line-dot:before,
.submodule-fact-chart .c100.p25.p25 .bar-line .line-dot:before {
  top: -56%;
  left: 47%;
}
.submodule-fact-chart .c100.p25 .chart-label {
  top: 145px;
  left: 295px;
}
.submodule-fact-chart .c100.p41 .bar,
.submodule-fact-chart .c100.p41.p41 .bar-line {
  -webkit-transform: rotate(147.6deg);
  -moz-transform: rotate(147.6deg);
  -ms-transform: rotate(147.6deg);
  -o-transform: rotate(147.6deg);
  transform: rotate(147.6deg);
}
.submodule-fact-chart .c100.p41 .bar:before,
.submodule-fact-chart .c100.p41.p41 .bar-line:before {
  -webkit-transform: rotate(212.4deg);
  -moz-transform: rotate(212.4deg);
  -ms-transform: rotate(212.4deg);
  -o-transform: rotate(212.4deg);
  transform: rotate(212.4deg);
}
.submodule-fact-chart .c100.p41 .bar .line-dot p,
.submodule-fact-chart .c100.p41.p41 .bar-line .line-dot p {
  transform: rotate(306deg);
}
.submodule-fact-chart .c100.p41 .bar .line-dot:before,
.submodule-fact-chart .c100.p41.p41 .bar-line .line-dot:before {
  top: -42%;
  left: 20%;
}
.submodule-fact-chart .c100.p41 .chart-label {
  top: 240px;
  left: 117%;
}
.submodule-fact-chart .c100.p70 .bar,
.submodule-fact-chart .c100.p70.p70 .bar-line {
  -webkit-transform: rotate(252deg);
  -moz-transform: rotate(252deg);
  -ms-transform: rotate(252deg);
  -o-transform: rotate(252deg);
  transform: rotate(252deg);
}
.submodule-fact-chart .c100.p70 .bar:before,
.submodule-fact-chart .c100.p70.p70 .bar-line:before {
  -webkit-transform: rotate(-72deg);
  -moz-transform: rotate(-72deg);
  -ms-transform: rotate(-72deg);
  -o-transform: rotate(-72deg);
  transform: rotate(-72deg);
}
.submodule-fact-chart .c100.p70 .bar .line-dot:before,
.submodule-fact-chart .c100.p70.p70 .bar-line .line-dot:before {
  top: -54%;
  left: 118px;
}
.submodule-fact-chart .c100.p70 .chart-label {
  top: 192px;
  left: -120px;
}
.submodule-fact-chart .c100.p95 .bar,
.submodule-fact-chart .c100.p95.p95 .bar-line {
  -webkit-transform: rotate(342deg);
  -moz-transform: rotate(342deg);
  -ms-transform: rotate(342deg);
  -o-transform: rotate(342deg);
  transform: rotate(342deg);
}
.submodule-fact-chart .c100.p95 .bar:before,
.submodule-fact-chart .c100.p95.p95 .bar-line:before {
  -webkit-transform: rotate(-162deg);
  -moz-transform: rotate(-162deg);
  -ms-transform: rotate(-162deg);
  -o-transform: rotate(-162deg);
  transform: rotate(-162deg);
  top: -24.5%;
  left: 50.5%;
  width: 70%;
}
.submodule-fact-chart .c100.p95 .bar .line-dot:before,
.submodule-fact-chart .c100.p95.p95 .bar-line .line-dot:before {
  top: -46%;
  left: -40px;
}
.submodule-fact-chart .c100.p95 .chart-label {
  top: 4px;
  left: -115px;
}
.submodule-fact-chart .c100:hover {
  cursor: default;
  color: #e12f7d;
}
.submodule-fact-chart .c100:hover > span {
  width: 3.33em;
  line-height: 3.33em;
  font-size: 0.3em;
}
.submodule-fact-chart .c100:hover:after {
  top: 0.1em;
  left: 0.1em;
  width: 0.8em;
  height: 0.8em;
}
.submodule-fact-chart .c100.green .bar,
.submodule-fact-chart .c100.green .fill {
  border-color: #d4c31e !important;
}
.submodule-fact-chart .c100.green > span {
  color: #d4c31e;
}
.submodule-fact-chart .c100.green .bar-line:after,
.submodule-fact-chart .c100.green .bar-line:before,
.submodule-fact-chart .c100.green .line-dot:before {
  background-color: #d4c31e !important;
}
.submodule-fact-chart .c100.green .chart-label {
  color: #d4c31e !important;
}
.submodule-fact-chart .c100.orange .bar,
.submodule-fact-chart .c100.orange .fill {
  border-color: #f6c238 !important;
}
.submodule-fact-chart .c100.orange > span {
  color: #f6c238;
}
.submodule-fact-chart .c100.orange .bar-line:after,
.submodule-fact-chart .c100.orange .bar-line:before,
.submodule-fact-chart .c100.orange .line-dot:before {
  background-color: #f6c238 !important;
}
.submodule-fact-chart .c100.orange .chart-label {
  color: #f6c238 !important;
}
.submodule-elevator-bar {
  position: fixed;
  bottom: 200px;
  right: 0;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  -webkit-box-shadow: inset 5px 5px 5px 0px #555555;
  -moz-box-shadow: inset 5px 5px 5px 0px #555555;
  box-shadow: inset 5px 5px 5px 0px #555555;
  background-color: #7a7a7a;
  padding: 30px 20px 135px 15px;
  box-sizing: content-box;
  z-index: 180;
  opacity: 1;
  transition: all 0.6s ease;
}
.submodule-elevator-bar.invisible {
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 768px) {
  .submodule-elevator-bar {
    padding: 0px 5px 135px 9px;
    bottom: 50px;
  }
}
.submodule-elevator-bar .list-button {
  text-align: center;
  display: flex;
  margin-bottom: 15px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.submodule-elevator-bar .list-button .icon {
  color: #555;
  background-color: #c0c0c0;
  font-size: 40px;
  border-radius: 4px;
  padding: 8px 6px;
}
@media (max-width: 768px) {
  .submodule-elevator-bar .list-button {
    margin: 15px 0 0 0;
  }
  .submodule-elevator-bar .list-button .icon {
    font-size: 25px;
  }
}
.submodule-elevator-bar .elevator-buttons ul {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 40px;
}
.submodule-elevator-bar .elevator-buttons ul li {
  position: relative;
  margin: 0;
  padding: 0;
  border: 5px solid #c0c0c0;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .submodule-elevator-bar .elevator-buttons ul li {
    display: none;
  }
}
.submodule-elevator-bar .elevator-buttons ul li span,
.submodule-elevator-bar .elevator-buttons ul li a {
  background: #d1c31c;
  color: #fff !important;
  text-decoration: none;
  display: inline-block;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 14px;
  text-shadow: 1px 1px 2px #555555;
  font-weight: 800;
  box-shadow: 1px 1px 5px #6b6571;
}
@media (max-width: 768px) {
  .submodule-elevator-bar .elevator-buttons ul li span,
  .submodule-elevator-bar .elevator-buttons ul li a {
    width: 32px;
    height: 32px;
    font-size: 11px;
    line-height: 32px;
    position: absolute;
    top: -1px;
    left: -1px;
  }
}
.submodule-elevator-bar .elevator-nav .after-mixin {
  content: '';
  width: 0px;
  height: 0px;
  -webkit-transform: rotate(360deg);
  border-style: solid;
  border-width: 34px 15px 0 15px;
  border-color: #d1c31c transparent transparent transparent;
  position: absolute;
  top: 3px;
  left: 5px;
  -webkit-filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5));
}
@media (max-width: 768px) {
  .submodule-elevator-bar .elevator-nav .after-mixin {
    border-width: 29px 10px 0 10px;
  }
}
.submodule-elevator-bar .elevator-nav .down {
  width: 50px;
  height: 50px;
  cursor: pointer;
  position: absolute;
  bottom: 10px;
  left: 25px;
}
@media (max-width: 768px) {
  .submodule-elevator-bar .elevator-nav .down {
    left: 14px;
  }
}
.submodule-elevator-bar .elevator-nav .down:before {
  content: '';
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 47px 22px 0 22px;
  border-color: #c0c0c0 transparent transparent transparent;
  position: absolute;
  -webkit-transform: rotate(360deg);
}
@media (max-width: 768px) {
  .submodule-elevator-bar .elevator-nav .down:before {
    border-width: 40px 15px 0 15px;
  }
}
.submodule-elevator-bar .elevator-nav .down:after {
  content: '';
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 34px 15px 0 15px;
  border-color: #d1c31c transparent transparent transparent;
  position: absolute;
  top: 3px;
  left: 5px;
  -webkit-filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5));
  -webkit-transform: rotate(360deg);
  top: 4px;
  left: 7px;
}
@media (max-width: 768px) {
  .submodule-elevator-bar .elevator-nav .down:after {
    border-width: 29px 10px 0 10px;
  }
}
@media (max-width: 768px) {
  .submodule-elevator-bar .elevator-nav .down:after {
    top: 3px;
    left: 5px;
  }
}
.submodule-elevator-bar .elevator-nav .up {
  width: 50px;
  height: 50px;
  cursor: pointer;
  position: absolute;
  bottom: 70px;
  left: 25px;
}
@media (max-width: 768px) {
  .submodule-elevator-bar .elevator-nav .up {
    bottom: 60px;
    left: 14px;
  }
}
.submodule-elevator-bar .elevator-nav .up:before {
  content: '';
  width: 0px;
  height: 0px;
  -webkit-transform: rotate(360deg);
  border-style: solid;
  border-width: 47px 22px 0 22px;
  border-color: #c0c0c0 transparent transparent transparent;
  position: absolute;
  -webkit-transform: rotate(180deg);
}
@media (max-width: 768px) {
  .submodule-elevator-bar .elevator-nav .up:before {
    border-width: 40px 15px 0 15px;
  }
}
.submodule-elevator-bar .elevator-nav .up:after {
  content: '';
  width: 0px;
  height: 0px;
  -webkit-transform: rotate(360deg);
  border-style: solid;
  border-width: 34px 15px 0 15px;
  border-color: #d1c31c transparent transparent transparent;
  position: absolute;
  top: 3px;
  left: 5px;
  -webkit-filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5));
  -webkit-transform: rotate(180deg);
  top: 9px;
  left: 7px;
  -webkit-filter: drop-shadow(-2px 0px 5px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(-2px 0px 5px rgba(0, 0, 0, 0.5));
}
@media (max-width: 768px) {
  .submodule-elevator-bar .elevator-nav .up:after {
    border-width: 29px 10px 0 10px;
  }
}
@media (max-width: 768px) {
  .submodule-elevator-bar .elevator-nav .up:after {
    top: 8px;
    left: 5px;
  }
}
.reference-overlay {
  transition: height 2.3s ease;
  position: fixed;
  background-color: rgba(149, 193, 31, 0.9);
  z-index: 1000;
  right: 0;
  top: 20px;
  width: 400px;
  max-width: 96vw;
  text-align: left;
  padding: 0;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  color: #fff;
  transform: translate3d(420px, 0, 0);
  perspective: 1000px;
  transform: translate3d(-425px, 0, 0);
  background-color: rgba(122, 122, 122, 0.9);
  right: unset;
  left: 0;
  bottom: 0;
  top: unset;
  border-radius: 0;
  border: 1px solid #fff;
  padding: 0px 10px 0 0px;
  margin-bottom: 15px;
}
.reference-overlay.in {
  animation-name: bounceOut;
  animation-timing-function: ease-in;
  animation-duration: 0.9s;
  animation-fill-mode: forwards;
}
.reference-overlay.in.reference-overlay {
  animation-name: bounceOutLeft;
}
.reference-overlay.out {
  animation-name: bounceIn;
  animation-direction: reverse;
  animation-timing-function: ease-in;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}
.reference-overlay.out.reference-overlay {
  animation-name: bounceInLeft;
}
@keyframes bounceIn {
  0% {
    transform: translate3d(420px, 0, 0);
  }
  60% {
    transform: translate3d(0, 0, 0);
  }
  80% {
    transform: translate3d(15px, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceOut {
  0% {
    transform: translate3d(420px, 0, 0);
  }
  60% {
    transform: translate3d(0, 0, 0);
  }
  80% {
    transform: translate3d(15px, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  0% {
    transform: translate3d(-375px, 0, 0);
  }
  60% {
    transform: translate3d(0, 0, 0);
  }
  80% {
    transform: translate3d(15px, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceOutLeft {
  0% {
    transform: translate3d(-375px, 0, 0);
  }
  60% {
    transform: translate3d(0, 0, 0);
  }
  80% {
    transform: translate3d(15px, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.reference-overlay .overlay-inner {
  overflow: hidden;
  position: relative;
  padding: 20px 0 20px 30px;
  transition: height 2.3s ease;
  -webkit-overflow-scrolling: auto;
  max-height: 100vh;
  overflow-y: auto;
}
.reference-overlay p {
  color: #fff;
}
.reference-overlay .headline h3 {
  color: #fff;
  font-weight: 600 !important;
  font-size: 24px;
  text-align: left;
  padding: 0 5px 0 0;
}
.reference-overlay .images {
  display: flex;
  flex-wrap: wrap;
}
.reference-overlay .images a:first-child {
  width: 309px;
}
.reference-overlay .images a:first-child img {
  width: 309px;
  height: auto;
}
.reference-overlay .images img {
  width: 95px;
  border: 2px solid #fff;
  float: left;
  display: inline-block;
  margin-right: 12px;
  margin-bottom: 12px;
}
.reference-overlay button {
  color: #fff;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  margin-bottom: 10px;
  padding: 2px 20px;
  border: none;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  min-height: 67px;
  text-align: left;
  font-family: 'Open Sans';
  font-weight: 600 !important;
  font-size: 16px;
  line-height: 1.2;
}
.reference-overlay button.danger-none {
  background-color: #d5d703;
}
.reference-overlay button.danger-damage {
  background-color: #f39200;
}
.reference-overlay button.danger-renovation {
  background-color: #f60443;
}
.reference-overlay button.back {
  width: 10px;
  min-height: 67px;
  background-color: #f70444;
  color: #ffffff;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  position: absolute;
  left: -30px;
  padding: 30px 12px;
}
.reference-overlay button.back span.glyphicon {
  font-size: 26px;
  top: 20px;
  right: 0;
}
.reference-overlay button .text {
  max-width: 270px;
}
.reference-overlay button span.glyphicon {
  font-size: 30px;
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 21px;
}
.reference-overlay .page1.out {
  animation-name: bouncePageOut;
  animation-direction: reverse;
  animation-timing-function: ease-in;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  position: absolute;
}
.reference-overlay .page1.in {
  animation-name: bouncePageIn;
  animation-direction: normal;
  animation-timing-function: ease-in;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  position: static;
}
@keyframes bouncePageOut {
  0% {
    transform: translateX(-430px);
  }
  60% {
    transform: translateX(0px);
  }
  80% {
    transform: translateX(15px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes bouncePageIn {
  0% {
    transform: translateX(-430px);
  }
  60% {
    transform: translateX(0px);
  }
  80% {
    transform: translateX(15px);
  }
  100% {
    transform: translateX(0px);
  }
}
.reference-overlay.full .headline {
  display: inline-block;
  max-width: 400px;
}
.reference-overlay.full .page1 button {
  border-radius: 5px;
  width: 400px;
  max-width: 97vw;
}
.reference-overlay.full .page1 button span.glyphicon {
  right: 45px;
}
.reference-overlay .page2 .content {
  display: none;
  transform: translateX(430px);
}
.reference-overlay .page2 .content.active {
  display: block;
  transform: translateX(0px);
}
.reference-overlay .page2 .content h3 {
  color: #fff;
  font-weight: 600;
  text-align: left;
}
.reference-overlay .page2 .content .wysiwyg,
.reference-overlay .page2 .content .text {
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 600;
}
.reference-overlay .page2 .content .text {
  padding-right: 10px;
}
.reference-overlay .page2 .content p,
.reference-overlay .page2 .content ul,
.reference-overlay .page2 .content li {
  color: #000000;
  text-align: left;
}
.reference-overlay .page2 .content ul {
  padding: 0 20px;
}
.reference-overlay .page2 .content ul li {
  margin: 5px 0;
}
.reference-overlay .page2 .content.in {
  display: block;
  animation-name: bounceContentIn;
  animation-direction: normal;
  animation-timing-function: ease-in;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}
.reference-overlay .page2 .content.out {
  display: block;
  animation-name: bounceContentOut;
  animation-direction: reverse;
  animation-timing-function: ease-in;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}
@keyframes bounceContentIn {
  0% {
    transform: translateX(430px);
  }
  60% {
    transform: translateX(0px);
  }
  80% {
    transform: translateX(15px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes bounceContentOut {
  0% {
    transform: translateX(430px);
  }
  60% {
    transform: translateX(0px);
  }
  80% {
    transform: translateX(15px);
  }
  100% {
    transform: translateX(0px);
  }
}
.reference-overlay [data-id="interactivegraphic-add-to-cart"] {
  margin-top: 20px;
  background-color: #779229;
  display: flex;
  padding: 10px 20px;
  margin-bottom: 20px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  width: 100%;
  text-align: center;
  color: #ffffff !important;
  text-decoration: none;
  line-height: 26px;
}
.reference-overlay [data-id="interactivegraphic-add-to-cart"] .icon {
  display: flex;
  margin-left: auto;
  align-self: center;
  font-size: 26px;
  position: relative;
  right: -15px;
}
.reference-overlay .overlay-inner {
  max-height: 35vh;
  margin-bottom: 20px;
  padding-right: 15px;
}
.reference-overlay h3 {
  color: #fff;
  font-size: 26px;
  font-weight: bold !important;
  padding-left: 25px;
}
.reference-overlay ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.reference-overlay ul li {
  margin: 0;
  padding: 3px 5px 3px 5px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  background-color: transparent;
}
.reference-overlay ul li a,
.reference-overlay ul li a:link {
  font-size: 16px;
  color: #000 !important;
  font-weight: bold;
  text-decoration: none;
}
.bb_crb_container .reference-overlay ul li a,
.bb_crb_container .reference-overlay ul li a:link {
  color: #000 !important;
}
.reference-overlay ul li:hover,
.reference-overlay ul li:active {
  background-color: #efe;
}
.ig-overlay-close {
  width: 45px;
  height: 45px;
  background-color: #95c11f;
  border-radius: 50%;
  border: 2px solid #fff;
  z-index: 90;
  position: absolute;
  top: -15px;
  left: -15px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .ig-overlay-close {
    top: 0;
    left: 0;
  }
}
.ig-overlay-close:before,
.ig-overlay-close:after {
  content: '';
  width: 25px;
  height: 4px;
  background: #fff;
  position: absolute;
  transform: rotate(45deg);
  top: 18px;
  left: 8px;
}
.ig-overlay-close:after {
  transform: rotate(-45deg);
}
.ig-overlay-close.pull-right {
  left: unset;
  right: -15px;
}
.ig-overlay-close.color-dark {
  background-color: #c0c0c0;
}
.iziModal,
.iziModal[style] {
  z-index: 9999 !important;
}
.iziModal-content img {
  width: 350px;
  border: 2px solid #ffffff;
}
.iziModal-content .slick-arrow {
  position: absolute;
  left: 10px;
  top: 50%;
  margin-top: -18px;
  z-index: 999;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
}
.iziModal-content .slick-arrow:before {
  font-style: normal;
  font-variant-ligatures: normal;
  font-variant-caps: normal;
  font-variant-numeric: normal;
  font-variant-east-asian: normal;
  font-weight: normal;
  font-stretch: normal;
  font-size: 36px;
  line-height: 1;
  font-family: FontAwesome;
  content: "\f053";
  color: #ffffff;
  z-index: 999;
  visibility: visible;
  position: absolute;
  height: 36px;
  top: 0;
  left: 0;
}
.iziModal-content .slick-prev {
  left: 0;
  right: unset;
}
.iziModal-content .slick-prev:before {
  content: "\f053";
}
.iziModal-content .slick-next {
  left: unset;
  right: 0;
}
.iziModal-content .slick-next:before {
  content: "\f054";
}
.iziModal-content .slick-slide {
  align-self: center;
}
.iziModal-content .slick-slide div {
  display: flex;
  justify-content: center;
  width: 100%;
}
.iziModal-content .slick-track {
  display: flex;
  justify-content: center;
}
