@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rock+Salt&display=swap');

/*** GENERIC CSS ***/
html,body {
	font-family: "Poppins", sans-serif; 
}

body {
	font-size: 16px;
	background: #fff;
	color: #555555;
	-webkit-font-smoothing: antialiased;
}

a {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	text-decoration: none;
	color: #555555;
}

a:hover {
	text-decoration: none;
	color: #24a9e2;
}

a:focus {
	text-decoration: none;
}

button {
	outline: 0 !important;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
}

button:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	color:#100D20;
	font-family: "Inter", sans-serif;
}

h1 {
}

h2 {
	font-size: 50px;
	font-weight: 800;
	line-height: normal;
}

h3 {
}

h4 {
}

h5 {
}

h6 {

}

p {
	color: #000;
	font-family: "Poppins", sans-serif; 
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
	margin-bottom: 15px;
}

p.big {
	font-size: 21px;
	line-height: 36px;
}

p:last-child {
	margin-bottom: 0;
}

.section-title {    
	margin-bottom: 50px;
}

.section-title h3 {
	font-family: "Rock Salt", cursive;
	font-size: 26px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
}

.section-title h2 {
	font-size: 70px;
	font-style: normal;
	font-weight: 700;
	line-height: 80px;    
	font-family: "Poppins", sans-serif; 
	text-transform: uppercase;
}


img {
	max-width: 100%;
	height: auto;
}

figure.img-bordered {
	position: relative;
}

figure.img-bordered::after {
	position: absolute;
	height: 91%;
	content: '';
	border: 6px solid #66C7D1;
	width: 92%;
	bottom: -20px;
	left: -20px;
	z-index: 1;
}

figure.img-bordered img {
	position: relative;
	z-index: 2;
}

.btn-default {
	background: #fff;
	padding: 22px 24px;
	display: inline-block;
	width: auto;
	border-radius: 100px;
	color: #F6892D;
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 30px; /* 166.667% */
	text-transform: uppercase;
}

.btn-default em {
	display: inline-block;
	vertical-align: middle;
	width: 19px;
	height: 14px;
	overflow: hidden;
	line-height: 14px;
	font-style: normal;
	margin-left: 10px;
}

.btn-default em img {
	transition: all .3s;
	position: relative;
	z-index: 3;
}

.btn-default:hover {
	background: #000;
	color: #fff;
}

.btn-default:hover em img {
	top: 0px;
	margin-top: -30px;
	filter:brightness(0) invert(1);
}

.btn-orange {
	background:#F6892D;
	color: #fff;
}

.btn-orange em img, .btn-transparent em img {
	filter:brightness(0) invert(1);
}

.btn-transparent-orange {
	padding-top: 16px;
	padding-bottom: 16px;
	border-radius: 155px;
	background: #FFEFE0;
}

.btn-transparent-orange:hover {
	background:#FE7C01
}

.btn-transparent {
	background: none;
	color: #fff;
	border-radius: 100px;   
	border: 2px solid #FFF;
	padding: 12px 20px;
}

.btn-transparent:hover {
	background: #FE7C01;
	border-color: #FE7C01;
	color:#fff !important;
}

/*** HEADER ***/
.header {
	position: absolute;
	z-index: 999;
	width: 100%;
	padding: 15px 0px;
}

.header .container-fluid {
	padding-left: 50px;
	padding-right: 50px;
}

.header .btn-default {
	line-height: 1;
	padding: 12px 20px;
}

.header .btn-orange {
	border: 2px solid #FE7C01;
}

.header .btn-orange:hover {
	border-color: #000;
}

.header .right-menu a {
	margin:0px 5px;
}

.header .menu-btn {
	color: #fff;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	position:relative;
	top:-2px;
}

.header .menu-btn img {
	margin-right: 18px;
}

.header .right-menu {
	display: flex;
	align-items: center;
	justify-content: end;
}

.header .right-menu .socials {
	display: flex;
	gap: 5px;
}

.header .right-menu .socials a {
	margin: 0px;
}

/*** SIDE MENU ***/
.side-menu {
	background:#0C1724;
	position:fixed;
	top:0px;
	left:-140%;
	width:400px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	height:100%;
	z-index:9999999;
	padding: 55px 19px;
	width: 100%;
	max-width: 400px;
	overflow:hidden;
	overflow-y:auto;
}

.side-menu.intro {
	left:0px;
}

.side-menu ul.main-menu ul {
	padding: 0;
}

.side-menu ul.main-menu li {
	list-style:none;
	display:inline-block;
	width:100%;
}

.side-menu ul.main-menu {
	padding-left:0px;
	margin-top:50px;
	width:100%;
}


.side-menu ul.main-menu li a {
	display: inline-block;
	padding: 16px 0px;
	width: 100%;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #fff;
	font-size: 16px;
	-webkit-transition: 0.2s all ease;
	transition: 0.2s all ease;
	font-weight: 400;
}

@media only screen and (max-width:767px) {
	.side-menu ul.main-menu li a {
		font-size: 14px;
	}
}

.side-menu ul.main-menu li:hover>a,
.side-menu ul.main-menu li.active>a {
	background:none;
	color:#FE7C01;
}

a.CloseBtn {
	float:right;
	color:#fff;
	font-size:26px;
	margin:10px 10px 45px 15px;
	position: relative;
	z-index: 99;
	cursor: pointer;
}

a.CloseBtn:before,
a.CloseBtn:after {
	content: '';
	display: block;
	width: 22px;
	height: 2px;
	background-color: currentColor;
	position: absolute;
	left: 50%;
	top: 50%;
}

a.CloseBtn:before {
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-moz-transform: translate(-50%, -50%) rotate(45deg);
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}

a.CloseBtn:after {
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	-moz-transform: translate(-50%, -50%) rotate(-45deg);
	-ms-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
}

.side-menu ul.main-menu.navbar-nav {
	margin-top:30px;
}

.side-menu ul.main-menu.navbar-nav li {
	margin: 0;
}

.side-menu ul.main-menu.navbar-nav li:last-child a {
	border: none;
}

.side-menu ul.main-menu.navbar-nav li a:hover {
	background:none;
	color:#FE7C01;
}

.side-menu ul.main-menu.navbar-nav li .sub-menu a {
	padding: 10px 10px;
	font-size: 12px;
	color:#000;
	background: #ebebeb;
}

.side-menu .menu-item-has-children {
	cursor: pointer;
}

.side-menu .menu-item-has-children>a {
	pointer-events: none;
	cursor: pointer;
	position: relative;
}

.side-menu .menu-item-has-children>a:after {
	content: '';
	width: 25px;
	height: 25px;
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	top: 50%;
	transform: translate(0px, -50%);
}

.side-menu .menu-item-has-children>a:before {
	position: absolute;
	top: 0;
	right: 0;
	color:#fff;
	font-size: 27px;
	z-index: 99;
	top: 51%;
	transform: translate(0px, -50%);
	right: 6px;
	content: "\f067";
	display: inline-block;
	font: normal normal normal 14px / 1 FontAwesome;
}

.side-menu .menu-item-has-children.current>a:before {
	content: "\f068";
}

.side-menu ul.navbar-nav li a {
}

.side-menu ul.navbar-nav li a:hover {
	background:none;
	color:#FE7C01;
}

.side-menu li.menu-item-has-children ul.sub-menu {
	opacity: 1;
	visibility: visible !important;
	position: relative !important;
	left: 0 !important;
	-webkit-transform: translateY(0) !important;
	-ms-transform: translateY(0) !important;
	transform: translateY(0) !important;
	background: #ccc;
	padding: 0px 0px !important;
	display: none !important;
	top: 0 !important;
}

.side-menu ul li.current ul.sub-menu {
	display: block !important;
	pointer-events: auto;
}

.side-menu ul.navbar-nav li ul.sub-menu li:hover a,
.side-menu ul.navbar-nav li ul.sub-menu li.active a,
.side-menu ul.navbar-nav li ul.sub-menu li.current_page_item>a {
	background: #FE0095 !important;
	color: #fff !important;
}

.side-menu ul li.current ul.sub-menu {
	display: block !important;
	pointer-events: auto;
}

.side-menu ul.main-menu.navbar-nav li {
	margin: 0;
	padding: 0;
}
.side-menu {
	font-size: 18px;
}
.side-menu ul.navbar-nav li a {
	font-size: 18px;
}

.side-menu .main-menu {
	margin-bottom:50px;
}

.side-menu .btn-default {
	margin-bottom:20px;
	padding:12px 18px !important;
}

/*** BANNER ***/
.banner {
	background:url(../img/smiling-chihuahua-mix-dog-animal-shelter-malaga.webp) 10% 100% no-repeat;
	background-size: contain;
	height: 100vh;
	position: relative;
}

.banner::before {
	content: '';
	background:  linear-gradient(180deg, #66C7D1 0%, #1D9AA7 100%);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.banner .sub-title {
	margin-top:50vh;
	color: #FFF;
	font-family: "Poppins", sans-serif;
	font-size: 48px;
	font-weight: 800;
	line-height: 80px; /* 166.667% */
}

.banner h1 {
	color: #FFF;
	font-family: "Poppins", sans-serif;
	font-size: 70px;
	text-transform: uppercase;
	font-weight: 800;
	line-height: 80px;
	margin-bottom: 14px;
}

.banner p {
	color: #FFF;
	font-size: 20px;
	font-weight: 500;
	line-height: 30px; /* 150% */
}

/*** TABLE OF CONTENTS ***/
.table-of-content {
	padding: 100px 0px;
	position: relative;
}

.table-of-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 500px;
	opacity: 0.07;
	background: linear-gradient(180deg, #66C7D1 0%, #66C7D1 100%);
	filter: blur(72px);
}

.table-of-content h2 {
	margin-bottom: 20px;
}

.table-of-content .link-normal h2 {
	color: #000;
	font-family: "Poppins", sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 70px;
	margin-bottom: 0px;
}

.table-of-content .link-normal {
	display: inline-block;
	width: 100%;
	position: relative;
	color: #000;
	line-height: 70px;
	overflow: hidden;
	height: 70px;
}

.table-of-content .link-normal:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #d2d2d2;
	transition: all .3s;
}

.table-of-content .link-normal:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 2px;
	background: #000;
	transition: all .3s;
	z-index: 99;
}

.table-of-content .link-normal .text {
	display: inline-block;
	width: 100%;
	line-height: 70px;
	height: 70px;
	overflow: hidden;
	position: relative;
	margin: 0px 0px;
	transition: all .3s;
}

.table-of-content .link-normal .text span {
	display: inline-block;
	width: 100%;
	transition: all .3s;
	position: relative;
	top: 0;
}

.table-of-content .link-normal .imgs {
	position: absolute;
	top: 12px;
	right: 0px;
	height: 33px;
	width: 33px;
	text-align: right;
	overflow: hidden;
	transition: all .3s;
}

.table-of-content .link-normal .imgs img {
	position: relative;
	filter: none;
	top: -14px;
	right: 3px;
	overflow: hidden;
	transition: all .3s;
}

.table-of-content .link-normal .imgs img + img {
	margin-top: -45px;
}

.table-of-content .link-normal:hover .imgs img {
	top: -62px;
}

.table-of-content .link-normal:hover:before {
	width: 100%;
}

/*** ABOUT ***/
.about {
	background: #EAE9E9;
	padding: 120px 0px;
}

.about .pd-right {
	padding-right: 60px !important;
}

.about h2 {
	color: #66C7D1;
}

.about figure {
	height: 100%;
}

.about figure img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

/*** CTA-ORANGE ***/
.cta-orange {
	background: #F6892D;
}

.cta-orange .container {
	padding: 130px 0px;
	position: relative;
	z-index:2;
}

.cta-orange .quote, .cta-orange .btn-default {
	position: relative;
	z-index: 999;
}

.cta-orange .container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 365px;
	height: 100%;
	z-index:1;
	opacity: 0.8;
	background:#F6892D url(../img/handshake-icon-helping-animals.svg) top left no-repeat;
	background-blend-mode: multiply; /* or overlay, soft-light */
}

.cta-orange.dog-cta .container::before {
	background:url(../img/dog-outline-icon-animal-rescue.svg) #F6892D top left no-repeat;
	background-blend-mode: multiply; /* or overlay, soft-light */
	width: 600px;
}

.cta-orange.dog-care-cta .container::before {
	background:url(../img/img-dog-care.svg) #F6892D top left no-repeat;
	background-blend-mode: multiply; /* or overlay, soft-light */
	width: 600px;
}

.cta-orange .container::after {
	content: '';
	background: url(../img/speech-bubble-icon-animal-shelter.svg) top left no-repeat;
	background-size: contain;
	position: absolute;
	top:58px;
	right: 0;
	width:326px;
	height:326px;
	z-index:1;
}

.cta-orange .quote {
	color: #FFF;
	font-size: 40px;
	font-style: normal;
	font-weight: 800;
	line-height: 60px;
	margin-bottom: 50px;
	text-transform:uppercase;
}

.cta-orange h2 {
	font-family: "Poppins", sans-serif;
	color: #FFF;
	font-size: 70px;
	font-style: normal;
	font-weight: 800;
	line-height: 90px; /* 128.571% */
	text-transform: uppercase;
}

.cta-orange p.bolder {
	color: #FFF;
	font-size: 31px;
	font-weight: 800;
	line-height: 48px; /* 154.839% */
}


.no-after-before .container::after, .no-after-before .container::before {
	display: none;
}
/*** STATS ***/
.stats {
	background: #EAE9E9;
	padding: 130px 0px 110px 0px;
}

.stats .section-title {
	margin-bottom: 20px;
}

.stats-grid {
	margin-top: 50px;
}

.stats-box {
	background: linear-gradient(180deg, #66C7D1 0%, #35B0BC 100%);
	padding: 100px 50px 50px 50px;
	margin-bottom: 20px;
	position: relative;
}

.stats-box h3 {
	color: #fff;
	font-size: 24px;
	font-weight: 400;
	line-height: 36px;
	text-transform: uppercase;
	margin-bottom: 13px;
}

.stats-box .num {
	color: #fff;
	font-size: 80px;
	font-weight: 700;
	line-height: 80px;
	text-transform: uppercase;
}

.stats-box.rescued img {
	position: absolute;
	top: 46px;
	right:140px;
}

.stats-box.fixcost img {
	position: absolute;
	top: 12px;
	right:110px;
}

.stats-box.shelter img {
	position: absolute;
	top: 12px;
	right:0px;
}

.stats-box.vet img {
	position: absolute;
	bottom: 12px;
	right:10px;
}

/*** FAMILY ***/
.family {
	background: #66C7D1;
	padding:100px 0px;
}

.family *, .family .section-title h2 {
	color: #fff;
}

.family .section-title {
	margin-bottom: 20px;
}

.family-grid {
	margin-top: 60px;
}

.family-box {
	background: #FFF;
	padding: 40px;
	box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.15);
}

.family-box figure {
	position: relative;
	text-align: center;
	padding: 24px;
	width: 288px;
	margin:0px auto 30px auto;
}

.family-box img {
	margin: 0px auto;
	width: 235px;
	height: 235px;
	border-radius: 235px;
	position: relative;
	z-index: 2;
}

.family-box figure::after {
	content:'';
	border-radius: 288px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	height:144px;
	background: #DAF4F6;
	bottom:0px;
	left:0px;
	position:absolute;
	width:288px;
	z-index: 1;
}

.family-box h3 {
	color: #000;
	font-size: 30px;
	font-weight: 700;
	line-height: normal;
	font-family: "Poppins", sans-serif;
}

.family-box p {
	color: #000;
	font-size: 24px;
	font-weight: 400;
	line-height: 40px;
}

/*** ANIMALS FRIENDS ***/
.animals-friends {
	background: #EAE9E9;
	padding: 100px 0px;
}

.animals-friends .section-title {
	margin-bottom: 20px;
}

.filter-animals {
	position: relative;
	z-index: 1;
	margin: 70px 0px;
}

.filter {
	text-align: center;
	margin: auto;
}

.btn-filter {
	border-radius: 60px;
	background: #FFF;
	padding:10px 35px;
	color: #303133;
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 30px;
	margin: 0px 5px;
}

.btn-filter:hover,
.btn-filter.btn-active {
	background: #FE7C01;
	font-weight: bold;
	color: #fff;
}

.gallery-grid {
	display: flex;
	justify-content: center;
	width: fit-content;
	flex-wrap: wrap;
	margin:70px auto 0px auto;
	gap: 20px;
}

.gallery-grid a {
	flex: 1 1 calc(20% - 20px);
	position: relative;    
	border: 6px solid transparent;
}

.gallery-grid img {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.gallery-grid a:hover {
	border: 6px solid #FE7C01;
}

.gallery-grid a:hover::after {
	background: linear-gradient(180deg, rgba(254, 124, 1, 0.00) 0%, #FE7C01 100%);
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.gallery-grid .dog-details {
	position: absolute;
	bottom: 30px;
	left: 30px;
	width: calc(100% - 60px);
	z-index: 99;
	display: none;
}

.gallery-grid .dog-details * {
	color: #fff;
}

.gallery-grid a:hover .dog-details {
	display: inline;
}

.sets .hide,
.sets .pophide {
	width: 0%;
	display: none;
}

.gallery-grid .dog-details h3 {
	color: #FFF;
	font-family: "Poppins", sans-serif;
	font-size: 32px;
	font-weight: 900;
	line-height: normal;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	margin: 0px;
}

.gallery-grid .dog-details p {
	color: #FFF;
	font-family: "Poppins", sans-serif;
	font-size: 24px;
	font-weight: 600;
	line-height: normal;
	margin: 0px;
}

/*** PARALLAX SECTION ***/
.parallax-section {
	height: 100vh;
}

/*** ADOPTION PROCESS ***/
.adoption-process {
	background: #EAE9E9;
	padding: 100px 0px;
}

.adoption-process .section-title {
	margin-bottom: 20px;
}

.adoption-process h2 {
	text-transform: uppercase;
	color: #66C7D1;
}

#adoption-process {
	margin: 60px 0px 0px 0px;
}

#adoption-process .accordion-item {
	border-radius: 0px;
	background: none;
	border: 0px;
	border-bottom: 1px solid #333;
}

#adoption-process .accordion-item:last-child {
	border-bottom:0px;
}

#adoption-process .accordion-button {
	padding:24px 0px;
	background: none;
	flex-direction: column;
	text-align:left;
	align-items: start;
	position: relative;
}

#adoption-process .accordion-button h3 {
	font-family: "Poppins", sans-serif;
	color: #000;
	font-size: 28px;
	font-weight: 600;
	line-height: 32px;
}

#adoption-process .accordion-body {
	padding:24px 0px 44px 0px;
}

#adoption-process .accordion-body .grid-data {
	display: flex;
	flex-direction: row;
	gap: 30px;
	margin-bottom: 40px;
	justify-content: center;
	align-items: start;
}

#adoption-process .accordion-button:not(.collapsed) {
	box-shadow: none;
}

#adoption-process .accordion-button::after {
	width:28px;
	height: 28px;
	background-size: 28px;
	top: calc(50% - 14px);
	position: absolute;
	left: 98%;
}

#adoption-process .accordion-body p, #adoption-process .accordion-body ul li {
	color: #000;
	font-size: 24px;
	font-weight: 500;
	line-height: 45px; /* 187.5% */
}

/*** SHOP ***/
.shop {
	background: #EAE9E9;
	padding: 100px 0px;
}

.shop .section-title {
	margin-bottom:20px;
}

.filter-shop .gallery-grid a {
	background: #fff;
	padding: 20px;
}

.filter-shop .gallery-grid a {
	flex: 1 1 calc(25% - 20px);
	position: relative;
	border: 0px;
}

.filter-shop .gallery-grid a:hover {
	border: 0px;
}

.filter-shop .gallery-grid a:hover::after {
	display: none;
}

.filter-shop .gallery-grid a:hover .dog-details {
	display: inline-block;
}

.filter-shop .gallery-grid .dog-details {
	position: unset;
	display: inline-block;
	padding: 20px 0px;
	width: 100%;
}

.filter-shop .gallery-grid .dog-details * {
	color: #000;
}

.filter-shop .gallery-grid .dog-details h3 {
	color: #000;
	font-family: "Poppins", sans-serif;
	font-size: 24px;
	font-weight: 600;
	line-height: 30px; 
	text-transform: none;
	letter-spacing: 0px;
}

.filter-shop .gallery-grid .dog-details  h3 span {
	width: 100%;
	display: inline-block;
	color: #000;
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 30px;
}

.filter-shop .btn-blue {
	margin-top: 20px;
	border-radius: 60px;
	background: #DAF4F6;
	width: 100%;
	padding:10px 0px;
	text-align: center;
	text-transform: none;
}

.filter-shop .btn-blue:hover {
	background: #FE7C01;
	color: #fff;
}


/*** TESTIMONIALS ***/
.testimonials {
	background: #66C7D1;
	padding: 100px 0px;
}

.testimonials * {
	color: #fff;
}

.testimonials .section-title {
	margin-bottom: 20px;
}

.feedback-box {
	margin-top: 60px;
}

.feedback-box * {
	color: #000;
}

.feedback-box .owl-stage-outer {
	padding:125px 0px 40px 0px;
}

.feedback-box .item-bg {
	padding:20px;
	background:#fff;
	text-align: center;
	height:calc(100% - 20px);
	opacity:0.3;
}

.feedback-box .item-bg {
	margin:0px 0px;
}

.feedback-box .active.center .item {
	margin-top:-100px;
}

.feedback-box .active.center .item .item-bg {    
	padding:70px;
}

.feedback-box .active.center .item .item-bg {
	background:#fff;
	opacity:1;
	box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.15);
	padding-bottom: 50px;
}

.feedback-box .center .item-bg p {
	font-size: 24px;
	font-weight: 400;
	line-height: 46px; /* 191.667% */
}

.feedback-box .item-bg p {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.9; /* 191.667% */
}

.feedback-box .item-bg p.big {
	font-size: 30px;
}

.feedback-box .item img {
	margin: 60px auto 15px auto;
	width: 110px;
	height: 110px;
	border-radius: 100%;
}

.feedback-box .stars .fa {
	margin:0px auto 0px auto;
	color: #FFB300;
}

.feedback-box .owl-theme .owl-dots {
	margin-top: -40px;
}

.feedback-box .owl-theme .owl-dots .owl-dot span {
	width: 40px;
	height: 6px;
	opacity: 0.5;
	background: #FFF;
	border-radius: 0px;
}

.feedback-box .owl-theme .owl-dots .owl-dot.active span {
	opacity: 0.8;
	background: #FE7C01;
}

.feedback-box .owl-theme .owl-nav  {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
}

.feedback-box .owl-theme .owl-nav button {
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	background: #FE7C01;
}

.feedback-box .owl-theme .owl-nav button span {
	text-indent: -9999px;
	position: relative;
}

.feedback-box .owl-theme .owl-nav button:hover {
	background: #FE7C01;
}

.feedback-box .owl-theme .owl-nav button.owl-next span {
	background:url(../img/icon-next-arrow.svg) 50% 50% no-repeat;
	background-size: contain;
	width: 10px;
	height: 17px;
	display: inline-block;
}

.feedback-box .owl-theme .owl-nav button.disabled {
	background: none;
}

.feedback-box .owl-theme .owl-nav button.owl-next {
	position: relative;
	margin-right: 38%;
}

.feedback-box .owl-theme .owl-nav button.owl-prev span {
	background: url(../img/icon-prev-arrow.svg) 50% 50% no-repeat;
	background-size: contain;
	width: 10px;
	height: 17px;
	display: inline-block;
}

.feedback-box .owl-theme .owl-nav button.owl-prev {
	position: relative;
	margin-left: 38%;
}

/*** SOCIAL MEDIA ***/
.social-media {
	background: #EAE9E9;
	padding: 100px 0px;
}

.social-media .social-box {
	margin: 60px 0px 60px 0px;
}

.social-media figure {
	aspect-ratio: 1 / 1.27;
}

.social-box .cols {
	padding-left: 10px !important;
	padding-right: 10px !important;
}

.social-media figure img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

/*** HELP ***/
.help {
	background: #EAE9E9;
	padding: 100px 0px;
}

.help .section-title h2 {
	color: #66C7D1;
}

.help .section-title {
	margin-bottom: 20px;
}

.help-grid {
	margin: 60px 0px 0px 0px;
}

.help-box {
	background: #fff;
	padding: 37px;
	border: 4px solid #fff;
}

.help-box h3 {
	color: #000;
	font-family: "Poppins", sans-serif;
	font-size: 30px;
	font-weight: 700;
	line-height: 24px;
	text-transform: uppercase;
	margin-bottom: 25px;
}

.help-box .btn-default {
	width: 100%;
	margin-top: 30px;
}

.help-box:hover {
	border: 4px solid #FE7C01;
}

.help-box:hover .btn-default {
	background:#FE7C01;
	color: #fff;
}

.help-box:hover .btn-default em img {
	filter: brightness(0) invert(1);
}

/*** FAQ ***/
.faq {
	background: #EAE9E9;
	padding: 100px 0px;
}

.faq .section-title h2 {
	color: #66C7D1;
	text-transform: uppercase;
}

.faq .section-title {
	margin-bottom: 20px;
}

.faq-box {
	margin-top: 60px;
}

.faq-box p.big {
	color: rgba(0, 0, 0, 0.51);
	font-size: 26px;
	font-style: normal;
	font-weight: 500;
	line-height: 32px;
	padding-left: 20px;
}

.faq-box .accordion {
	margin: 25px 0px;
}

.faq-box .accordion, .faq-box .accordion-item, .faq-box .accordion-button {
	background: none;
	border: 0px;
	box-shadow: none;
	padding: 0px;
	border-radius: 0px !important;
}

.faq-box .accordion-item {
	margin-bottom: 10px;
}

.faq-box .accordion-header  {
	margin-bottom: 0px;
}

.faq-box .accordion-button::after {
	background: url(../img/icon-accordion-plus.svg) 50% 50% no-repeat;
	width: 24px;
	height: 24px;
	filter: brightness(0);
}

.faq-box .accordion-button:not(.collapsed)::after {
	background: url(../img/icon-accordion-minus.svg) 50% 50% no-repeat;
	width: 24px;
	height: 24px;
}

.faq-box .accordion-header button {
	padding: 24px 24px;
	color: #66C7D1;
	font-family: "Poppins", sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 24px; /* 120% */
}

.faq-box .accordion-button {
	background: #fff !important;
	padding: 24px 20px !important;
	border: 0px !important;
}

.faq-box .accordion-button.collapsed {
	background: #fff !important;
	padding:24px 24px !important;
	color: #000;
}

.faq-box .accordion-body {
	padding:0px 20px 24px 20px;
	background: #fff;
	color: #000;
	font-size:18px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px; /* 140% */
}

.faq-box .accordion-body a {
	color:#000;
}

.bottomfaq .faq-box .accordion-body a, .certificates a {
	color:#B0875A;
}

.faq-box .accordion-body a:hover, .certificates a:hover {
	text-decoration:underline;
}

/*** MAP ***/
.maps {
	background: #EAE9E9;
	padding:100px 0px;
}

.maps * {
	color: #000;
}

.maps .section-title {
	margin-bottom: 20px;
}

.maps .section-title h2 {
	color: #66C7D1;
}

.map-details {
	margin:60px 0px 0px 0px;
}

.map-box {
	background: #F6892D;
	box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.05);
	padding: 50px;
	height:100%;
	position: relative;
}

.map-box * {
	color: #fff;
}

.maps iframe, .maps .row {
	height:100%;
}

.map-box h3 {
	font-family: "Poppins", sans-serif;
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 30px;
}

.map-box p {
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 30px;
}

.map-box a:hover {
	color: #fff;
	text-decoration: underline;
}

.map-box hr {
	margin: 30px 0px;
	opacity: 1;
}

.map-box::after {  
	content: "";
	position: absolute;
	left: 90%;
	bottom: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	border-bottom: 50px solid #F6892D;
	transform: rotate(90deg);
}

/*** FOOTER ***/
.footer {
	background: #303133;
	padding: 110px 0px 40px 0px;
}

.footer .logo {
	display: inline-block;
	margin-bottom: 50px;
}

.footer .logo img {
	max-height: 170px;
}

.footer * {
	color: #fff;
}

.foot-quote {
	font-family: "Poppins", sans-serif;
	font-size: 50px;
	font-weight: 400;
	line-height: 80px; /* 160% */
}

.foot-head {
	font-family: "Poppins", sans-serif;
	font-size: 35px;
	font-weight: 600;
	line-height: 150%; /* 52.5px */
	text-transform: uppercase;
	margin-bottom: 15px;
}

.foot-links {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

.foot-links a {
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 40px; /* 166.667% */
}

.mt-75 {
	margin-top: 75px;
}

.mt-40 {
	margin-top: 40px;
}

.footer .socials {
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: 16px;
	font-weight: 600;
	line-height: 150%; /* 24px */
}

.footer hr {
	margin: 35px 0px 40px 0px;
}

.copyrights p {
	font-size: 16px;
	font-weight: 400;
	line-height: 150%; /* 24px */
}

.copyrights ul li, .copyrights ul {
	display:inline-block;
	list-style:none;
	margin:0px;
	padding:0px;
}

.copyrights .links a {
	margin: 0px 10px;
	text-decoration: underline;
}

.copyrights .links a:last-child {
	margin-right: 0px;
}

.footer a:hover {
	color: #F6892D;
}

/*** GENERIC ***/
h1 {
	font-size: 70px;
	font-weight: 800;
	line-height: 80px;
	font-family: "Poppins", sans-serif; 
}

.section-title h2 {
	color: #66C7D1;
}

/*** CONTACT ***/
.page-banner {
	padding: 350px 0px 90px 0px;
}

.page-banner h1 {
	color: #fff;
	margin-bottom: 10px;
}

.page-banner p {
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	line-height: 30px; /* 150% */
}

/*** BREADCRUMBS ***/
.breadcrumbs {
	background: #DAF4F6;
	padding: 15px 0px;
}

.breadcrumbs p {
	font-size: 18px;
	font-weight: 700;
	line-height: 30px;
	text-transform: uppercase;
}

.breadcrumbs a {    
	color: #66C7D1;
}

.breadcrumbs span {
	color: #000;
	font-weight: 400;
}

.breadcrumbs img {
	margin: 0px 20px;
}

.contact-form {
	padding: 60px 0px 120px 0px;
}

.contact-form .section-title h2 {
	color: #66C7D1;
	text-transform: unset;
	margin-bottom: 20px;
}

.form-box .req-field {
	color: #000;
	font-size: 15px;
	font-weight: 400;
	line-height: normal;
}

.form-box .req-field span, .form-box label span {
	color: #E91B1B;
}

.form-box label {
	margin: 30px 0px 0px 0px;
	color: #000;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px; /* 150% */
	letter-spacing: 0.16px;
}

.form-box .form-control {
	border: 1px solid #444;
	background: #FFF;
	padding: 12px 20px;
	border-radius: 0px;
}

.form-box .form-control:focus {
	box-shadow: none;
	outline: none;
	border-color:#66C7D1;
}

.form-box textarea.form-control {
	height: 148px;
	resize: none;
}

.form-box p {
	color: #000;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	margin: 20px 0px;
}

/*** WAYS TO HELP ***/
.cta-orange.shop-cta .container::before {    
	display: none;
}

.cta-orange.shop-cta {
	background: #F6892D url(../img/gift-donation-icon.svg) bottom left no-repeat;
}

.cta-orange.shop-cta .btn-default {
	margin-top: 50px;
}

.donate-box {
	background: #fff;
	padding: 120px 0px;
}

.donate-box h2 {
	text-transform:unset;
}

.donate-via {
	margin-top: 50px;
}

.donate-logos {
	display: flex;
	gap: 10px;
}

.donate-logos a {
	border-radius: 15px;
	border: 1px solid #D6D6D6;
	padding: 15px 25px;
}

.donate-types {
	background: linear-gradient(180deg, #FFF 0%, #EFEFEF 100%);
	padding-bottom: 120px;
}

.type-box {
	background: #66C7D1;
	padding: 50px;
}

.type-box * {
	color: #fff;
}

.type-box h3 {
	text-align: center;
	font-family: "Poppins", sans-serif;
	font-size: 40px;
	font-weight: 700;
	line-height: 50px;
	margin-bottom: 20px;
}

.type-box .btn-default {
	margin-top: 40px;
}

.type-box.sponsor-box {
	background:#66C7D1 url(../img/icon-bg-sponsor.svg) bottom right no-repeat;
}

.type-box.donate-box {
	background:#66C7D1 url(../img/icon-bg-donate.svg) bottom right no-repeat;
}

.type-box.foster-box {
	background:#66C7D1 url(../img/icon-bg-foster.svg) bottom right no-repeat;
}

/*** DONATION CAMPAIGNS ***/
.about.bg-white h2 {
	text-transform: unset;
}

.stats.campaigns h2 {
	text-transform: unset;
}

.meet-dog {
	padding: 120px 0px;
	position: relative;
}

.meet-dog::after {
	content: "";
	position: absolute;
	left:calc(50% - 50px);
	bottom:-49px;
	width: 0;
	height: 0;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	border-bottom: 50px solid #fff;
	transform: rotate(180deg);
	z-index: 999;
}

.meet-dog.bg-gray {
	background:#EAE9E9;
}

.meet-dog.bg-gray *, .meet-dog * {
	color: #000 !important;
}

.meet-dog.bg-gray::after {
	content: "";
	position: absolute;
	left:calc(50% - 50px);
	bottom:-49px;
	width: 0;
	height: 0;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	border-bottom: 50px solid #EAE9E9;
	transform: rotate(180deg);
	z-index: 999;
}

.meet-dog .pl-60 {
	padding-left: 60px;    
}

.meet-dog .pr-60 {
	padding-right: 60px;    
}

.meet-dog .section-title {
	margin-bottom: 30px;
}

.meet-dog.bg-blue {
	background: #66C7D1;
}

.meet-dog.bg-blue * {
	color: #fff !important;
}

.meet-dog.bg-blue::after {
	content: "";
	position: absolute;
	left:calc(50% - 50px);
	bottom:-49px;
	width: 0;
	height: 0;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	border-bottom: 50px solid #66C7D1;
	transform: rotate(180deg);
	z-index: 999;
}

.meet-dog .owl-theme .owl-dots {
	margin-top: -40px;
}

.meet-dog .owl-theme .owl-dots .owl-dot span {
	width: 40px;
	height: 6px;
	opacity: 0.5;
	background: #FFF;
	border-radius: 0px;
}

.meet-dog.bg-white .owl-theme .owl-dots .owl-dot span {
	background:#000;
}

.meet-dog .owl-theme .owl-dots .owl-dot.active span {
	opacity: 0.8;
	background: #FE7C01;
}

.meet-dog .owl-theme .owl-nav  {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
}

.meet-dog .owl-theme .owl-nav button {
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	background: #FE7C01;
}

.meet-dog .owl-theme .owl-nav button span {
	text-indent: -9999px;
	position: relative;
}

.meet-dog .owl-theme .owl-nav button:hover {
	background: #FE7C01;
}

.meet-dog .owl-theme .owl-nav button.owl-next span {
	background:url(../img/icon-next-arrow.svg) 50% 50% no-repeat;
	background-size: contain;
	width: 10px;
	height: 17px;
	display: inline-block;
}

.meet-dog .owl-theme .owl-nav button.disabled {
	background: none;
}

.meet-dog.bg-white .owl-theme .owl-nav button.disabled {
	filter: invert(1);
}

.meet-dog .owl-theme .owl-nav button.owl-next {
	position: relative;
	margin-right: 20%;
}

.meet-dog .owl-theme .owl-nav button.owl-prev span {
	background: url(../img/icon-prev-arrow.svg) 50% 50% no-repeat;
	background-size: contain;
	width: 10px;
	height: 17px;
	display: inline-block;
}

.meet-dog .owl-theme .owl-nav button.owl-prev {
	position: relative;
	margin-left: 20%;
}

.cta-orange.help-cta {
	background: #F6892D url(../img/bg-help-cta-box.webp) 50% 50% no-repeat;
	background-size:cover;
}

.cta-orange.help-cta .container::before, .cta-orange.help-cta .container::after {
	display: none;
}

.cta-orange.help-cta h2 {
	color: #fff;
}

.cta-orange.help-cta img {    
	mix-blend-mode: multiply;
}

/** SHOP ***/
.shop-list {
	padding:0px 0px 120px 0px;
}

.shop-list .filter-options {
	display: flex;
	align-items: center;
	gap: 20px;
}

.shop-list .filter-label {
	color: #000;
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 30px;
}

.shop-list select.form-control {
	width:auto;
	border-radius: 5px;
	border: 1px solid #000;
	appearance:auto;
}

.prod-list {
	display: flex;
	margin-top: 20px;
}

.prod-list .cols {
	padding-right: 7.5px !important;
	padding-left: 7.5px !important;
}

.prod-list a {    
	background: #fff;
	padding: 20px;
	display: flex;
	flex-direction: column;
}

.prod-list figure {
	aspect-ratio: 1 / 1;
	position: relative;
	overflow: hidden;
}

.prod-list figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.prod-list .dog-details {
	padding: 20px 0px;
}

.prod-list .dog-details h3 {
	color: #000;
	font-family: "Poppins", sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
	text-transform: none;
	letter-spacing: 0px;
}

.prod-list .dog-details  h3 span {
	width: 100%;
	display: inline-block;
	color: #000;
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 30px;
}

.prod-list .btn-blue {
	margin-top: 20px;
	border-radius: 60px;
	background: #DAF4F6;
	width: 100%;
	color: #000;
	padding:10px 0px;
	text-align: center;
	text-transform: none;
}

.prod-list .btn-blue:hover {
	background: #FE7C01;
	color: #fff;
}

/*** SHOP PAGINATION ***/
ul.page-numbers li {
	display: inline-block;
	margin: 0px 9px;
}

ul.page-numbers {
	padding: 0;
	list-style: none;
	margin: 0;
	text-align: center;
}

ul.page-numbers li .current {
	background: #daf4f6;
	color: #000;
	padding: 3px 11px;
	border-radius: 3px;
	font-weight: 600;
}

ul.page-numbers li a:hover {
	color: #000;
}

nav.woocommerce-breadcrumb, header.woocommerce-products-header{
	display:none;
}

.prod-list a {
	padding: 20px 7px;
}

.prod-list .dog-details h3 span.woocommerce-Price-currencySymbol {
	width: auto;
	margin-left: 3px;
}

.prod-list .dog-details h3 span {
	font-weight: 600;
}

p.woocommerce-result-count {
	color: #000;
	font-size: 18px;
	font-weight: 600;
	display: inline-block;
	vertical-align: middle;
	line-height: 30px;
}

form.woocommerce-ordering {
	display: inline-block;
	vertical-align: top;
}

form.woocommerce-ordering select {
	border: 1px solid #000;
	height: 39px;
	border-radius: 5px;
	font-size: 18px;
	font-weight: 600;
	padding: 0px 7px;
	margin-top: -5px;
	margin-left: 4px;
}

.filter-shop .gallery-grid .dog-details h3 span.woocommerce-Price-amount.amount {
	width: 100%;
	display: inline-block;
	color: #000;
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 30px;
	font-weight: 600;
}

.filter-shop .gallery-grid .dog-details h3 span.woocommerce-Price-currencySymbol {
	width: auto;
	margin-left: 3px;
	font-weight: 600;
	font-size: 18px;
}

.filter-shop .gallery-grid .dog-details {
	padding-bottom: 0;
}

/*** SHOP SIDEBAR ***/
.shop-sidebar {
	background: #EFEFEF;
	height: calc(100% - 177px);
	padding: 26px;
	margin-top:125px;
}

.shop-sidebar h2 {
	font-size: 21px;
}

.shop-sidebar ul {
	list-style: none;
	padding: 0;
	margin-bottom: 20px;
}

.shop-sidebar ul li {
	color: #000;
	font-size: 15px;
	position: relative;
	overflow: hidden;
}

.shop-sidebar ul li span {
	color: #000;
	font-size: 15px;
	position: absolute;
	top: 11px;
	right: 5px;
}

.shop-sidebar ul li a {
	color: #000;
	font-size: 15px;
	display: inline-block;
	width: 100%;
	padding: 10px 0px;
	outline: none;
}

.shop-sidebar ul li a:after {
	content: '';
	width: 100%;
	left: 0;
	height: 1px;
	background: #d2d2d2;
	position: absolute;
	bottom: 0px;
	left: 0;
}

.shop-sidebar ul li a:before {
	content: '';
	width: 0;
	left: 0;
	height: 1px;
	background: #000;
	position: absolute;
	bottom: 0px;
	left: 0;
	z-index: 9;
	transition: all .3s;
}

.shop-sidebar ul li a:hover:before {
	width: 100%;
}

/*** PRODUCT DETAILS ***/
.product-details {
	padding: 70px 0px;
}

.product-details .woocommerce-product-gallery__wrapper a,
.product-details .woocommerce-product-gallery__wrapper a img {
	display: inline-block;
	width: 100%;
	height: auto !important;
}

.product-details h1 {
	font-size: 58px;
	line-height: 1.2;
}

.product-details .summary p a {
	color: #181818;
}

.product-details .summary p a:hover {
	color: #F6892D;
}

.product-details .price span.woocommerce-Price-amount.amount {
	font-size: 18px;
	font-weight: 600;
}

.product-details table.variations {
	border: 1px solid #ccc;
	width: 100%;
	margin: 15px 0px;
}

.product-details table.variations th,
.product-details table.variations td {
	border-right: 1px solid #ccc;
	padding: 8px 10px;
	color: #000;
}

.product-details table.variations td.value select {
	border: 1px solid #444;
	width: 84%;
	height: 40px;
	padding: 0px 10px;
	font-size: 15px;
	margin-right: 5px;
}

.product-details table.variations td.value a {
	color: red;
	font-size: 14px;
	margin-left: 4px;
}

.product-details .woocommerce-variation-add-to-cart.variations_button {
	display: flex;
	align-items: center;
}

.product-details .woocommerce-variation-add-to-cart.variations_button .quantity {
	width: 40%;
}

.product-details .woocommerce-variation-add-to-cart.variations_button .quantity input {
	border: 1px solid #444;
	width: 100%;
	height: 40px;
	padding: 0px 10px;
	font-size: 15px;
}

.product-details .woocommerce-variation-add-to-cart.variations_button button {
	font-size: 14px;
	background: #F6892D;
	color: #fff;
	font-weight: 600;
	line-height: 30px;
	text-transform: uppercase;
	padding: 6px 24px;
	display: inline-block;
	width: auto;
	border-radius: 100px;
	margin-left: 10px;
	transition: all .3s;
	margin-top:0px !important;
}

.product-details .woocommerce-variation-add-to-cart.variations_button button:hover {
	background: #000;
	color: #fff;
}

.product-details .product_meta>span {
	display: inline-block;
	width: 100%;
	margin-bottom: 4px;
}

.product-details .product_meta {
	margin-top: 10px;
	color: #000;
}

.product-details .product_meta>span {
	display: inline-block;
	width: 100%;
	margin-bottom: 4px;
	font-weight: bold;
}

.product-details .product_meta>span a {
	font-weight: 400;
}

.product-details .product_meta a {
	color: #181818;
}

.product-details .product_meta a:hover {
	color: #F6892D;
}

.product-details .woocommerce-tabs.wc-tabs-wrapper {
	margin-top: 60px;
}

.product-details .woocommerce-tabs.wc-tabs-wrapper li {
	display: inline-block;
}

.product-details .woocommerce-tabs.wc-tabs-wrapper li a {
	font-size: 14px;
	background: #F6892D;
	color: #fff;
	font-weight: 600;
	line-height: 30px;
	text-transform: uppercase;
	padding: 6px 24px;
	display: inline-block;
	width: auto;
	border-radius: 100px;
	margin-right: 5px;
}

.product-details .woocommerce-tabs.wc-tabs-wrapper li a:hover,
.product-details .woocommerce-tabs.wc-tabs-wrapper li.active a {
	background: #000;
	color: #fff;
}

.product-details h2 {
	font-size: 48px;
	line-height: 1.2;
	margin-bottom: 20px !important;
	margin-top: 30px;
}

.product-details table.woocommerce-product-attributes.shop_attributes {
	border: 1px solid #ccc;
	width: 100%;
	margin: 15px 0px;
}

.product-details table.woocommerce-product-attributes.shop_attributes th,
.product-details table.woocommerce-product-attributes.shop_attributes td {
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding: 8px 10px;
	color: #000;
}

.product-details table.woocommerce-product-attributes.shop_attributes th {
	width: 40%;
}

.product-details section.related.products .product>a:first-child {
	display: none;
}

.product-details .product_meta{
	display:none;
}

.product-details h2 {
	margin-bottom: 30px !important;
	margin-top: 35px;
}

.product-details .woocommerce-Tabs-panel {
    padding: 20px 20px;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #ddd;
    border-top: 0px solid #ddd;
}
 
.product-details .woocommerce-tabs ul.tabs {
    border-bottom: 1px solid #ddd;
    padding: 0px 20px;
}
 
.product-details .woocommerce-tabs.wc-tabs-wrapper li a {
    margin-right: 0px;
    border-radius: 4px 4px 0 0;
    background: #e1e1e1;
    color: #515151;
    border: 1px solid #ddd;
    margin-bottom: -1px;
    border-bottom: none;
}
 
.product-details .woocommerce-tabs.wc-tabs-wrapper li a:hover, .product-details .woocommerce-tabs.wc-tabs-wrapper li.active a {
    background: #fff;
    color: #000;
}
 
.product-details .woocommerce-tabs .panel h2:first-child {
    margin-top: 10px;
}
 
 .product-details  .left-side  .product.type-product {
    width: 96%;
}

.product-details .woocommerce-Tabs-panel {
    padding: 20px 20px;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #ddd;
    border-top: 0px solid #ddd;
}
 
.product-details .woocommerce-tabs ul.tabs {
    border-bottom: 1px solid #ddd;
    padding: 0px 20px;
}
 
.product-details .woocommerce-tabs.wc-tabs-wrapper li a {
    margin-right: 0px;
    border-radius: 4px 4px 0 0;
    background: #e1e1e1;
    color: #515151;
    border: 1px solid #ddd;
    margin-bottom: -1px;
    border-bottom: none;
}
 
.product-details .woocommerce-tabs.wc-tabs-wrapper li a:hover, .product-details .woocommerce-tabs.wc-tabs-wrapper li.active a {
    background: #fff;
    color: #000;
}
 
.product-details .woocommerce-tabs .panel h2:first-child {
    margin-top: 10px;
}
 
.product-details .left-side .product.type-product {
    width: 96%;
}

.single-product .product-details  div.product .woocommerce-product-gallery {
	position: relative;
	float: left;
	width: 100%;
	overflow: hidden;
}