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

@keyframes bounceIn{
    0%{
        opacity: 0;
        transform: scale(0.3);
    }
    50%{
        opacity: 0.9;
        transform: scale(1.3);
    }
    80%{
        opacity: 1;
        transform: scale(0.9);
    }
    100%{
        opacity: 1;
        transform: scale(1);
    }
}

.bounce-in {
    opacity: 0;
    animation-name: bounceIn;
    animation-duration: 350ms;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    animation-delay: .1s;
}

.ape-rep-root {
    position: relative;
}

.ape-rep-loader {
    position: absolute;
    bottom: 60px;
    right: 0;
    left: 0;
    margin: 0 auto;

    border-radius: 50%;
    width: 24px;
    height: 24px;
    border: 0.25rem solid rgba(255, 255, 255, 0.2);
    border-top-color: white;
    animation: spin 1s infinite linear;

    transition: opacity .3s;
    opacity: 0;
}

.ape-rep-result-wrapper {
    opacity: 0;
    transform: scale(0);
    transition: all .3s;
}
.ape-rep-result-wrapper.enabled {
    opacity: 1;
    transform: scale(1);
}

#ape-rep-submit {
    position: relative;
    transition: all .3s;
    opacity: 1;
    transform: scale(1);
}

#ape-rep-submit.loading, #ape-rep-submit.disabled {
    opacity: 0;
    transform: scale(0);
}

.ape-rep-loader.enabled {
    opacity: 1;
}

.ape-rep-result-help {
    opacity: 0;
    transition: opacity .3s .7s;
}
.ape-rep-result-help.enabled {
    opacity: 1;
}

.ape-petition-form-field-country,
.ape-petition-form-field-postcode,
.ape-petition-form-field-city,
.ape-petition-form-field-street {
    display: none;
}