.autocheck {
    cursor: pointer;
    margin-bottom: 10px;
}

.loading {
    position: absolute;
    border: 16px solid #b7b7b7; /* Light grey */
    border-top: 16px solid #e21d25; /* Red */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

#iframe-loading {
    top: 50px;
    left: calc(50% - 60px);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#ac-iframe {
    height: 500px;
    overflow-x: hidden;
    overflow-y: auto;
}

@media (min-width: 350px) {
    #ac-iframe {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    /*.ie span {
        text-indent: 15px;
    }

    .ie span:nth-child(1) {
        text-indent: 99px;
    }*/
}