/* Rextel Telecomunicaciones - branding overlay, no afecta el layout del widget */
.rextel-header {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.rextel-header-logo {
  display: block;
  height: 46px;
  width: auto;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  transition: transform 0.15s ease-in-out;
}

.rextel-header-logo:hover {
  transform: scale(1.06);
}

@media only screen and (max-width: 480px) {
  .rextel-header {
    top: 8px;
    left: 8px;
  }
  .rextel-header-logo {
    height: 34px;
  }
}

.rextel-footer-tagline {
  margin: 0 0 6px 0;
}

.rextel-footer-contact {
  margin: 0 0 6px 0;
}

.rextel-footer-contact a {
  color: #ef7912;
  text-decoration: none;
}

.rextel-footer-contact a:hover {
  color: #1c265f;
}

.rextel-footer-static {
  color: rgb(125, 119, 119);
}

.rextel-icon {
  width: 13px;
  height: 13px;
  vertical-align: -2px;
}

@media only screen and (max-width: 480px) {
  .rextel-footer-contact {
    display: block;
    line-height: 2.1;
  }
}

.rextel-retry-btn {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  color: #ef7912;
  font-family: Roboto-Medium, Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 15px;
  white-space: nowrap;
  cursor: pointer;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.15s ease;
}

.rextel-retry-btn svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.rextel-retry-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.rextel-retry-btn:hover {
  color: #1c265f;
}
