﻿@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

::selection {
    color: #fff;
    background: #00aeef;
}

/*.step-container {
    padding: 20px 50px;
}*/

.step-container header {
    font-size: 35px;
    font-weight: 600;
    margin: 0 0 30px 0;
}

.step-container .form-outer {
    width: 100%;
    overflow: hidden;
    height: 100%;
}

    .step-container .form-outer .views {
        display: flex;
        width: 400%;
        height: 100%;
    }

.form-outer .views .page {
    width: 25%;
    transition: margin-left 0.3s ease-in-out;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
}

    .form-outer .views .page .title {
        text-align: left;
        font-size: 25px;
        font-weight: 500;
    }

/*.form-outer .views .page .field {
    width: 330px;
    height: 45px;
    margin: 45px 0;
    display: flex;
    position: relative;
}*/

.views .page .field .label {
    position: absolute;
    top: -30px;
    font-weight: 500;
}

.views .page .field input {
    height: 100%;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 5px;
    padding-left: 15px;
    font-size: 18px;
}

.views .page .field select {
    width: 100%;
    padding-left: 10px;
    font-size: 17px;
    font-weight: 500;
}

/*.views .page .field button {
    width: 100%;
    height: calc(100% + 5px);
    border: none;
    background: #d33f8d;
    margin-top: -20px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.5s ease;
}*/

/*.views .page .field button:hover {
    background: #000;
}*/

/*.views .page .btns button {
    margin-top: -20px !important;
}*/

.views .page .btns button.prev {
    font-size: 22px;
}

.views .page .btns button.next {
    margin-left: 3px;
}

.step-progress-bar {
    display: flex;
    margin: 15px 0;
    user-select: none;
}

    .step-progress-bar .step {
        text-align: center;
        width: 100%;
        position: relative;
    }

        .step-progress-bar .step p {
            font-weight: 500;
            font-size: 18px;
            color: #d1d1d1;
            margin-bottom: 8px;
        }

        .step-progress-bar .step .bullet {
            height: 25px;
            width: 25px;
            border: 2px solid #00000029;
            display: inline-block;
            border-radius: 50%;
            position: relative;
            transition: 0.2s;
            font-weight: 500;
            font-size: 13px;
            line-height: 20px;
        }

            .step-progress-bar .step .bullet.active {
                border-color: #00AEEF;
                background: #00AEEF;
            }

            .step-progress-bar .step .bullet span {
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                color: #000000;
            }

            .step-progress-bar .step .bullet.active span {
                display: none;
            }

            .step-progress-bar .step .bullet:before,
            .step-progress-bar .step .bullet:after {
                position: absolute;
                content: '';
                bottom: 10px;
                right: -125px;
                height: 3px;
                width: 120px;
                background: #d1d1d1;
            }

            .step-progress-bar .step .bullet.active:after {
                background: #00AEEF;
                transform: scaleX(0);
                transform-origin: left;
                animation: animate 0.3s linear forwards;
            }

@keyframes animate {
    100% {
        transform: scaleX(1);
    }
}

.step-progress-bar .step:last-child .bullet:before,
.step-progress-bar .step:last-child .bullet:after {
    display: none;
}

.step-progress-bar .step p.active {
    color: #00AEEF;
    transition: 0.2s linear;
}

.step-progress-bar .step .check {
    position: absolute;
    left: 50%;
    top: 73%;
    font-size: 15px;
    transform: translate(-50%, -50%);
    display: none;
}

    .step-progress-bar .step .check.active {
        display: block;
        color: #fff;
    }
