@import "//fonts.googleapis.com/css?family=Amatic+SC:700|Oswald|Playfair+Display:400,700,900";

:root {
	--primary-color: #444242;
	--red: #e84d4b;

    --font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
	--secondary-family: Oswald, sans-serif;
	--tertiary-family: 'Abril Fatface', cursive;
}

/****************************************
 Columns
****************************************/
.columns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.column-half {
	-ms-flex-preferred-size: 48%;
	flex-basis: 48%;
}

.column-thirds {
	-ms-flex-preferred-size: 32%;
	flex-basis: 32%;
}

.column-fourths {
	-ms-flex-preferred-size: 23%;
	flex-basis: 23%;
}

.column-three-fourths {
	-ms-flex-preferred-size: 74%;
	flex-basis: 74%;
}

.column-ten {
	-ms-flex-preferred-size: 10%;
	flex-basis: 10%;
}

.column-ninety {
	-ms-flex-preferred-size: 90%;
	flex-basis: 90%;
}

/****************************************
 Container
****************************************/
.container-fluid.page {
	max-width: 1200px;
}

/****************************************
 Display
****************************************/
.is-hidden {
	display: none !important;
}

.is-visible {
  	display: block !important;
}

.is-fixed {
	left: 0;
	position: sticky;
	top: 0;
	z-index: 99999999;
}

/****************************************
 HTML Elements
****************************************/
body {
	position: relative;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

h1 {
	font-family: var(--tertiary-family);
}

a.bone {
    position: relative;
    background: black !important;
    z-index: 0;
    margin: 25px 10px;
	padding: 1px 13px;
    font-size: 19px;
}

a.bone:before {
    content: '';
    position: absolute;
    left: -37px;
    background-image: url(images/boneleft.png);
    background-color: transparent !important;
    background-size: contain;
    width: 40px;
    background-position: center;
    bottom: -25px;
    top: -26px;
    z-index: -1;
    background-repeat: no-repeat;
}

a.bone:after {
    content: '';
    position: absolute;
    left: 99%;
    background-image: url(images/boneright.png);
    background-color: transparent !important;
    background-size: contain;
    width: 44px;
    background-position: center;
    bottom: -25px;
    top: -26px;
    z-index: -1;
    background-repeat: no-repeat;
}

.btn {
	font-family: Oswald, sans-serif;
	font-size: 25px;
	font-weight: 400;
	text-transform: uppercase;
	border: 0;
	padding: 0px 25px;
	margin-bottom: 20px;
	white-space: pre-wrap;
}

.btn .socicon {
	text-transform: lowercase;
}

.btn-sm {
	font-size: 21px;
	padding-top: 0;
	padding-bottom: 0;
}

.btn-lg {
	padding: 8px 25px;
	font-size: 24px;
}

.btn-reset {
    font-size: 18px;
    margin: 0;
    padding: .5em 2em;
}

.btn-text {
	display: block;
    font-size: 16px;
    margin: 1em;
    position: relative;
    text-decoration: underline;
    text-transform: none;
}

.btn-text:hover,
.btn-text:focus {
    color: #000;
    text-decoration: none;
}

.btn-full {
	font-family: font-family;
    font-size: 16px;
    padding: .5em;
    text-transform: none;
    width: 100%;
}

.btn-full:hover {
	background-color: #eee !important;
	color: var(--primary-color) !important;
}

.btn-warning {
	background-color: var(--primary-color) !important;
	color: #fff !important;
}

.btn-default {
	background-color: #565656 !important;
	color: #fff !important;
}

.jumbotron,
.jumbotron--video {
	position: relative;
	background-color: #ffffff;
}

.jumbotron--video,
.jumbotron--video .hero__image{
    min-height: 600px;
	overflow: hidden;
	width: 100%;
}

.jumbotron--video .inner {
    height: 100%;
    left: 0;
    position: absolute;
	top: 0;
    -webkit-transition: height .6s cubic-bezier(.38,.41,.27,1);
    transition: height .6s cubic-bezier(.38,.41,.27,1);
	width: 100%;
}

.jumbotron .hero__image {
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	position: absolute;
}

.jumbotron .hero__image img {
	padding: 1em;
    width: auto;
}

@media (max-width: 767px) {
	.jumbotron {
		text-align: center;
	}
}

.jumbotron .carousel .item {
	background-repeat: no-repeat;
	background-size: cover;
}

body:not(.home) .jumbotron .carousel .item {
	background-image: none !important;
}

.navbar-default {
	background-color: var(--primary-color);
	text-transform: uppercase;
	font-size: 16px;
	border: 0;
	margin: 0;
	min-height: 0px;
}

.navbar-default .navbar-brand {
	color: #fff;
	font-size: 28px;
	padding-top: 14px;
	padding-bottom: 13px;
	height: auto;
}

.navbar-default .navbar-toggle {
	border-color: #fff !important;
	margin-top: 7px;
	background-color: transparent !important;
}

.navbar-default .navbar-toggle .icon-bar {
	background-color: #fff !important;
}

.navbar-default .navbar-nav {
	float: none;
}

@media (min-width: 768px) {
	.navbar-default .navbar-nav > li {
		float: none;
		display: inline-block;
	}
}

.navbar-default .navbar-nav > li > a {
	color: #fff !important;
	padding-top: 20px;
	padding-bottom: 20px;
}

@media (max-width: 767px) {
	.navbar-default .navbar-nav > li > a {
		padding-top: 12px;
		padding-bottom: 12px;
	}
}

@media (min-width: 768px) {
	.call-to-action-2 .row {
		margin-left: -37px;
		margin-right: -37px;
	}

	.call-to-action-2 .row > div {
		padding-left: 37px;
		padding-right: 37px;
	}
}

.call-to-action-2 .action {
	background-color: #fff;
	display: block;
	color: inherit;
	position: relative;
	display: inline-block;
	margin-bottom: 30px;
	overflow: hidden;
}

.call-to-action-2 .action .action-container {
	position: absolute;
	text-align: center;
	top: -2px;
	right: -2px;
	bottom: -2px;
	left: -2px;
}

.call-to-action-2 .action .table-container {
	display: table;
	position: relative;
	height: 100%;
	min-height: 100%;
	width: 100%;
}

.call-to-action-2 .action .table-row {
	display: table-row;
}

.call-to-action-2 .action .table-cell {
	display: table-cell;
	vertical-align: bottom;
}

.call-to-action-2 .action h3 {
	font-size: 28px;
	font-weight: lighter;
	color: var(--primary-color);
	margin: 0;
	background-color: rgb(229, 229, 229);
	/* font-family: 'Amatic SC', cursive; */
	padding: 10px 0px;
}

.call-to-action-3 h2 {
	font-family: Oswald, sans-serif;
	font-size: 58.79px;
	color: var(--primary-color);
	margin: 40px 0;
}

@media (max-width: 767px) {
	.call-to-action-3 h2 {
		font-size: 30px;
		margin: 1em 0;
	}
}

.call-to-action-3 p {
	font-size: 30px;
	margin-bottom: 47px;
	font-weight: lighter;
}

.home .call-to-action-3 iframe {
	width: 560px;
}

@media (max-width: 767px) {
	.call-to-action-3 p {
		font-size: 20px;
	}
}

.call-to-action-4 {
	position: relative;
}

.call-to-action-4:not(.alt) {
	background-color: #f2f2f2;
}

.call-to-action-4.alt {
	border-top: 0;
}

.call-to-action-4.alt {
	border-top: 18px solid var(--primary-color);
	position: relative;
}

.call-to-action-4:after {
	top: 0;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-style: solid;
	border-width: 41px 60px 0 60px;
	border-color: #ffffff transparent transparent transparent;
	margin-left: -60px;
}

.call-to-action-4.alt:after {
	border-color: var(--primary-color) transparent transparent transparent;
}

.call-to-action-4 .row > div {
	border-right: 1px solid var(--primary-color);
}

.call-to-action-4 .row > div:last-child {
	border-right: 0;
}

.call-to-action-4 .single-post {
	border-bottom: 1px solid var(--primary-color);
}

.call-to-action-4 .row > div .single-post:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.call-to-action-4 .single-post img {
	margin-bottom: 13px;
}

.call-to-action-4 .single-post h3 {
	font-family: Oswald, sans-serif;
	font-size: 30px;
	color: var(--primary-color);
	margin-top: 0;
	margin-bottom: 25px;
}

.call-to-action-4 .single-post p {
	font-size: 20px;
	margin-bottom: 13px;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
	min-height: 112px;
}

.call-to-action-5 {
	position: relative;
}

.call-to-action-5:after {
	top: 0;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-style: solid;
	border-width: 41px 60px 0 60px;
	border-color: #f2f2f2 transparent transparent transparent;
	margin-left: -60px;
}

.call-to-action-5 h2 {
	font-family: Oswald, sans-serif;
	font-size: 58.79px;
	color: var(--primary-color);
	margin-top: 0;
	margin-bottom: 57px;
}

@media (max-width: 767px) {
	.call-to-action-5 h2 {
		font-size: 30px;
	}
}

.call-to-action-5 .thumbnails a {
	display: block;
	position: relative;
	max-width: 200px;
	margin-left: auto;
	margin-right: auto;
}

.call-to-action-5 .thumbnails a:not(.active):before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.54);
}

.call-to-action-5 .thumbnails a:not(.active):after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -21px;
	margin-left: -18px;
	width: 36px;
	height: 42px;
	background: url('../../uploads/2017/04/play.png');
}

.call-to-action-5 .thumbnails a img {
	width: 100%;
}

.call-to-action-container {
	position: relative;
	background-color: #f2f2f2;
}

.call-to-action-container:after {
	top: 0;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-style: solid;
	border-width: 41px 60px 0 60px;
	border-color: #ffffff transparent transparent transparent;
	margin-left: -60px;
}

.call-to-action-container h2 {
	font-family: Oswald, sans-serif;
	font-size: 48px;
	color: var(--primary-color);
	margin-top: 0;
	margin-bottom: 30px;
}

@media (max-width: 767px) {
	.call-to-action-container h2 {
		font-size: 30px;
		margin-top: 18px;
		letter-spacing: normal;
	}
}

.call-to-action-6 .media {
	background-color: #ffffff;
	padding: 12px 12px;
	margin-top: 0;
	margin-bottom: 15px;
	display: block;
	color: #e84d4b;
	text-decoration: none;
}

.call-to-action-6 .media-object {
	max-width: 100px;
}

.call-to-action-6 .media:hover h3, 
.call-to-action-6 .media:focus h3 {
	text-decoration: underline;
}

.call-to-action-6 .single-post h3 {
	font-size: 16px;
	font-weight: bold;
	line-height: 19px;
	color: var(--primary-color);
	margin-top: 0;
	margin-bottom: 11px;
}

.call-to-action-6 .single-post p {
	color: var(--primary-color);
	font-size: 16px;
	line-height: 19px;
	margin-bottom: 0;
}

.call-to-action-7 {
	position: relative;
}

@media (min-width: 768px) {
	.call-to-action-7 .row.parent {
		margin-left: -34px;
		margin-right: -34px;
	}

	.call-to-action-7 .row.parent > div {
		padding-left: 34px;
		padding-right: 34px;
	}

	.call-to-action-7 .row.child {
		margin-left: -21px;
		margin-right: -21px;
	}

	.call-to-action-7 .row.child > div {
		padding-left: 21px;
		padding-right: 21px;
	}
}

.call-to-action-7 .form-group {
	margin-bottom: 15px;
	padding-right: 0 !important;
}

@media (max-width: 767px) {
	.call-to-action-7 .gform_wrapper {
		margin-bottom: 44px;
	}

	.call-to-action-7 .form-group {
		margin-bottom: 15px;
	}

	.call-to-action-7 .form-group.pull-left {
		float: none !important;
	}
}

.call-to-action-7 .form-group-small {
	margin-bottom: 16px;
}

.call-to-action-7 .form-control {
	border-color: #fff;
	font-size: 16px;
	min-height: 66px;
	box-shadow: none;
	padding: 21px 33px !important;
}

.call-to-action-7 .ginput_container {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.call-to-action-7 .gf_right_half {
	padding-right: 0 !important;
}

.call-to-action-7 textarea.form-control {
    min-height: 120px;
    width: 100% !important;
    height: 150px;
}

.call-to-action-7 .gform_footer {
	margin: 0 !important;
	padding: 0 !important;
}

.call-to-action-7 .gform_footer .btn {
	margin: 0 !important;
	font-size: 20px !important;
	font-weight: 400;
	padding: 0px 25px;
}

.social-media .btn {
	width: 81px;
	height: 81px;
	line-height: 81px;
	font-size: 51px;
	display: inline-block;
	margin-top: 6px;
	margin-right: 6px;
	margin-bottom: 0;
	text-transform: none;
	padding: 0;
	font-weight: 400;
}

.page-title {
	font-family: Oswald, sans-serif;
	font-size: 58.79px;
	color: var(--primary-color);
	margin-top: 73px;
	margin-bottom: 67px;
}

@media (max-width: 767px) {
	.page-title {
		font-size: 41px;
		line-height: 60px;
		margin-top: 18px;
		margin-bottom: 18px;
		text-align: center;
	}
}

.sub-title {
	font-family: 'Playfair Display', serif;
	font-size: 30px;
	margin-top: 0;
	margin-bottom: 67px;
}

.form-container {
	background-color: var(--primary-color);
	border: 0;
	padding-top: 0px;
	padding-bottom: 15px;
}

.petkey .animal-selectionForm h4 {
    margin-bottom: 11px !important;
    font-size: 18px !important;
    color: #fff !important;
    font-weight: bold !important;
}

.listing .img-holder img {
	box-shadow: none;
}

.listing .pet p {
	font-size: 16px;
	text-align: left;
	font-family: sans-serif;
	font-weight: 400;
	color: #333;
	text-align: center;
	width: 83%;
	margin: auto;
	margin-top: 0px;
}

.listing .pet p .petName {
	font-family: 'Playfair Display', serif;
	font-size: 18px;
	color: #ca5c30;
}

/****************************************
 Footer
****************************************/
.footer {
	background-color: #f2f2f2;
	background-repeat: no-repeat;
	background-size: cover;
	border-top: 10px solid var(--primary-color);
	color: #fff;
	position: relative;
}

.footer:before {
	background-color: #000;
	bottom: 0;
	content: "";
	display: block;
	left: 0;
	opacity: .7;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
}

.footer h3 {
	font-family: Oswald, cursive;
	font-size: 33px;
	font-weight: 400;
	color: #fff;
	margin-top: 0;
	margin-bottom: 20px;
}

.footer .list-unstyled a {
	color: #fff;
	font-size: 18px;
	margin-bottom: 5px;
	display: inline-block;
}

.footer .address {
	font-size: 18px;
}

.phone--footer {
	color: #fff;
}

.phone--footer a {
	color: #fff;
}

.footer .hours {
	font-size: 18px;
	font-weight: bold;
	line-height: 30px;
}

.footer .review {
	font-size: 18px;
	min-height: 174px;
}

.footer .glyphicon.glyphicon-star {
	font-size: 31px;
	color: #f2cf44;
}

.footer .review .btn {
	margin-bottom: 0;
}

.footer .logo,
.footer .social-media {
	text-align: center;
}

.footer .logo img {
    max-width: 150px;
    width: 100%;
}

.copyright {
	background-color: var(--primary-color);
	font-size: 16px;
	font-weight: bold;
	color: #fff;
}

.carousel-control {
    background: transparent !important;
	width: 40px;
}
.carousel-control span:before {
    color: #000;
}
@media (max-width: 767px) {
	h2, .h2 {
		font-size: 30px !important;
	}
	.copyright {
		text-align: center;
	}
}

.copyright p {
	margin-bottom: 0;
	display: inline-block;
}

@media (max-width: 767px) {
	.copyright p {
		margin-bottom: 10px;
	}
}

.copyright p a {
	color: inherit;
}

.copyright #csr-aggreegate-rate {
	display: inline-block;
	float: right;
	margin: 0;
}

.copyright #csr-overall-link {
	color: #fff !important;
}

.copyright #csr-ratings-meta {
	margin-top: 0;
}

.copyright polygon {
	fill: #fff !important;
}

.footer .vertical-top {
    margin: 0 0 2em 0;
    padding: 0 0 1em;
    vertical-align: top;
}

.copyright li a {
    color: #fff;
}

.copyright li {
    display: inline-block;
    padding: 0 10px;
}

.copyright ul {
    padding: 0;
    margin: 0;
}

.footer .social-media .socicon {
    font-size: 30px;
}

.footer .social-media a {
    width: 50px;
    height: 50px;
    line-height: 35px;
}

.footer .social-media {
	margin: 20px 0;
}

div#csr-ratings-meta div {
    color: #fff;
}

.media-list li {
	padding-bottom: 10px;
}

.media-list.faqs .media {
	padding-left: 27px;
}

.media-list.faqs .media .media-body {
	overflow: visible;
}

.media-list.faqs .media h4, .media-list.faqs .media .the_content {
	position: relative;
}

.media-list.faqs .media h4 {
	font-size: 30px;
}

.media-list.faqs .media h4:before, .media-list.faqs .media .the_content:before {
	position: absolute;
	top: 0;
	left: -27px;
	color: var(--primary-color);
	z-index: 99999;
	font-size: 30px;
	font-family: 'Amatic SC', cursive;
	font-weight: bold;
}

.media-list.faqs .media h4:before {
	content: 'Q:';
}

.media-list.faqs .media .the_content:before {
	content: 'A:';
	top: -9px;
}

.media-list .media .rateit {
	text-align: right;
}

.csr-add-rate-form {
	border: 5px solid var(--primary-color);
	background: #eee;
	padding: 23px 34px;
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
}

.csr-add-rate-form .review_form_title {
	font-family: Oswald, sans-serif;
	font-size: 58.79px;
	color: var(--primary-color);
	margin-top: 0;
	margin-bottom: 45px;
	text-align: center;
}

.csr-add-rate-form .review_form_description {
	font-size: 15px;
	text-align: center;
	margin-bottom: 44px;
	display: block;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.csr-add-rate-form .btn {
	display: block;
	width: 100%;
	max-width: 180px;
	margin-left: auto;
	margin-right: auto;
	background-color: var(--primary-color);
}

.navbar-nav > li > .dropdown-menu {
	background-color: #e2e2e2 !important;
	font-size: 20px;
	border-color: #8e8e8e !important;
	border-top: 0;
}

.navbar-nav > li > .dropdown-menu a {
	color: #000 !important;
}

@media (max-width: 767px) {
	.navbar-nav > li > .dropdown-menu a {
		text-align: center;
	}
}

/****************************************
 Gravity Forms
****************************************/
.gfield {
	margin: 0 0 1em 0;
}

.gfield input,
.gfield textarea {
	padding: .5em;
	width: 100%;
}

ul.gfield_checkbox {
	margin: 0;
	padding-left: 0 !important;
}

ul.gfield_checkbox input {
	width: auto;
}

.gfield_label {
	margin-bottom: 0;
}

.hide-labels .gfield:not(.show-label) .gfield_label, .hide-sub-labels .field_sublabel_below .ginput_complex.ginput_container label, .hide-sub-labels .field_sublabel_above .ginput_complex.ginput_container label {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.hide-sub-labels .field_sublabel_below .ginput_complex.ginput_container label, .hide-sub-labels .field_sublabel_above .ginput_complex.ginput_container label {
	position: static;
	margin: 0 !important;
	margin-bottom: 5px !important;
}

.gform_footer {
	text-align: right;
}

.gform_footer .gform_button {
	background-color: var(--primary-color) !important;
	border: none;
	color: #fff !important;
	font-family: Oswald, sans-serif;
	font-size: 25px;
	margin: 1em 0 0 0 !important;
	padding: .5em 2em !important;
	text-transform: uppercase !important;
}

.gform_footer .gform_button:hover, .gform_footer .gform_button:focus { 
	background-color: #000 !important;
}

.gfield_checkbox label {
	font-size: 14px;
	white-space: pre-wrap;
}

.gform_wrapper .form-group {
    overflow: unset;
    padding: 0 .5em;
}

.media-list .media {
	color: #000;
}

.media-list .media .media-heading a {
	color: inherit;
}

.media-list .media .media-meta {
	margin-bottom: 10px;
}

.media-list .media .media-meta a {
	color: inherit;
}

.page-content hr {
	margin-top: 43px;
	margin-bottom: 38px;
	border-color: #cec3bc;
}

.jumbotron a.phone {
    color: #000000;
    padding-left: 18px;
    display: inline-block;
    font-weight: bold;
    font-size: 39px;
    text-decoration: none;
}

@media (max-width: 767px) {
	.jumbotron .phone {
		font-size: 28px;
		text-align: center;
		display: block !important;
		text-indent: -13px;
	}
}

.jumbotron a.phone:hover span:not(.glyphicon), 
.jumbotron a.phone:focus span:not(.glyphicon) {
    text-decoration: underline;
}

.jumbotron .phone .glyphicon {
    position: relative;
    top: 5px;
    color: var(--primary-color);
}

.jumbotron .logo .dropdown .dropdown-menu {
	right: 15px;
	left: auto;
	background-color: #e2e2e2 !important;
	font-size: 16px;
	border-color: #8e8e8e !important;
	min-width: 0;
}

.jumbotron .logo .dropdown .dropdown-menu a {
	color: #000 !important;
	padding: 3px 9px;
}

.jumbotron .locations {
    color: #ffffff;
    padding-right: 18px;
    display: block;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
}

@media (max-width: 767px) {
	.jumbotron .locations {
		text-align: center;
		padding-right: 0;
	}
}

.jumbotron .links-container {
    padding-top: 9px;
}

@media (max-width: 767px) {
	.jumbotron .links-container {
		text-align: center;
	}
}

.jumbotron .links-container .button {
    font-size: 27.82px;
    line-height: 40px;
    padding: 0px 7px;
    margin-bottom: 4px;
    color: var(--primary-color);
    font-family: 'Amatic SC', cursive;
}

.jumbotron .links-container img {
	-webkit-filter: invert(0%) sepia(97%) saturate(2194%) hue-rotate(10deg) brightness(0%) contrast(44%);
    filter: invert(0%) sepia(97%) saturate(2194%) hue-rotate(10deg) brightness(0%) contrast(44%);
}

.location-finder .btn {
	background-color: #ca5c30 !important;
}

.location-finder .panel {
	border-color: #ca5c30;
}

.location-finder .single.location.active .panel {
	border-color: #a94442;
}

.location-finder .panel a {
	color: inherit;
}

.location-finder .panel .panel-heading {
	background-color: #ca5c30;
	color: #fff;
}

.location-finder .single.location.active .panel .panel-heading {
	background-color: #a94442;
	border-color: #a94442;
}

.location-finder .panel .panel-footer {
	background-color: rgb(202, 92, 48);
	color: #fff;
	border-top-color: transparent;
}

.location-finder .single.location.active .panel .panel-footer {
	background-color: #a94442;
}

.p-package li {
    font-size: 19px;
    list-style-image: url(https://mynextpuppy.com/wp-content/themes/cosmick-petland-corporate/images/package-blt.png);
    vertical-align: middle;
    margin: 0;
    padding: 0px 0px 8px 13px;
}

.value-back {
    background: #f7f7f7;
    border: 1px solid #ccc;
	padding: 40px 20px 10px 20px;
    margin-bottom: 30px; 
}

.btn-link {
    color: #3c352d;
}

.not-seeing {
	background: #f1f1f1;
	padding: 40px;
	border: 1px solid #ccc;
	margin-bottom: 70px;
}

.not-seeing h2 {
	font-size: 40px;
	margin: 0px;
	margin-bottom: 40px;
	color: var(--primary-color);
	text-align: center;
}

.cares {
    background: #437901;
    padding: 20px;
    line-height: 26px;
    border: 1px solid #ccc;
    color: #fff;
}

.cares ol {
	margin-left: -25px;
}

.page-content .the_content {
	padding: 2em 0;
}

.page-content .the_content img {
	max-width: 100%;
	height: auto;
}

.page-template-tpl-page-breeds .page-content .the_content {
	padding: 0 0 2em 0;
}

.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), 
.gform_wrapper textarea {
    border: 1px solid #ccc !important;
}

.page-content {
	padding: 0 0 3em 0;
}

.petkey .form h3,
.breeds-related h2,
.animal-page .social .btn {
    background-color: var(--primary-color) !important;
}

.custom-style-heading {
	font-family: Oswald, sans-serif;
    font-size: 58.79px;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 57px;
}

.listing .pet p .petName span.hidden-xs {
    display: inline;
    color: var(--primary-color) !important;
}

.listing .pet p .petName {
    font-family: 'Playfair Display',serif;
    font-size: 18px;
    color: var(--primary-color) !important;
}

.breeds-embed h2 {
    background: var(--primary-color) !important;
}

.breeds-video {
	margin: 2em 0;
}

.animal-page .images .small-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/****************************************
 Breeds
****************************************/
.breed-details p {
	margin: 0 0 2em 0;
}

div.range dl,
div.text dl {
	list-style: none;
	margin: 0;
	padding: 0;
}

div.text dt,
div.range dt {
    clear: left;
    float: left;
}

div.text dd,
div.range dd {
	margin: 0 0 .5em 180px;
}

div.text dt {
	width: 180px;
}

div.range dt {
	width: 130px;
}

div.range dd.bar,
div.range span.value {
	display: block;
}

div.range dd.bar {
	margin-left: 165px;
}

div.range dd.bar {
    background-color: var(--primary-color);
    position: relative;
    margin-right: 34px;
	text-align: left;
}

div.range span.value {
	background-color: #888;
    height: 24px;
    width: calc(20% - 8px);
    line-height: 24px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
	margin: 0;
/* 	position: relative; */
}

div.range span.value.two {
    width: calc(40% - 8px);
}

div.range span.value.three {
    width: calc(60% - 8px);
}

div.range span.value.four {
    width: calc(80% - 8px);
}

div.range span.value.five {
    width: 100%;
}

div.range span.value:not(.five) {
    border-right: 9px solid #eee;
}

div.range span.value:before {
    right: 100%;
    text-align: left;
}

div.range span.value:after {
    left: 100%;
    text-align: right;
}

div.range span.value:before,
div.range span.value:after {
    position: absolute;
    color: var(--primary-color);
    font-size: 10px;
    width: 34px;
    text-transform: uppercase;
}

div.range dd.bar span.value.maintenance:before,
div.range dd.bar span.value.active:before {
    content: 'Low';
}

div.range dd.bar span.value.maintenance:after, 
div.range dd.bar span.value.active:after {
	content: 'High';
}

div.range span.value.shedding:before {
    content: 'Min';
}

div.range span.value.shedding:after {
    content: 'Max';
}

div.range span.value.training:before,
div.range span.value.adaptability:before {
    content: 'Easy';
}

div.range span.value.training:after, 
div.range span.value.adaptability:after {
    content: 'Hard';
}

.breed.thumbnail {
	border: 1px solid #eee;
	padding: 0;
	text-align: center;
}

.breed.thumbnail img {
	width: 100%;
}

.breed.thumbnail .btn-full {
	margin: 0;
}

.breed.thumbnail a.bone {
	margin: 2em 0;
	text-transform: none;
}

/****************************************
 Header
****************************************/
.header {
	background-color: #fff;
	box-shadow: 1px 0 10px;
	text-align: center;
}

.header.is-fixed {
	width: 100%;
}

.header--top {
	background-color: #eee;
}

.header--top.columns {
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	-ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.header--top .links-container img {
    -webkit-filter: invert(0%) sepia(97%) saturate(2194%) hue-rotate(10deg) brightness(0%) contrast(44%);
    filter: invert(0%) sepia(97%) saturate(2194%) hue-rotate(10deg) brightness(0%) contrast(44%);
}

.header--top a.phone {
	background-color: var(--primary-color);
    color: #fff;
	display: block;
    padding: 1em;
}

.header--top .address-container.desktop {
	display: block;
	padding: 1em;
}

.header--top .address-container.mobile {
	display: none;
}

.header--top .address-container p {
	margin: 0;
}

.header--top .address-container a {
	font-size: 14px;
}

.header--top .links-container {
	margin: 0 0 0 auto;
}

.header--top .links-container a.button {
	margin: 0 1em 0 0;
}

.header__branding {
	padding: .5em 0;
}

.header__branding .inner {
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/****************************************
 Hero
****************************************/
.hero {
	min-height: 400px;
}

.hero h1 {
	color: #fff;
	padding: 0 2em 0 0;
	text-shadow: 1px 0 8px #333;
}

.hero,
.hero--internal {
	background-color: #eee;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.hero--internal {
  	background-position: 50% 50%;
}

.hero--internal:before {
	background-color: #000;
	bottom: 0;
	content: "";
	display: block;
	left: 0;
	position: absolute;
	opacity: .4;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 2;
}

.hero .columns {
  	min-height: 600px;
}

.hero--internal,
.hero--internal .hero__inner {
  	min-height: 300px;
}

.hero .columns,
.hero--internal {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.hero--internal {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.hero--internal h1 {
	font-size: 60px;
    font-weight: 400;
	letter-spacing: 2px;
	line-height: 1;
	padding: 0;
}

.hero--internal h1,
.hero--internal .pre-title {
	color: #fff;
	font-family: var(--tertiary-family);
	margin: 0;
	position: relative;
	text-align: center;
	z-index: 3;
}

.hero--internal .pre-title {
	font-family: var(--font-family);
	font-size: 16px;
    text-transform: uppercase;
}

/******************************************
 Layout
******************************************/
.container-fluid.page {
	max-width: 1400px;
}

.container-fluid.page.small {
	max-width: 1200px;
}

.animal-page .images .main-img {
	box-shadow: none;
}

.page-template-tpl-page-breeds .container-fluid.page {
	max-width: 1200px;
}

/****************************************
 Logo
****************************************/
.logo.mobile {
	display: none;
}

/****************************************
 Menus
****************************************/
.main-navigation {
	float: none;
    font-family: var(--font-family);
    font-size: 16px;
}

.main-navigation ul {
	display: block;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	background-color: #fff;
    box-shadow: 0 0px 3px rgb(0 0 0 / 20%);
    color: var(--primary-color);
    float: left;
    position: absolute;
    top: 100%;
    left: -999em;
    z-index: 99999;
    text-align: left;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul, 
.main-navigation ul ul li.focus > ul {
  	left: 100%;
}

.main-navigation ul ul a {
  	width: 200px;
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
  	display: block;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  	left: auto;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation li:first-child {
  	margin-left: 0;
}

.main-navigation ul.sub-menu li {
	line-height: 1.2;
	margin: 0;
}

.main-navigation ul.sub-menu li a {
	background-color: transparent;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 400;
    padding: .75em 1em;
}

.main-navigation ul.sub-menu li a:hover,
.main-navigation ul.sub-menu li a:focus {
	background-color: #eee;
	color: var(--primary-color);
}

.main-navigation a {
    display: block;
    font-weight: 600;
    padding: 1em;
    text-decoration: none;
    text-transform: uppercase;
}

.main-navigation a {
    color: var(--copy);
}

.main-navigation a:hover, .main-navigation a:focus {
  	text-decoration: underline;
}

.main-navigation li.menu-item-has-children a:after {
	background-image: url(images/chevron-down-solid.svg);
	background-repeat: no-repeat;
	content: "";
	display: inline-block;
	height: 18px;
	margin: 0 0 0 .5em;
	position: relative;
	top: -2px;
	width: 18px;
	vertical-align: middle;
}

.main-navigation li.menu-item-has-children ul.sub-menu a:after {
	display: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  	display: block;
}

.menu-toggle {
  	display: none;
}

.main-navigation ul {
  	display: block;
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

.navigation--desktop {
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.navigation--tablet {
	display: none;
}

/****************************************
 Mobile Menu
****************************************/
.hamburger {
  	display: none;
}

.mobile-menu ul {
	margin: 0;
	padding: 0;
}

.mobile-menu ul li {
	border-bottom: 1px solid #fff;
	display: block;
}

.mobile-menu ul li a {
	background-color: var(--primary-color);
	padding: 1em;
}

.mobile-menu ul li.menu-item-has-children a:after {
	background-image: url(images/chevron-down-solid.svg);
	background-repeat: no-repeat;
	content: "";
	display: inline-block;
	-webkit-filter: invert(1);
	filter: invert(1);
	height: 18px;
	margin: 0 0 0 .5em;
	-webkit-transform: rotatex(0deg);
	-ms-transform: rotatex(0deg);
	transform: rotatex(0deg);
	width: 18px;
	vertical-align: middle;
}

.mobile-menu ul li.menu-item-has-children a.is-open:after {
	-webkit-transform: rotatex(-180deg);
	-ms-transform: rotatex(-180deg);
	transform: rotatex(-180deg);
}

.mobile-menu ul li.menu-item-has-children ul.sub-menu li a {
  	background-color: #fff;
}

.mobile-menu ul li.menu-item-has-children ul.sub-menu li a:hover,
.mobile-menu ul li.menu-item-has-children ul.sub-menu li a:focus {
  	background-color: #000;
	color: #fff;
}

.mobile-menu ul li.menu-item-has-children ul.sub-menu li a:after {
  	display: none;
}

.site-menu {
    background-color: transparent;
    display: inline-block;
    min-height: auto;
    line-height: 1;
}

.site-menu--mobile {
	background-color: var(--primary-color);
	display: none;
	max-height: calc(100% - 50px);
	min-height: 100%;
	overflow-y: auto;
	padding: 0;
	position: fixed;
	right: 0;
	text-align: center;
	top: 0;
	width: 100%;
	z-index: 99999999;
}

.site-menu--mobile a {
	color: #fff;
	display: block;
}

.site-menu--mobile a:hover {
	background-color: #000;
	color: #fff;
}

.site-menu--mobile ul.sub-menu {
	background-color: #fff;
	display: none;
}

.site-menu--mobile ul.sub-menu li a {
	border-bottom: 1px solid var(--gray);
	color: var(--primary-color);
	padding: 1em;
}

.site-menu--mobile ul.sub-menu li a:hover,
.site-menu--mobile ul.sub-menu li a:focus {
	border-bottom: 1px solid var(--gray);
	background-color: var(--gray);
	color: #000;
}

.site-menu__close {
	background-color: var(--primary-color);
	border-bottom: 1px solid #fff;
	padding: 1em;
}

.site-menu__close .fas.fa-times-circle {
	color: #fff;
	font-size: var(--font-xl);
}

/******************************************
 Reviews
******************************************/
.reviewsSection,
.reviewsSection p,
.reviewsSection h2 {
	position: relative;
}

.reviewsSection:before {
	background-image: url(../../uploads/2021/06/background-diagonal-lines.jpg);
    background-repeat: no-repeat;
    background-size: cover;
	bottom: 0;
	content: "";
	display: block;
	left: 0;
    opacity: .2;
	position: absolute;
	right: 0;
	top: 0;
}

#csr-overall-link {
    text-decoration: none !important;
    display: block;
    text-align: center;
}

/******************************************
 Single Breed
******************************************/
.single-breed__head {
	background-color: #eee;
	padding: 2em 0;
}

.single-breed__head,
.breed.thumbnail {
	position: relative;
}

.breed.thumbnail:before,
.single-breed__head:before {
	background-image: url(../../uploads/2021/10/Puppy-Toys-background-transparent-1.png);
	background-repeat: no-repeat;
    background-size: cover;
    content: "";
    display: block;
    height: 100%;
    left: 0;
    opacity: .05;
    position: absolute;
    top: 0;
    width: 100%;
}

.breed.thumbnail img {
	background-color: #fff;
    height: 368px;
	-o-object-fit: contain;
    object-fit: contain;
	position: relative;
    z-index: 9;
}

.single-breed__head,
.single-breed__head h1 {
	color: var(--primary-color)
}

.single-breed__head h1 {
	margin: 0 0 .5em 0;
	text-align: center;
}

.filters-breeds {
	background-color: #eee;
	border-top: 1px solid var(--primary-color);
    padding: 1em;
}

.filters-breeds .inner {
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.filters-breeds__operator {
	background-color: var(--primary-color);
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: .25em;
}

.filters-breeds__operator select {
	width: 100%;
}

.filters-breeds__operator span {
	color: #fff;
	padding: 0 1em;
	text-transform: uppercase;
}

#petkey-breeed-list {
	padding: 2em 0;
}

.breed .description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 60px;
	margin: 0 0 .5em 0;
	overflow: hidden;
	padding: 1em;
    text-overflow: ellipsis;
}

.breed__name {
	font-weight: 700;
    text-transform: uppercase;
}

.breed-details__title {
	margin: 0 0 2em 0;
	text-align: center;
}

.breed-details__title p.pre-title {
	font-size: 14px;
    font-weight: 300;
	margin: 0;
	text-transform: uppercase;
}

.breed-details__title h2 {
	font-size: 42px;
	font-weight: 600;
    margin: 0;
}

#petkey-breeed-list .breed.thumbnail a.bone {
	width: 60%;
}

.btn-filter {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border-bottom: 1px solid var(--primary-color) !important;
}

.image--bottom {
	margin: 0 0 1em 0;
}

.animal-page.petkey {
	padding: 4em 0 0 0;
}

/******************************************
 Social
******************************************/
.social {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.social a {
	margin: 0 .5em 0 0;
}

.social .btn.btn--social {
    white-space: normal;
}

.social span {
    border-radius: unset !important;
    height: 35px !important;
	padding: 2px 6px 0 0 !important;
}

.social span.socicon {
	height: auto !important;
}

.share-btn.google-plus,
.pet-gallery-template-default .social {
	display: none;
}

/******************************************
 Social Wall
******************************************/
.social--wall {
	border-top: 1px solid #eee;
	padding: 3em 0;
}

[id^=sb-wall].sb-wall .sbsw-item-avatar img {
    height: 40px;
    width: 100%;
}

.social--wall h2,
.social--wall p.subtitle {
	color: var(--primary-color);
	font-family: Oswald, sans-serif; 
	text-align: center;
}
.social--wall h2 {
	
	font-size: 50px; 
	margin-top: 10px;
    margin-bottom: 30px;
}

.social--wall p.subtitle {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 5px;
	
}

/******************************************
 Media Queries 
******************************************/
@media only screen and (max-width: 1200px) {
	.navigation--desktop {
		display: none;
	}

	.navigation--tablet {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	
	.navigation--tablet .main-navigation a {
		font-size: 14px;
	}
}

@media only screen and (max-width: 1050px) {
	.main-navigation {
		font-size: 14px;
	}
}
@media only screen and (max-width: 1000px) {
	.header--top .address-container.desktop {
		display: none;
	}

	.header--top .address-container.mobile {
		background-color: var(--primary-color);
		display: block;
		line-height: 0;
    	padding: 1em;
	}
	
	.header--top .address-container.mobile span:after {
		background-image: url(images/map-marker-alt-solid.svg);
		background-repeat: no-repeat;
		content: "";
		display: inline-block;
		-webkit-filter: invert(99%) sepia(11%) saturate(195%) hue-rotate(306deg) brightness(115%) contrast(100%);
    	filter: invert(99%) sepia(11%) saturate(195%) hue-rotate(306deg) brightness(115%) contrast(100%);
		height: 21px;
		width: 21px;
	}
	
}

@media only screen and (max-width: 900px) {
	.jumbotron .hero__image img {
		padding: 2em;
		width: 100%;
	}
	
	.jumbotron--video, .jumbotron--video .hero__image {
		min-height: 500px;
	}
	
	.links-container,
	.header__branding,
	.phone-container .number {
		display: none;
	}
	
	.header--top a.phone .glyphicon-earphone {
		color: var(--primary-color);
	}
	
	.header--top .address-container.mobile span:after {
		-webkit-filter: invert(0%) sepia(97%) saturate(2194%) hue-rotate(10deg) brightness(0%) contrast(44%);
    	filter: invert(0%) sepia(97%) saturate(2194%) hue-rotate(10deg) brightness(0%) contrast(44%);
	}

	.hamburger,
	.header--top a.phone,
	.header--top .address-container.mobile {
		margin: 0 .25em;
		background-color: transparent;
		border: 1px solid var(--primary-color);
		color: #fff;
		display: block;
		padding: .25em;
	}

	.hamburger .fas.fa-bars:not(.home) {
		color: #000;
	}

	.hamburger .fas.fa-bars {
		color: #fff;
	  	font-size: 21px;
	}
	
	.logo.mobile {
		display: block;
		left: 15px;
		position: absolute;
		top: 0;
	}
	
	.logo.mobile img {
		border: 2px solid var(--primary-color);
		height: 75px;
		width: auto;
	}
	
	.header--top {
		border-bottom: 2px solid var(--primary-color);
		padding: .5em;
		position: relative;
		z-index: 10;
	}
	
	.header--top.columns {
		-webkit-box-orient: horizontal;
    	-webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
		-webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
	}
}

@media only screen and (max-width: 750px) {
	.jumbotron--video, .jumbotron--video .hero__image {
		min-height: 400px;
	}
	
}

@media only screen and (max-width: 700px) {
	.breed__characteristics .columns,
	.breed__bone-buttons.columns {
		display: block;
	}
	
	.filters-breeds .inner {
		display: block;
	}
	
	.filters-breeds .btn-reset {
		width: 100%;
	}
}

@media only screen and (max-width: 600px) {
	.home .call-to-action-3 iframe {
		width: 100%;
	}

	.jumbotron--video, .jumbotron--video .hero__image {
		min-height: 300px;
	}
}

@media only screen and (max-width: 550px) {
	a.bone {
		width: 50% !important;
	}
}

@media only screen and (max-width: 350px) {
	.jumbotron--video, .jumbotron--video .hero__image {
		min-height: 250px;
	}
}

@media screen and (max-width: 768px) {
	.jumbotron .links-container + div {
		display:block;
		padding:15px;
		text-align:center;
	}
	
	.footer .vertical-top {
		border-bottom: 1px solid #fff;
	}
}


.animal-info .btn-lg{
	font-size: 27px;
}
@media all and (max-width:768px) {
	.jumbotron .links-container + div {
		text-align:center;
		padding:10px;
	}
}
@media all and (max-width:1200px) {
	.animal-info .btn-lg {
		font-size: 20px;
	}
}

@media all and (max-width:1048px) {
	.animal-info .btn-lg {
		font-size: 16px;
	}
}

.clearfix.breeds-embed.why img {
    width: 50px;
    height: 75px;
}
@media all and (max-width:767px) {
	.page-id-66211 div#pet-listing-section .pet.col-xs-6 {
		width: 100%;
	}
	.pull-right {
		float: none !important;
	}
	#carousel-reviews-footer .carousel-inner{
		max-width: 
	}
}