/** ----------------------------------------------------------
 *
 * This stylesheet includes both generic form styles and 
 *    additional form styles for the User Defined Form Module.
 *
 ** ------------------------------------------------------- */


/* GENERIC FORMS
----------------------------------------------- */
input[type="checkbox"]
{
	display:none;
}
input::-webkit-input-placeholder {
   color: #cccccc;
}

input:-moz-placeholder { /* Firefox 18- */
   color: #cccccc;  
}

input::-moz-placeholder {  /* Firefox 19+ */
   color: #cccccc;  
}

input:-ms-input-placeholder {  
   color: #cccccc;  
}
input[type="checkbox"] + label
{
    padding:0;
    margin:0;
    cursor:pointer;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
input[type="checkbox"] + label:hover
{
	color:#919191;
}
body form label
{
	display:block;
	margin-bottom:0;
}
.size1 label
{
	height:19px;
	line-height:19px;
	font-size:16px;
}
.size2 label
{
	height:16px;
	line-height:16px;
	font-size:13px;
}
.size3 label
{
	height:13px;
	line-height:13px;
	font-size:11px;
}
label.multilineable
{
	height:auto !important;
}
.size1 input[type="checkbox"] + label
{
	padding-left:18px;
	background:url(../images/checkbox1.png) no-repeat left top;
}
.size2 input[type="checkbox"] + label
{
	padding-left:16px;
	background:url(../images/checkbox2.png) no-repeat left top;
}
.size3 input[type="checkbox"] + label
{
	padding-left:15px;
	background:url(../images/checkbox3.png) no-repeat left top;
}
input[type="checkbox"]:checked + label
{
	background-position:left bottom;
}



form {
    
}
div.field {
    margin: 10px 0 15px;
}
fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}
form label {
    margin-bottom: 5px;
}
form label.left {
	display: block;
	font-weight: bold;
}
form label.right {
	font-size: 12px;
	color: #888;
}
form input.text:focus,
form textarea:focus,
form .textajaxuniquetext:focus,
form select:focus {
    outline:none;
}
input:focus { outline: none; }
form input[disabled], form textarea[disabled] {
    background-color: #f7f7f7;
    border: 1px solid #dad9d9;
}
textarea {
    resize: vertical; /* forces text area to be resized vertically only */
}


/* Radio and Checkbox */
.field .checkbox, .field .radio {
    float: left; 
    width: 13px; 
    height: 13px; 
    margin-right: 6px; 
    margin-top: 3px;
    padding: 0;
}
    .checkbox label.right,
    .radio label.right {
        float: left;
    }


/* Messages */
form .message {
    background-color: #fef4ba;
    padding: 5px 10px;
    border: 1px solid #e8c805;
    border-radius: 3px;
}
    form .good {
        background-color: #ecf9d0;
        border-color: #8fbe00;
    }
    form .bad, form .required {
        background-color: #ccd0d0;
        border-color: #cc0000;
        color: #cc0000;
    }


/* ACTIONS */
.Actions {
    margin-bottom: 20px;
}
   /* a.btn, button, input[type="submit"], .Actions .action {
        background: #cc0000;
        color: #fff;
        display: inline-block;
        border-radius: 4px;
        padding: 6px 15px;
        margin-top: 10px;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
        border: none;
        font-size: 13px;
        margin-right: 10px;
        float: left;
    }
    a.btn:hover, button, input[type="submit"]:hover, .Actions .action:hover {
        background: #000000;
        color: #ffffff;
    }
    a.btn {
        line-height: 18px;
        margin-bottom: 10px;
    }
    a.btn:after {                     
        content: '\2192';
        padding-left: 10px;
    }
    .ie7 input.action {
        width: 0;                     
        overflow: visible;
    }*/
    input.action[class] {             /* IE ignores [class] */
        width: auto;                  /* cancel margin fix for other browsers */
    }

    .ie7 .Actions .action {
        float: left;
    }
    .Actions:after {
        color: #B94A48;
        display: inline-block;
        font-weight: normal;
        margin-top: 9px;
    }
    #MemberLoginForm_LoginForm .Actions:after {
        display: none;
    }


/* AREA SPECIFIC */
    /* LOGIN and FORGOT PASSWORD */
    #Remember {
        min-height: 20px;
    }
    #ForgotPassword {
        clear: left;
    }
    #MemberLoginForm_LostPasswordForm .Actions:after {
        display: none;
    }

    /* Search / Login */
    .header form .middleColumn {
        /* float: none;
        width: 100% !important; */
    }




/* USER DEFINED USER FORM MODULE STYLES
----------------------------------------------- */

/*Generic and mixed*/
.FormHeading {
    clear: both;
    padding-top: 15px;
}
form .date .middleColumn input {
    /*background: transparent url(../images/icons/your_icon_here.png) no-repeat scroll 90px 5px;*/
    width: 114px;
}
.Actions input.resetformaction,
.Actions input.action-minor {                  /* Clear button */
    float: left;
    background-color: #888;
}
.Actions input.resetformaction:hover,
.Actions input.action-minor:hover {            /* Clear button */
    background-color: #aaa;
}

/* Labels */
.checkbox label.right {
    font-size: 13px;                            /* reset to default */
    color: #333;                                /* reset to default */
}
form .requiredField label.left:after { /* pseudo element adds an asterisk to a required fields label */
    color: #B94A48;
    content: "*";
    font-size: 14px;
    font-weight: normal;
    padding-left: 3px;
}

/* Radio / Checkbox */
form .checkboxset ul,
form .optionset ul {
    margin: 0;
}
    form .checkboxset li,
    form .optionset li {
        margin-bottom: 5px;
        list-style-type:none;
    }
    form div.checkbox:after { /* clearfix */
        content: ".";
        display: block;
        height: 0;
        clear: both;
        visibility: hidden;
    }
    form .checkbox .checkbox { clear: both; }

/* Messages */
span.message {
    margin: 10px 0;
    display: block;
    max-width: 390px;
    clear: left;
}
div.holder-required {               /* This class needs to be changed - is used for both input and div */
    /* background-color: #f9d0d0;
    border: 1px solid #cf0000;
    padding: 10px;
    margin-left: -11px; */
}
form input.holder-required {        /* This class needs to be changed - is used for both input and div */
    border: 1px solid #cf0000; 
}

/* Error messages */

.no-boxshadow input:invalid,
.no-boxshadow textarea:invalid {
    background-color: #f0dddd
}

/* To test - potentially not needed? */
.ss-uploadfield-item-info button{
    margin-top: 4px !important;
    float: left;
}
form .creditCardField input,
form input.currency,
form input.numeric {
    width: 50px;
}
form #DMYDate-month,
form #DMYDate-day {
    width: 25px
}
form div.selectelem
{
    overflow:hidden;
}
form select
{
	-webkit-appearance:none;
    -moz-appearance:none !important;
    appearance: none;
	font-family:'GothamLight';
	color:#ffffff;
	cursor:pointer;
	border:none;
	-webkit-border-radius:0;
	-moz-border-radius:0;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	vertical-align:middle;
	width:100%;
	text-indent:5px !important;
	text-overflow:ellipsis !important;
	background:transparent;

}
select option
{
	color:#333333 !important;
}
select option:hover
{
	color:#000000;
}
.size1 select
{
	padding:7px 28% 7px 7px;
	height:34px;
	font-size:16px;
	line-height:20px;
    width:110%;
}
.size1 .selectelem
{
    background:#919191 url(../images/select1.png) no-repeat right top;
}
.size2 select
{
	padding:6px 28% 6px 5px;
	height:29px;
	font-size:13px;
	line-height:17px;
    margin-right:-29px;
    padding-right:29px;
}
.size2 .selectelem
{

    background:#919191 url(../images/select2.png) no-repeat right top;
}
.size3 select
{
	padding:3px 28% 4px 3px;
	height:22px;
	font-size:11px;
	line-height:15px;
    margin-right:-22px;
    padding-right:22px;
}
.size3 .selectelem
{
    background:#919191 url(../images/select3.png) no-repeat right top;
}
#MemberLoginForm_LoginForm div#Password,#MemberLoginForm_LoginForm div#Email,#MemberLoginForm_LoginForm div#Remember
{
	overflow:hidden;
}
#MemberLoginForm_LoginForm input[type="text"],
#MemberLoginForm_LoginForm input[type="password"],
#MemberLoginForm_LostPasswordForm input[type="text"],
#MemberLoginForm_LostPasswordForm input[type="password"]
{
	height:30px;
}
#MemberLoginForm_LoginForm,#MemberLoginForm_LostPasswordForm
{
	font-family:'GothamLight';
}
#MemberLoginForm_LoginForm label.left,
#MemberLoginForm_LoginForm_Remember + label,
#MemberLoginForm_LostPasswordForm label.left,
#MemberLoginForm_LostPasswordForm + label
{
	width:120px;
	line-height:30px;
	font-size:20px;
	height:30px;
}
#MemberLoginForm_LoginForm_action_dologin,#MemberLoginForm_LostPasswordForm_action_forgotPassword
{
	display:block;
	float:none;
}
#MemberLoginForm_LoginForm #MemberLoginForm_LoginForm_Remember + label
{
	color:#ffffff;
	background:none;
	padding-left:0;
	line-height:30px;
	font-size:20px;
}
#MemberLoginForm_LoginForm input[type="checkbox"]
{
	display:inline;
	margin-top:8px;
}
#ForgotPassword
{
	margin-top:20px;
}
.size1 input[type="text"],
.size1 input[type="email"],
.size1 input[type="number"],
.size1 input[type="password"],
.size1 input[type="tel"],
.size1 input[type="date"],
.size1 select
{
	height:34px;
}
.size2 input[type="text"],
.size2 input[type="email"],
.size2 input[type="number"],
.size2 input[type="password"],
.size2 input[type="tel"],
.size2 input[type="date"],
.size2 select
{
	height:29px;
}
.size3 input[type="text"],
.size3 input[type="email"],
.size3 input[type="number"],
.size3 input[type="password"],
.size3 input[type="tel"],
.size3 input[type="date"],
.size3 select
{
	height:22px;
}
form select:hover
{
	background-position:right bottom;
}
select::-ms-expand
{
	display:none;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="date"],
textarea
{
	float:none;
	display:block;
	background:#919191;
	border:none;
	box-sizing:border-box;
	border-radius:0;
	-moz-box-sizing:border-box;
	padding-left:5px;
	padding-right:5px;
	width:100%;
	color:#ffffff;
}
textarea{height:150px;}