.gifPlayButton {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  display: flex;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (min-width:  768px) {
  .exampleTab {
    position: absolute;
    top: -40px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    padding: 10px 30px;
    height: 80px;
  }
}

@media (max-width:  767px) {
  .exampleTab {
    position: absolute;
    top: -32px;
    left: 10px;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    padding: 5px 20px;
    height: 80px;
  }
}

