.social-post-generator-buttons-wrapper button {
    display: inline-block;
    margin-top: 20px;
}

.social-post-generator-dnone, button.social-post-generator-dnone {
    display: none;
}


#social-post-generator-output ul {
  padding-left: 1.5em;
  margin-bottom: 1em;
  list-style-type: disc !important;
}

/*
add this to format OL
*/

#social-post-generator-output ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
  list-style-type: decimal !important;
}


ul#social-post-generator-loader {
    width: 300px;
    list-style: none;
    padding: 0;
}

ul#social-post-generator-loader li {
    width: 5%;
    height: 5px;
    background-color: rgba(255,255,255,0.5);
    margin: 20px 0;
    border-radius: 20px;
    animation: loader 5s linear infinite;
}

ul#social-post-generator-loader li:nth-child(1) {
    animation-delay: 0.3s;
}

ul#social-post-generator-loader li:nth-child(2) {
    animation-delay: 0.5s;
}

ul#social-post-generator-loader li:nth-child(3) {
    animation-delay: 0.8s;
}

ul#social-post-generator-loader li:nth-child(4) {
    animation-delay: 0.2s;
}

ul#social-post-generator-loader li:nth-child(5) {
    animation-delay: 0.9s;
}

ul#social-post-generator-loader li:nth-child(6) {
    animation-delay: 0.1s;
}

ul#social-post-generator-loader li:nth-child(7) {
    animation-delay: 0.8s;
}

ul#social-post-generator-loader li:nth-child(8) {
    animation-delay: 0.4s;
}

@keyframes loader {
    0% {
        width: 10%;
    }

    30% {
        width: 70%;
    }

    50% {
        width: 30%;
    }

    65% {
        width: 90%;
    }

    85% {
        width: 100%;
        background-color: var(--ast-global-color-8);
    }

    100% {
        width: 5%;
    }
}

.social-post-generator-block .social-post-generator-form-wrapper {
    display: flex;
    flex-direction: column;
    margin: 0 -20px 40px;
}
.social-post-generator-block .social-post-generator-form-controller {
    width: 50%;
    padding: 0 20px;
    margin-bottom: 15px
}
.social-post-generator-block .social-post-generator-fullwidth {
    width: 100%;
}
.social-post-generator-block .social-post-generator-form-controller input {
    display: block;
    width: 100%;
    height: 20px;
}
.social-post-generator-block .social-post-generator-form-controller button {
    margin-top: 10px;
}

.social-post-generator-block input:focus {
    outline: transparent;
}

@media (max-width: 575.98px) {
    .social-post-generator-block .social-post-generator-form-controller {
        width: 100%;
    }
}

.social-post-generator-blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% { opacity: 0; }
}
