/*
***************************************************************************
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: #28ACDD; /*----------------------------Temporary background setup | */
    padding: 20px; /*----------------------------------Temporary padding setup | */
}

.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;
    border-radius: 4px;
    -moz-border-radius: 4px;
    margin-bottom: 10px;
    width: 100%;
    font-size: 14px;
}
input{
	height: 40px;
}
.radio{
	height: 17px;
    width: 17px;
    margin: 5px;
    display: inline-block;
}
.radio-box-label{
    font-size: 12px;
    color: #ffffff;
    font-weight: 400;
    padding: 0px;
}

.radio-box{
    margin-bottom: -15px;
}
.radio-field{
    display: inline-block;
    text-align: left;
    min-width: 225px;
}
.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{
    opacity: 0.3;
    -moz-opacity: 0.3;
    filter: alpha(opacity=30);
}

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

/*Buttons*/
#previous-btn, #next-btn, #submit-btn{
    width: 45%;
    background: #54BE8E;
    color: white;
    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: #676767;
}

#next-btn{
    background:#676767;
}

#next-btn:hover{
    background:#54BE8E;
}
/*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; 
}

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