@import url('https://fonts.googleapis.com/css?family=Muli:400,700');
* {
	margin:0px;
	padding:0px;
	box-sizing:border-box;
}
html {
	overflow-x:hidden;
}
body {
	font-family:"ratio",Helvetica, Arial,Verdana,sans-serif; /* muli */
	font-size:20px;
	color:#000;
}
/* GALLERY */
.gallery-wrap {
	margin-top:0px;
	padding-top:20px;
	padding-bottom:20px;
	position:relative;
	
}
.gallery-title {
	font-family: franklin-gothic-urw, sans-serif; 
	font-size:40px;
	color:#4C721D;
	margin-bottom:15px;
}
.gallery {
	padding-top:20px;
	padding-bottom:20px;
}
.staff:after,
.clear:after,
.gallery:after {
	content:'';
	display:block;
	clear:both;
}
.gallery .photo {
	float:left;
	width:16.6%;
	padding:5px;
	cursor:pointer;
	text-align:center;
}
.gallery .photo img {
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
	width:100%;
}
.gallery .photo img:hover {
	filter:brightness(.6)
}
#gallery-show {
	position:fixed;
	width:100%;
	overflow:hidden;
	background-color:rgba(0,0,0,.9);
    top: 0px;
    left: 0px;
    height: 100%;
	z-index:99999999;
	visibility:hidden;
}
#gallery-img {
	position:relative;
	z-index:1;
	margin:0px auto;
}
#gallery-img .slide {
	position:absolute;
	top:0px;
	bottom:0px;
	max-width:100%;
	width:100%;
	opacity:0;
	z-index:0;
	height:100%;
}
#gallery-img .slide.active {
	position:relative;
	opacity:1;
	z-index:1;
}
#gallery-img .slide.getActive {
	z-index:2;
}
#gallery-img .slide img {
	display:block;
}
#gallery-img .slide > div {
	display:block;
	margin:0px auto;
	max-width:100%;
}
#gallery-show .dir {
	position:absolute;
	top:45%;
	color:#fff;
	font-size:50px;
	z-index:2;
	opacity:.5;
	cursor:pointer;
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
}
#gallery-show .dir:hover {
	text-shadow:0px 0px 5px rgba(0,0,0,.75);
	opacity:1;
}
#gallery-show #left {
	left:3%;
}
#gallery-show #right {
	right:3%;
}
.close-it {
	font-size:30px;
	cursor:pointer;
	position:absolute;
	top:0px;
	right:0px;
	z-index:9999999;
	padding-top:10px;
	padding-right:10px;
	color:#fff;
}
/* ^ GALLERY */

.Alert {
	background-color: #F7D3A5;
}

.BadAlert {
	border: 1px solid red;
	height: auto;
	background: #EFE0E0;
	border-radius: 5px;
	-moz-border-radius: 5px;
	padding: 10px;
	margin-bottom: 10px;
} 

.BadNews {
	color: red;
	font-weight: bold;
}

.GoodAlert {
	padding: 10px;
	border: 1px solid green;
	height: auto;
	background: #E2EFE0;
	border-radius: 5px;
	-moz-border-radius: 5px;
	margin-bottom: 10px;
}
/* HEADER */
header {
	position:relative;
	z-index:2;
}
.clear:after,
header:after {
	content:' ';
	display:block;
	clear:both;
}
header #logo {
	margin-top:-70px;
	padding-left:10px;
	padding-right:30px;
}

header #contact {
	font-family: "century-gothic";
    text-align:right;
    padding:15px 0px 25px;
    font-size:30px;
    display:flex;
	flex-wrap: wrap;
}
header #contact div {}
header #contact div:first-of-type {
    font-weight:700; 
}
header #contact > div#logo2 {
	display:none;
}
header #slogan {
    padding-right:50px;
    color:#4caea9;
	width: 34%; 
	margin-left: 24%;
	font-weight: bold;
}
header #phoneWrapper {
	width: 28%;  
}
header #phoneWrapper div {
    display:inline;
	font-weight: normal;
	font-size: 23px;
}
header #phone {
    padding-right: 0px;
    color:#0e3885;
}
header a {
    color:#0e3885;
}
header .social {
	width: 14%;  	
}
.social a {
	background-color:#4caea9;
	color:#fff;
	padding-top:5px;
    width:40px;
    height:40px;
	border-radius:50%;
	font-size:21px;
	display:inline-block;
    text-align:center;
    vertical-align:middle;
}
.social a:hover {
    color:#0e3885;
}
header #left, #right {
	float:left;
	position:relative;
}
header #left {
	width:25%;
}
header #right {
	width:75%;
}
header #left:before {
    content:"";
    position: absolute;
    width: 200%;
    left: -200%;
    top:0px;
    z-index: -1;
}
header #right:after {
    content:"";
    position: absolute;	
    width: 50%;
    right: -50%;
    top:0px;
    z-index: -1;
} 
header #left, header #right, header #left:before, header #right:after {
	background-color:#4caea9;
}
header #right, header #left, header #left:before, header #right:after, header nav > ul > li > a {
	height:50px;
}
/* ^ HEADER */
/* NAVIGATION */ 
header nav {
	text-align:right;
}
header nav > ul {
	list-style:none;
	display:inline-block;
	width:100%;
	display:block;
	margin:0px auto;	
    font-size: 0px; /*elimiates spacing between li*/
}
header nav ul li {
	margin-bottom:0px;
}
header nav > ul > li {
	display:inline-block;
}
header nav > ul > li > a {
	display:block;
	top:0px;
	bottom:0px;
	left:0px;
	right:0px;
    padding:8px 20px;
}
header nav ul li a {
	color:#fff;
	text-decoration:none;
	display:block;
	font-size:27px;
}
header nav li:hover a {
	color:#fff;
}
header nav > ul > li:hover > a {
	background-color:rgba(255,255,255,.5);
}
header nav > ul > li ul  {
	display:none;
	position:absolute;
    text-align:left;
	background-color:rgba(76,174,169,.6);
	margin-left:0px;
}
header nav > ul > li ul li {
	display:block;
}
header nav > ul > li ul li a {
	font-weight:300;
	padding:10px 20px;
    font-size:20px;
}
header nav > ul > li ul li a:hover {
	background-color:rgba(76,174,169,.5);
}
/* ^ NAVIGATION */
/* CONTENT */
img {
	max-width:100%;
	height:auto;
}
img.imgright {
	float: right;
	margin-left: 15px;
	max-width: 300px;
	margin-bottom: 15px;
}
img.imgleft {
	float: left;
	margin-right: 15px;
	max-width: 300px;
	margin-bottom: 15px;
}
#interior main .container:first-of-type {
    padding-top:200px;
    background-position:top right;
    background-repeat:no-repeat;
    background-size:55%;
}
#interior.FullWidth main .container:first-of-type {
    padding-top:30px;
	padding-left: 20%;
	width: 80%;
}
.container {
	max-width: 1300px;
	margin:0px auto;
	padding:0px 10px;
}
.container:after {
	content:"";
	display:block;
	clear:both;
}
.left, .right {
    float:left;
    width:50%;
}
.left {
    width:55%;
}
#interior.FullWidth main .container:first-of-type .left {
    padding-top:0px;
	width: 100%;
}
#interior .right {
    width:45%;
    margin-top:200px;
    padding-left:50px;
}
h1 {
	font-size:46px;
	color:#0e3885;
	margin-bottom:15px;
}
h2 {
    font-size:28px;
    color:#4caea9;
	margin-bottom:15px;
}
h2 img {
    float:left;
    margin-right:10px;
    margin-top:5px;
}
h3 {
    font-size:28px;
    color:#0e3885;
	margin-bottom:15px;
}
p {
	padding-bottom:25px;
}
hr {
    background-color:#000;
    border:0px;
    height:1px;
    margin:10px auto;
}
.FullWidth hr {
	height:4px;
    margin:20px auto 15px;
}
ul, ol {
	margin-left: 25px;
}
li {
	line-height: 28px;
}
a {
	color:#0e3885;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    text-decoration:none;
}

main a:hover,
footer a:hover {
	color:#4caea9;
	text-decoration: underline;
	font-weight:bold;
}
main a,
footer a {
	font-weight:bold;
}
a.button {
    color:#fff;
    background-color:#0e3885;
    padding:5px 15px;
    text-decoration:none;
    font-weight:700;
    display:inline-block;
    margin:10px 20px 0px 20px;
}
a.button:hover {
    background-color:#4caea9;
}
a.donate {
    color:#fff;
    background-color:#4caea9;
    padding:5px 20px 5px 120px;
    text-decoration:none;
    font-weight:700;
    font-size:30px;
    display:inline-block;
    position:relative;
}
a.donate img {
    left:20px;
    position:absolute;
    margin-top:-20px;
}
a.donate:hover {
    background-color:#0e3885;
}
input {
	-webkit-appearance: none;
	border-radius: 0;
}
.annoucement {
    background-color:#d2ebe9;
    padding:30px 0px;
}
.annoucement .message {
    font-size:35px;
    margin-bottom:30px;
}
.annoucement-left, .annoucement-center, .annoucement-right {
    float:left;
}
.annoucement-left {
    width:20%
}
.annoucement-center {
    width:45%
}
.annoucement-right {
    width:35%
}
.annoucement-right img {
    border:0spx solid #fff;
}
.highlight {
    color:#fb027c
}
.callout {
    background-color:#d2ebe9;
    border:2px solid #fff;
    border-radius:12px;
    padding:20px 30px 40px 30px;
    margin-bottom:50px;
}
/* ^ CONTENT */
/* HIDDEN CONTENT */
.hidden-view {
	display:block;
	clear:both;
	overflow:hidden;
}
.hidden-view .row:not(:first-of-type) {
	border-top:1px solid #000;
    padding-top:20px;
}
.hidden-view .row.hide {
	opacity:0;
}
.view-more {
    color:#9f9f9f;
    font-size:30px;
	margin-top:15px;
	text-align:center;
    text-transform:uppercase;
	display:block;	
	padding:5px 0px;
    cursor:pointer;
}
.view-more:hover {
	color:#000;
}
.view-more i {
	font-size:46px;
    color:#d9d9d9;
}
/* ^ HIDDEN CONTENT */
/* PETs */
.pets {
    background-color:#efeef1;
    padding:0px;
    display:flex;
    flex-wrap: wrap;
}
#interior .pets a img {max-width: 120%;}
.pet-card {
    overflow: hidden;
    vertical-align:top;
    position: relative;
    border-radius: 8px;
    -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.1);
    box-shadow: 0 1px 4px rgba(0,0,0,.1);
    z-index: 0;
    display: flex;
    flex:1 1 16%;
	margin:10px;
}
#interior .pet-card {max-width: 300px; width: 300px;}
.pet-card .img {
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    font-family: object-fit:cover;
    -o-object-fit: cover;
    object-fit: cover;
}
#interior .pet-card .img {height: 340px;}

.pet-card .info {
    box-sizing: border-box;
    position: absolute;
    width:100%;
    bottom:0px;
    background-color: #fff;
    text-align: center;
    padding: 16px 10px 22px;
}
.pet-card .info:before {
    content: "";
    display: block;
    height: 18px;
    border-radius: 50% 50% 0 0;
    position: absolute;
    bottom: calc(100% - 10px);
    right: -5px;
    left: -5px;
    background-color: #fff;
}
.pet-card .name {
    font-weight:700;
}
.pet-card ul {
    font-size:0px;
}
.pet-card ul li {
    color: #000;
    white-space:nowrap;
    display:inline;
    font-size:16px;
}
.pet-card ul > * + ::before {
    content: "\00b7";
    display: inline-block;
    padding: 0px 5px;
    font-size:20px;
}
.pet-card .name, .pet-card .info {
    white-space:nowrap;
}
.pet-card a {
    text-decoration:none;
    display:block;
    color:#6504b5;
    font-weight:normal;
    width: 100%;
}
.pet-card .overlay {
    overflow: hidden;
    padding: 20px 10px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: inherit;
    background-color: #fff;
    text-align: center;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform .15s;
    transition: -webkit-transform .15s;
    -o-transition: transform .15s;
    transition: transform .15s;
    transition: transform .15s,-webkit-transform .15s;
}
.pet-card:hover .overlay {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.pet-card .overlay-img {
    width:70%;
    margin: 0px auto  8% auto;
    border-radius:50%;
    overflow:Hidden;
}
.pet-card .overlay-img > div {
    border-radius:50%;
    width:100%;
    padding-bottom:100%;
    height:0px;
}
.pet-card .arrow {
    position:absolute;
    top:6%;
    right:18%;
    width:40px;
    height:40px;
    background-color:#fff;
    box-shadow:0px 1px 4px rgba(77,71,81,.3); 
    border-radius:50%;
    padding-top:6px;
}
.pet-card .arrow:hover {
    color:#fff;
    background-color:#6504b5;
}
/* ^ PETs */
/* PHOTO GALLERY */
#photo-gallery {
	padding-top:20px;
	padding-bottom:20px;
    text-align:center;
}
.photo-gallery-scroller-dir {
	cursor:pointer;
	color:rgba(0,0,0,.3);
    display:inline-block;
    font-size:40px;
    padding:15px;
}
#photo-gallery-scroller {
	margin:0px auto;
    clear:both;
	position:relative;
    overflow:hidden;
    background-color:#efeef1;
}
#photo-gallery-scroller-slider {
	position:absolute;
	width:100%;
}
#photo-gallery-scroller:after {
    content:'';
	display:block;
    clear:both;
}
#photo-gallery-scroller-slider > div {
	position:absolute;
}
/* ^ PHOTO GALLERY */
/* FOOTER */
footer {
	padding:30px 10px;
    border-top:75px solid #d2ebe9;
    margin-top:30px;
}
footer a {
    text-decoration:none;
    color:inherit;
}
#siteby a {
    width: 148px;
    height: 67px;
    text-indent: -5000px;
    background: url("../../Assets/Images/firehorse-creative.png") top left no-repeat;
    margin:0px auto;
    display:block;
    float:right;
    margin-top:-70px;
}
/* ^ FOOTER */
/* MOBILE */
#mobile-nav {
	display:none;
	text-transform:uppercase;
	color:#0e3885;
	text-align:right;
	padding:10px;
	height:37px;
	width:100px;
}
#mobile-nav > div {
	width:25px;
	float:right;
}
#mobile-nav div.bar {
	height:3px;
	background-color:#0e3885;
	margin:3px 0px;
}
#mobile-nav span{
	float:right;
	display:block;
	padding:0px 5px;
	font-size:14px;
	line-height:22px;
}

/* SHOP */
.col1of3 {width: 33%; float: left; padding-right: 15px;}
.col1of4 {width: 25%; float: left; padding-right: 15px;}
.col1of2 {width: 50%; float: left; padding-right: 15px;}
.col2of3 {width: 66%; float: left; padding-right: 15px;}
.col3of3 {width: 100%; float: left;}
.col3of4 {width: 75%; float: left; padding-right: 15px; margin-bottom: 45px;}

.productSummary {
	width: 48%;
	margin: 1%;
	float: left;
	padding: 10px;
	min-height: 375px;
	border: 1px solid #e9e9e9;
}
.productSummarys:nth-child(even) {background: #e9e9e9}
.productSummary:after {
	content:' ';
	display:block;
	clear:both;
}

.productSummary .productImage {
	width: auto;
	height: 250px;
	max-height: 250px;
	overflow: hidden;
	text-align: center;
	margin-bottom: 5px;
}
.productSummary .productImage img {
	margin: auto auto;
}

.productSummary .productPrice,
.productSummary .productName {
	margin: 5px 0;
	text-align: center;
	line-height: 20px;
}
.productSummary .productPrice {
	margin: 10px 0;
}
.productSummary .productName a {
	color: #707070;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	line-height: 20px;
}
.productSummary .productPrice a span {
	color: #666;
	font-size: 14px;
	line-height: 18px;
	display: block;
	margin-bottom: 10px;
	font-weight: normal;
}
.productSummary .productPrice a {
	color: #707070;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
}
.ShopDetails .Description {
	margin-bottom: 0px;
	margin-top: 10px;
	font-size: 16px;
}
.ShopDetails .productPrice {
	font-size: 22px;
	margin: 6px 0;
	font-weight: bold;
}
input.Quantity {
	width: 100px;
	padding: 10px;
	border-radius: 5px;
}
.button {
	background-color:#0e3885;
	border:1px solid #fff;
	padding:5px 10px;
	font-size:22px;
	color:#fff;
	text-decoration:none;
	display:inline-block;
	text-transform:uppercase;
	margin-top: 10px;
	border-radius: 5px;
	cursor: pointer;
}
.button:hover {
	background-color:#0b2249;
	color:#fff;
}
#customRequirements textarea {
	width: 100%;
	border-radius: 5px;
}
.red,
.checkoutLefts .red {
	margin: 5px 0;
}

.red a,
.checkoutLefts .red a {
	background: #4caea9;
	padding: 5px 12px;
	border-radius: 5px;
	color: #fff;
}
.red a:hover,
.checkoutLefts .red a:hover {
	color: #fff;
	background: #45a09a;
	text-decoration: none;
}
.red.small {
	margin-bottom: 10px;
}
.red.small a {
	font-size: 20px;
	padding: 3px 5px;
}
.ShopDetails p {
	padding-bottom: 10px;
}
.SeeCart {
	font-size: 25px;
	text-align: right;
	position: fixed;
	right: 20px;
	top: 20px;
	z-index: 999;
	padding: 10px;
	background: #deeef4;
	border-radius: 10px;
}
#home .SeeCart {
	color: #fff;
}
.SeeCart span {
	position: absolute;
	background: #e95a59;
	border-radius: 10px;
	padding: 2px 5px;
	font-size: 13px;
	color: #fff;
	right: 5px;
	top: 5px;
	font-weight: bold;
}
.SeeCart a {
	color: #707070;
}

/* END SHOP */
@media (max-width:1120px){
header nav ul li a {
    font-size:20px;
}
header #contact {
    font-size:inherit;
}
}
@media (max-width:990px){
	a.donate img {
		width: 50px;
	}
	.social a {
		background-color:#0e3885;
		color:#fff;
	}
	.social a:hover {
		background-color:#fff;
		color:#0e3885;
	}
	header #slogan {
		margin-bottom: 5px;
	}
	header #phone {
		margin-bottom: 5px;
	}
	#interior.FullWidth main .container:first-of-type {
		padding-top:0px;
		padding-left: 0;
		margin: 10px auto;
		width: 90%;
	}
	#header .SeeCart {
		width: 100%;
		text-align: center;
	}
	#header .SeeCart span {
		left: 35%;
		bottom: 10px;
	}
	#header .SeeCart {
		width: 100%;
		text-align: center;
	}
	header #logo2,
	header #slogan,
	header #phoneWrapper,
	header .social,
	.col1of4,.col3of4,.col1of2 {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.productSummary {
		width: 100%;
	}
	#mobile-nav {
		display:inline-block;
		z-index:2;
		position:relative;
	}
	header {
		position:relative !important;
	}
	header #contact {
		float:right;
		width:50%;
		position:relative;
	}
	header #phone {
		padding-bottom:15px;
	}
	header #left {
		float:left;
		width:50%;
		position:relative;
		z-index:2;
		background-color:transparent;
	}
	header #right {
		float:none;
		width:100%;
		position:relative;
		clear:both;
		z-index:3;
		background-color:transparent !important;
	}
	header #left:before, header #right:after {
		position: relative !important;
		height:auto !important;
		width: auto !important;
		left: auto !important;
		right: auto !important;
		top:auto !important;
		z-index: auto !important;
		background-color:transparent !important;
	}
	header .container {
		padding:0px;
	}
	header nav > ul {
		display:none;
		background-color:#4caea9;
		position:absolute;
	}
	header #logo {
		z-index:1;
		position:relative;
		margin-top:20px;
		text-align:center;    
	}
	header #contact > div {
		display:block;
		text-align:right;
		padding-right:10px;
	}
	header nav > ul li {
		display:block;
	}
	header nav > ul > li:not(:last-of-type) {
		border:0px;
	}
	header nav > ul li a {
		text-align:left;
		border-top:1px solid #ddd;
	}
	header nav > ul > li ul {
		position:relative;
		background-color:rgba(255,255,255,.3);
	} 
	header #right, header #left, header #left:before, header #right:after, header nav > ul > li > a {
		height:45px !important;
	}
	header nav > ul > li > a {
		padding:8px 20px !important;
	}
	.annoucement-left {
		width:20%
	}
	.annoucement-center {
		width:80%;
		text-align:center;
	}
	.annoucement-right {
		width:100%;
		text-align:center;
		margin-top:20px;
	}
	.left, #interior .right {
		float:none;
		width:auto;
	}
	#interior .right {
		padding:0px;
		margin-top:30px;
	}
	.pet-card {
		flex:1 1 30%;
	}
	.chewy {
		max-width: 200px;
	}
}
@media (max-width:720px){
footer {
    text-align:center;
}
#siteby a {
    float:none;
    margin-top:20px;
}
}
@media (max-width:550px){
	main img {
		width: 100%;
		margin: 10px 0;
	}
header #left {
    width:33%;
    height:auto !important;
}
header #contact {
    width:67%;
}
header #right {
    background-color: #4caea9 !important;
}
#mobile-nav {
	color:#fff;
}
#mobile-nav div.bar {
	background-color:#fff;
}
.annoucement-left, .annoucement-center {
    width:100%;
    margin-top:20px;
    text-align:center;
}
#interior main .container:first-of-type {
    padding-top:30px;
    background-image:none !important;
}
h2 { 
    font-size:26px
}
h2 img {
    width:25%;
}
}
@media (max-width:450px){
header #contact > div {
    display:block;
    text-align:center;
    padding-right:0px;
}

header #contact > div#logo2 {
	display:block;
}
header #logo2 img {
	max-width: 180px;
}
header #logo {
	display:none;
}
header #contact {
    width:100%;
	text-align: center;
}
header #contact {
    font-size:16px;
}
.view-more {
    font-size:24px;
}
a.donate {
    font-size:21px;
}
.pet-card {
    flex:1 1 30%;
}
}
@media (max-width:400px){
header #contact {
    font-size:16px;
}
header {
	background-image: linear-gradient(to top, rgba(123,123,123,1), rgba(0,0,0,0));
}
h1 {
	font-size: 26px;
}
#interior.FullWidth main .container:first-of-type {
    padding-top:30px;
	padding-left: 2%;
	width: 98%;
}
#interior .pet-card {max-width: 280px; width: 280px;}
#logo2{display:block}
img.imgleft,
img.imgright {
	float: none;
	margin: 10px 0;
	max-width: 600px;
	width: 100%;
}

}