/* Fonts */

@font-face {
    font-family: 'proxima_novalight';
    src: url('../fonts/proxima_nova_light-webfont.woff2') format('woff2'),
         url('../fonts/proxima_nova_light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'proxima_novaregular';
    src: url('../fonts/proxima_nova-webfont.woff2') format('woff2'),
         url('../fonts/proxima_nova-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'source_sans_prosemibold';
    src: url('../fonts/sourcesanspro-semibold-webfont.woff2') format('woff2'),
         url('../fonts/sourcesanspro-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body,
html {
    color: #151515;
    font-family: 'proxima_novaregular', Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.6em;
    height: 100%;
    width: 100%;
    min-width: 320px;
    background: rgb(255,128,225); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(255,128,225,1) 0%, rgba(255,181,184,1) 25%, rgba(206,118,122,1) 50%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(255,128,225,1) 0%,rgba(255,181,184,1) 25%, rgba(206,118,122,1) 50%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(255,128,225,1) 0%,rgba(255,181,184,1) 25%, rgba(206,118,122,1) 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff80e1', endColorstr='#ffb5b8',GradientType=0 ); /* IE6-9 */
	overflow-x: hidden;
}

.wrap {
	height: 100%;
	width: 100%;
	position: relative;
}

.container, .container-fluid {
	padding-left: 0;
	padding-right: 0;
}

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

.flexElement {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align:center;
	-ms-flex-align:center;
	align-items:center;
	-webkit-box-pack:center;
	-ms-flex-pack:center;
	justify-content:center;
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	-ms-flex-direction:column;
	flex-direction:column;
	height:calc(100%);
}

.flexOverflow {
	-webkit-box-pack:start;
	-ms-flex-pack:start;
	justify-content:flex-start;
	overflow-y:scroll;
}

/* Extra heights */

.h-10 {
    height: 10% !important;
}

.h-20 {
    height: 20% !important;
}

.h-80 {
    height: 80%;
    min-height: 600px;
}

.h-90 {
    height: 90% !important;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	font-family: 'source_sans_prosemibold', Arial, Helvetica, sans-serif;
}

h1, h2, h3 {
	letter-spacing: 1px;
	color: #6C1241;
}

h2, h3 {
	color: #000;
}

h1 {
	font-size: 60px;
}

h2 {
	font-size: 25px;
}

/* Bits n bobs */

.searchString {
	text-transform: capitalize;
	cursor: pointer;
}

.modal-header .searchString {

}

.cities-table {
	display: none;
}

.clear {
	clear: both;
}

.mobile-only {
	display: none;
}

.tablet-upwards {
	display: block;
}

#pageIntro {
	position: absolute;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
}

.animated {
  -webkit-animation-duration: 200ms;
  -moz-animation-duration: 200ms;
  animation-duration: 200ms;
}

/* Postcode input section*/

.input-container {
    width: 100%;
    max-width: 750px;
    background: #FFF;
    border-radius: 30px;
    position: relative;
    margin: 230px auto 0;
    box-shadow: 0 0 23px rgba(0,0,0,0.15);
    text-align: center;
}

.input-padding {
	padding: 70px 50px 50px;
}

.input-padding p {
	text-align: center;
	font-size: 1.2rem;
	margin: 30px;
	line-height: 1.6;
	font-family: 'proxima_novalight', Arial, Helvetica, sans-serif;
}

.title-image {
	position: absolute;
	width: 300px;
	top: -145px;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 3;
}

.form-control {
	border: none;
	border-bottom: 2px solid #76C1F4;
	border-radius: 0;
	padding: 1.7rem .75rem;
	font-size: 1.3rem;
}

input::placeholder {
	color: #B2B2B2;
}

#submitButton1 {
	width: 100%;
}

.input-container .form-control:focus {
  border-color: #FE84DF;
  box-shadow: none;
}

/* Autocomplete */

.ui-widget.ui-widget-content {
	background: #FE84DF;
	border-radius: 0 0 10px 10px;
	overflow: hidden;
}

.ui-menu-item-wrapper {
	-webkit-transition: background .2s ease-in-out; /* Safari */
    transition: background .2s ease-in-out;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover  {
	background: #D859B7;
	color: #FFF;
	cursor: pointer;
}

/* Clouds */

.cloud-wrap {
	left: 0;
	padding-top: 10px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
	overflow: hidden;
}

@-webkit-keyframes animateCloud {
    0% {
        margin-left: -1000px;
    }
    100% {
        margin-left: 100%;
    }
}

@-moz-keyframes animateCloud {
    0% {
        margin-left: -1000px;
    }
    100% {
        margin-left: 100%;
    }
}

@keyframes animateCloud {
    0% {
        margin-left: -1000px;
    }
    100% {
        margin-left: 100%;
    }
}

.x1 {
	-webkit-animation: animateCloud 60s linear infinite;
	-moz-animation: animateCloud 60s linear infinite;
	animation: animateCloud 60s linear infinite;
	
	-webkit-transform: scale(0.65);
	-moz-transform: scale(0.65);
	transform: scale(0.65);
}

.x2 {
	-webkit-animation: animateCloud 40s linear infinite;
	-moz-animation: animateCloud 40s linear infinite;
	animation: animateCloud 40s linear infinite;
	
	-webkit-transform: scale(0.3);
	-moz-transform: scale(0.3);
	transform: scale(0.3);
	
	margin-top: -25px;
}

.x3 {
	-webkit-animation: animateCloud 50s linear infinite;
	-moz-animation: animateCloud 50s linear infinite;
	animation: animateCloud 50s linear infinite;
	
	-webkit-transform: scale(0.5);
	-moz-transform: scale(0.5);
	transform: scale(0.5);
	
	margin-top: -20px;
}

.x4 {
	-webkit-animation: animateCloud 35s linear infinite;
	-moz-animation: animateCloud 35s linear infinite;
	animation: animateCloud 35s linear infinite;
	
	-webkit-transform: scale(0.4);
	-moz-transform: scale(0.4);
	transform: scale(0.4);
	
	margin-top: -30px;
}

.x5 {
	-webkit-animation: animateCloud 45s linear infinite;
	-moz-animation: animateCloud 45s linear infinite;
	animation: animateCloud 45s linear infinite;
	
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	transform: scale(0.8);
	
	margin-top: -35px;
}

.cloud {
	height: 40px;
	position: relative;
	width: 100px;
}

/* Cityscape */

#cityscape {
	position: absolute;
	width: 100%;
	min-width: 2000px;
	top: 120px;
	height: auto;
}

	#cityscape img {
		width: 100%;
	}

/* Buttons */

.btn {
	border-radius: 50px;
	text-transform: uppercase;
	padding: 1rem;
	letter-spacing: 1px;
}

.btn:focus {
	border-color: #76C1F4;
	box-shadow: 0 18px 20px rgba(118, 194, 245, 0.6);
}

.btn-primary {
    color: #fff;
    background-color: #76C1F4;
    border-color: #76C1F4;
    box-shadow: 0 18px 20px rgba(118, 194, 245, 0.28);
    -webkit-transition: all .2s ease-in-out; /* Safari */
    transition: all .2s ease-in-out;
}

.btn-primary:hover {
    background-color: #76C1F4;
    border-color: #76C1F4;
    box-shadow: 0 18px 20px rgba(118, 194, 245, 0.28);
    transform: scale(1.02);
}

.btn-primary:focus, .btn-primary:active:focus {
    background-color: #a7161b !important;
    border-color: #a7161b !important;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 2px 8px rgba(0,0,0, 0.6) !important;
}

.btn-secondary {
    color: #fff;
    background-color: #E96A82;
    border-color: #E96A82;
    box-shadow: 0 0 8px rgba(0,0,0, 0.3);
    -webkit-transition: all .2s ease-in-out; /* Safari */
    transition: all .2s ease-in-out;
}

.btn-secondary:hover {
	background-color: #D54863;
    border-color: #D54863;
    box-shadow: 0 2px 8px rgba(0,0,0, 0.6);
    /*transform: scale(1.05);*/
}

.btn-secondary:focus, .btn-secondary:active:focus {
    background-color: #D54863 !important;
    border-color: #D54863 !important;
    box-shadow: 0 0 8px rgba(0,0,0, 0.3); !important;
}

.searchAgain {
	width: 200px;
	height: 50px;
	border-radius: 50px;
	box-shadow: 0 3px 6px rgba(0,0,0,0.11);
	-webkit-transition: all .2s ease-in-out; /* Safari */
    transition: all .2s ease-in-out;
}

	.searchAgain:hover {
		cursor: pointer;
		transform: scale(1.05);
		box-shadow: 0 6px 12px rgba(0,0,0,0.2);
	}
	
.searchAgainMap {
	position: absolute;
	top: 30px;
	right: 30px;
	background: #6195A0;
}

/* Side Menu */

.side-menu {
	position: absolute;
	width: 100%;
	max-width: 520px;
	height: calc(100% - 60px);
	left: 0;
	top: 0;
}

.side-menu-content {
	background: #FFF;
	border-radius: 40px;
	box-shadow: 0 0 23px rgba(0,0,0,0.13);
	margin: 30px;
	max-height: 750px;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.side-menu-upper-content {
	overflow-y: auto;
}

.side-menu-header {
	padding: 30px 20px;
	text-align: center;
}

.side-menu-padding {
	padding: 0 20px 30px;
	position: relative;
}

.side-menu h2 {
	margin-bottom: 0;
}

.side-menu h3 {
	font-size: 1.4rem;
}

#friendly-container {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	overflow: hidden;
}

	#friendly-container.fc-closed .friendly-content {
		height: 0 !important;
	}

.friendly-tabs {
	width: 100%;
	background: #FFF;
	font-family: 'source_sans_prosemibold', Arial, Helvetica, sans-serif;
	font-weight: normal;
	letter-spacing: 1px;
	font-size: 20px;
}

	.friendly-tab {
		width: 50%;
		text-align: center;
		color: rgba(255,255,255,0.5);
		padding: 30px 0;
		border-top: 30px solid #FFF;
	}
	
	.friendly-tab span {
		-webkit-transition: all .2s ease-in-out; /* Safari */
	    transition: all .2s ease-in-out;
	}
	
		.friendly-tab:hover {
			cursor: pointer;
		}
		
		.friendly-tab:hover span {
			transform: translateY(-5px);
		}
	
		.friendly-tab.active {
			color: rgba(255,255,255,1);
		}
		
		#friendly-container.fc-closed .friendly-tab.active:hover span {
			transform: none;
		}

.friendly-content {
	height: 550px;
	overflow-y: auto;
}
	
	.friendly-content .container {
		padding: 30px;
	}
	
	.friendly-content .city-table {
		margin: 20px 0 0;
	}
	
		.friendly-content .city-table p {
			margin-bottom: 5px;
			font-size: 1.2rem;
		}
	
	.friendly-content .lozenge {
		display: block;
		overflow: hidden;
		clear: both;
		margin-bottom: 5px;
		color: #FFF;
	}
	
	.friendly-content .grumpy-cat, .friendly-content .parrot {
		height: 105px;
	}
	
#friendly-container.primary-col .friendly-tab.active {
	border-top: 30px solid #76C1F4;
	background: #76C1F4;
	border-radius: 30px 0 0 0;
}

#friendly-container.primary-col .friendly-tab-left {
	background: #5994D8;
	box-shadow: inset -2px -2px 4px rgba(0,0,0,0.1);
}

#friendly-container.primary-col .friendly-content  {
	background: #76C1F4;
	color: #204F84;
}

#friendly-container .friendly-content .lozenge-bar  {
	min-width: 37px;
}

#friendly-container.primary-col .friendly-content .lozenge {
	text-align: left;
}

	#friendly-container.primary-col .friendly-content .lozenge-bar {
		float: left;
		background: #204F84;
		border-radius: 50px;
	}
	
	#friendly-container.primary-col .friendly-content .lozenge-bar span {
		padding: 0 10px;
	}

#friendly-container.secondary-col .friendly-tab.active {
	border-top: 30px solid #FE84DF;
	background: #FE84DF;
	border-radius: 0 30px 0 0;
}

#friendly-container.secondary-col .friendly-tab-right {
	background: #D859B7;
	box-shadow: inset 2px -2px 4px rgba(0,0,0,0.1);
}

#friendly-container.secondary-col .friendly-content {
	background: #FE84DF;
	color: #84246B;
}


#friendly-container.secondary-col .friendly-content .lozenge {
	text-align: right;
}

	#friendly-container.secondary-col .friendly-content .lozenge-bar {
		float: right;
		background: #D859B7;
		border-radius: 50px;
	}
	
	#friendly-container.secondary-col .friendly-content .lozenge-bar span {
		padding: 0 10px;
	}

/* Share */

#pageShare {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 100%;
	width: 100%;
	height: 100%;
	z-index: 200;
	background: #FFAD54;
}

.sharing-container {
	overflow-y: auto;
	background: url(../images/cityscape-yellow.png) no-repeat 0 200px;
	background-size: cover;
}

.share-button {
	position: absolute;
	top: 150px;
	left: -55px;
	-webkit-transition: all .2s ease-in-out; /* Safari */
    transition: all .2s ease-in-out;
}

	.share-button:hover {
		left: -45px;
		cursor: pointer;
	}

	.share-button img {
		height: 170px;
	}
	
	.share-button-hidden {
		left: 0;
	}

.sharing-box {	
	width: 100%;
	max-width: 750px;
	background: #FFF;
	border-radius: 30px;
	position: relative;
	margin: 125px auto 0;
	box-shadow: 0 0 23px rgba(0,0,0,0.15);
	text-align: center;
	z-index: 3;
}

.sharing-box-padding {
	padding: 50px;
}

.sharing-box-padding .animalContainer {
	right: -55px;
}

.dog-hidden {
	display: none;
}

.sharing-box-padding .textContainer {
	margin: 10px 5px 0;
}

#social-menu {
	
}

#social-menu img {
	margin-right: 10px;
	width: 72px;
	-webkit-transition: all .2s ease-in-out; /* Safari */
    transition: all .2s ease-in-out;
}

	#social-menu img:hover {
		transform: scale(1.1);
	}
	
.sharing-links {
	padding: 30px 0;
}
	.sharing-links  h3 {
		color: #FFF;
		letter-spacing: normal;
		font-size: 18px;
		margin-bottom: 30px;
	}

	.sharing-links .searchAgain {
		margin: 30px auto 0;
	}

/* Map */

#pageMap {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	z-index: 150;
	display: none;
}

#map {
	background-color: #E5E3DF;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0; 
}

.customMarker {
	display:inline-block;
	background-color: #4D385B;
	box-shadow: 0 0 12px rgba(0,0,0,0.4);
	font-size: 1.2rem;
	color:#fff;
	text-decoration:none;
	text-align:center;
	position:absolute;
	cursor:pointer;
	transform: rotate(45deg);
    width: 60px;
    height: 60px;
    border-radius: 100px 100px 0 100px;
}

.customMarker span {
	
}

.customMarker strong {
	font-family: 'proxima_novalight', Arial, Helvetica, sans-serif;
	font-weight: normal;
}

.customMarker:hover {
	z-index:100;
	background-color: #76C1F4 !important;
}

.postcode-button {
	transform: rotate(-45deg);
	position: absolute;
	top: 13px;
	left: 14px;
}

/* Footer */

.footer {
	padding: 40px;
	text-align: center; 
}

.footer img {
	display: inline-block;
	margin: 0 auto;
	width: 140px; 
}

.footer p {
	padding-top: 20px; 
	font-size: 0.9rem;
	line-height: 1;
	color: #FFF;
}
  
.footer a {
	color: #FFF;
	text-decoration: none;
	border-bottom: 1px dotted #FFF;
	-webkit-transition: color .2s ease-in-out; /* Safari */
    transition: color .2s ease-in-out;
}

.footer a:hover, footer a:focus {
	color: #EEE;
	text-decoration: none;
}

/* Error Message */
.errorMsg {
	background-color: #D859B7;
	color: #FFF;
	padding: 15px 30px;
	max-width: 370px;
	width: 90%;
	margin: 30px auto 0;
	position: relative;
	font-size: 0.9em;
	line-height: 1.2;
	display: none;
	clear: both;
	text-align: center;
}

/* Loader */
.spinner {
	display: none;
	position: relative;
}

.ajax-loader {
  position: absolute;
  top: 0%;
  left: 54%;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: rotate(90deg) translate(-50%, 0%);
          transform: rotate(90deg) translate(-50%, 0%);
  font-size: 30px;
  width: 1em;
  height: 3em;
  color: #76C1F4;
}

.ajax-loader .paw {
  width: 1em;
  height: 1em;
  -webkit-animation: 2050ms pawAnimation ease-in-out infinite;
          animation: 2050ms pawAnimation ease-in-out infinite;
  opacity: 0;
}
.ajax-loader .paw svg {
  width: 100%;
  height: 100%;
}
.ajax-loader .paw .icon {
  fill: currentColor;
}
.ajax-loader .paw:nth-child(odd) {
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
}
.ajax-loader .paw:nth-child(even) {
  -webkit-transform: rotate(10deg) translate(125%, 0);
          transform: rotate(10deg) translate(125%, 0);
}
.ajax-loader .paw:nth-child(1) {
  -webkit-animation-delay: 1.25s;
          animation-delay: 1.25s;
}
.ajax-loader .paw:nth-child(2) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.ajax-loader .paw:nth-child(3) {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
.ajax-loader .paw:nth-child(4) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.ajax-loader .paw:nth-child(5) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.ajax-loader .paw:nth-child(6) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.no-cssanimations .ajax-loader .paw {
  opacity: 1;
}

@-webkit-keyframes pawAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes pawAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


#pagePreLoader {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	color: #FFF;
	background: rgba(77, 56, 91, 1);
	z-index: 999;
}

#pagePreLoader img {
	width: 200px;
	margin-bottom: 30px;
}

/* Circle Charts */

.circleContainer {
	width: 250px;
	height: 250px;
}

.circle {
	width: 100%;
    margin: 0;
    display: inline-block;
    position: relative;
    text-align: center;
	vertical-align: top;
}

	.circle strong {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 100%;
		height: 250px;
		text-align: center;
		line-height: 1;
		font-size: 2rem;
		color: #FFF;
		font-weight: normal;
	}
	
	.circle strong span {
		font-size: 60px;
	}
	
	.circle strong em {
		font-size: 30px;
		font-style: normal;
	}
	
	.circle strong p {
		margin: 0 20px;
		font-size: 14px;
	}
	
.innerCircle {
    background: #F5272F;
    width: 170px;
    height: 170px;
    border-radius: 1000px;
}

.animalContainer {
	position: absolute;
	top: 30px;
	right: -150px;
	width: 220px;
	height: 220px;
}

.textContainer {
	margin: 30px 20px 0;
	text-align: center;
}

.textContainerExtra {
	margin: 20px 20px 0;
	text-align: center;
}
	
/* Make the circles responsive */
.circle canvas {
    max-width: 100%;
    max-height: 100%;
}

/* Media Queries
行行行行行行行行行行行行行行行行行行行行行行行行行 */

@media (max-width: 1440px) {
	.input-container {
		margin-top: 160px;
	}
}

@media (max-width: 1280px) {

}

@media (max-width: 1024px) {

}
      
@media (max-width: 991px) { 

}

@media (max-width: 768px) { 
	.desktop-only {
		display: none;
	}
	
	#cityscape {
		top: 10px;
	}

	.input-padding {
		padding: 70px 5px 50px;
	}
	
	.side-menu {
		max-width: 100%;
		height: 100%;
		pointer-events: none;
	}
	
	.side-menu-content {
		width: 100%;
		background: none;
		max-height: 100%;
		box-shadow: none;
		border-radius: 0;
		margin: 0;
		pointer-events: none;
	}
	
	.side-menu-upper-content {
		background: #FFF;
		border-radius: 40px;
		box-shadow: 0 0 23px rgba(0,0,0,0.13);
		margin: 30px;
		position: relative;
		overflow: hidden;
		height: auto;
	}
	
	.side-menu-header {
		pointer-events: all;
	}
	
	.angle-down {
		position: absolute;
	    top: 50px;
	    left: 0;
	    width: 10px;
	    height: 10px;
	    margin: 0 auto;
	    right: 0;
	}
	
	.angle-down img {
	    -webkit-transition: all .2s ease-in-out; /* Safari */
	    transition: all .2s ease-in-out;
	}
	
	.angle-up img {
		transform: rotate(180deg);
	}
	
	.side-menu-padding .col-8 {
		margin-left: auto;
		margin-right: auto; 
	}
	
	.animalContainer {
		right: 0;
	}
	
	.textContainer {
		margin: 30px 100px 0;
	}
	
	.gradient-white {
		width: 100%;
		height: 100px;
		display: block;
	}
	
	.friendly-tabs, .friendly-content {
		pointer-events: all;
	}
	
	.friendly-content {
		height: 60vh;
	}
	
	#map {
		bottom: 126px;
	}
	
	.sharing-box {
		width: calc(100% - 40px);
		margin-top: 20px;
	}
}  
      
@media (max-width: 480px) {  
	.mobile-only {
		display: block;
	}
	
	.tablet-upwards {
		display: none;
	}
	
	.input-padding p {
		font-size: 1rem;
	}
	
	.circleContainer {
		width: 200px;
		height: 200px;
	}
	
	.circle strong {
		height: 200px;
	}
	
	.circle strong span {
		font-size: 34px;
	}
	
	.circle strong em {
		font-size: 15px;
	}
	
	.innerCircle {
		width: 120px;
		height: 120px;
	}
	
	.side-menu-upper-content-collapsed {
		height: 84px;
	}
	
	.side-menu-header h2 {
		font-size: 20px;
	}
	
	.side-menu-padding .col-8 {
		margin-left: 0;
		margin-right: 0; 
	}
	
	.animalContainer {
		top: 45px;
		right: -127px;
		width: 160px;
		height: 160px;
	}
	
	.textContainer {
	    margin: 10px 10px 0;
	}
	
	.sharing-box-padding {
		padding: 20px;
	}
	
	.sharing-box-padding .animalContainer {
		left: 170px;
	}
	
	.sharing-box-padding .textContainer {
		margin-bottom: 20px;
	}
	
	.share-button {
		left: -30px;
	}
	
	share-button:hover {
		left: -30px;
	}
	
	.share-button img {
		height: 95px;
	}
	
	.errorMsg {
		max-width: 100%;
		padding: 10px;
	}
	
	.footer img {
		width: 200px;
	}
	
	.footer p {
		font-size: 13px;
	}
	
	.share-button-hidden-mobile {
		left: 0;
	}
}    

@media (max-width: 375px) {     
	h1 {
		font-size: 46px;
	}
} 

@media (max-width: 320px) { 
	.side-menu-padding {
		padding: 0 10px 10px;
	}
	
	.circleContainer {
		width: 150px;
		height: 150px;
	}
	
	.circle strong {
		width: 150px;
		height: 150px;
	}
	
	.innerCircle {
		width: 100px;
		height: 100px;
	}
	
	.circle strong p {
		font-size: 11px;
	}
	
	.animalContainer {
	    top: 14px;
	    right: -97px;
	    width: 140px;
	    height: 140px;
	}
	
	.textContainer {
	    margin: 20px 10px;
	    font-size: 0.8rem;
	    line-height: 1.2;
	}
	
	.friendly-content {
		font-size: 85%;
		line-height: 1.2;
	}
	
	.friendly-tabs {
		font-size: 16px;
	}
	
	.friendly-tab {
		padding: 13px 0;
		border-top: none;
	}
	
	.friendly-tab.active {
		border-top: none !important;
		border-radius: 0 !important;
	}
	
	.gradient-white {
		display: none;
	}
    
	.sharing-box-padding .animalContainer {
	    left: 145px;
	    top: 0;
	    width: 120px;
	}
	
	#map {
		bottom: 53px;
	}
}  

@media (max-height: 667px) {

}

@media (max-height: 568px) {

}

