.atp-iframe-wrapper{
    position: relative;
    width: 100%;
    height: 100%;
}

#atp-iframe{
    width: 100%;
    border: none;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    height: 100%;
}

/* Loader */
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 20px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #04315C;
  box-shadow: 0 0 0 0 rgba(4, 49, 92, 0.25);
  animation: l1 1s infinite;
}

@keyframes l1 {
  100% { box-shadow: 0 0 0 30px rgba(4, 49, 92, 0); }
}

.atp-close{
    position: absolute;
    top: 10px;
    right: 10px;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #ffffff;
    color: #04315C;
    border: 2px solid #04315C;

    font-size: 16px;
    font-weight: bold;
    cursor: pointer;

    z-index: 10;
}

/* hover effect */
.atp-close:hover{
    background:#04315C;
    color:#ffffff;
}

/* iframe {
    width: 100%;
    border: none;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 24px;
}

.iframe-loading {
    position: relative;
}

.iframe-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px;
    border: 4px solid rgba(0,0,0,.1);
    border-top-color: rgba(0,0,0,.5);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
}

@keyframes spin {
    to { transform: rotate(360deg); }
} */
