﻿.force-filled {
    top: 1rem !important;
    left: 0 !important;
    font-size: .6875rem !important;
}

#rcg {
    color: white;
    font-size: 25px;
    font-weight: 400;
    text-align: center;
}

.split-login-right {
    display: none;
}

.split-login-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: relative;
    bottom: 0px;
    width: 100%;
    overflow-x: hidden;
}

.split-login-footer {
    padding-bottom: 2rem;
    font-size: 10px;
}

.validation-summary-errors {
    font-size: 12px;
}

.split-login-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.split-login {
    background: #F2F5F8;
    height: 100vh;
    width: 100vw;
    min-width: 400px;
    min-height: 600px;
}

.login-form {
    max-height: 800px;
    max-width: 600px;
    background: transparent;
}

body {
    margin: 0;
    /*font-family: BlinkMacSystemFont;*/
}

* {
    box-sizing: border-box;
}

.footer-text {
    font-size: 12px;
}

@media (min-width: 1024px) {
    .split-login {
        display: flex;
        flex-direction: row;
    }

    .split-login-right {
        background: linear-gradient(-47deg, #ab47bc 0%, #491874 100%);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        height: 100%;
    }

    .split-login-footer {
        font-size: 14px;
    }

    .split-login-half {
        width: 50%;
    }
}

ul {
    margin-top: 0px;
    margin-bottom: 0px;
}

.text-animation {
    color: #fff;
    opacity: 0;
}

    .text-animation span {
        position: relative;
        top: 10px;
        left: 10px;
        font-size: 30px;
        font-weight: 600;
        opacity: 0;
        text-transform: uppercase;
        animation: fade 400ms ease-in-out forwards;
    }

@keyframes fade {
    0% {
        top: 10px;
        left: 10px;
        filter: blur(10px);
        opacity: 0;
    }

    50% {
        filter: blur(5px);
        opacity: 0.9;
    }

    100% {
        top: 0px;
        left: 0px;
        filter: blur(0px);
        opacity: 1;
    }
}

.steps {
    /*height: 600px;*/
    width: 100%;
    margin: 5px auto 0;
    text-align: center;
}

.content {
    height: 600px;
    width: 70%;
    margin: 10px auto 0;
    text-align: center;
}

.steps input[type=radio] {
    display: none;
}

.steps #step_1:checked ~ .content .content_1 {
    display: block !important;
}

.steps #step_2:checked ~ .content .content_2 {
    display: block !important;
}

.steps #step_3:checked ~ .content .content_3 {
    display: block !important;
}

.steps #step_4:checked ~ .content .content_4 {
    display: block !important;
}

.steps .content > div {
    display: none;
    padding-bottom: 30px;
    position: relative;
}

.steps .content .next {
    bottom: 0;
    color: #969696;
    cursor: pointer;
    right: 0;
    position: absolute;
    text-align: right;
    text-decoration: none;
}

.step:last-of-type .steps .content .next {
    color: #3eb936;
}

.step {
    width: 40px;
    height: 40px;
    display: inline-block;
    border: 4px solid;
    border-radius: 50%;
    font-weight: 600;
    text-align: center;
    line-height: 35px;
    text-decoration: none;
    background-color: #3eb936;
    border-color: #3eb936;
    color: white;
}

    .step span {
        position: relative;
    }

        .step span:before {
            background: #3eb936;
            content: "✓";
            /*font-size: 20px;*/
            left: -2px;
            position: absolute;
        }

    .step:first-of-type {
        /*line-height: 40px;*/
    }

        .step:first-of-type:after {
            transform: translate(-55px, -1px);
        }

    .step:nth-of-type(n+2) {
        margin: 0 0 0 100px;
        transform: translate(0, -4px);
        line-height: 29px;
    }

        .step:nth-of-type(n+2):before {
            width: 75px;
            height: 3px;
            display: block;
            background-color: #3eb936;
            transform: translate(-95px, 21px);
            content: "";
            position: relative;
            top: -5px;
        }

    .step:after {
        width: 150px;
        display: block;
        transform: translate(-55px, 3px);
        color: #969696;
        content: attr(data-title);
        font-weight: 400;
        font-size: 13px;
    }

input:checked ~ .step {
    background-color: white;
    border-color: transparent;
    color: #969696;
}

    input:checked ~ .step:before {
        background-color: white;
    }

    input:checked ~ .step span:before {
        display: none;
    }

input:checked + .step {
    border-color: #9c27b0;
    color: #9c27b0;
}

    input:checked + .step:not(:last-of-type):after {
        color: #9c27b0;
    }

    input:checked + .step:before {
        background: linear-gradient(to right, #3eb936 0%, #9c27b0 100%);
    }

    input:checked + .step:last-of-type {
        background-color: #3eb936;
        border-color: #3eb936;
        color: white;
    }

        input:checked + .step:last-of-type:before {
            background: #3eb936;
        }

        input:checked + .step:last-of-type span:before {
            display: block;
        }

#completion {
    width: 20%;
    height: 20%;
    margin: auto;
    display: block;
}

@keyframes hideshow {
    0% {
        opacity: 0.2;
    }

    10% {
        opacity: 0.2;
    }

    15% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}

#cirkel {
    animation: hideshow 0.4s ease;
}

#check {
    animation: hideshow 0.4s ease;
}

#stars {
    animation: hideshow 1.0s ease;
    opacity: 0.9;
}


@keyframes hideshow {
    0% {
        transform: scale(0.2);
        transform-origin: initial;
    }

    100% {
        transform: scale(1.0);
        transform-origin: initial;
    }
}

@keyframes draaien {
    0% {
        transform: rotate(40deg);
        transform-origin: initial;
    }

    100% {
        transform: scale(0deg);
        transform-origin: initial;
    }
}

#check {
    animation: draaien 0.8s ease;
}


@keyframes transparant {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#check {
    animation: transparant 2s;
}

.cme-loader-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

    .cme-loader-wrapper .cme-loader {
        display: block;
        margin: -32px 0 0 -32px;
        width: 64px;
        height: 64px;
        position: relative;
        left: 50%;
        top: 50%;
        z-index: 1500;
        overflow: visible;
        fill: none;
    }

        .cme-loader-wrapper .cme-loader g.first, .cme-loader-wrapper .cme-loader g.second, .cme-loader-wrapper .cme-loader g.third {
            transform-origin: 50%;
        }

            .cme-loader-wrapper .cme-loader g.first path, .cme-loader-wrapper .cme-loader g.second path, .cme-loader-wrapper .cme-loader g.third path {
                stroke-width: 3px;
            }

        .cme-loader-wrapper .cme-loader g.first {
            animation: spin 5000ms linear infinite;
        }

            .cme-loader-wrapper .cme-loader g.first path {
                stroke: #9c27b0;
            }

        .cme-loader-wrapper .cme-loader g.second {
            animation: spin 4250ms linear infinite;
        }

            .cme-loader-wrapper .cme-loader g.second path {
                stroke: #ff9800;
            }

        .cme-loader-wrapper .cme-loader g.third {
            animation: spin 3650ms linear infinite;
        }

            .cme-loader-wrapper .cme-loader g.third path {
                stroke: #00bcd4;
            }

@keyframes spin {
    0% {
        /* transform: rotate(0deg); */
    }

    100% {
        transform: rotate(2turn);
    }
}

.bg-white-transaprent {
    background: rgba(255,255,255, 0.5);
}
