.popover-section-wrapper {
  position: relative; padding:0 0 40% 0;
}

.popover-section-wrapper .popover-wrapper {
   max-width:33.33%; position: absolute;
}

.popover-section-wrapper .popover-wrapper__first {
top:55px; left:20%;
}
.popover-section-wrapper .popover-wrapper__second {
top:85px; left:50%;
}

.popover-section-wrapper .popover-wrapper__third {
top:55px; left:80%;
}

.popover-section-wrapper .popover-wrapper__fourth {
top:255px; left:10%;
}
.popover-section-wrapper .popover-wrapper__fifth {
top:285px; left:40%;
}
.popover-section-wrapper .popover-wrapper__sixth {
top:255px; left:70%;
}
.popover-section-wrapper .popover {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius:0;
  position: relative;
  transition: all .4s ease;
}

.popover-section-wrapper .popover:hover {
  cursor: pointer;
}

.popover-section-wrapper .popover:before {
  content: '';
  position: absolute;
  z-index: 1;
  top: -10px;
  bottom: -10px;
  left: -10px;
  right: -10px;
  border-radius:;
  background-color: transparent;
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
  display: block;
}

.popover-section-wrapper .popover:after {
  content: '';
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: -10px;
  right: -10px;
  border: 4px solid #cccccc;
  border-radius:;
  transition: all .4s ease;
}

.popover-section-wrapper .popover span {
  position: relative;
}

.popover-section-wrapper .popover span:before {
  content: '';
  position: absolute;
  top: 7px;
  left: 2px;
  height: 0px;
  width: 3px;
  background: #cccccc;
  transition: all .4s ease .4s;
}

.popover-section-wrapper .popover span:after {
  content: '';
  position: absolute;
  top: 107px;
  left: 2px;
  width: 0px;
  height: 3px;
  background: #cccccc;
  transition: all .4s ease 0s;
}

.popover-section-wrapper .popover.open:before {
  content: none;
}

.popover-section-wrapper .popover.open:after {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.popover-section-wrapper .popover.open span:before {
  height: 100px;
  transition: all .4s ease 0s;
}

.popover-section-wrapper .popover.open span:after {
  width: 245px;
  transition: all .4s ease .4s;
}

.popover-section-wrapper .popover.open + .popover-caption {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.popover-section-wrapper .popover-caption {
  position: relative;
  top: 25px;
  left: 35px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all .4s ease;
}

.popover-section-wrapper .popover-caption .popover-icons {
  position: absolute;
  left: -52px;
  top: 64px;
}

.popover-section-wrapper .popover-caption .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  width: 35px;
  height: 35px;
  border: 2px solid #cccccc;
  border-radius:0;
  transition: all .4s ease;
}

.popover-section-wrapper .popover-caption .icon + .icon {
  margin-top: 10px;
}

.popover-section-wrapper .popover-caption .icon:hover {
  background: #867040;
  color: #fff;
}

.popover-section-wrapper .popover-caption * + p {
  margin-top:5px;
}
/**
* Pulse Keyframes Animation
*/
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: inset 0 0 3px 3px rgba(255, 255, 255, 0.8);
  }
  50% {
    box-shadow: inset 0 0 3px 3px rgba(255, 255, 255, 0.8);
  }
  100% {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
    box-shadow: inset 0 0 3px 3px rgba(255, 255, 255, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: inset 0 0 3px 3px rgba(255, 255, 255, 0.8);
  }
  50% {
    box-shadow: inset 0 0 3px 3px rgba(255, 255, 255, 0.8);
  }
  100% {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
    box-shadow: inset 0 0 3px 3px rgba(255, 255, 255, 0);
  }
}