* {
    font-family: "Source Sans Pro";
    color: #6d6e71;
}

.container {


    /*   display: block; */
    position: relative;
}

.steps li:before {
    display: block;
        height: 40px;
        width: 55px;
        border-radius: 50%;
        border: 3px solid #60ba47;
        /* color: red; */
        margin: 5px auto;
        text-align: center;
        font-size: 1.2em;
        position: relative;
        top: -8px;
        padding-top: 14px;
}

ul li.step-1:before {
    content: "1";
}
ul li.step-2:before {
    content: "2";
}
ul li.step-3:before {
    content: "3";
}

.selected:before {
    background: #60ba47;
    color: white;
}


fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

legend {
    text-align: center;
    text-transform: uppercase;
}

fieldset legend {
    background: transparent;
    color: #bbb;
}

.hidden {
    display: none;
}

.step {
    text-align: center;
    display: block;
    font-size: 1.6em;
    margin: -5px 0 25px;
    color: #eee;
}

/*label {*/
/*    display: none;*/
/*}*/

.button {
    width: auto;
    font-size: 1.1em;
    margin-bottom: 10px;
}

input[type="text"].text,
input[type="password"].text,
input[type="email"].text {
    padding: 13px;
    font-size: 1em;
    margin-bottom: 20px;
}

.rp {
    margin-right: 0 !important;
}

.lp {
    margin-left: 0 !important;
}

.columns.lp {
    padding-left: 0;
}

.columns.rp {
    padding-right: 0;
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"] + .checklabel span:before {
    font-family: "Font Awesome 5 Free";
    content: "\f14a";
    margin-right: 15px;
    font-weight: 400;
    height: 40px;
    width: 40px;
    font-size: 22px;
    vertical-align: middle;
}

input[type="checkbox"]:checked + .checklabel span:before {
    font-weight: 700;
    font-size: 22px;
}

.checklabel {
    font-size: 1.2em;
    display: block !important;
    color: #fff;
    font-weight: normal;
}

@media only screen and (max-width: 40.063em) {
    .container {
        width: 90%;
    }


    .lp {
        padding-right: 0;
    }

    .rp {
        padding-left: 0;
    }

    .button {
        padding: 10px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .checklabel {
        font-size: 1em;
    }
}
label.invalid {
    display: block;
    background-color: #444;
    margin-top: -15px;
    color: white;
    padding: 5px;
}

.animate-out {
    animation-name: aOut;
    animation-duration: 0.7s;
    animation-fill-mode: forwards;
}
.animate-in {
    animation-name: aIn;
    animation-duration: 0.7s;
    animation-fill-mode: forwards;
}

@keyframes aIn {
    0% {
        opacity: 0;
        transform: perspective(0) translate3d(0, 300px, 0) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: perspective(400px) translate3d(0, 0, 0) scale(1);
    }
}

@keyframes aOut {
    0% {
        opacity: 1;
        transform: perspective(0) translate3d(0, 0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: perspective(400px) translate3d(0, 300px, 0) scale(0.5);
    }
}


.movebtn{
    position: absolute;
    right: 19px;
    left: 1em;
    bottom: 1px;
    background: #358e1d !important;
}
