﻿.loader {
    display: inline-block;
    width: 1.2vw;
    height: 1.2vw;
    border: 0.2vw solid white;
    border-top: 0.2vw solid #00b262;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
    margin-left: 0.5vw;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#loading-text {
    font-size: 1vw;
}

#go-to-next-step.disabled {
    background-color: #a8a8a8;
    pointer-events: none;
}
