/***************************************
          VIDEO ICON STYLE 
****************************************/
.topppa-play-icon {
  display: inline-block;
  position: relative;
  z-index: 1;
  text-align: center;
  background: var(--topppa-color-primary);
  color: var(--topppa-color-white);
  border-radius: 50%;
  z-index: 1;
  transition: all ease 0.4s;
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Font Awesome 5 Free";
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
}
.topppa-play-icon svg {
  width: 17px;
  height: 17px;
}
.topppa-play-icon svg path {
  fill: var(--topppa-color-white);
}
.topppa-play-icon:after, .topppa-play-icon:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: var(--topppa-color-primary);
  z-index: -1;
  border-radius: 50%;
  transition: all ease 0.4s;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-name: ripples;
}
.topppa-play-icon:after {
  transition: all ease 0.4s;
  animation-duration: 2.5s;
}

@keyframes ripples {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
.topppa-video-button2-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: max-content;
}
.topppa-video-button2-wrapper input {
  width: 230px;
  height: 40px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 40px;
  outline: none;
  z-index: 2;
  appearance: none;
  cursor: pointer;
}
.topppa-video-button2-wrapper input:focus {
  outline: 0;
}
.topppa-video-button2-wrapper input:hover ~ .topppa-video-image {
  clip-path: circle(70px at left);
}
.topppa-video-button2-wrapper input:hover ~ .topppa-video-text::before {
  right: 0px;
  opacity: 1;
}
.topppa-video-button2-wrapper input:hover ~ .topppa-video-text::after {
  clip-path: circle(70px at left);
}
.topppa-video-button2-wrapper input:hover ~ .topppa-video-text > span::after {
  clip-path: circle(70px at left);
}
.topppa-video-button2-wrapper .topppa-video-image {
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
  clip-path: circle(20px at left);
  transition: clip-path 0.4s ease;
}
.topppa-video-button2-wrapper .topppa-video-image img {
  position: absolute;
  background: #c4cbde;
  top: 0%;
  left: 0%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-40%, -45%);
}
.topppa-video-button2-wrapper .topppa-video-text {
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2px;
  opacity: 1;
  transition: opacity 0.3s ease 0.2s;
}
.topppa-video-button2-wrapper .topppa-video-text::before, .topppa-video-button2-wrapper .topppa-video-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -1px;
  right: 25px;
  height: 0;
}
.topppa-video-button2-wrapper .topppa-video-text::before {
  border-bottom: 1px solid var(--topppa-color-secondary);
  right: 100%;
  opacity: 0;
  transition: right 0.5s ease-in, opacity 0.1s linear;
}
.topppa-video-button2-wrapper .topppa-video-text::after {
  border-bottom: 1px solid var(--topppa-color-white);
  clip-path: circle(20px at left);
  transition: clip-path 0.4s ease;
  opacity: 0;
}
.topppa-video-button2-wrapper .topppa-video-text > span::before, .topppa-video-button2-wrapper .topppa-video-text > span::after {
  content: attr(data-text);
  padding-left: 0px;
}
.topppa-video-button2-wrapper .topppa-video-text > span::before {
  color: var(--topppa-color-secondary);
}
.topppa-video-button2-wrapper .topppa-video-text > span::after {
  color: var(--topppa-color-white);
  clip-path: circle(20px at left);
  transition: clip-path 0.4s ease;
  position: absolute;
  left: 0;
}
.topppa-video-button2-wrapper:hover .topppa-video-text::after {
  opacity: 1;
}

.topppa-video-icon-wrp.style-two {
  width: max-content;
}
.topppa-video-icon-wrp.style-three {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 100px;
  background: var(--topppa-color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 10px solid var(--topppa-color-white);
}
.topppa-video-icon-wrp.style-three .topppa-circle-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: video_rotate 15s linear infinite;
}
.topppa-video-icon-wrp.style-three .topppa-circle-text text {
  letter-spacing: 3px;
  fill: var(--topppa-color-white);
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.topppa-video-icon-wrp.style-three .topppa-circle-text svg {
  width: 100%;
  height: 100%;
}
.topppa-video-icon-wrp.style-three .topppa-circle-icon {
  position: relative;
  color: var(--topppa-color-white);
  font-size: 24px;
  z-index: 2;
  transition: transform 0.3s ease;
}
.topppa-video-icon-wrp.style-three .topppa-circle-icon:hover {
  transform: scale(1.1);
}

@keyframes video_rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}