/*
* Based on Skeleton by Dave Gamache (www.getskeleton.com)
* Modified by Vasterad
*/


/* Table of Content
==================================================
	#Reset & Basics
	#Basic Styles
	#Site Styles
	#Typography
	#Links
	#Lists
	#Images
	#Buttons
	#Forms
	#Misc */


/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
    fieldset {
        border: 0 none;
    }

    fieldset legend {
        padding: .5em;
        margin-bottom: 0;
        border: 0 none;
    }

	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
		display: block; }
	body {
		line-height: 1; }
	ol, ul {
		list-style: none; }
	blockquote, q {
		quotes: none; }
	blockquote:before, blockquote:after,
	q:before, q:after {
		content: '';
		content: none; }
	table {
		border-collapse: collapse;
		border-spacing: 0; }


/* #Basic Styles
================================================== */
	body {
		background: #fff;
		font-size: 14px;
		line-height: 24px;
		color: #444;
		-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
		-webkit-text-size-adjust: 100%;
 	}
	
    .clearfix:after{
        content: "";
          display: table;
          clear: both;
    }

	#content-wrapper {
		padding: 0 0 40px 0;
		background-color: #fff;
        min-height: 600px;
	}

	/* Boxed Layout Style */
	body.boxed {
		margin: 0 auto;
		box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
		background: url(../images/bg/bg.jpg) repeat;
	}
	
	#header {
		margin-left: auto;
		margin-right: auto;
		left: 0;
		right: 0;
	}

	/* Main Font */
	body, h1, h2, h3, h4, h5, h6,
	.button, input[type="button"], input[type="submit"],
	input[type="text"], input[type="password"], input[type="email"], input[type="number"], textarea, select, button {
		font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	}


/* Basic Alginment
================================================== */
	#wrapper img {
		height: auto;
		max-width: 100%;
	}
	
	.columns.google-map img {
		max-width: none;
	}

	img, object, video {
		/*height: auto;*/
		display:block;
	}
	
	img {
		/*width: auto;*/
		border: 0;
		-ms-interpolation-mode: bicubic;
	}

	/* Flexible Embeds */
	.embed {
		position: relative;
		padding: 0px;
		padding-bottom: 56.25%; /* 16/9 ratio */
		height: 0;
		overflow: hidden;
	}

	.embed iframe,
	.embed object,
	.embed embed {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

	.image-left {
		float: left;
		margin: 5px 15px 8px 0;
	}
	
	.image-right {
		float:right;
		margin: 5px 0 8px 15px;
	}
	
	.image-right,
	.image-left {
		 padding: 5px;
		 border: 1px solid #e0e0e0;
		 max-width: 100%;
		 border-radius: 3px;
		-webkit-box-shadow:  0px 2px 0px 0px rgba(0, 0, 0, 0.03);
		box-shadow:  0px 2px 0px 0px rgba(0, 0, 0, 0.03);
	}

/* #Typography
================================================== */
	h1, h2, h3, h4, h5, h6 {
		color: #505050;
		font-weight: 500;
	}
		
	h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
	h1 { font-size: 28px; line-height: 50px; }
	h2 { font-size: 24px; line-height: 30px; }
	h3 { font-size: 20px; line-height: 34px; }
	h4 { font-size: 18px; }
	h5 { font-size: 16px; line-height: 24px; }
	h6 { font-size: 14px; line-height: 21px; }

	p { margin: 0 0 15px 0; line-height: 24px;}
	p img { margin: 0; }
	p.lead { font-size: 21px; line-height: 27px; color: #777;  }

	em { font-style: italic; }
	strong { font-weight: 600; color: #333; }
	small { font-size: 80%; }

	hr { border: solid #ddd; border-width: 1px 0 0; clear: both; margin: 10px 0 30px; height: 0; }


/* #Links
================================================== */
	a, a:visited { color: #73b819; text-decoration: none; outline: 0; -webkit-transition: color 0.1s ease-in-out; -moz-transition: color 0.1s ease-in-out; -o-transition: color 0.1s ease-in-out; -transition: color 0.1s ease-in-out; }
	a:hover, a:focus { }
	a b, span b { font-family: Verdana, Tahoma; }
	span b { line-height: 14px; }
	p a, p a:visited { line-height: inherit; }


/* #Lists
================================================== */
	ul, ol { margin: 0; }
	ul { list-style: none outside; }
	ol { list-style: decimal; }
	ol, ul.square, ul.circle, ul.disc { margin-left: 30px; }
	ul.square { list-style: square outside; }
	ul.circle { list-style: circle outside; }
	ul.disc { list-style: disc outside; }
	ul ul, ul ol,
	ol ol, ol ul {}
	ul ul li, ul ol li,
	ol ol li, ol ul li {}
	li { line-height: 18px; }
	ul.large li { line-height: 21px; }
	li p { line-height: 21px; }


/* #Forms
================================================== */

	input[type="text"],
	input[type="password"],
	input[type="email"],
    input[type="number"],
	textarea,
	select {
		border: 1px solid #bbb;
		padding: 6px 12px;
		outline: none;
		font-size: 14px;
		margin: 0 0 15px;
		max-width: 100%;
		display: block;
		background: #fff;
        border-radius: 4px;
		}
	
	textarea {
		min-height: 60px; }
	label,
	legend {
		display: block;
		font-weight: bold;
		font-size: 14px; 
		margin-bottom: 5px;}
	select {
		 }
	input[type="checkbox"] {
		display: inline; }
	label span,
	legend span {
		font-weight: normal;
		font-size: 14px;
		color: #444; }

    /* Fix fox jQuery UI and Bootstrap forms */
    .ui-widget input.form-control,
    .ui-widget select.form-control,
    .ui-widget textarea.form-control,
    .ui-widget button.btn {
        font-family: inherit;
        font-weight: initial;
        font-size: 14px;
        height: 34px;
    }

    @media (max-width: 320px) {

    select.form-control {
        font-size: 11px;
    }

}
#zoneDelay select,
#MvPump select{
    display: inline-block;
    width: 85px;
}
.date{
    width:130px;
}
#WaterDaysWeek{
    padding: 20px 15px !important;
}
.no-bottom-padding{
    padding-bottom: 0 !important;
}
.nav .active{
    /*background: white;
    box-shadow: 1px -4px 3px 0 #bbb;*/
}
.margin-top-px {
    margin-top: 5px;
}
@media screen and (max-width: 414px){
    .legend{
        padding: 18px 6px !important;
    }
}

@media screen and (max-width: 320px){
    .legend{
        padding: 18px 1px !important;
    }
}

@media screen and (max-width: 1024px){
    #zoneDelay .col-md-3,
    #MvPump .col-md-3{
        padding-right:0px;
        padding-left: 6px;
    }
}

@media screen and (min-width: 768px){
    .control-label.col-sm-6{
        width:auto !important;
    }
}
/*@media screen and (max-width: 360px){
    #GrowInDaysRemaining .col-md-3{
        width:auto !important;
    }
}*/
@media screen and (min-width: 1024px){
    .col-md-2-iPadPro{
        width: 20%;
    }
}
