.pop-registro.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 90%;
  overflow-y: scroll;
  max-height: 700px;
  background-image: url("https://aprodmovistarcomsa.z13.web.core.windows.net/persons/home/pop-ups/registro-de-imei/fondo-popup.webp");
  background-repeat: no-repeat;
  background-size: cover;
}

.popup-close-btn {
  position: absolute;
  top: -12px;
  right: 10px;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 43px;
  color: #0B2739;
}

.pop-registro .title {
  text-align: center;
}

.pop-registro .description {
  text-align: center;
  color: #0B2739;
  padding: 10px 0 30px;
  font-size: 19px;
  line-height: 24px;
}

/* Acordeón */
.acordeon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
}

.acordeon-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.acordeon-header {
  cursor: pointer;
  background-color: #F5F5F5;
  color: #0B2739;
  font-size: 20px;
  font-weight: bold;
  line-height: 24px;
  padding: 15px;
  text-align: center;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}

.acordeon-header .arrow {
  display: inline-block;
  font-size: 16px;
  transition: all .3s ease;
}

.acordeon-header .arrow.open {
  transform: rotate(180deg);
}

.acordeon-content {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 15px;
  height: 254px;
  overflow-y: scroll;
  background-color: #F5F5F5;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}

.acordeon-content.active {
  display: flex;
}

/* Botones y contenido */
.content-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  text-align: center;
}

.content-btn p {
  font-size: 18px;
  color: #0B2739;
}

.content-btn a {
  background-color: #0B2739;
  color: #fff;
  padding: 5px 25px;
  border-radius: 25px;
}

/* Box de registro */
.box-registra {
  background-color: #E6F5FD;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  border-radius: 8px;
  padding: 15px;
  width: 100%;
  max-width: 650px;
  margin: 20px auto 0;
  text-align: center;
  gap: 10px;
}

.box-registra .txt-registra {
  color: #0B2739;
  font-size: 22px;
  line-height: 24px;
}

.box-registra a {
  color: #019DF4;
  font-size: 18px;
  font-weight: 700;
  text-decoration: underline;
}

@media (min-width: 769px) {
  .popup {
    max-width: 800px;
    overflow-y: visible;
    max-height: none;
  }

  .acordeon {
    flex-direction: row;
    align-items: flex-start;
  }

  .content-btn {
    flex-direction: row;
    text-align: left;
    gap: 0;
  }

  .box-registra {
    flex-direction: row;
    text-align: left;
    gap: 0;
  }
}