/*
***************************************************************************
PLEASE CHECK THE COMMENTS ON RIGHT SIDE OF THE CODE BEFORE YOU MAKE CHANGES
***************************************************************************
*/
/*basic reset*/
* { margin: 0; padding: 0; box-sizing:border-box; -moz-box-sizing: border-box;}

/*form styles*/
#app {
	width: auto; /*-----------------------------------Entire form fixed with. You can set this to "auto" and use it with 100% width iframe*/
	margin: 0 auto;
	text-align: center;
	position: relative;
}
.main-div{
    border: none;
    width: 100%;
    background: #4daf8f;
    padding: 20px;
}

.main-div:first-of-type {
    margin-bottom: 150px;
}
    
/*Inputs*/
input, textarea, select {
    padding: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-bottom: 10px;
    width: 100%;
    font-size: 14px;
}
input{
	height: 40px;
}
.cb-div input{
	height: auto;
	padding: 0 !important;
	border: none !important;
	float: left;
	width: 23px !important;
	margin-top: -2px !important;
}
select{
	height: 40px;
}
input[type="checkbox"] {
    float: left;
    width: 23px !important;
    padding: 0 !important;
	border: none !important;
}
input[type="text"]:disabled, select:disabled {
    background: rgba(255, 255, 255, 0.3);
}


/*Check box and text*/
.cb-div{
	margin-bottom:  15px;
}
.pp {
	font-family: Helvetica, Arial, sans-serif;
	font-weight: 100;
	font-size: 9px;
	color: #333;
	text-align: left;
	margin-left: 23px;
}

/*Buttons*/
#previous-btn, #next-btn, #submit-btn{
    width: 45%;
    background: #fff;
    color: #4daf8f;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 10px 5px;
    font-weight: 300;
    text-transform:uppercase;
    height: 48px;
    line-height: 45px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    padding: 0 24px;
    margin: 0 0 20px;
    border-radius:0!important;
}
#previous-btn {
    background: #999999;
    color: #fff;
}



#next-btn:hover, 
#submit-btn:hover {
    color: #333;
}

/*Error Messages*/
.main-div div{
    position: relative;    
}
label.error{
    font-family: Helvetica, Arial, sans-serif;
    color: #fff;
    font-size: 12px;
    background: #222;
    box-shadow: 0 0 4px #333;
    padding: 6px 10px;
    position: absolute;
    z-index: 9999;
    top: 45px;
    right: 10px;
}
label.error:before{
    content: "";
    width: 0; 
	height: 0; 
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #222;
    top: -9px;
    position: absolute;
    left: 5px;
    z-index: 9;
}
.cb-div label.error{
   right: inherit;
   top: 24px;
   left: 0px; 
}

.apptop{
    font-size: 2em;
    color: white;
	margin-bottom: .65em;
}

.white-bold{
    color: #fff;
    padding-top: 30px;
    font-family: 'Source Sans-Serif', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
}
