@charset "UTF-8";

/* Style the monopay button */
.monopay-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #ffffff;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  font-family: Helvetica Neue,sans-serif;
  font-size: 18px;
  height: 48px;
  width: 100%;
  margin-bottom: 24px;
  line-height: 19.55px;
}

.plata-box {
  margin-left: 6px;
}

.monopay-btn span {
  display: flex;
  align-items: center;
}

#monopay-iframe-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

/* Style the iframe */
.styled-iframe {
  width: 600px;
  height: 600px;
  border-radius: 16px;
  border: none;
  background: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}