﻿
    .group {
        position: relative;
        margin-bottom: 8%;
    }
	

	
    input {
        font-size: 14px;
        padding: 5px 10px 5px 5px;
        display: block;
        
        background-color: transparent;
        border: none;
        border-bottom: 1px solid #757575;
    }

        input:focus {
            outline: none;
            border-bottom: 2px solid #0088cc;
        }

    label {
        color: #999;
        font-size: 14px;
        font-weight: normal;
        position: absolute;
        pointer-events: none;
        left: 5px;
        top: 5px;
        transition: 0.2s ease all;
        -moz-transition: 0.2s ease all;
        -webkit-transition: 0.2s ease all;
    }

    input:focus ~ label, input:valid ~ label {
        top: -13px;
        font-size: 14px;
        color: #0088cc;
    }

    .bar {
        position: relative;
        display: block;
    }

        .bar:before, .bar:after {
            content: '';
            height: 2px;
            width: 0;
            bottom: 0;
            position: absolute;
            background: #0088cc;
            transition: 0.2s ease all;
            -moz-transition: 0.2s ease all;
            -webkit-transition: 0.2s ease all;
        }

        .bar:before {
            left: 50%;
        }

        .bar:after {
            right: 50%;
        }

    input:focus ~ .bar:before, input:focus ~ .bar:after {
        width: 50%;
    }


    .highlight {
        position: absolute;
        height: 50%;
        width:100%;
        top: 15%;
        left: 0;
        pointer-events: none;
        opacity: 0.5;
    }

    input:focus ~ .highlight {
        -webkit-animation: inputHighlighter 0.3s ease;
        -moz-animation: inputHighlighter 0.3s ease;
        animation: inputHighlighter 0.3s ease;
    }
	
	#stepWizard{
 display:inline;
}

@media screen and (max-width: 992px) {
    .stepWizard{
        visibility: hidden;
        display:none;
    }
}

@media screen and (max-width: 568px) {
    .stepWizard{
        visibility: hidden;
        display:none;
    }
}

    @-webkit-keyframes inputHighlighter {
        from {
            background: #0088cc;
        }

        to {
            width: 0;
            background: transparent;
        }
    }

    @-moz-keyframes inputHighlighter {
        from {
            background: #0088cc;
        }

        to {
            width: 0;
            background: transparent;
        }
    }

    @keyframes inputHighlighter {
        from {
            background: #0088cc;
        }

        to {
            width: 0;
            background: transparent;
        }
    }
