/* ------------ SPRING MEADOW -- MAIN STYLESHEET ----------- */


/* ------------ GENERAL STYLES ------------ */

input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select:focus,
textarea {
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  color:#757575;
}

*:focus:not(.focus-visible) {
  outline: none;
    box-shadow: none;
}


*:focus, button:focus {
	outline-color: 2px solid black;
	outline-offset: 3px;
}

*:focus-visible:not(body.cke_editable), .hs-input:focus, input[type="submit"]:focus-visible { 
	/* ensure high-contrast mode still has an indicator */
	outline: 2px transparent solid !important;

	/* Apply a thick yellow box-shadow with 
	   a thin dark blue indicator in the middle */
	box-shadow: 0 0 0 2px #F9F9D1, 0 0 0 4px #396196, 0 0 4px 8px #F9F9D1 !important;
}
a:focus-visible{
    text-decoration:underline;
}
.form-control{
    border: 1px solid dimgrey;
}
.form-control:focus {
	outline: 2px transparent solid;
	box-shadow: 0 0 0 2px #F9F9D1, 0 0 0 4px #396196, 0 0 4px 8px #F9F9D1 !important;
}

.skip-link {
  background: #697D36;
    color:white;
  font-weight: 700;
  left: 5%;
  padding: 6px 20px;
  position: absolute;
  transform: translateY(-100%);
      transition: transform 0.3s;
        z-index: 5;
}
a.skip-link.focus-visible, a.skip-link, a.skip-link:visited {
    color: #fff !important;  
} 
.skip-link:focus {
  transform: translateY(0%);
}
body {
	font-family: 'Montserrat', sans-serif;
	color:#757575;
	background:#ebebeb;
}

h1, h2 {
	font-family: "merriweather",serif;
	font-weight:bold;
	margin-bottom:.75rem;
}

h1 {
	font-size: 30px;
	text-align:center;
}

h2 {
	font-size: 25px;
}

	@media screen and (min-width:768px) {
		h1 {
			font-size:48px;
		}

		h2 {
			font-size:36px;
		}
	}

h3 {
	font-size:18px;
	font-weight:600;
}

	@media screen and (min-width:768px) {
		h3 {
			font-size:20px;
		}
	}

h4 {
	font-family: "merriweather",serif;
	font-size:16px;
	color:#5e5f5f;
}

	@media screen and (min-width:768px) {
		h4 {
			font-size:18px;
		}
	}

strong {
	font-weight:600;
}

a:link, a:visited {
	color:#3B7BA0;
}

	a:hover {
		color:#457D9D;
	}
.clear {
    clear: both;
}

.container{
    position:relative;
}
.content {
	overflow-x:hidden;
	background:#fff;
}

.paginate {
	text-align:center;
	margin-top:30px;
}

.paginate ul {
	margin-left:auto;
	margin-right:auto;
	padding-left:0;
}

.paginate ul li {
	list-style-type: none;
	display:inline-block;
}

.paginate ul li a {
	display:inline-block;
	border-radius:2px;
	box-shadow:0 1px 3px 0 rgba(35,31,32,.45);
	margin-left:3px;
	margin-right:3px;
	width:32px;
	height:28px;
	line-height:28px;
	text-align: center;
}

	.paginate ul li a:link, .paginate ul li a:hover, .paginate ul li a:visited, .paginate ul li a:active {
		color:#757575;
		text-decoration: none;
	}

	.paginate ul li a.act {
		box-shadow: 0 0 0 0;
	}

	@media screen and (min-width:768px) {
		.paginate ul li a {
			margin-left:7px;
			margin-right:7px;
			width:42px;
			height:37px;
			line-height:37px;
		}
	}


/* ------------ NAV/HEADER STYLES ------------ */

.topLink {
	position:fixed;
	bottom:40px;
	right:-140px;
	z-index:777;
	transition-duration: .5s;
}

	.topLink.showing {
		right:0;
	}

	.topLink a, .topLink a:link, .topLink a:hover, .topLink a:visited {
		color:#fff;
		width:130px;
		text-align: center;
		background:#814574;
		padding:1rem;
		padding-top:.75rem;
		display: block;
		line-height:1.1;
		border-top-left-radius: 4px;
		border-bottom-left-radius: 4px;
		box-shadow: 0 2px 6px 0 rgba(35,31,32,.25);
		text-decoration: none;
	}

		.topLink a:hover {
			
		}

header {
	border-bottom:3px solid #f1f1f1;
	background:#fff;
}

.mainLogo {
	width:130px;
	margin-top:12px;
	margin-bottom:6px;
}

	@media screen and (min-width:992px) {
		.mainLogo {
			width:190px;
/*			margin-top:-50px;*/
			margin-bottom:0;
		}
	}

.searchBox {
	float:left;
	display: none;
	margin-top:15px;
	position:relative;
}

	.searchBox input {
		border-top:0 none;
		border-left:0 none;
		border-right:0 none;
		padding-top:.5rem;
		text-align:center;
		color:#757575;
		font-size:14px;
		width:120px;
	}

		.searchBox input::-moz-placeholder,
		.searchBox input::-webkit-input-placeholder,
		.searchBox input::-ms-input-placeholder {
			color:#757575;
		}
		
		.searchBox input::placeholder {
			color:#757575;
		}

	.searchButton {
		border:0 none;
		background: transparent;
		cursor: pointer;
		padding: 0;
		color:#757575;
	}

	@media screen and (min-width:1196px) {
		.searchBox {
			display:block;
		}
	}

.mobileSearchBox {
	display:block;
	float:none;
	margin-bottom:1.5rem;
	margin-top:0;
}

	.mobileSearchBox input {
		text-align:left;
		width:65%;
		max-width:250px;
		padding-left:4px;
		padding-right:4px;
	}

	@media screen and (min-width:992px) {
		.mobileSearchBox {
			display:none;
		}
	}

#liveSearch {
	height:0;
	width:0;
	margin:0;
	padding:0;
}

.liveSearchResults {
	visibility:hidden;
	position:absolute;
	top:35px;
	background:#fff;
	width:200px;
	z-index:333;
	padding:5px 10px;
	border: 2px solid #f1f1f1;
	box-shadow: 0 2px 6px 0 rgba(35,31,32,.25);
	font-size:14px;
	font-weight:500;
}
	.liveSearchResults p {
		margin-top:.5rem;
		margin-bottom:.5rem;
	}

	.liveSearchResults a {
		display: block;
	}
.topNav{
    float:right;

}
    @media screen and (min-width:992px) {
     .topNav{
    width:75%;

}   
    }
.topNav ul {
	font-size:14px;
	float:left;
	list-style-type:none;
	padding-left:.5rem;
	margin-bottom:0;
	margin-top:15px;
	display:none;
}

	.topNav ul li {
		display:inline-block;
		margin-left:15px;
		padding:.5rem;
		padding-bottom:0;
		color:#757575;
	}

		.topNav ul li a {
			color:#757575;
            font-weight:500;
		}
       .topNav ul li.dcatalog a {
                background: #697D36;
    padding: 5px 12px;
    border-radius: 30px;
    color: white;
}

	@media screen and (min-width:992px) {
		.topNav ul {
			display:block;
		}

	}

.mobileTopNav ul {
	list-style-type: none;
	padding-left:0;
	color:#757575;
	margin-top:.5rem;
	margin-bottom:.75em;
}

	.mobileTopNav ul li a {
		color:#757575;
		line-height:2;
	}
   .mobileTopNav ul li.dcatalog a {
    background: #697D36;
    padding: 5px 12px;
    border-radius: 30px;
    color: white;
}

	@media screen and (min-width:992px) {
		.mobileTopNav ul {
			display:none;
		}
	}

.navbar {
	padding-left:0;
	padding-right:0;
	font-size:14px;
	font-weight:500;
	padding-bottom:0px;
        width: 80%;
    float: right;
    margin-top: -35px;
}

	.navbar .navbar-collapse {
		margin-top:2px;
	}

	.navbar-toggler {
		color:#757575;
		font-size:18px;
		font-weight:400;
		margin-top:30px;
	}
.collapse{
    
}
.navbar-expand-lg .navbar-toggler{
    
}
	.navbar .dropdown-menu, .searchBox .dropdown-menu {
		border: 2px solid #f1f1f1;
    	border-radius: 0;
    	box-shadow: 0 2px 6px 0 rgba(35,31,32,.25);
    	margin-top:-2px;
    	background-clip: border-box;
	}

	.navbar .dropdown-item, .searchBox .dropdown-item {
		font-size:14px;
		font-weight:500;
	}

	.navbar .nav-link, .navbar .dropdown-item, .searchBox .dropdown-item {
		color:#697D36;
	}

		.navbar .nav-link:hover, .navbar .dropdown-item:hover, .searchBox .dropdown-item:hover {
			color:black;
			background-color: #f8f9fa;
		}

/*
		.navbar .nav-link:focus {
			outline:none;
		}
*/

	.navbar .dropdown-item, .searchBox .dropdown-item {
		padding-left:.75rem;
		padding-right:.75rem;
	}

		.navbar .dropdown-item:active, .navbar .dropdown-item.active, .searchBox .dropdown-item:active {
			background-color:#697D36;
			color:#fff;
		}

	.navbar .navLevel2 .dropdown-item {
		padding-left:1.5rem;
	}
ul.navLevel2{
    padding-inline-start:0px;
}
ul.navLevel2 li{
    list-style-type:none ;
}
	@media screen and (max-width:991px) {
		/* .dropdown-menu {
			border:0 none;
			padding-top:0;
		} */
.navbar {
        width: 60%;
    margin-top: 0px;
}
		.navbar .nav-link:hover, .navbar .dropdown-item:hover {
			padding-left:.75rem;
		}
	}

/* ------------ FOOTER STYLES ------------ */

footer {
	background: #ebebeb;
	font-size:14px;
	color:#696969;
	padding-bottom:.5rem;
}

	.bottomNav {
		list-style-type:none;
		font-weight:500;
		padding-left:22px;
		padding-top:30px;
		-moz-columns:2;
		columns:2;
		width:75%;
		margin-left:auto;
		margin-right:auto;
		font-size:16px;
	}

		.bottomNav li {
			width:100px;
			margin-bottom:3px;
		}

		.bottomNav li a {
			color:#696969;
		}

		@media screen and (min-width:768px) {
			.bottomNav {
				float:left;
				width:410px;
				columns:1;
				margin-left:0;
				font-size:14px;
			}

			.bottomNav li {
				display:inline-block;
				margin-bottom:5px;
			}
		}

		@media screen and (min-width:992px) {
			.bottomNav {
				width:634px;
			}

			.bottomNav li {
				width:auto;
				margin-right:25px;
			}
		}

		@media screen and (min-width:1200px) {
			.bottomNav {
				width:832px;
			}
			.bottomNav li {
				margin-right:35px;
			}
		}

.access{    margin: 10px auto 0px;
    display: block;
}
.access a{
    display:inline-block;
}
.access img{
    max-width:150px;
        display: inline-block;
        margin: 0 auto;
}
	.emailSignup {
		min-height:75px;
		float:right;
		margin-top:10px;
		width:100%;
		text-align:center;
	}

		.emailSignup p {
			margin-bottom:3px;
		}

		.emailSignup input {
			border:0 none;
			font-size:.75rem;
		}

		.emailSignup .signupButton {
			color:#757575;
			text-transform: none;
			font-weight:500;
			box-shadow:0 1px 3px 0 rgba(35,31,32,.45);
			font-size:13px;
			z-index: 2;
			position: relative;
			padding-left:20px;
			padding-right:20px;
			background:#fff;
		}

		.emailSignup .captcha {
			clear:both;
			display:none;
			position: relative;
			z-index:5;
			margin-top:6px;
			margin-bottom:12px;
		}

			.emailSignup .captcha.visible {
				display:block;
			}

		@media screen and (min-width:768px) {
			.emailSignup {
				width:270px;
				text-align:right;
				margin-top: 30px;
			}
		}

	.footerInfo {
		clear:both;
		font-weight:500;
	}

		.footerInfo p {
			margin-bottom:0;
			line-height:1.6;
		}

	.footerSocialIcons {
		text-align:center;
		font-size:32px;
		margin-top:.5em;
		margin-bottom:.75rem;
	}
.footerSocialIcons li{
 display: inline;   
}
		.footerSocialIcons a {
			color:dimgrey;
			margin-left:12px;
			margin-right:12px;
		}

			.footerSocialIcons a:hover {
				text-decoration: none;
			}

		@media screen and (min-width:768px) {
			.footerSocialIcons {
				font-size:24px;
				margin-top:.25em;
				margin-bottom:.5rem;
			}
		}

	.copyInfo {
		margin-top:1rem;
		font-weight:400;
		text-align:center;
	}

		.copyInfo a {
			color:#367091;
			display:block;
			margin-top:.5rem;
		}

		@media screen and (min-width:768px) {
			.copyInfo {
				text-align:left;
			}

			.copyInfo a {
				display:inline;
				margin-top:0;
				margin-left:1.25rem;
			}
		}

	.nowrap {
		white-space: nowrap;
	}



/* ------------ CONTENT PAGE STYLES ------------ */

.pageContent {
	margin-top:0;
	margin-bottom:2rem;
	font-size:14px;
	margin-left:-5px;
	margin-right:-5px;
}

	.pageContent img {
		max-width:100%;
	}

	.pageContent iframe {
		max-width:100%;
	}

.pageTitleSection {
	margin-top:1.5rem;
	margin-bottom:1.5rem; 
}

.pageTitleSection p { 
	text-align:center;
	margin-left:auto;
	margin-right:auto;
	width:80%;
}

h1.pageTitle {
	color:#5e5f5f;
}

.featuredImageFigure {
	margin-left:-10px;
	margin-right:-10px;
}

.featuredImage {
	width:100%;
}

@media screen and (min-width:576px) {
	.featuredImageFigure {
		width: 100vw;
		position: relative;
		left: 50%;
		right: 50%;
		margin-left: -50vw;
		margin-right: -50vw;
	}

	.pageContent {
		
	}
}

@media screen and (min-width:768px) {
	.pageContent {
		margin-left:0;
		margin-right:0;
		font-size:16px;
	}

	.pageTitleSection {
		margin-top:2rem;
		margin-bottom:2rem;
	}

	.pageTitleSection p {
		max-width:400px;
	}

	.featuredImageFigure {
	}
}

@media screen and (min-width:992px) {
	.pageContent {
		
	}
}

/* ------------ CONTENT PAGE CLIENT-SELECTABLE CLASSES ------------ */

.btn {
	box-shadow:0 1px 3px 0 rgba(35,31,32,.45);
}
.btn-group-lg>.btn, .btn-lg{
    font-size:1em;
}
.btnBlue, .btnBlue:link, .btnBlue:visited {
	background-color: #3B7BA0;
	color:#fff;
	text-transform: uppercase;
	font-weight: 500;
	white-space:normal;
}

	.btnBlue:hover {
		background-color: #3B7BA0;
	}

.btnGreen, .btnGreen:link, .btnGreen:visited {
	background-color: #697D36;
	color:#fff;
	text-transform: uppercase;
	font-weight: 500;
	white-space:normal;
}

	.btnGreen:hover {
		background-color: darkolivegreen;
	}

blockquote {
	font-size:18px;
	padding-left:10%;
	padding-right:10%;
}

.pullquote {
	font-family: 'merriweather', serif;
	line-height:1.1;
	margin-top:1.25rem;
	margin-bottom:1.25rem;
	width:90%;
	margin-left:5%;
	margin-right:5%;
	font-weight:600;
	font-size:24px;
}

.pageImage {
	width:100%;
}

	.pageImage img {
		width:100%;
	}

.pageImageFull {
	margin-top:1.5rem;
	margin-bottom:1.5rem;	
}

.pageImageHalf {
	margin-top:1rem;
	margin-bottom:1rem;	
}

.pageImageThird {
	width:46%;
	margin-top:.5rem;
	margin-bottom:1rem;
}

	.pageImageThirdLeft {
		float:left;
		margin-right:1rem;
	}

	.pageImageThirdRight {
		float:right;
		margin-left:1rem;
	}

@media screen and (min-width:768px) {
	blockquote {
		font-size:20px;
	}

	.pullquote {
		width:32%;
		margin-left:0;
		margin-right:0;
		font-size:30px;
	}

		.pullquoteLeft {
			float:left;
			margin-right:1.75rem;
		}

		.pullquoteRight {
			float:right;
			margin-left:1.75rem;
		}

	.pageImageFull {

	}

	.pageImageHalf {
		width:48%;
		margin-top:.5em;
		margin-bottom:1.5rem;	
	}

		.pageImageHalfLeft {
			float:left;
			margin-right:1.75rem;
		}

		.pageImageHalfRight {
			float:right;
			margin-left:1.75rem;
		}

	.pageImageThird {
		width:32%;
		margin-bottom:1.5rem;
	}

		.pageImageThirdLeft {
			margin-right:1.75rem;
		}

		.pageImageThirdRight {
			margin-left:1.75rem;
		}
}

/* ------------ PRESS PAGE STYLES ------------ */

.pressHeading {
	margin-top:2rem;
}

.pressListing {
	margin-top:1rem;
	margin-bottom:1rem;
}

.pressListingDate {
	font-weight:600;
	margin-bottom:.5rem;
}

.pressPageTitle {
	font-size: 26px;
}

	@media screen and (min-width:768px) {
		.pressPageTitle {
			font-size:36px;
		}
	}

/* ------------ MEMBER AND LOGIN PAGE STYLES ------------ */

.formSubmit {
	text-align: right;
}

.form-group label, .field_label {
	font-weight:600;
}

.memberPageTitle {
	text-align:center;
}

.logOutButtons {
	margin-bottom:50px;
}

.logOutButtons a {
	margin-bottom:15px;
}

#register_member_form input[type="text"], #register_member_form input[type="password"], #register_member_form select {
	display: block;
    width: 100%;
    padding: .375rem .75rem;
    line-height: 1.5;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

#register_member_form select {
	height:calc(2.25rem + 2px);
}

.form-check-input {
	margin-top: .25rem;
}

/* ------------ CONTACT PAGE/FORM STYLES ------------ */

.freeform-form input[type="text"], .freeform-form select, .freeform-form textarea {
	display: block;
    width: 100%;
    padding: .375rem .75rem;
    line-height: 1.5;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.freeform-form select {
	height:calc(2.25rem + 2px);
	font-size: 1rem;
	color: #757575;
}

.freeform-form input[type="submit"] {
	background-color: #697D36;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    box-shadow: 0 1px 3px 0 rgba(35,31,32,.45);
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    cursor: pointer;
}

	.freeform-form input[type="submit"]:hover {
		background-color: #789D49;
	}

.findManager {
	text-align:left;
	margin-top:2.5rem;
	margin-bottom:2.5rem;
}

	@media screen and (min-width:768px) {
		.findManager {
			text-align:center;
		}
	}

.managerPhoto {
	width:33%;
	margin-bottom:.75rem;
	margin-right:1rem;
	float:left;
}

.managerName {
	margin-bottom:1rem;
}

.managerEmail {
	word-wrap:inherit;
}

.modal-content {
	display: block;
}
h2.modal-title{
    margin-bottom: 0;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
    font-size:20px;
}
/* ------------ HOMEPAGE-SPECIFIC STYLES ------------ */

.homeSection2Content, .homeFinalSectionContent {
	padding-top:30px;
	margin-left:-5px;
	margin-right:-5px;
	font-size:14px;
}


	@media screen and (min-width:768px) {
		.homeSection2Content, .homeFinalSectionContent {
			background:#fff;
			padding-left:25px;
			padding-right:25px;
			padding-bottom:30px;
			margin-right:0;
			margin-left:0;
		}
	}

	@media screen and (min-width:992px) {
		.homeSection2Content, .homeFinalSectionContent {
			font-size:16px;
		}
	}



.top {

	background-position: center -15px;
    background-repeat: no-repeat;
    background-size: 720px;
}

	@media screen and (min-width:720px) {
		.top {
			background-position:center -15px;
			background-size:cover;
                 background-color:dimgray;
		}
	}

	@media screen and (min-width:768px) {
		.top {
            background:dimgray;
			background-position:center;
            			background-size:cover;
		}
	}

.homeHeadlineSection {
	text-align: center;
	margin-left:auto;
	margin-right:auto;
	padding-top:100px;
	padding-bottom:40px;
	max-width:284px;
}

	.homeHeadlineSection p {
		font-size:12px;
		max-width:80%;
		margin-left:auto;
		margin-right:auto;
	}

	@media screen and (min-width:768px) {
		.homeHeadlineSection {
			max-width:450px;
			padding-top:320px;
			padding-bottom:270px;

		}
		.homeHeadlineSection p {
			font-size:16px;
			max-width:75%;
		}
	}


.features {
	margin-top:-10px;
	margin-bottom:-10px;
}

	.homeItemBox {
		margin-left:-5px;
		margin-right:-5px;
	}

	.homeItem {
		text-align:left;
		background:#fff;
		box-shadow: 0 2px 6px 0 rgba(35,31,32,.25);
		width:100%;
		margin-bottom:12px;
		position:relative;
	}

	.homeItem a:hover {
		text-decoration: none;
	}

	.homeItemImage {
		width:100%;
	}

	.homeItemDescription {
		margin-left:-15px;
		margin-right:25px;
	}

	.homeItem p {
		color:#757575;
		font-size:12px;
		margin-bottom:0;
	}

	.homeItemTitle {
		margin-bottom:3px; 
		color:#757575;
		font-size:16px;
	}

	.homeItemArrow {
		position:absolute;
		right:25px;
		color: #757575;
	}
.homeItem figure{
    margin:0;
}

	@media screen and (min-width:768px) {
		.features {
			margin-top:-40px;
			margin-bottom:-40px;
		}

		.homeItemBox {
			margin-left:0;
			margin-right:0;
		}

		.homeItemBox:last-child {
			margin-right:0;
		}

		.homeItem {
			width:22.5%;
			margin-right:2.6666667%;
			margin-bottom:0;
		}

		.homeItemImage {
		}

		.homeItemDescription {
			border-top:1px solid #eee;
			padding-top:16px;
			padding-left:10px;
			padding-right:10px;
			padding-bottom: 16px;
    		margin: 0;
		}

		.homeItemArrow {
			display:none;
		}
	}

	@media screen and (min-width:992px) {
		.homeItem p {
			font-size:16px;
		}

		.homeItemTitle {
			font-size:18px;
		}
	}

.second {
	background-size:918px 320px;
	padding-top:305px;
	background-position:center top;
	background-repeat: no-repeat;
}

	@media screen and (min-width:768px) {
		.second {
			padding-top:280px;
			background-size:cover;
		}
	}

.featuredPlants {
}

	.homePlantsHeadline {
		text-align:left;
		margin-top:35px;
		margin-left:10px;
		margin-right:10px;
	}

	.featuredPlantItem {
		box-shadow: 2px 4px 4px 0 rgba(35,31,32,.15);
		width:50%;
		float:left;
	}

	.featuredPlantItem a:hover {
		text-decoration: none;
	}

	.featuredPlantItem img {
		width:100%;
	}

	.featuredPlantItemDescription {
		margin-top:20px;
		margin-left:12px;
		margin-right:12px;
		font-size:14px;
		line-height:1.3;
		min-height:110px;
	}

	.featuredPlantItem h3 {
		margin-top:20px;
		color:#757575;
		margin-bottom:1px;
		font-size:14px;
	}

	.featuredPlantItem p {
		color:#757575;
	}

	@media screen and (min-width:768px) {
		.homePlantsHeadline {
			margin-top:70px;
			text-align:center;
		}

		.featuredPlantItem {
			width:20%;
		}

		.featuredPlantItem:last-child {
			display:none;
		}

		.featuredPlantItemDescription {
			min-height:0;
		}

	}

	@media screen and (min-width:992px) {
		.featuredPlantItem h3 {
			margin-bottom:3px;
			font-size:16px;
		}

		.featuredPlantItemDescription {
			font-size:16px;
			line-height:1.5;
		}
	}


.finalSection {
	padding-top:390px;
	background-size:1071px 400px;
	background-position:center top;
	background-repeat: no-repeat;
	clear:both;
}

	.finalSectionButton {
		text-transform: uppercase;

	}

	@media screen and (min-width:768px) {
		.finalSection {
			background-size:cover;
			background-position: center;
		}
	}

/* ------------ PLANT FINDER PAGE STYLES ------------ */

#pfSearch {

}

	.selector {
		display:none;
	}

	.selector.show {
		display:inline-block;
	}

	#pfSearch select {
		display: none;
	}

	.ms-parent {
		margin-right:15px;
		margin-bottom:15px;
	}

	.ms-drop {
		color:#757575;
	}

		.ms-drop.bottom {
			border:0 none;
			box-shadow: 0 1px 3px 0 rgba(35,31,32,.45);
		}

		.ms-drop ul {
			overflow-x: hidden;
		}

			.ms-drop ul > li label {
				margin-bottom:.5rem;
				margin-top:.5rem;
			}

		.ms-drop input[type="checkbox"] {
		    margin-right: 6px;
		    margin-bottom: 5px;
		}

		.ms-drop input[type="radio"] {
			margin-right:6px;
			margin-bottom:4px;
			vertical-align: middle;
		}

	.ms-choice {
		height:37px;
		line-height: 37px;
		border:0 none;
		box-shadow: 0 1px 3px 0 rgba(35,31,32,.45);
		color:#757575;
	}

		.ms-choice > div {
			top:6px;
		}

		.ms-choice > span {
			text-align:center;
		}

		.ms-choice span.placeholder {
			text-align: left;
			color:#757575;
		}

	#searchFilter {
		width:250px;
		font-weight:500;
		display: inline-block;
		margin-bottom:15px;
	}

		.searchFilterButton {
			font-size: 20px;
			vertical-align: middle;
			margin-left:4px;
		}

	#orderSelector {
		margin:auto;
		width:100%;
		display: inline-block;
	}

		@media screen and (min-width:768px) {
			#orderSelector {
				width:auto;
				float:right;
			}
		}

	.filters {
		margin-bottom:15px;
	}

		.filterLink {
			margin-left:15px;
			text-decoration: underline;
		}

			.filterLink:link, .filterLink:visited {
				color:#757575;
			}

			.filterLink:hover, .filterLink:active {
	    		color: #555555;
			}

		.filterDropdown {
			display:inline;
		}

		.filters .dropdown-menu {
			border: 0 none;
	    	border-radius: 4px;
	    	box-shadow: 0 2px 6px 0 rgba(35,31,32,.45);
	    	margin-top:-2px;
		}

		.filters .dropdown-item {
			font-size:14px;
			font-weight:500;
		}

		.filters .dropdown-item {
			color:#757575;
			padding-left:.75rem;
			padding-right:.75rem;
		}

			.filters .dropdown-item:hover, .filter .dropdown-item:hover {
				color:#555555;
				background-color:#f8f9fa;
			}

			@media screen and (min-width:768px) {
				.filters .dropdown-item {
					font-size:16px;
				}
			}




#resultsURL {
	display:none;
}

.loading {
	opacity:.5;
	transition: .15s;
}

.resultsMessage {
	font-weight:500;
}

.noResults {
	font-weight:500;
	margin-top:100px;
	margin-bottom:150px;
	font-size:18px;
	text-align: center;
}

.listingPlantItem {
    background:#fff;
	box-shadow: 0 2px 6px 0 rgba(35,31,32,.25);
	margin-bottom:20px;
	overflow: hidden;
}
a.listingLink{
    display:flex;
}

.listingLink:focus-visible{
    margin:5px;
}

	.listingPlantItem figure {
		margin-bottom:0;
        display:inline-block;
	}

.listingPlantInfo {
	padding-top:20px;
	padding-bottom:20px;
	display:block;
	height:15%;
	position: relative;
	bottom: 30px;
}

.listingPlantName, .listingCommonName, .listingBotanicalName, .listingPatentName {
	margin-left:12px;
	margin-right:12px;
	font-size:14px;
	line-height:1.4;
	color:#757575;
	margin-bottom:0;
}

	.listingPlantName {
		margin-top:0;
		font-weight:600;
		font-family: 'Montserrat', sans-serif;
	}

	.listingBotanicalName {
		font-style: italic;
	}

	.listingPlantItem a:hover {
		text-decoration: none;
	}

	.listingPlantItem img {
		width:100%;
	}

	.listingPlantImage.embed-responsive-item {
		height:auto;
		top:-17%;
	}

	@media screen and (min-width:992px) {

		.listingPlantName, .listingCommonName, .listingBotanicalName, .listingPatentName {
			margin-left:20px;
			margin-right:20px;
		}

		.listingPlantItem {
			margin-bottom:30px;
		}

		.listingPlantInfo {
			position: static;
			height:15%;
		}

		.listingPlantName {
			font-size:18px;
			margin-bottom:-1px;
		}

		.listingCommonName, .listingBotanicalName, .listingPatentName {
			font-size:16px;
		}
	}

.listingPlantItem .listingBanner {
    display:none;
	height:39px;
	position:absolute;
	top:3px;
	right:0;
	margin-right:0;
	z-index:2;
	width:auto;
}

	@media screen and (min-width:768px) {
		.listingPlantItem .listingBanner {
			height:48px;
		}
	}

.plantListingButtons {
	width:100%;
	float:right;
	border-top:2px solid #eee;
	position: relative;
	top:98px;
	z-index:3;
}

	.listingButton {
		width:50%;
		line-height:40px;
		display: block;
		float:left;
		text-align: center;
		font-weight:400;
		font-size:12px;
	}	

		.listingButton:link, .listingButton:visited {
			color: #757575;
		}

		.listingButton:hover, .listingButton:active {
			color:#555555;
		}

		.listingButton .fas {
			margin-left:4px;
		}

		.unavailableButton, .unavailableButton:hover {
			color:#ccc;
		}

	.listingButtonDetails {
		border-right:2px solid #eee;
	}

	@media screen and (min-width:992px) {
		.plantListingButtons {
			margin-top:0;
			width:200px;
			margin-left:12px;
			border-top:0 none;
			border-left:2px solid #eee;
			position: static;
		}

			.listingButton {
				width:100%;
				line-height:86px;
				margin-right:15px;
				font-weight:500;
				font-size:16px;
				position:relative;
				z-index:2;
			}

			.listingButtonDetails {
				border-right:0 none;
				border-bottom:2px solid #eee;
			}
	}



/* ------------ PLANT DETAIL PAGE STYLES ------------ */

.btnLightGray, .btnLightGray:link, .btnLightGray:hover, .btnLightGray:active, .btnLightGray:visited {
	background-color: #f2f2f2;
	color: #6E6E6E;
	font-weight: 500;
}

	.btnLightGray:hover {
		background-color:white;
	}


.plantButtons {
	padding-top:.25rem;
	padding-bottom:.5rem;
	margin-left:-10px;
	margin-right:-10px;
	padding-left:10px;
	padding-right:10px;
	background:#f2f2f2;
	margin-bottom:10px;
}

	.plantReturnArrow {
		margin-right:10px;
		font-size:16px;
	}

	.plantButtons .btn.plantOrderButton, .plantButtons .plantReturnButton {
	 	font-size:14px;
	 }

 	.plantReturnButton:link, .plantReturnButton:visited {
 		color:#757575;
 		line-height:1.15;
 		margin-right:18px;
 	}

	.btn.plantOrderButton {
		text-transform: none;
		white-space:nowrap;
	}
.btn-secondary.disabled, .btn-secondary:disabled{
    background: #6E6E6E;
    border:#6E6E6E;
}

	.plantOrderArrow {
		font-size:17px;
		margin-left:7px;
	}

	@media screen and (min-width:576px) {
		.plantButtons {
			background:transparent;
		}
	}

	@media screen and (min-width:768px) {
		.plantButtons {
			margin-left:0;
			margin-right:0;
			padding-left:0;
			padding-right:0;
			padding-top:.5em;
			padding-bottom:.75em;
		}

		.plantReturnArrow {
			font-size:18px;
		}

		.plantButtons .btn.plantOrderButton, .plantButtons .plantReturnButton {
			font-size:16px;
		}

		.plantOrderArrow {
			font-size:18px;
		}
	}

.pwLogo {
	float:right;
	clear:right;
	width:50px;
	margin-top:4px;
	margin-bottom:1.25rem;
	margin-left:1rem;
}

	@media screen and (min-width:768px) {
		.pwLogo {
			width:100px;
			margin-top:.5rem;
			margin-bottom:1.5rem;
			margin-left:1.75rem;
		}
	}

h1.plantName {
	font-size:24px;
	font-family: 'Montserrat', sans-serif;
	font-weight:600;
	color:#814574;
	text-align: left;
	margin-bottom:0;
}

	@media screen and (min-width:768px) {
		h1.plantName {
			font-size:36px;
		}
	}

.commonName {
	font-size:16px;
	color:#5e5f5f;
	margin-bottom:0;
	line-height:1.2;
}

	@media screen and (min-width:768px) {
		.commonName {
			font-size:24px;
		}
	}

.topPlantInfo {
	margin-top:.5rem;
	margin-bottom:.5rem;
}

.compareButtons {
	clear:both;
	margin-top:.5rem;
	border-top:1px solid #cccccc;
}

	.compareCheckbox {
		margin-right:10px;
		height:22px;
	}

	.compareArrow {
		margin-left:3px;
	}

	.compareButtons .btn {
		font-size:12px;
	}

	.compareButtons label {
		margin-bottom:0;
		font-size:12px;
		line-height:22px;
	}

	@media screen and (max-width:767px) {
		.compareButtons .btnLightGray {
			background:transparent;
			box-shadow: none;
			padding-top:8px;
			padding-bottom:8px;
		}
	}

	@media screen and (min-width:768px) {
		.compareButtons {
			border-top:0 none;
			margin-top:1rem;
			margin-bottom:1rem;
		}

			.compareButtons .btn {
				font-size:16px;
			}

			.compareButtons label {
				font-size:16px;
			}
	}

.botanicalName, .patentName, .patentCodes, .mainFeatures {
	font-size:12px;
	margin-bottom:0;
	color:#6E6E6E;
}

	@media screen and (min-width:768px) {
		.botanicalName, .patentName, .patentCodes, .mainFeatures {
			font-size:16px;
		}
	}

.botanicalName {
	font-style: italic;
}

.mainFeatures {
	font-style: italic;
	padding-left:0;
	border-bottom:1px solid #cccccc;
	padding-top:11px;
	padding-bottom:11px;
	margin-top:0;
	margin-bottom:1rem;
	clear:both;
}

	.mainFeatures li {
		display:inline;
		margin-right:15px;
	}

	@media screen and (min-width:768px) {
		.mainFeatures {
			border-top:1px solid #cccccc;
			padding-top:8px;
			padding-bottom:8px;
		}
	}

.habitIcon {
	float:right;
	width:70px;
	margin-top:.5rem;
	margin-bottom:1.5rem;
	margin-left:1rem;	
}

	@media screen and (min-width:768px) {
		.habitIcon {
			width:100px;
		}
	}

.plantInfoLabel, .plantCareLabel, .plantCareHeading {
	font-weight:600;
	color:#A7529C;
	font-size:14px;
	margin-right:5px;
}
a.plantCareLink{
    color:white;
}
	.plantCareLabel {
		color:#A7529C;
	}

	@media screen and (min-width:768px) {
		.plantInfoLabel, .plantCareLabel, .plantCareHeading {
			font-size:18px;
		}
	}

.plantInfo, .plantCare {
/*	font-size:13px;*/
	margin-bottom:12px;
}
dd.plantDes, dt.plantInfoLabel{
    display:inline;
}
dt.plantInfoLabel{
        line-height: 32px;
}
dd.plantDes::after{
     content: "\a";
    white-space: pre;
}
h3.plantCareTitle {
    display:inline;
}
	@media screen and (min-width:768px) {
		.plantInfo, .plantCare {
			font-size:16px;
		}
	}

.plantCareSection {
	box-shadow: 0 2px 6px 0 rgba(35,31,32,.25);
	padding-left:10px;
	padding-right:10px;
	margin-top:1.5rem;
	margin-bottom:1.5rem;
}

	.plantCareLink:hover {
		text-decoration: none;
	}

		.plantCareLink.collapsed .upArrow, .plantCareLink .downArrow {
			display:none;
		}

		.plantCareLink.collapsed .downArrow, .plantCareLink .upArrow {
			display:inline-block;
		}
#pfResults a.plantCareLink {
    display: block;
}
	.plantCareHeading {
		margin-left:-10px;
		margin-right:-10px;
		padding:10px;
		background:#A7529C;
		color:#fff;
	}
h2.plantCareHeading {
    font-family: 'Montserrat', sans-serif;
}
		.plantCareHeading:hover {
			opacity:.92;
		}

	#plantCareContent {
		padding-bottom:5px;
	}

.featuresFilters {
	display:none;
}

	.filtersList, .featuresList {
		font-style: italic;
		font-size:12px;
	}

		.filtersList a, .featuresList a {
			text-decoration: underline;
			color:#6E7577;
		}

			.filtersList a:hover, .featuresList a:hover {
				color:#555555;
			}

		.filtersLabel, .featuresLabel {
			font-weight:600;
			font-style: normal;
		}

	.mobileFeaturesFilters {
		display:block;
	}

	@media screen and (min-width:768px) {
		.featuresFilters {
			display:block;
		}

		.mobileFeaturesFilters {
			display:none;
		}

		.filtersList, .featuresList {
			font-size:16px;
		}		
	}

.newBanner {
	height:39px;
	float:right;
	margin-right:-10px;
	margin-top:0;
	margin-left:1rem;
	margin-bottom:.5rem;
}

	@media screen and (min-width:768px) {
		.newBanner {
			height:52px;
			position:absolute;
			top:3px;
			right:15px;
			margin-right:0;
			z-index:2;
		}
	}

#plantGallery {
	touch-action: none;
}

	.plantPhoto {
		width:100%;
	}

	.ug-thumb-wrapper {
		cursor: pointer;
	}

.mobilePlantGalleryContainer {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	touch-action: none;
	-webkit-overflow-scrolling: touch;
}

	.mobilePlantTip {
		position: absolute;
		top:0;
		z-index: 3;
		width:100%;
		line-height:30px;
		font-size:12px;
		color:#fff;
		background-color:rgba(0,0,0,.2);
		font-style: italic;
		text-align: center;
	}

		.mobilePlantTip .fas {
			margin:0 8px;
		}

	@media screen and (min-width:768px) {
		.mobilePlantGalleryContainer {
			display:none;
		}
	}

.resourceButtons {
	margin-bottom:16px;
}

	.resourceButtons .btn {
		display:inline-block;
		white-space: normal;
    	margin-bottom: 10px;
    	margin-right: 6px;
	}

	.resourceArrow {
		margin-left:5px;
	}

	.mobileResourceButtons .btn {
		width:100%;
		margin-bottom:8px;
		font-size:14px;
	}

	@media screen and (min-width:768px) {
		.mobileResourceButtons {
			display:none;
		}
	}

.breederInfo {

}
.breederInfo h2{
        color: #5e5f5f;
    font-size:18px;
}
	.breederPhoto {
		width:120px;
		float:left;
		margin-right:20px;
		margin-bottom:20px;
	}

.testimonials {
	text-align:center;
	background:#f2f2f2;
	color:#5e5f5f;
	padding:14px;
	margin-bottom:1rem;
	clear:both;
}

	.testimonialsArrow {
		color:#6E7577;
		font-size:30px;
	}

	.testimonials .carousel-control-prev {
		left:-20px;
		opacity:.75;
	}

	.testimonials .carousel-control-next {
		right:-20px;
		opacity:.75;
	}

	.testimonials .carousel-item {
		width:80%;
		margin-left:10%;
		margin-right:10%;
	}

	.testimonials h4 {
		margin-bottom:24px;
	}

	.testimonials p {
		margin-bottom:12px;
	}

	.testimonials .testimonialAuthor {
		margin-top:12px;
		margin-bottom:0;
		font-weight:600;
	}

.youMayAlsoLike {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	background:#f2f2f2;
	text-align: center;
	padding-top:1rem;
	margin-top:.5rem;
	margin-bottom:1rem;
	padding-bottom:1.5rem;
}

	.alsoLikeHeading {
		color:#5e5f5f;
		margin-bottom:1.5rem;
		font-size:30px;
	}

	.relatedPlantCarousel {
	    position: relative;
	    overflow: hidden;
	}

		a.jcarousel-prev, a.jcarousel-next {
			font-size:48px;
			color:#6E7577;
			position:absolute;
		}

			a.jcarousel-prev {
				left:0;
				margin-left:-15px;
				margin-top:-10px;
			}

			a.jcarousel-next {
				right:0;
				margin-right:-15px;
				margin-top:-10px;
			}

			
		.relatedPlantList {
		    width: 10000em;
		    position: relative;
		}

			.relatedPlantItem {
			    float: left;
			    margin-left:15px;
			    margin-right:15px;
			    background:#fff;
				box-shadow: 0 2px 6px 0 rgba(35,31,32,.25);
				padding-bottom:18px;
				text-align: left;
				margin-bottom:8px;
			}

				.relatedPlantItem a:hover {
					text-decoration: none;
				}

				.relatedPlantItem img {
					width:100%;
				}

				.relatedPlantName, .relatedCommonName, .relatedBotanicalName {
					margin-left:12px;
					margin-right:12px;
					font-size:14px;
					line-height:1.4;
					color:#757575;
					margin-bottom:0;
				}

				.relatedPlantName {
					font-weight:600;
					margin-top:20px;
				}

				.relatedBotanicalName {
					font-style: italic;
				}

	@media screen and (min-width:768px) {
		.youMayAlsoLike {
			padding-top:2rem;
			margin-top:1rem;
			padding-bottom:3.5rem;
		}

		.alsoLikeHeading {
			font-size:36px;
			margin-bottom:2rem;
		}

		a.jcarousel-prev {
			margin-left:-30px;
		}

		a.jcarousel-next {
			margin-right:-30px;
		}
	}

	@media screen and (min-width:992px) {
		.relatedPlantName {
			font-size:18px;
			margin-bottom:-1px;
		}

		.relatedCommonName, .relatedBotanicalName {
			font-size:16px;
		}
	}

.addOrderTable {
	text-align:center;
}

	.addOrderTable thead th, .addOrderTable td {
		vertical-align:middle;
	}

	input.noOfLiners {
		padding-left:.375rem;
		padding-right:.375rem;
		width:44px;
		margin-left:auto;
		margin-right:auto;
	}
.pgrid tbody{
    vertical-align: top;
}
@media screen and (max-width: 767px) {

    .pgrid img{
        max-height:100px;
    }
    table.pgrid{
        display: block;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto 30px;
  overflow-x: auto;
  white-space: nowrap;
    }
}
/* ------------ COMPARISON PAGE STYLES ------------ */

.product-comparison-block {
  margin-bottom: 25px; }
  @media only screen and (max-width: 479px) {
    .product-comparison-block {
      margin-bottom: 15px; } }
  .product-comparison-block .table {
    margin-bottom: 0;
    font-size:11px;
    table-layout: fixed; }
    @media only screen and (min-width: 1200px) {
      .product-comparison-block .table {
      	font-size:14px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .product-comparison-block .table {
        font-size: 12px; } }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .product-comparison-block .table {
        font-size: 11px; } }
    .product-comparison-block .table th,
    .product-comparison-block .table td {
      width: 21%; }
      .product-comparison-block .table th.cell-label,
      .product-comparison-block .table td.cell-label {
        width: 16%; }
        @media only screen and (min-width: 1200px) {
          .product-comparison-block .table th.cell-label,
          .product-comparison-block .table td.cell-label {
            font-size: 14px; } }
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
          .product-comparison-block .table th.cell-label,
          .product-comparison-block .table td.cell-label {
            font-size: 12px; } }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .product-comparison-block .table th.cell-label,
          .product-comparison-block .table td.cell-label {
            font-size: 11px; } }
      .product-comparison-block .table th img,
      .product-comparison-block .table td img {
        margin-bottom: 10px; }

@media only screen and (max-width: 767px) {
  .product-comparison-block .container {
    overflow-x: scroll; }
    .product-comparison-block .container .table th,
    .product-comparison-block .container .table td {
      width: 151px; }
      .product-comparison-block .container .table th.cell-label,
      .product-comparison-block .container .table td.cell-label {
        width: 116px; } }


.product-comparison-block .relatedPlantItem {
	padding-bottom:12px;
	margin-left:0;
	margin-right:0;
}

.product-comparison-block figure {
	margin-bottom:0;
}

.product-comparison-block .relatedPlantName, .product-comparison-block .relatedCommonName, .product-comparison-block .relatedBotanicalName {
	font-size:11px;
	margin-left:8px;
	margin-right:8px;
}

.product-comparison-block .relatedPlantName {
	margin-top:0;
	font-size:12px;
}

@media screen and (min-width: 992px) {

	.product-comparison-block .relatedPlantName, .product-comparison-block .relatedCommonName, .product-comparison-block .relatedBotanicalName {
		font-size:13px;
	}

	.product-comparison-block .relatedPlantName {
		font-size:14px;
	}
}


.product-comparison-block .table thead th {
	font-weight: inherit;
	vertical-align: top;
	border-top: 0 none;
}

.cell-label {
	color:#697D36;
}

.compHabitIcon {
	float:none;
	margin:0;
}

.product-comparison-block .btn {
	font-size:14px;
}

/* ------------ MY ORDER PAGE STYLES ------------ */

.orderReturnButton:link, .orderReturnButton:visited {
	margin-right:10px;
}

.orderTitleSection {
	margin-top:1rem;
}

	@media screen and (min-width:768px) {
		.orderTitleSection {
			margin-top:0;
		}
	}

.myOrderTopRow {
	background-color:#f2f2f2;
	margin-bottom:2rem;
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	text-align:center;
}
	
	.linerTotal {
		padding-top:1rem;
		margin-bottom:1rem;
		display:block;
		font-weight:500;
		color:#5e5f5f;
	}

	.applyChangesButton, .applyChangesButton:link, .applyChangesButton:visited {
		margin-bottom:1rem;
		margin-left:auto;
		width:100%;
		font-size:14px;
		color:#757575;
		background-color:#fff;
	}

		.applyChangesButton:hover {
			color:#4a4a4a;
			background: #e2e6ea;
		}

		@media screen and (min-width:768px) {
			.myOrderTopRow {
				text-align:left;
			}

			.linerTotal {
				padding-top:0;
				margin-top:.5rem;
				margin-bottom:.5rem;
				display:inline-block;
				height:38px;
				line-height:38px;
			}

			.applyChangesButton, .applyChangesButton:link, .applyChangesButton:visited {
				float:right;
				margin-top:.5rem;
				margin-bottom:.5rem;
				width:auto;
				font-size:16px;
				margin-left:.5rem;
			}

			.printButton, .printButton:link, .printButton:visited {
				width:90px;  
			}
		}

		@media screen and (min-width:992px) {
		}

.myOrderItem {
	margin-bottom:2rem;
	box-shadow: 0 2px 6px 0 rgba(35,31,32,.25);
	clear:both;
}

.myOrderDetailsButton {
	float:right;
	margin:.5rem;
	margin-top:1rem;
	font-size:14px;
}

	@media screen and (min-width:768px) {
		.myOrderDetailsButton {
			margin-right:1rem;
		}
	}

	@media screen and (min-width:992px) {
		.myOrderDetailsButton {
			font-size:16px;
		}
	}

.myOrderPlantInfo {
	margin-top:1rem;
	margin-bottom:1rem;
}

	@media screen and (min-width:768px) {
		.myOrderPlantInfo .myOrderName {
			margin-left:0;
			margin-right:0;
		}
	}

.myOrderPlantImage {
	width:100%;
}

.myOrderTable {
	text-align:center;
	font-size:14px;
}

	.myOrderTable thead th, .myOrderTable td {
		vertical-align:middle;
	}

	.myOrderTable th {
		border-top:0 none;
		color:#697D36;
	}

	@media screen and (min-width:992px) {
		.myOrderTable {
			font-size:16px;
		}
	}

#shareModal .g-recaptcha {
	overflow: hidden;
}

.checkoutSidebar {
	padding-left:0;
	list-style-type: none;
	line-height:1;
}

	.checkoutSidebar li {
		margin-bottom:.5rem;
	}

/* ------------ RESOURCE SECTION STYLES ------------ */

.resourceListingThumb {
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.resourcePageContent {
	margin-top:30px;
}

#resourceSearch #searchFilter {
	margin-bottom:1rem;
}

@media screen and (max-width:767px) {
	#resourceSearch {
		text-align:center;
	}

	#resourceSelector .ms-parent {
		text-align:left;
	}
}

#resourceSelector .ms-parent {
	margin-right:0;
	margin-bottom:2rem;
}

	@media screen and (min-width:768px) and (max-width:991px) {
		#resourceSelector {
			float:right;
		}
	}

.resourceThumbnail {
	width:100%;
}

@media screen and (min-width:992px) {
	.noResourceResults {
		margin-top:150px;
	}
}

.resourceResults .row {
}

	.resourceItem {
		margin-bottom:30px;
	}

	@media screen and (max-width:767px) {
.resourceResults .row {
    margin-right:auto;
    margin-left: auto;
}
	}

	.resourceResults figure {
		margin-bottom:.5rem;
	}

.listingResourceName {
	font-size:14px;
	line-height:1.4;
	color:#757575;
	margin-bottom:.25rem;
	margin-top:0;
	font-weight:600;
	font-family: 'Montserrat', sans-serif;
}

	@media screen and (min-width:992px) {
		.listingResourceName {
			font-size:18px;
			margin-bottom:-1px;
		}
	}

.listingResourceType {
	font-size:14px;
	line-height:1.4;
	color:#757575;
	margin-bottom:.5rem;
}

	@media screen and (min-width:992px) {
		.listingResourceType {
			font-size:16px;
		}
	}

.listingResourceInfo {

}

.resourceViewButton {

}


h1.resourceTitle {
	font-size:24px;
	font-family: 'Montserrat', sans-serif;
	font-weight:600;
	color: #814574;
	text-align: left;
}

	@media screen and (min-width:768px) {
		h1.resourceTitle {
			font-size:36px;
		}
	}

.resourceInfoLabel {
	font-weight:600;
	font-size:14px;
	margin-right:5px;
}

	@media screen and (min-width:768px) {
		.resourceInfoLabel, .plantCareLabel, .plantCareHeading {
			font-size:18px;
		}
	}

.resourcePageButtons {
	text-align:right;
}


/* ------------ MEET THE TEAM PAGE STYLES ------------ */

.teamHeading, .teamHeading:link, .teamHeading:visited {
	border: 2px solid #f1f1f1;
    box-shadow: 0 2px 6px 0 rgba(35,31,32,.25);
	padding:.75rem 1rem;
	display:block;
	color:#697D36;
	background:#fff;
}

	.teamHeading:hover {
		text-decoration: none;
		color:#789D49;
	}

	.teamHeading h2 {
		font-family: 'Montserrat', sans-serif;
		margin-bottom:0;
		font-size:18px;
	}

	.teamHeading i {
		margin-top:2px;
		float:right;
		margin-left:6px;
		margin-bottom:3px;
	}

	@media screen and (min-width:768px) {
		.teamHeading h2 {
			font-size:28px;
		}

		.teamHeading i {
			font-size:24px;
			margin-top:4px;
		}
	}

.teamMember {
	margin-top:1rem;
	margin-bottom:1rem;
}

.teamMember p {
	margin-bottom:.5rem;
}

.teamName {
	font-size:16px;
}

	@media screen and (min-width:768px) {
		.teamName {
			font-size:18px;
		}
	}

.teamPhoto {
	width:100%;
	margin-bottom:1rem;
}

.teamEmail {
	word-wrap: break-word;
}

/* ------------ SEARCH RESULT STYLES ------------ */

.searchResultsInfo {
	margin-bottom:2rem;
}

.searchResult {
	margin-bottom:1rem;
}

	.searchResult h3, .searchResult h2 {
		margin-bottom:.25rem;
        font-size: 20px;
        font-family: 'Montserrat', sans-serif;
	}
a.search-img {
    display: block;
}
.searchResultImage {
	width:100%;
	margin-bottom:.75rem;
}

.searchResultDescription {
	margin-bottom:1rem;
}

.hiddenToggle {
	width:1px;
	font-size:0;
	color:#fff;
	z-index:-1;
}

@media screen and (max-width:991px) {
	.searchBox .dropdown-menu {
		margin-top:-1.5rem;
	}
}


/* ------------ PRINT STYLES ------------ */

@media print {

	@page {
		margin:80px 0;
	}

	body {
		background: transparent;
	}

	.listingPlantName {
		font-size:18px;
		margin-bottom:-1px;
		color:#000;
		}

	.listingCommonName, .listingBotanicalName, .listingPatentName {
		font-size:16px;
		color:#000;
	}

	.table {
		color:#000;
		font-size:16px;
	}

	.plantButtons, .bottomNav, .emailSignup, .footerSocialIcons, .btn {
		display:none !important;
	}

	.orderTitleSection {
		margin-top:1rem;
	}
}

.table-wrapper {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  overflow: auto;
  white-space: nowrap;
}
.table-wrapper img{
    max-width:360px;
    padding:10px 0px;
}

/* --------- Hubspot Forms ------------ */
.hs-input{
    border: 1px solid #000 !important;
}
.newsform .hs_email.hs-email.hs-fieldtype-text.field.hs-form-field, .newsform .hs_company.hs-company.hs-fieldtype-text.field.hs-form-field, .newsform .hs_company_type__cloned_.hs-company_type__cloned_.hs-fieldtype-radio.field.hs-form-field {
width:100%;
}
.newsform .hs-form * {
    box-sizing: border-box;
}
.hs_recaptcha.hs-recaptcha.field.hs-form-field {
    display: inline-block;
}
.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_f8046fd1-fbb7-4ce7-902c-a5d748096228 fieldset.form-columns-2 .hs-form-field, .hs_firstname.hs-firstname.hs-fieldtype-text.field.hs-form-field,.hs_lastname.hs-lastname.hs-fieldtype-text.field.hs-form-field, .hs_company.hs-company.hs-fieldtype-text.field.hs-form-field, .hs_company_type__cloned_.hs-company_type__cloned_.hs-fieldtype-radio.field.hs-form-field, .hs_email.hs-email.hs-fieldtype-text.field.hs-form-field, .hs_phone.hs-phone.hs-fieldtype-text.field.hs-form-field, .hs_city.hs-city.hs-fieldtype-text.field.hs-form-field, .hs_state_province__select_.hs-state_province__select_.hs-fieldtype-select.field.hs-form-field, .hs_zip.hs-zip.hs-fieldtype-text.field.hs-form-field, .hs_country.hs-country.hs-fieldtype-text.field.hs-form-field {
    width: 50%;
    float: left;
}

.hs-form-required{
  color:#E8111C;  
}

.hs-button{ ;margin:0;cursor:pointer;display:inline-block;font-weight:700;line-height:12px;position:relative;text-align:center;transition:all .15s linear;background-color:#697D36;border-color:#697D36;color:#fff;border-radius:3px;border-style:solid;border-width:1px;font-size:14px;padding:12px 24px}.hs-button:hover,.hs-button:focus{background-color:#789D49;border-color:#789D49}.hs-button:active{background-color:#e66e50;border-color:#e66e50}label{font-size:14px;width:130px;color:#33475b;display:block;float:none;width:auto;font-weight:500;line-height:20px;padding-top:0;margin-bottom:4px; }.hs-video-form label{color:#fff !important}.hs-video-form .hs-back-button{background-color:#fff;width:20%;height:38px;margin-right:10px;border:1px solid;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;border-radius:3px}.hs-video-form .hs-button{width:70%}.hs-video-form .hs-button span{font-size:15px}.hs-video-form .hs-richtext{color:#fff !important}.hs-video-form .legal-consent-container{max-height:180px !important;overflow-y:scroll !important}.hs-video-form .legal-consent-container:after{content:"";display:block;height:100px;width:100%}.hs-video-form .legal-consent-wrapper{position:relative}.hs-video-form .legal-consent-overlay{position:absolute;pointer-events:none;left:0;bottom:0;height:100px;width:100%;background:linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #292929 100%)}.hs-error-msgs label{color:#E8111C}.hs-input{display:inline-block;width:90%;max-width:500px;height:40px;padding:9px 10px; ;font-size:16px;font-weight:normal;line-height:22px;color:#33475b;border:1px solid #cbd6e2;box-sizing:border-box;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;border-radius:3px}.hs-input:not([type=file]){background-color:#f5f8fa}.hs-input[type=checkbox],.hs-input[type=radio]{cursor:pointer;width:auto;height:auto;padding:0;margin:3px 5px 3px 0px;line-height:normal;border:none}.hs-input[type=file]{padding:initial;border:initial;line-height:initial;box-shadow:none}select.is-placeholder{color:#bfbfbf}select.is-placeholder:focus{color:#33475b}.hs-input:-moz-placeholder{color:#bfbfbf}.hs-input::-webkit-input-placeholder{color:#bfbfbf}.hs-input option:disabled{color:#bfbfbf}.hs-input input,.hs-input textarea{transition:border .2s linear}.hs-input:focus{outline:none;border-color:rgba(82,168,236,.8)}textarea.hs-input{height:auto}select[multiple].hs-input{height:inherit}input.hs-input.error,div.field.error input,div.field.error textarea,div.field.error .chzn-choices,textarea.hs-input.error,select.hs-input.error{border-color:#c87872}input.hs-input.error:focus,div.field.error input:focus,div.field.error textarea:focus,div.field.error .chzn-choices:focus,textarea.hs-input.error:focus,select.hs-input.error:focus{border-color:#b9554d}.actions{margin-top:18px;margin-bottom:18px;padding:17px 0px}.inputs-list{margin:0 0 5px;width:100%;padding-left:5px}.inputs-list>li{display:block;padding:0;width:100%;padding-top:0}.inputs-list label{float:none;width:auto;padding:0;line-height:18px;white-space:normal;font-weight:normal}.inputs-list:first-child{padding-top:6px}.inputs-list>li+li{padding-top:2px}ul.no-list{list-style:none}.field{margin-bottom:18px}.hs-field-desc{color:#7c98b6;margin:0px 0px 6px;font-size:11px; }.hs-richtext{margin-bottom:3px; ;line-height:24px;font-size:14px;color:#33475b}.hs-richtext hr{margin-left:0;width:91%}.hs-custom-style .hs-dependent-field>div input.hs-input:not([type=checkbox]):not([type=radio]){width:90%}form.hs-form-rtl .field{flex:0 1 100%}form.hs-form-rtl .hs-input[type=checkbox],form.hs-form-rtl .hs-input[type=radio]{margin:3px 5px 3px 5px}form.hs-form-rtl fieldset{display:flex}form.hs-form-rtl fieldset[class^=form-columns-] .input{margin-right:0px}form.hs-form-rtl ul{padding:0px}form.hs-form-rtl .legal-consent-container .hs-form-booleancheckbox-display{display:flex}form.hs-form-rtl .legal-consent-container .hs-form-booleancheckbox-display input{width:auto;float:none}form.hs-form-rtl .legal-consent-container .hs-form-booleancheckbox-display>span{display:inline-block;margin-left:0px}form.hs-form-rtl .hs-dependent-field{display:flex;flex:0 1 100%;flex-wrap:wrap}.email-correction,.email-validation{padding-top:3px;font-size:12px; }.email-correction a,.email-validation a{cursor:pointer}@media(max-width: 400px),(min-device-width: 320px)and (max-device-width: 480px){.email-correction form .form-columns-2 .hs-form-field,.email-correction form .form-columns-3 .hs-form-field,.email-validation form .form-columns-2 .hs-form-field,.email-validation form .form-columns-3 .hs-form-field{float:none;width:100%}.email-correction form .form-columns-2 .hs-form-field .hs-input,.email-correction form .form-columns-3 .hs-form-field .hs-input,.email-validation form .form-columns-2 .hs-form-field .hs-input,.email-validation form .form-columns-3 .hs-form-field .hs-input{width:90%}.email-correction form .form-columns-2 .hs-form-field input[type=checkbox],.email-correction form .form-columns-2 .hs-form-field input[type=radio],.email-correction form .form-columns-3 .hs-form-field input[type=checkbox],.email-correction form .form-columns-3 .hs-form-field input[type=radio],.email-validation form .form-columns-2 .hs-form-field input[type=checkbox],.email-validation form .form-columns-2 .hs-form-field input[type=radio],.email-validation form .form-columns-3 .hs-form-field input[type=checkbox],.email-validation form .form-columns-3 .hs-form-field input[type=radio]{width:24px}}.hs-button,.hs-form-field input[type=text],.hs-form-field input[type=email],.hs-form-field input[type=phone],.hs-form-field input[type=number],.hs-form-field input[type=tel],.hs-form-field input[type=date],.hs-form-field textarea{-webkit-appearance:none;-moz-appearance:none}.hs-default-font-element,.hs-main-font-element{ }.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07.hs-form { width: 100% } .hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 .hs-submit > .actions { text-align: left; } .hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 .hs-button, .hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 .hs-button:hover, .hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 .hs-button:hover:not(.inactive), .hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 .hs-button:focus, .hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 .hs-button:active, .hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 .hs-button:active:not(.inactive):not(.link) { background: #697D36; border-color: #697D36; color: #ffffff; font-size: 12px; line-height: 12px; font-family: arial, helvetica, sans-serif; } .hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 legend.hs-field-desc { font-family: arial, helvetica, sans-serif; color: #7C98B6; font-size: 11px; } .hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 .hs-form-field label { font-family: arial, helvetica, sans-serif; font-size: 13px; } .hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 .hs-form-field label:not(.hs-error-msg) { color: #33475b; } .hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 .legal-consent-container .hs-richtext, .hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 .legal-consent-container label { font-family: arial, helvetica, sans-serif; color: #33475b; font-size: 14px; } .hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 .hs-main-font-element, .submitted-message.hs-main-font-element{ font-family: arial, helvetica, sans-serif; } .hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07.submitted-message { font-size: 16px; color: #33475b; }.fn-date-picker.pika-single{z-index:9999;display:block;position:relative;color:#333;background:#fff;border:1px solid #ccc;border-bottom-color:#bbb;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;*zoom:1}.fn-date-picker.pika-single.is-hidden{display:none}.fn-date-picker.pika-single.is-bound{position:absolute;box-shadow:0 5px 15px -5px rgba(0,0,0,.5)}.fn-date-picker.pika-single:after,.fn-date-picker.pika-single:before{content:" ";display:table}.fn-date-picker.pika-single:after{clear:both}.fn-date-picker .pika-lendar{float:left;width:240px;margin:8px}.fn-date-picker .pika-title{position:relative;text-align:center}.fn-date-picker .pika-title select{cursor:pointer;position:absolute;z-index:9998;margin:0;left:0;top:5px;filter:alpha(opacity=0);opacity:0}.fn-date-picker .pika-label{display:inline-block;*display:inline;position:relative;z-index:9999;overflow:hidden;margin:0;padding:5px 3px;font-size:14px;line-height:20px;font-weight:700;background-color:#fff}.fn-date-picker .pika-next,.fn-date-picker .pika-prev{display:block;cursor:pointer;position:relative;outline:none;border:0;padding:0;width:20px;height:30px;text-indent:20px;white-space:nowrap;overflow:hidden;background-color:transparent;background-position:50%;background-repeat:no-repeat;background-size:75% 75%;opacity:.5;*position:absolute;*top:0}.fn-date-picker .pika-next:hover,.fn-date-picker .pika-prev:hover{opacity:1}.fn-date-picker .pika-next.is-disabled,.fn-date-picker .pika-prev.is-disabled{cursor:default;opacity:.2}.fn-date-picker .is-rtl .pika-next,.fn-date-picker 
.pika-prev{ float:left;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==);*left:0}.fn-date-picker .is-rtl .pika-prev,.fn-date-picker .pika-next{float:right;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=);*right:0}.fn-date-picker .pika-select{display:inline-block;*display:inline}.fn-date-picker .pika-table{width:100%;border-collapse:collapse;border-spacing:0;border:0}.fn-date-picker .pika-table td,.fn-date-picker .pika-table th{width:14.285714285714286%;padding:0}.fn-date-picker .pika-table th{color:#999;font-size:12px;line-height:25px;font-weight:700;text-align:center}.fn-date-picker .pika-table abbr{border-bottom:none;cursor:help}.fn-date-picker .pika-button{cursor:pointer;display:block;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;border:0;margin:0;width:100%;padding:5px;color:#666;font-size:12px;line-height:15px;text-align:right;background:#f5f5f5}.fn-date-picker .pika-button:hover{color:#fff!important;background:#ff8000!important;box-shadow:none!important;border-radius:3px!important}.fn-date-picker .is-today .pika-button{color:#3af;font-weight:700}.fn-date-picker .is-selected .pika-button{color:#fff;font-weight:700;background:#3af;box-shadow:inset 0 1px 3px #178fe5;border-radius:3px}.fn-date-picker .is-disabled .pika-button{pointer-events:none;cursor:default;color:#999;opacity:.3}.fn-date-picker .pika-week{font-size:11px;color:#999}

.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 .inputs-list.inline-list li{vertical-align:top;display:inline-block;word-wrap:break-word;padding-right:16px}.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 .inputs-list.inline-list li:after{clear:both}.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 .inputs-list.inline-list li input{float:left}.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 .inputs-list.inline-list.inline-list-2 li{width:50%}.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 .inputs-list.inline-list.inline-list-2 li:nth-child(2n){padding-right:0}.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 .inputs-list.inline-list.inline-list-3 li{width:33%}.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 .inputs-list.inline-list.inline-list-3 li:nth-child(3n){width:34%;padding-right:0}.hs-fieldtype-intl-phone.hs-input{padding:0;background:none;border:none;height:auto}.hs-fieldtype-intl-phone.hs-input:after{clear:both;content:" ";display:table}.hs-fieldtype-intl-phone.hs-input .hs-input{margin-bottom:0}.hs-fieldtype-intl-phone.hs-input input{width:68%!important;float:right}.hs-fieldtype-intl-phone.hs-input select{float:left;width:30%!important}@media (max-device-width:480px) and (min-device-width:320px),(max-width:400px){.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07>.hs-phone>.input>.hs-fieldtype-intl-phone.hs-input>input.hs-input{width:68%!important}.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07>.hs-phone>.input>.hs-fieldtype-intl-phone.hs-input>select.hs-input{width:30%!important}}.hs-input-range-container{width:95%}.hs-input-range-container div{display:inline-block;line-height:50px}.hs-input-range-container .hs-input-range{width:90%;height:40px}.hs-input-range-container .hs-input-range>*{vertical-align:middle}.hs-input-range-container .hs-input-range input{margin:0 5px;width:85%}.hs-input-range-container .hs-input-range-value-container{width:10%}.hs-input-range-container .hs-input{width:100%!important;margin-right:1px;background-color:#fff;text-align:center}.hs-input-range__slider{appearance:none;margin:0;height:30px;overflow:hidden;cursor:pointer}.hs-input-range__slider:focus{outline:none}.hs-input-range__slider::-webkit-slider-runnable-track{width:100%;height:30px;background:linear-gradient(180deg,#0199ff,#0199ff) 100% 50%/100% 3px no-repeat transparent}

.hs-input-range__slider::-moz-range-progress,.hs-input-range__slider::-moz-range-track{width:100%;height:30px;background:linear-gradient(180deg,#cfcfcf,#cfcfcf) 100% 50%/100% 3px no-repeat transparent}.hs-input-range__slider::-moz-range-progress{background:linear-gradient(180deg,#0199ff,#0199ff) 100% 50%/100% 3px no-repeat transparent}.hs-input-range__slider::-moz-range-thumb{appearance:none;margin:0;height:13px;width:13px;background:#0199ff;border-radius:100%;border:0;transition:background-color .15s}.hs-input-range__slider::-ms-track{width:100%;height:30px;border:0;color:transparent;background:transparent}.hs-input-range__slider::-ms-fill-lower{background:linear-gradient(180deg,#0199ff,#0199ff) 100% 50%/100% 3px no-repeat transparent}.hs-input-range__slider::-ms-fill-upper{background:linear-gradient(180deg,#cfcfcf,#cfcfcf) 100% 50%/100% 3px no-repeat transparent}.hs-input-range__slider::-ms-thumb{appearance:none;height:13px;width:13px;background:#0199ff;border-radius:100%;border:0;transition:background-color .15s;top:0;margin:0;box-shadow:none}.hs-input-range__slider:focus::-webkit-slider-thumb,.hs-input-range__slider:hover::-webkit-slider-thumb{background-color:#55c2ff}.hs-input-range__slider:focus::-moz-range-thumb,.hs-input-range__slider:hover::-moz-range-thumb{background-color:#55c2ff}.hs-input-range__slider:focus::-ms-thumb,.hs-input-range__slider:hover::-ms-thumb{background-color:#55c2ff}.hs-input-rating__container{width:95%;margin-bottom:30px;display:table;table-layout:fixed}.hs-input-rating__container section{display:table-row}.hs-input-rating__label{position:relative;display:table-cell;vertical-align:middle;text-align:center}.hs-input-rating__label input,.hs-input-rating__label svg{position:absolute;top:20px;left:0;right:0;margin-left:auto;margin-right:auto;display:block;cursor:pointer}.hs-input-rating__label svg{position:absolute;width:45px;height:45px;fill:#fff;stroke:#ccc;transform:scale(.6);transition:transform .2s ease-in-out}.hs-input-rating__label path{transition:fill .2s ease-in-out,stroke .1s ease-in-out}.hs-input-rating__is-star input{display:none}.hs-input-rating__svg-is-selected{transform:scale(.7)}.hs-input-rating__svg-is-selected path{fill:#f7e31b;stroke:#d7c508}.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 .hs-button{white-space:pre-wrap}.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 .hs-richtext{word-break:break-word}.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07.submitted-message{overflow:auto}.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 fieldset{border:0;padding:0;margin:0;max-width:500px}.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 fieldset.form-columns-1 .hs-input{width:95%}.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 fieldset.form-columns-1 .input{margin-right:8px}.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 fieldset.form-columns-1 input[type=checkbox],.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 fieldset.form-columns-1 input[type=radio]{width:auto}.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 fieldset.form-columns-2 .hs-form-field{width:50%;float:left}.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 fieldset.form-columns-2 .input{margin-right:8px}.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 fieldset.form-columns-3 .hs-form-field{width:32.7%;float:left}.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 fieldset.form-columns-3 .input{margin-right:8px}.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 label.hs-hidden{visibility:hidden}.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07 .hs-field-desc{width:100%}.hs-custom-style .hs-input,.hs-custom-style fieldset{max-width:100%}.hs-custom-style>div.form-columns-3 .hs-form-field,.hs-custom-style fieldset.form-columns-3 .hs-form-field{width:33.3%}.hs-custom-style>div>div:last-of-type .hs-input:not([type=checkbox]):not([type=radio]),.hs-custom-style fieldset>div:last-of-type .hs-input:not([type=checkbox]):not([type=radio]){width:100%;max-width:100%}.hs-custom-style>div input:not([type=image]):not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]),.hs-custom-style fieldset input:not([type=image]):not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]){box-sizing:border-box;padding:0 15px;min-height:27px}.hs-custom-style>div textarea,.hs-custom-style fieldset textarea{padding:10px 15px}.hs-custom-style .hs-dependent-field>div .hs-input:not([type=checkbox]):not([type=radio]){width:100%}@media (max-width:400px),(min-device-width:320px) and (max-device-width:480px){.hs-custom-style .hs-input:not([type=checkbox]):not([type=radio]),.hs-custom-style fieldset{margin-right:0!important;width:100%!important}form.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07:not(.hs-video-form) .form-columns-2 .hs-form-field,form.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07:not(.hs-video-form) .form-columns-3 .hs-form-field{float:none;width:100%}form.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07:not(.hs-video-form) .form-columns-2 .hs-form-field .hs-input,form.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07:not(.hs-video-form) .form-columns-3 .hs-form-field .hs-input{width:95%}form.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07:not(.hs-video-form) .form-columns-2 .hs-form-field input[type=checkbox],form.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07:not(.hs-video-form) .form-columns-2 .hs-form-field input[type=radio],form.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07:not(.hs-video-form) .form-columns-3 .hs-form-field input[type=checkbox],form.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_acdfa231-a899-419a-9034-5c70b0937e07:not(.hs-video-form) .form-columns-3 .hs-form-field input[type=radio]{width:auto}}.legal-consent-container .field.hs-form-field{margin-bottom:8px}.legal-consent-container .hs-field-desc.checkbox-desc{margin:-12px 0 0 21px}.legal-consent-container .hs-form-booleancheckbox-display input{float:left}.legal-consent-container .hs-form-booleancheckbox-display>span{display:block;margin-left:20px}.legal-consent-container .hs-form-booleancheckbox-display p{margin:0;display:inline}.legal-consent-container .hs-error-msgs label{color:#E8111C}.legal-consent-container~.hs_recaptcha{margin-top:18px}.cookie-reset-container{font-size:14px;margin-bottom:10px;text-align:right}



#hs-outer-captcha-target,#hs-outer-captcha-target *{display:none;height:0;width:0}.hubspot-link__container{font-size:14px;padding-bottom:40px;position:relative;color:#9fa0a2;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.hubspot-link-text{color:#00a4bd;font-weight:400}.hubspot-link__container.sproket{color:#9fa0a2}.hubspot-link{color:#9fa0a2}.hubspot-link,.hubspot-link:hover{text-decoration:none}.hubspot-link:hover .hubspot-link-text{text-decoration:underline}.hubspot-link__icon{margin-bottom:-1px;margin-right:5px}.hubspot-link__container.sproket .hubspot-link__icon{width:30px;margin-right:0;float:left;margin-top:-9px;margin-left:-5px}

#add_plant_button {
    margin-top: 15px;
    padding: 10px 0;
}

.sr-only {
    position:absolute;
    left:-9999px;
}

.sr-only > th, .sr-only > td {
    border-top: none;
}

.CarouselControls {
	padding-bottom: 20px;
}

.CarouselControlsList {
	border-bottom: 1px solid #cccccc;
	padding-bottom: 10px;
}

#searchFilter {
	max-width: 60vw !important;
}

.ms-parent {
	max-width: 80vw !important;
}
@media screen and (max-width: 767px) {
.hs-form-31dbd628-fb20-44a1-9b40-9444f04f5111_f8046fd1-fbb7-4ce7-902c-a5d748096228 fieldset.form-columns-2 .hs-form-field, .hs_firstname.hs-firstname.hs-fieldtype-text.field.hs-form-field,.hs_lastname.hs-lastname.hs-fieldtype-text.field.hs-form-field, .hs_company.hs-company.hs-fieldtype-text.field.hs-form-field, .hs_company_type__cloned_.hs-company_type__cloned_.hs-fieldtype-radio.field.hs-form-field, .hs_email.hs-email.hs-fieldtype-text.field.hs-form-field, .hs_phone.hs-phone.hs-fieldtype-text.field.hs-form-field, .hs_city.hs-city.hs-fieldtype-text.field.hs-form-field, .hs_state_province__select_.hs-state_province__select_.hs-fieldtype-select.field.hs-form-field, .hs_zip.hs-zip.hs-fieldtype-text.field.hs-form-field, .hs_country.hs-country.hs-fieldtype-text.field.hs-form-field {
    width: 100%;
}
    ul.whatever li{
        padding:8px 0;
    }
}

@media only screen and (max-width: 244px) {
	.listingPlantName {
		font-size: 7vw;
	}
	.listingCommonName {
		font-size: 5vw;
	}
	.listingBotanicalName {
		font-size: 5vw;
	}
	.listingPatentName {
		font-size: 5vw;
	}
	.listingButton {
		font-size: 4vw;
	}
	/*.listingPlantInfo {*/
	/*	bottom: 30vw;*/
	/*}*/
	.plantListingButtons {
        top: 90px;
    }
}

@media only screen and (max-width: 180px) {
    .plantListingButtons {
        top: 80px;
    }
}

@media only screen and (max-width: 143px) {
    .plantListingButtons {
        top: 65px;
    }
}

/*@media only screen and (max-width: 116px) {*/
/*	.listingPlantInfo {*/
/*		bottom: 45vw;*/
/*	}*/
/*}*/