

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

/*form styles*/
#adminForm {
	width: auto; /*-----------------------------------Entire form fixed with. You can set this to "auto" and use it with 100% width iframe*/
	margin: 0 auto;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
	text-align: center;
	position: relative;
}
#adminForm fieldset{
    border: none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
   /* background: #8eb437;*/ /*----------------------------Temporary background setup | */
   /* box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);*/ /*---------Temporary shadow setup | */
    padding: 20px; /*----------------------------------Temporary padding setup | */
    /*stacking fieldsets above each other*/
    /*position: absolute;*/
}

/*Hide all except first fieldset*/
#adminForm fieldset:not(:first-of-type) {
	/* display: none; */
}

#adminForm fieldset:first-of-type {
    margin-bottom: 80px;
}
    
/*Inputs*/
#adminForm input, #adminForm textarea, #adminForm select {
    padding: 10px;
    border: 1px solid #888;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    border-radius: 4px;
    -moz-border-radius: 4px;
    margin-bottom: 10px;
    width: 100%;
    font-size: 14px;
}



#adminForm select{
	height: 39px;
}
#makes1 label, #models1 label, #style1 label{
	display: none;
}
input[type="checkbox"] {
    float: left;
    width: 23px !important;
}
input[type="text"]: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: #303030;
	text-align: left;
	margin-left: 23px;
}

/*Buttons*/
#adminForm .action-button, #adminForm .prev-button{
    width: 111px;
    background: #8eb437;
    font-weight: bold;
    color: white;
    border: none;
    border-radius: 1px;
    -moz-border-radius: 1px;
    cursor: pointer;
    outline: none;
    padding: 10px 5px;
    margin: 10px 5px;
	font-size: 12px;
}
#adminForm .prev-button {
    background: #007CE4;
}
#adminForm .action-button:hover, #adminForm .action-button:focus {
	box-shadow: 0 0 0 2px #00ace4, 0 0 0 4px #8eb437;
}
#adminForm .prev-button:hover, #adminForm .prev-button:focus {
	box-shadow: 0 0 0 2px #00ace4, 0 0 0 4px #007CE4;
}
/*Error Messages*/
fieldset div{
    position: relative;    
}
label.error{
    font-family: Helvetica, Arial, sans-serif;
    color: #fff;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-size: 12px;
    background: #222;
    box-shadow: 0 0 4px #333;
    padding: 6px 10px;
    position: absolute;
    z-index: 9;
    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;
}
.cb-div label.error{
   right: inherit;
   top: 24px;
   left: 0px; 
}

.til1 {
	color: #333; 
	font-size: 16px; 
	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold; 
	margin-top: 20px;
}

.til2 {
	color: #333; 
	font-size: 16px; 
	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold; 
	margin-top: 12px;
}
@media only screen and (max-width:768px){
    #adminForm, #adminForm fieldset{
        /*position: static;*/
        /*overflow: hidden;
        max-height: 400px; *//*------------------------------- Change it for your template size | */
    }
    #adminForm fieldset:first-of-type {
        /*margin-bottom: 100px; /*----------------------------Change it for your template size | */
    }
}