.rana-footer-menu-wrapper {
  ul {
    display: grid;
    padding: 0;
    justify-items: start;
    gap: 8px;
    a {
      display: flex;
      font-family: var(--e-global-typography-text-font-family), Sans-serif;
      font-size: var(--e-global-typography-text-font-size);
      font-weight: var(--e-global-typography-text-font-weight);
      text-transform: var(--e-global-typography-text-text-transform);
      font-style: var(--e-global-typography-text-font-style);
      text-decoration: var(--e-global-typography-text-text-decoration);
      line-height: var(--e-global-typography-text-line-height);
      color: #fff;
      transition: all 0.4s ease;
      &:hover {
        color: var(--e-global-color-accent);
      }
    }
  }
}

.rana-free-shipping-bar-wrapper {
  &.is-loading {
    pointer-events: none;
    animation: pulse 2s infinite;
  }
}

@keyframes pulse {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.4;
  }
}
