.tb-glanimation-container {
  position: relative;
  text-align: center;
  margin: 16px 0;
  padding: 0 8px;
}

.tb-glanimation__img {
  background: #393939;
  cursor: pointer;
}
.tb-glanimation__img img {
  max-width: 100%;
  opacity: 60%;
  object-fit: cover;
}

.tb-glanimation__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.tb-glanimation__btn a {
  color: #FFFFFF !important;
}
.tb-glanimation__btn svg,
.tb-glanimation__btn img {
  width: 164px;
  height: 164px;
  transition: transform 0.5s ease;
  cursor: pointer;
  opacity: 1;
}

.tb-glanimation__helptext {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 600;
  display: block;
  max-width: 300px;
  text-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
  cursor: pointer;
}
@media only screen and (max-width: 1024px) {
  .tb-glanimation__helptext {
    max-width: 20px;
  }
}

@media only screen and (max-width: 1024px) {
  .tb-glanimation-container {
    margin: 12px 0;
    padding: 0 8px;
  }
}
@media only screen and (max-width: 767px) {
  .tb-glanimation-container {
    margin: 8px 0;
    padding: 0 16px;
  }
  .tb-glanimation-container .tb-glanimation__btn svg,
  .tb-glanimation-container .tb-glanimation__btn img {
    width: 104px;
    height: 104px;
  }
}
.tb-gl-loaderwrapper {
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}

.tb-gl-spinnerwrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
}

.tb-gl-spinner {
  width: 10rem;
  height: 10rem;
  display: inline-block;
  border: 5px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: #f8f8f8;
  margin-bottom: 10rem;
  animation: 1s glspin ease-in-out infinite;
  position: fixed;
  position: -webkit-sticky;
  position: sticky;
  margin: auto;
}

@keyframes glspin {
  to {
    transform: rotate(360deg);
  }
}
