/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container:after {
  content: '';
  display: table;
  clear: both;
}

.cd-img-replace {
  /* replace text with background images */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

/*Line Tooltip*/

@import url(//fonts.googleapis.com/css?family=Satisfy);

.tooltip-xe {
  display: inline;
  position: relative;
  z-index: 999;
}

/* Gap filler */
.tooltip-xe::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 20px;
  bottom: 100%;
  left: 50%;
  pointer-events: none;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.tooltip-xe:hover::after {
  pointer-events: auto;
}

/* Tooltip General*/

.cd-single-tooltip {
  position: absolute;
  cursor: pointer;
  transition: all 0.2s ease-out;
  z-index: 999;
  list-style: none;
}

.cd-single-tooltip:hover {
  transform: translate(0, -10px);
}

.cd-single-tooltip.active {
  z-index: 9999;
}

.tooltip-icon {
  width: 100%;
  max-width: 50px;
  padding: 5px;
}

.cd-single-tooltip:nth-of-type(1) {
  bottom: 60%;
  left: 35%;
}

.cd-single-tooltip:nth-of-type(2) {
  bottom: 72%;
  left: 55.5%;
}

.tooltip-description {
  min-height: 150px;
  font-size: 14px;
  text-align: left;
  color: #000;
}

.tooltip-description p {
  /*  overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;*/
}

.tooltip-description h3 {
  margin-top: 0;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 5px;
}

.tooltip-description h4 {
  font-weight: bold;
  color: grey;
  font-size: 14px;
  margin-top: 12px;
}

.tooltip-description a.more {
  color: #ffb900;
  font-weight: bold;
}

.tooltip-description a:hover {
  color: #000;
}

.tooltip-description a.bt {
  display: block;
  float: left;
  background: #ffb900;
  color: #000;
  margin-top: 10px;
  margin-right: 10px;
  padding: 5px 15px 5px 15px;
  /*font-weight: bold;*/
  text-align: center;
  cursor: pointer;
}

.tooltip-description a.bt:hover {
  background: #707172;
  color: #fff;
}

.pic-1 {
  background: url(/wp-content/plugins/custom-cornerstone-elements/includes/si-xenon-technology-line/img/Xenon_Robot_1.jpg);
}

.pic-2 {
  background: url(/wp-content/plugins/custom-cornerstone-elements/includes/si-xenon-technology-line/img/Erwaermen_Vorb.jpg);
}

.tooltip-img {
  display: inline-block;
  width: 35%;
  min-height: 150px;
  margin-right: 20px;
  float: left;
  background-position: center;
  background-size: cover;
}

.cd-single-tooltip .tooltip-xe:hover .tooltip-content {
  opacity: 1;
  box-shadow: 0 0 15px rgb(0 0 0 / 30%);
  pointer-events: auto;
  transition-property: opacity, box-shadow;
  transition-delay: 0.3s, 0.75s;
}

.cd-single-tooltip .tooltip-content span {
  display: block;
}

/* Tooltip Left Right*/

.cd-single-tooltip.ltr .tooltip-content {
  position: absolute;
  z-index: 9999;
  width: 600px;
  bottom: calc(-100% - 50px);
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  font-weight: 400;
  background: transparent;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0);
  opacity: 0;
  margin: 0 0 0 0;
  cursor: default;
  pointer-events: none;
  -webkit-font-smoothing: antialiased;
  transition-duration: 0.3s;
  transition-property: opacity, box-shadow;
}

.cd-single-tooltip.ltr .tooltip-text {
  border-left: 10px solid #ffb900;
  overflow: hidden;
  -webkit-transform: scale3d(1, 0, 1);
  transform: scale3d(1, 0, 1);
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-transition: -webkit-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
}

.cd-single-tooltip.ltr .tooltip-xe:hover .tooltip-text {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.cd-single-tooltip.ltr .tooltip-inner-xe {
  width: 100%;
  background: rgba(255, 255, 255, 1);
  padding: 20px 20px 20px 20px;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
  webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}

.cd-single-tooltip.ltr .tooltip-xe:hover .tooltip-inner-xe {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.cd-single-tooltip.ltr .tooltip-content::after {
  content: '';
  left: -10px;
  top: calc(50% - 5px);
  border: solid transparent;
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: transparent;
  border-right-color: #ffb900;
  border-width: 10px;
  margin-left: -10px;
}

/* Tooltip Bottom Up*/

.cd-single-tooltip.btt .tooltip-content {
  position: absolute;
  z-index: 9999;
  width: 600px;
  left: calc(50% + 5px);
  bottom: calc(100% + 35px);
  padding-bottom: 0px;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  font-weight: 400;
  background: transparent;
  opacity: 0;
  margin: 0 0 0 -300px;
  cursor: default;
  pointer-events: none;
  -webkit-font-smoothing: antialiased;
  -webkit-transition: opacity 0.3s 0.3s;
  transition: opacity 0.3s 0.3s;
}

.cd-single-tooltip.btt .tooltip-text {
  border-bottom: 10px solid #ffb900;
  overflow: hidden;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-transition: -webkit-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
}

.cd-single-tooltip.btt .tooltip-xe:hover .tooltip-text {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.cd-single-tooltip.btt .tooltip-inner-xe {
  width: 100%;
  max-width: none;
  background: rgba(255, 255, 255, 1);
  padding: 20px 20px 20px 20px;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
  webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}

.cd-single-tooltip.btt .tooltip-xe:hover .tooltip-inner-xe {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.cd-single-tooltip.btt .tooltip-content::after {
  content: '';
  left: calc(50% - 5px);
  border: solid transparent;
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: transparent;
  border-top-color: #ffb900;
  border-width: 10px;
  margin-left: -10px;
}
