form { 
	
}

fieldset { 
	border: 0; 
}

input, 
textarea,
select { 
	box-sizing: border-box;
	font-family: inherit; 
	font-size: inherit; 
}

input[type="text"], 
input[type="email"], 
input[type="search"], 
input[type="password"], 
input[type="submit"], 
input[type="button"],
.select-style,
textarea { 
	-webkit-appearance: none;
	border: 0;
	border-radius: 0;
	display: inline-block;
	font-size: 1em;
	margin: .3em 0;
	padding: .3em .5em;
	vertical-align: middle;
}
input[type="text"], 
input[type="email"], 
input[type="search"], 
input[type="password"] {
	
}
textarea { 
	min-height: 5em;
}

::-webkit-input-placeholder {
	color: #707070;
}
:-moz-placeholder {
	color: #707070;
	opacity: 1;
}
::-moz-placeholder {
	color: #707070;
	opacity: 1;
}
:-ms-input-placeholder {
	color: #707070;
}



/* submit, button */
input[type="submit"], 
input[type="button"],
.block-button { 
	background: #8e9090;
	border: 0;
	color: #FFFFFF;
	cursor: pointer;
	font-size: 1em;
	padding: .3em 2em;
	text-transform: uppercase;
	transition: all .3s ease;
	width: auto;
}
input[type="submit"]:hover, 
input[type="button"]:hover,
.block-button:hover { 
	color: #FFFFFF;
	opacity: .8;
}

/* image */
input[type="image"] { 
	background: #8e9090;
	border: 0;
	border-radius: 0;
	cursor: pointer;
	display: inline-block;
	margin: .3em 0;
	padding: 0;
	width: auto; height: 2em;
	vertical-align: middle;
}
input[type="image"]:hover { 
	opacity: .8;
}



/* select style (requires wrapper .select-style) */
.select-style {
	background: #FFFFFF;
	padding: 0 2em 0 0;
	margin: .3em 0;
	overflow: hidden;
	position: relative;
	vertical-align: middle;
	width: 100%;
}
	.select-style select {
		-webkit-appearance: none;
		background: none;
		border: 0;
		display: block;
		padding: .3em .5em;
		position: relative;
		width: calc(100% + 2em);
	}
		.select-style select option {
			padding: 0;
		}
	.select-style:after {
		background: url('../svg/arrow-select.svg') center/60% auto no-repeat #8c9192;
		content: '';
		display: block;
		pointer-events: none; 
		position: absolute; top: 0; right: 0;
		width: 2em; height: 100%;
	}


label {
	font-size: .9em;
	font-weight: 600;
	text-transform: uppercase;
}


/* easily indent against labels for .theme-form */
.theme-form input[type="text"], 
.theme-form input[type="email"], 
.theme-form input[type="search"], 
.theme-form input[type="password"], 
.theme-form textarea,
.theme-form select,
.theme-form .select-style {
	width: calc(100% - 110px); 
}
.theme-form label {
	display: inline-block; 
	font-size: .8em;
	margin: .3em 0;
	width: 100px;
}



.gform_body {
	max-width: 600px;
}
	.gform_body ul {
		list-style-type: none;
		margin: 0 !important;
		padding: 0 !important;
	}
	.gform_body input[type="text"], 
	.gform_body input[type="email"], 
	.gform_body input[type="search"], 
	.gform_body input[type="password"], 
	.gform_body input[type="submit"], 
	.gform_body input[type="button"],
	.gform_body .select-style,
	.gform_body textarea {
		background: #f0f0f0;
		width: 100%;
	}



.ui-datepicker {
	background: #FFFFFF;
    margin: 0;
	width: 300px;
}

    .ui-datepicker table {
        width: 100%;
    }
.ui-datepicker-header {
    
}
.ui-datepicker-title {
    text-align: center;
}
.ui-datepicker-prev {
    float: left;
    cursor: pointer;
}
.ui-datepicker-next {
    float: right;
    cursor: pointer;
}
.ui-datepicker thead {
    background-color: #f7f7f7;
}
.ui-datepicker th {
    background-color:#404040;
    text-transform: uppercase;
    font-size: .6em;
    color: #FFFFFF;
}
.ui-datepicker tbody td {
    padding: 0;
}
    .ui-datepicker tbody td:last-child {
        border-right: 0px;
    }
.ui-datepicker tbody tr {
    border-bottom: 1px solid #bbb;
}
    .ui-datepicker tbody tr:last-child {
        border-bottom: 0px;
    }
.ui-datepicker a {
    text-decoration: none;
}
.ui-datepicker td span, .ui-datepicker td a {
    display: inline-block;
    text-align: center;
    width: 1.3em;
    height: 1.3em;
    line-height: 1.3em;
    color: #ffffff;
	width: 100%;
}
.ui-datepicker-calendar .ui-state-default {
      background: #f7f7f7;
      color:#000000;
}
.ui-datepicker-calendar .ui-state-hover {
    background: #006784;
    color: #FFFFFF;
}
.ui-datepicker-calendar .ui-state-active {
    background: #006784;
    color: #FFFFFF;
    position: relative;
    margin: -1px;
}
.ui-datepicker-unselectable .ui-state-default {
    background: #006784;
    color: #FFFFFF;
}