/* Static loading placeholder for the rediff.com mail iframe widgets - paints before the JS bundle
   loads/parses/executes and before redux-persist rehydration, both of which delay first paint.
   Shaped to match MailRediffPayDueBillsCompactTile's real "PAY" categories layout so the swap
   from placeholder to real content is visually obvious when testing. */
@keyframes iframe-shell-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.iframe-shell-skeleton, .pay-skel-icon, .pay-skel-text, .pay-skel-label {
  background-color: #f5f5f5;
  animation: iframe-shell-pulse 1.5s ease-in-out infinite;
}
.iframe-shell-skeleton {
  box-sizing: border-box;
  border-radius: 15px;
  font-family: Roboto, Arial, sans-serif;
}
.mail-skel-wrapper {
  display: flex;
  justify-content: center;
}
.mail-skel-box {
  width: 300px;
  height: 130px;
}
.pay-skel-outer {
  width: 300px;
  margin: 6px auto 0;
  position: relative;
  font-family: Roboto, Arial, sans-serif;
}
.pay-skel-label {
  position: absolute;
  top: -5px;
  left: 16px;
  width: 28px;
  height: 10px;
  border-radius: 3px;
  background-color: #fff;
  z-index: 1;
}
.pay-skel-label::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #e8e8e8;
  border-radius: 3px;
}
.pay-skel-tile {
  box-sizing: border-box;
  height: 70px;
  border: 1.5px solid #d6d6d6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 4px;
  background-color: #fff;
}
.pay-skel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 6px;
}
.pay-skel-icon {
  width: 22px;
  height: 20px;
  border-radius: 4px;
}
.pay-skel-text {
  width: 65%;
  height: 7px;
  border-radius: 3px;
}
.pay-skel-divider {
  width: 1px;
  height: 30px;
  background-color: #e0e0e0;
}
.pay-skel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 6px;
}
.pay-skel-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #d0d0d0;
}
.pay-skel-dots span.active {
  background-color: #fff;
  border: 1px solid #d0d0d0;
}
