.pointer {
    height: 100px;
    width: 100px;  
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    font-size: 30px;
    border-radius: 50%;
    background: #fff;
    line-height: 100px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 0 0 rgb(255,255,255);
    animation: xpulse 2s infinite;
}
.pointer span {
    color: #2a3f76;
    text-align: center;
    display: block;
    width: 100px;
}
@-webkit-keyframes xpulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0.9);
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(255,255,255, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0);
    }
}

@keyframes xpulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255,255,255, 0.9);
        box-shadow: 0 0 0 0 rgba(255,255,255, 0.9);
    }

    70% {
        -moz-box-shadow: 0 0 0 10px rgba(255,255,255, 0);
        box-shadow: 0 0 0 10px rgba(255,255,255, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255,255,255, 0);
        box-shadow: 0 0 0 0 rgba(255,255,255, 0);
    }
}

.play_icon {
  width: 100px;
  height: 100px;    
  padding 50px;
  border-radius: 50%;  
  vertical-align: center;
  color: #154986;
  font-size: 30px;
  background-color: white;
}
#video-popup-container {
  display:none;
  position: fixed;
  z-index: 996;
  width: 60%;
  left: 50%;
  margin-left: -30%;
  top: 20%;
  background-color: #fff;
}

#video-popup-close {
  cursor: pointer;
  position: absolute;
  right: -10px;
  top: -10px;
  z-index: 998;
  width: 25px;
  height: 25px;
  border-radius: 25px;
  text-align: center;
  font-size: 12px;
  background-color: #000;
  line-height: 25px;
  color: #fff;
}

#video-popup-iframe-container {
  position: absolute;
  z-index: 997;
  width: 100%;
  padding-bottom: 56.25%;
  border: 2px solid #000;  
  border-radius: 2px;
  background-color: #000;
}

#video-popup-iframe {
  z-index: 999;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #000;
}

#video-popup-overlay {
  display: none;
  position: fixed;
  z-index: 995;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.8;
  width: 100%;
  height: 100%;  
}

#video-popup-close:hover {
  color: #DE0023;
}