.atplg-frontend {
    padding: 20px;
    border: 1px solid #ccc;
    margin: 10px 0;
}
.atplg-frontend img {
    display: block;
    margin-top: 10px;
}

.spinner {
    max-width: 92px;
    float: left;
    clear: both;
    display: flex;
    padding: 10px 16px;
    align-items: flex-start;
    gap: 8px;
    border-radius: 20px 20px 20px 0;
    background: #F6F6F6;
}

#atplg-toggle-close {
    position: absolute;
    right: -3px;
    top: -3px;
}

/* estilo de cada círculo */
.circle {
    width: 12px;
    height: 12px;
    aspect-ratio: 1/1;    
    background-color: #C3C3C3; /* color inicial */
    border-radius: 50%;
    animation: pulse 1s infinite;
}

/* aplicar retraso a cada círculo */
.circle:nth-child(1) {
    animation-delay: 0s;
}
.circle:nth-child(2) {
    animation-delay: 0.2s;
}
.circle:nth-child(3) {
    animation-delay: 0.4s;
}

.inline {
    flex-flow: row !important;
}

/* animación */
@keyframes pulse {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.4;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.d-none {display:none;}
.clicked, .disabled.clicked, .disabled.clicked:hover {
    background-color: #008900 !important;
    border-color: #008900 !important;
    color: #fdfdfd !important;
}

.disabled, .disabled:hover {
    background-color: #fdfdfd !important;
    border-color: #008900 !important;
    color: #008900 !important;
}

.d-flex {display: flex;}

#atplg-init-container {
    display: flex;
    gap: 8px;
    align-items: center;
}