/* Generic styles */
.gb_block_hidden {
  display: none !important;
  visibility: hidden;
}

.skeleton_text {
  display: block !important;
  height: 18px;
  border-radius: 0.4rem;
  width: 100%;
}

.gb_loading {
  display: flex;
  width: 100%;
}

.skeleton_animation {
  animation: shimmer 2s infinite linear;
  background: linear-gradient(to right, #eff1f3 4%, #e2e2e2 25%, #eff1f3 36%);
  background-size: 1000px 100%;
}

.gb_feature_blocked {
  position: relative;
  pointer-events: none;
  cursor: default;
}

.gb_feature_blocked > div {
  filter: blur(6px);
}

.gb_feature_blocked__text {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-weight: 600;
  width: 100%;
  text-align: center;
}

.gb_feature_blocked .gb_feature_blocked__text {
  display: inline;
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}


/* Account points block */
.gb_acc_pnts__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  gap: 12px;
  width: 100%;
}

.gb_acc_pnts_content__container {
  display: flex;
  flex-direction: column;
  align-items: start;
  font-size: 16px;
}

.gb_acc_pnts__icon {
  max-width: 40px;
  height: 100%;
}

.gb_acc_pnts_content__title {
  font-weight: 600;
  margin: 0;
}

.gb_acc_pnts_content__description {
  margin: 0;
}

.gb_acc_pnts_content__cta {
  text-decoration: none;
  margin-inline-start: auto;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.25s ease;
}

@media screen and (max-width: 576px) {
  .gb_acc_pnts_content__cta {
    margin: 0;
  }
}

/* Account points block */
.gb_prdct_pnts__container {
  display: flex;
  gap: 12px;
  width: 100%;
  align-items: center;
}

.gb_prdct_pnts__text {
  margin: 0;
  font-size: 16px;
}

.gb_prdct_pnts__icon {
  max-width: 40px;
  height: 100%;
}

/* Account points block */
.gb_cart_pnts__container {
  display: flex;
  gap: 12px;
  width: 100%;
  align-items: center;
}

.gb_cart_pnts__text, .gb_cart_pnts__login {
  margin: 0;
  font-size: 16px;
}

.gb_cart_pnts__icon {
  max-width: 40px;
  height: 100%;
}
