.popup-xbox {
  display: none;
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.popup-xbox-content {
  position: relative;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  height: 274px;
  max-width: 360px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background-image: url(https://aprodmovistarcomsa.z13.web.core.windows.net/persons/home/pop-ups/assets/bg_mb_popup_xbox.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
}

/* Texto y títulos */
.tittlexbox {
  font-size: 1.2rem;
  color: #477B23;
  font-weight: bold;
  margin: -15px 0 -26px 0;
}

.textxbox {
  font-size: 11px;
  line-height: normal;
  margin: 10px 0;
}

/* Imagen del texto */
.popup-xbox-text img {
  max-width: 100%;
  margin: 0;
}

/* Botones */
.popup-xbox-button {
  background-color: #019DF4;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 7px 25px;
  font-size: 11px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.popup-xbox-button:hover {
  background-color: #0056b3;
}

.popup-xbox-close {
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 24px;
  font-weight: bold;
  color: black;
  cursor: pointer;
}

@media only screen and (min-width: 769px) {
  .popup-xbox-content {
    height: 369px;
    max-width: 600px;
    background-image: url(https://aprodmovistarcomsa.z13.web.core.windows.net/persons/home/pop-ups/assets/bg_popup_xbox.webp);
  }

  .textxbox {
    font-size: 16px;
    margin: 10px 52px;
  }

  .tittlexbox {
    font-size: 1.8rem;
  }
}