    @import url(http://fonts.googleapis.com/css?family=Montserrat);
    /*basic reset*/
    * {margin: 0; padding: 0;}
    html {
        height: 100%;
        /*Image only BG fallback*/
       
        /*background = gradient + image pattern combo*/
        /*background: 
        linear-gradient(rgba(196, 102, 0, 0.2), rgba(155, 89, 182, 0.2)), 
        url('http://thecodeplayer.com/uploads/media/gs.png');*/
    }
    body {
        font-family: montserrat, arial, verdana;
    }
    /*form styles*/
	h1{
		font-family: -webkit-pictograph !important;
		    margin: 15px 0px 34px;
			color: #1295d4 !important;
	}
    #msform {
        width: 80%;
        margin: 50px auto;
        text-align: center;
        position: relative;
    }
    #msform fieldset {
        background: white;
        border: 0 none;
        border-radius: 3px;
        box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
        padding: 20px 30px;
        box-sizing: border-box;
        width: 80%;
        margin: 0 10%;
        /*stacking fieldsets above each other*/
        position: absolute;
    }
    /*Hide all except first fieldset*/
    #msform fieldset:not(:first-of-type) {
        display: none;
    }
    /*inputs*/
    #msform input, #msform textarea {
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 3px;
        margin-bottom: 10px;
        width: 100%;
        box-sizing: border-box;
        color: #2C3E50;
        font-size: inherit;
        font-family: inherit;
    }
    /*buttons*/
    #msform .action-button {
        width: 240px;
        background:#51acd4;
        font-weight: bold;
        color: white;
        border: 0 none;
        border-radius: 1px;
        cursor: pointer;
          padding: 20px 0px;
        margin: 10px 5px;
        font-size: 20px;
    }

    #msform .action-button:hover, #msform .action-button:focus {
           background-color: #07a3ee;
    }

    #msform .action-button:hover{
        background-color: #0ea0e0!important;
        overflow: hidden;
   
    }
    /*headings*/
    .fs-title {
        font-size: 15px;
        text-transform: uppercase;
        color: #2C3E50;
        margin-bottom: 10px;
    }

    .fs-subtitle {
        font-weight: normal;
        font-size: 13px;
        color: #666;
        margin-bottom: 20px;
    }
    /*progressbar*/
    #progressbar {
        margin-bottom: 30px;
        overflow: hidden;
        /*CSS counters to number the steps*/
        counter-reset: step;
    }
    #progressbar li {
        list-style-type: none;
        color: white;
        text-transform: uppercase;
        font-size: 9px;
        width: 12.5%;
        float: left;
       
    }
    #progressbar li:before {
            content: counter(step);
    counter-increment: step;
  
    display: block;
    
    margin: -9px auto 2px auto;
    }
    /*progressbar connectors*/
    #progressbar li:after {
        content: '';
        width: 100%;
        height: 2px;
        background: white;
        position: absolute;
        left: -50%;
        top: 9px;
        z-index: -1; /*put it behind the numbers*/
    }
    #progressbar li:first-child:after {
    /*connector not needed before the first step*/
        content: none; 
    }
    /*marking active/completed steps green*/
    /*The number of the step and the connector before it = green*/
    #progressbar li.active:before,  #progressbar li.active:after{
            background: #18a3e0;
        color: white;
    }
    
    
    input:required:focus {
        border-color: #c83e3e !important;
        border-bottom-width: 5px !important;
    	color:#c83e3e !important;
    }
    
    input:required:hover {
      opacity: 1;
    }

    input:required {
     
    }

 input.has-error {
    border-color: #c83e3e;
    border-bottom-width: 5px;
    height: 79px;
}
.form-control{
    padding: 20px 0px !important;
    margin-top: 3px;
    margin-bottom: 8px;
  
    height: auto !important;
}
    lable{
		text-align: justify !important;
    font-weight: normal !important;
	}
	.validateError{
		text-align:left;
	}
	.progressbarline{
		background: #E6E6E6;
    height: 3px;
    width: 100%;
    margin-bottom: 50px;
	}
@media (max-width: 767px) {
#msform fieldset{
    background: white;
    border: 0 none;
    border-radius: 3px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 20px 0px;
    box-sizing: border-box;
    width: 100%;
    margin: 0 0%;
    position: absolute;
}
h1 {
    font-size: 30px !important;
}	
#msform input, #msform textarea{
padding: 16px 19px !important;
}
input.has-error{
    height: 52px !important;
}
}	
@media (min-width: 266px) and (max-width: 387px) {
#msform fieldset{
    background: white;
    border: 0 none;
    border-radius: 3px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 20px 0px;
    box-sizing: border-box;
    width: 100%;
    margin: 0 0%;
    position: absolute;
}
h1 {
    font-size: 30px !important;
}

.content-justify {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: inherit;
    color: #333;
    border: 0;
    text-align: justify;
}

#msform input, #msform textarea{
padding: 16px 19px !important;
}
input.has-error{
    height: 52px !important;
}
}
	