.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%;
  -o-object-fit: cover;
  object-fit: cover;
}

.tb-glanimation__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.tb-glanimation__btn a {
  color: #FFFFFF !important;
}

.tb-glanimation__btn svg, .tb-glanimation__btn img {
  width: 164px;
  height: 164px;
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
  cursor: pointer;
  opacity: 1;
}

@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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.tb-gl-spinnerwrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  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;
  -webkit-animation: 1s glspin ease-in-out infinite;
  animation: 1s glspin ease-in-out infinite;
  position: fixed;
  position: -webkit-sticky;
  position: sticky;
  margin: auto;
}

@-webkit-keyframes glspin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes glspin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
