@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");

article,
aside,
canvas,
figure,
figcaption,
footer,
header,
nav,
section,
audio,
video,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol {
  margin: 0;
  padding: 0;
  border: 0;
}

a,
button,
input,
input[type="button"],
input[type="submit"],
select,
.btn,
textarea {
  -webkit-transition: 400ms all ease-in-out;
  -o-transition: 400ms all ease-in-out;
  transition: 400ms all ease-in-out;

  text-decoration: none;
  font-style: normal;
}

button {
  border: none;
}

a:hover,
a:focus,
button:focus,
input:focus,
input[type="button"]:focus,
input[type="submit"]:focus,
select:focus,
.btn:focus,
textarea:focus,
.bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none !important;
  text-decoration: none;
}

:focus-visible {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

a,
label,
span {
  display: inline-block;
  vertical-align: middle;
  vertical-align: 0;
  color: inherit;
}

figure {
  -webkit-transition: 400ms all ease-in-out;
  -o-transition: 400ms all ease-in-out;
  transition: 400ms all ease-in-out;
  margin: 0;
  font-size: 0;
  line-height: 100%;
}

a {
  cursor: pointer;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

b,
strong {
  font-weight: normal;
}

:root {
  --primary_font: "Poppins", sans-serif;
  --transtn: 400ms all ease-in-out;
  --white: #fff;
  --body: #323232;
  --primary_clr: #8c2817;
  --ttle_clr: #1e1e1e;
  --ttle_clr_2: #882f21;
}

body {
  font-family: var(--primary_font);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--body);
  letter-spacing: 0;
}

h1 {
  font-size: 65px;
  line-height: 65px;
  color: var(--white);
  font-weight: 600;
  font-family: var(--primary_font);
}

h2 {
  color: var(--ttle_clr);
  font-family: var(--primary_font);
  font-size: 33px;
  font-weight: 600;
  line-height: 33px;
  text-transform: capitalize;
}

.site_btn {
  text-transform: capitalize;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  color: var(--white);
  padding: 12px 10px 12px 20px;
  height: 50px;
  min-width: 140px;
  position: relative;
  background-color: var(--primary_clr);
  border-radius: 25px;
  border: 1px solid var(--primary_clr);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: var(--transtn);
}

.site_btn span {
  position: relative;
  z-index: 2;
}

.site_btn:after {
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border-radius: 25px;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0);
  transition: all 0.6s ease;
}

.site_btn:hover:after {
  transform: scale(1);
  transition: all 0.6s ease;
}

.site_btn:hover {
  color: var(--primary_clr);
}

.sml_titl {
  color: var(--ttle_clr_2);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-transform: capitalize;
}

/* start header */
.hdr_sec {
  box-shadow: 5.248px 6.038px 6px rgba(34, 34, 34, 0.06);
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
  width: 100%;
  /* position: fixed; */
  z-index: 99;
}

.hdr_sec .offcanvas-body {
  justify-content: center;
}

.hdr_sec .offcanvas-body .navbar-nav li + li {
  margin-left: 60px;
}

.hdr_sec .offcanvas-body .navbar-nav li a {
  color: var(--ttle_clr);
  font-weight: 600;
  font-size: 14px;
  line-height: 13px;
}

.hdr_sec .offcanvas-body .navbar-nav li a:hover,
.hdr_sec .offcanvas-body .navbar-nav li.active a {
  color: var(--primary_clr);
}

.hdr_sec .offcanvas-body .navbar-nav li {
  position: relative;
}

.hdr_sec .offcanvas-body .navbar-nav li::before {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background-color: transparent;
  border-radius: 50%;
  z-index: 1;
  content: "";
  transition: var(--transtn);
}

.hdr_sec .offcanvas-body .navbar-nav li.active::before,
.hdr_sec .offcanvas-body .navbar-nav li:hover::before {
  background-color: var(--primary_clr);
}

.hdr_sec .navbar-expand-lg {
  padding: 10px 0px;
}

main.main {
  padding-top: 70px;
}

a.hdr_logo {
  width: 90px;
}

h5.offcanvas-title {
  width: 90px;
}

.hdr_btn a + a {
  margin-left: 20px;
}

.hdr_btn a svg {
  width: 21px;
  height: auto;
}

.hdr_btn a svg path {
  transition: var(--transtn);
}

.hdr_btn a:hover svg path {
  fill: var(--primary_clr);
}

.header_top {
  text-align: center;
  padding: 8px 0;
  background-color: #e4894e;
}

.header_top p {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  line-height: 13px;
}

.header_top p span {
  color: var(--white);
  background-color: var(--ttle_clr_2);
  padding: 8px 11px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-block;
  margin-right: 10px;
}

/* .hdr_sec.is-sticky {
  position: fixed;
  width: 100%;
  z-index: 99;
  animation: slideDown 0.5s ease-in-out;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
} */

/* end header */

/* Banner Start */
.banner_sec {
  /* background: url(../images/banner_bg.jpeg) no-repeat center top; */
  background-size: cover;
  position: relative;
}

.banner_sec::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.3;
  content: "";
}

.banner_text {
  padding: 385px 0 245px;
  position: relative;
  z-index: 2;
}

.banner_text h1 {
  letter-spacing: -1.2px;
  margin-bottom: 25px;
}

.banner_text h5 {
  color: var(--white);
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.5px;
  margin-bottom: 25px;
}

.btn_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border-radius: 100%;
  background: var(--white);
  color: var(--ttle_clr_2);
  font-size: 13px;
  flex: 0 0 auto;
  margin-left: 25px;
  transition: var(--transtn);
}

.site_btn:hover .btn_icon {
  color: var(--white);
  background: var(--ttle_clr_2);
}

/* Banner End */

/* Why_us Start */
.why_us_sec {
  border-radius: 50px 50px 0px 0px;
  background: #feba95;
  margin-top: -150px;
  position: relative;
  padding: 65px 0 190px;
  z-index: 2;
  /*margin-bottom: 80px;*/
}

.why_us_box ul li {
  display: flex;
  align-items: center;
  min-height: 150px;
  transition: var(--transtn);
  /* cursor: pointer; */
  /* position: relative;
  z-index: 9; */
}

.why_us_box ul li h6 {
  min-height: 52px;
  border-radius: 100px;
  background: var(--white);
  padding: 5px 20px 5px 60px;
  display: inline-flex;
  max-width: 245px;
  width: 100%;
  align-items: center;
  color: var(--primary_clr);
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.3px;
  margin-left: -50px;
}

.why_us_box ul li span,
.why_us_box ul li h6 {
  transition: var(--transtn);
}

.why_us_box ul li:hover span,
.why_us_box ul li:hover h6 {
  transform: translateX(5px);
}

.why_us_sec .row > div:nth-child(3) .why_us_box ul li:hover span,
.why_us_sec .row > div:nth-child(3) .why_us_box ul li:hover h6 {
  transform: translateX(-5px);
}

.why_us_box ul li span.why_us_icon {
  box-shadow: 4px 0px 12px 0px rgba(140, 40, 23, 0.15);
  background: var(--primary_clr);
  width: 80px;
  height: 80px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.why_us_box ul li span img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.why_us_bg {
  min-width: 428px;
  margin-left: -38px;
  position: relative;
}

.why_us_bg::before {
  background: url(../images/why_us_shadow.png) no-repeat center;
  background-size: contain;
  width: 340px;
  height: 85px;
  bottom: -80px;
  position: absolute;
  content: "";
  left: 45px;
}

.why_us_sec .row > div:nth-child(3) li {
  flex-direction: row-reverse;
}

.why_us_sec .row > div:nth-child(3) li h6 {
  padding: 0 60px 0 20px;
  margin-right: -50px;
}

.why_us_sec .row > div:nth-child(3) li h6 span {
  width: 100%;
  text-align: right;
}

.why_us_sec .row > div:nth-child(1) li:nth-child(4) {
  position: absolute;
  left: 43%;
  /* transform: translateX(-50%); */
  min-height: auto;
  margin-top: 45px;
}

.why_us_sec .row > div:nth-child(1) li:nth-child(1),
.why_us_sec .row > div:nth-child(1) li:nth-child(3) {
  margin-left: 50px;
}

.why_us_sec .row > div:nth-child(3) li:nth-child(1),
.why_us_sec .row > div:nth-child(3) li:nth-child(3) {
  margin-right: 50px;
}

.why_us_sec .title {
  text-align: center;
  margin-bottom: 80px;
}

.why_us_sec .title .sml_titl {
  margin-top: 13px;
}

/* Why_us End */

/* Product_slider Start */
.product_slider .slick-prev::before,
.product_slider .slick-next::before {
  display: none;
}

.product_slider .slick-prev,
.product_slider .slick-prev:hover,
.product_slider .slick-prev:active,
.product_slider .slick-prev:focus {
  left: 0;
  width: 45px;
  height: 45px;
  background: url(../images/prev.svg) no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  z-index: 2;
}

.product_slider .slick-next,
.product_slider .slick-next:hover,
.product_slider .slick-next:active,
.product_slider .slick-next:focus {
  right: 0;
  width: 45px;
  height: 45px;
  background: url(../images/next.svg) no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  z-index: 2;
}

.product_slider .product_slide {
  padding: 30px 20px;
}

.product_slide_box {
  text-align: center;
  margin: 0 auto;
  padding: 30px 0;
  border-radius: 10px;
  background-color: var(--white);
  transition: var(--transtn);
  display: inline-block;
  width: 100%;
  filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0));
}

.product_slide_text {
  padding: 0 10px;
}

.product_slide_text h4 {
  color: var(--primary_clr);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.product_slide_text h6 {
  color: #646464;
  line-height: 28px;
  opacity: 0;
  transition: var(--transtn);
}

.product_slide_box:hover .product_slide_text h6 {
  opacity: 1;
}

.product_slide_box:hover {
  filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.09));
}

.product_slide_img {
  height: 185px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.product_slider_sec .title {
  text-align: center;
}

.product_slider_sec {
  padding-bottom: 20px;
}

/* Product_slider End */

/* satrt gallarysect */
.gallarysect {
  width: 100%;
  position: relative;
  padding: 70px 0px 130px;
  background: #ffe6d9;
  text-align: center;
  overflow-x: hidden;
}

.galaryiteam {
  width: 100%;
  position: relative;
  padding: 0px 12px;
}

.galaryiteam img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(140, 40, 23, 0.2);
}

.galarylist {
  margin-top: 55px;
}

.gallarysect h2 {
  margin-bottom: 20px;
}

.galarylist .slick-dots li {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
  opacity: 1;
  border-radius: 100px;
  background: #feba95;
}

.galarylist .slick-dots li.slick-active {
  background: var(--primary_clr);
}

.galarylist .slick-dots {
  bottom: -70px;
}

.galarylist .slick-prev::before,
.galarylist .slick-next::before {
  display: none;
}

.galarylist .slick-prev,
.galarylist .slick-prev:hover,
.galarylist .slick-prev:active,
.galarylist .slick-prev:focus {
  left: 15%;
  width: 45px;
  height: 45px;
  background: url(../images/prev.svg) no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  z-index: 2;
}

.galarylist .slick-next,
.galarylist .slick-next:hover,
.galarylist .slick-next:active,
.galarylist .slick-next:focus {
  right: 15%;
  width: 45px;
  height: 45px;
  background: url(../images/next.svg) no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  z-index: 2;
}

.galarylist::before {
  content: "";
  filter: blur(25px);
  background: linear-gradient(
    90deg,
    rgb(255, 230, 217),
    rgba(255, 230, 217, 0.2) 100%
  );
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 283px;
  height: 100%;
  z-index: 1;
}

.galarylist::after {
  content: "";
  filter: blur(25px);
  background: linear-gradient(
    90deg,
    rgb(255, 230, 217),
    rgba(255, 230, 217, 0.2) 100%
  );
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 283px;
  height: 100%;
  z-index: 1;
  transform: rotate(180deg);
}

.slick-dots li button:before {
  font-size: 0;
  line-height: 0;
  width: 0;
  height: 0;
}

.slick-dots li button {
  height: auto;
}

/* end gallarysect */

/* start feedbacksect */
.feedbacksect {
  width: 100%;
  position: relative;
  padding: 75px 0px;
  /*background: url(../images/fbbg.png) repeat;*/
  background: #fff9f6;
}

.feedbacksect .container > .row > div + div {
  margin-top: 25px;
}

.feedbacksect h2 {
  margin-bottom: 20px;
}

.feedbackbox {
  /* box-sizing: border-box; */
  border: 1px solid #8c281740;
  border-radius: 20px;
  background-color: var(--primary_clr);
  margin-bottom: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #feede4;
}
.feedbackbox.popup_select_pack_dog {
  background-color: var(--primary_clr);
}

.fbimgbox {
  width: 100%;
  position: relative;
  padding: 9px;
  height: 350px;
}

.fbimgbox img {
  width: 100%;
  border-radius: 12px;
  height: 100%;
  object-fit: cover;
}

.fbcontentbox {
  width: 100%;
  position: relative;
  padding: 40px 24px 24px;
}

.fbcontentbox::before {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 5px;
  background: url(../images/cotesan.png) no-repeat center;
  background-size: contain;
  content: "";
}

.cotesanimg {
  width: 28px;
  margin-bottom: 12px;
}

.fbcontentbox p {
  color: var(--primary_clr);
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  text-align: left;
  max-width: 300px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.retingbox {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding: 24px;
  padding-top: 0;
}

.retingimg {
  width: 56px;
  height: 56px;
  overflow: hidden;
  border-radius: 100px;
}

.retingimg img {
  width: 56px;
  height: 56px;
  object-fit: cover;
}

.retingcont h4 {
  color: var(--primary_clr);
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0px;
  text-align: left;
}

.retingstar {
  position: relative;
  width: 100%;
  /* max-width: 108px; */
}

.retingstar ul {
  display: inline-flex;
  align-items: center;
}

.retingstar ul li {
  font-size: 13px;
  color: #fcbf45;
}

.retingstar ul li + li {
  margin-left: 3px;
}

.mrb50 {
  margin-bottom: 25px;
}

/* end feedbacksect */

/* Scan Start */
.scan_sec {
  position: relative;
}

.scan_sec > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  min-height: 750px;
}

.scan_sec .container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.scan_sec .container .scan_text {
  margin-left: auto;
  max-width: 120px;
  text-align: center;
  padding-top: 115px;
}

.scan_sec .container .scan_text h6 {
  color: var(--ttle_clr);
  line-height: 26px;
}

.scan_sec .container .scan_text .chat_img {
  width: 30px;
  height: 30px;
  margin-top: 10px;
}

/* Scan End */

/* footer start */
.main_footer {
  /*background-color: rgb(244, 227, 191);*/
  padding-top: 40px;
}

.main_footer .uppear_row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 35px;
  flex-wrap: wrap;
  gap: 20px;
}

.ftr_info_box {
  max-width: 210px;
}

.ftr_info_box:last-child {
  padding-right: 50px;
}

.ftr_info_box h6 {
  font-weight: 600;
  line-height: 24px;
  color: var(--ttle_clr_2);
  margin-bottom: 5px;
}

.ftr_info_box p,
.ftr_info_box a {
  font-size: 14px;
  line-height: 22px;
  color: #3b3b3b;
  font-weight: 400;
}

.ftr_info_box a:hover {
  color: var(--ttle_clr_2);
}

.main_footer .lower_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0px;
  /*border-top: 1px solid #fdf0d5;*/
  border-top: 1px solid var(--ttle_clr_2);
}

.ftr_logo img {
  max-width: 69px;
}

.lower_row p {
  font-size: 14px;
  font-weight: 500;
  color: var(--ttle_clr);
}

.lower_row ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main_footer .lower_row li a img {
  transition: var(--transtn);
}

.main_footer .lower_row li a:hover img {
  filter: brightness(0) invert(1);
}

/* footer end */

/* about banner start */

.bnnr {
  padding: 163px 0;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-bottom: 85px;
}

.bnnr::after {
  content: "";
  position: absolute;
  background-color: #0000002b;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.bnnr_wrp {
  position: relative;
  z-index: 2;
  text-align: center;
}

.bnnr_wrp h1 {
  color: var(--white);
  font-size: 70px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  margin-bottom: 40px;
}

/* about banner end */

/* woof gang start */
.woofGang {
  margin-bottom: 95px;
}

.woofGangImg img {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}

.woofGangImg {
  top: 0;
  position: sticky;
}

.woofGangTxt h3 {
  font-weight: 600;
  font-size: 55px;
  color: var(--ttle_clr_2);
  margin-bottom: 24px;
  letter-spacing: -3px;
}

.woofGangTxt p {
  font-weight: 300;
  color: var(--body);
  line-height: 30px;
}

.woofGangTxt p + p {
  margin-top: 30px;
}

/* woof gang end */

/* zigzag section start */
.zigzag_sec .row {
  align-items: center;
}

.zigzag_txt h4 {
  font-size: 45px;
  font-weight: 600;
  color: var(--ttle_clr);
  margin-bottom: 25px;
}

.zigzag_txt p {
  font-weight: 300;
  color: var(--body);
  line-height: 30px;
  max-width: 465px;
}

.zigzag_sec .zigzag_row:nth-child(odd) .zigzag_txt {
  padding-left: 65px;
}

.zigzag_sec .zigzag_row:nth-child(odd) .zigzag_img {
  padding-right: 65px;
  text-align: right;
}

.zigzag_sec .zigzag_img img {
  max-width: 365px;
}

.zigzag_sec .zigzag_row:nth-child(odd) {
  padding: 56px 0px;
  background: url(../images/ourMissionBg.png) no-repeat center / cover;
}

.zigzag_sec .zigzag_row:nth-child(even) .row {
  flex-direction: row-reverse;
}

.zigzag_sec .zigzag_row:nth-child(even) {
  padding: 100px 0px;
}

.zigzag_sec .zigzag_row:nth-child(even) .zigzag_img {
  padding-left: 65px;
}

/* zigzag section end */

/* india project start */
.indiaProject {
  background: url(../images/ourMissionBg.png) no-repeat center right / 50% 100%;
  overflow: hidden;
  margin-bottom: 80px;
  position: relative;
}

.indiaProject_img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50%;
}

.indiaProject_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.indiaProject_txt {
  padding: 95px 0px 95px 50px;
}

.indiaProject_txt h4 {
  font-size: 45px;
  font-weight: 600;
  color: var(--ttle_clr_2);
  margin-bottom: 20px;
}

.indiaProject_txt p {
  font-weight: 300;
  color: var(--body);
  line-height: 30px;
}

/* india project end */

/* why choose us start */
.why_choose {
  margin-bottom: 100px;
}

.section_head {
  text-align: center;
  margin-bottom: 55px;
}

.section_head h4 {
  font-size: 45px;
  font-weight: 600;
  color: var(--ttle_clr_2);
  margin-bottom: 20px;
}

.why_choose .row {
  justify-content: center;
  margin-top: -75px;
}

.choose_box {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  margin-top: 75px;
  padding: 10px;
  border-radius: 10px;
}

.choose_box h5 {
  font-weight: 600;
  font-size: 18px;
  color: var(--ttle_clr);
}

.choose_box p {
  text-align: center;
  font-weight: 300;
  color: var(--body);
  line-height: 24px;
  max-width: 320px;
  margin: 0 auto;
}

/* why choose us end */

/* Product */

/* foodcrd_sec start */
.foodcrd_sec {
  padding-bottom: 85px;
  margin-top: 30px;
}

.food_wrp h2 {
  margin-bottom: 36px;
}

.food_cards {
  display: flex;
  column-gap: 20px;
  flex-wrap: wrap;
}

.fd_card {
  width: 32%;
  border: 1px solid rgb(239, 239, 239);
  border-radius: 25px;
  background: var(--white);
  padding: 15px;
  margin-bottom: 35px;
  position: relative;
  overflow: hidden;
}

.fd_card .al_tm_fav {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 25px 0px;
  background: var(--primary_clr);
  display: flex;
  align-items: center;
  padding: 3px 15px;
}

.fd_card .al_tm_fav p {
  color: var(--white);
  font-family: var(--primary_font);
  font-size: 13px;
  font-weight: 500;
  line-height: 25.99px;
  text-transform: capitalize;
  margin-left: 3px;
}

/* .fd_card .crd_img {
  background: rgb(245, 245, 245);
  border-radius: 28px;
  padding: 46px 0 34px 0;
} */

.fd_card .crd_img a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fd_card .crd_img img {
  border-radius: 28px;
  object-fit: contain;
  max-height: 200px;
}

.abt_card {
  margin-top: 19px;
}

.abt_card h4 {
  margin-bottom: 10px;
  font-family: var(--primary_font);
  color: var(--ttle_clr);
  font-size: 20px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
  text-transform: capitalize;
}

.abt_card h4 a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  max-width: 100%;
}

.abt_card p {
  color: var(--primary_clr);
  font-family: var(--primary_font);
  font-size: 18px;
  line-height: 25px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.abt_card p span {
  color: #a2a2a2;
  font-weight: 400;
  text-decoration-line: line-through;
  text-transform: capitalize;
  margin-left: 7px;
}

.abt_card ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.abt_card ul li {
  flex: 0 0 auto;
  width: 25%;
  color: rgb(80, 80, 80);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: var(--transtn);
  font-family: var(--primary_font);
  font-size: 13px;
  font-weight: 600;
  position: relative;
}

.abt_card ul li .list_wrap {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.abt_card ul li .list_wrap input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.abt_card ul li span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: rgb(111, 111, 111);
  border: 1px solid rgb(221, 221, 221);
  font-size: 13px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
  text-transform: capitalize;
  display: block;
  margin-bottom: 3px;
  transition: 0.4s all ease-in-out;
}

.abt_card ul li .list_wrap:hover {
  color: var(--primary_clr);
}

.abt_card ul li .list_wrap:hover span {
  color: var(--white);
  background: var(--primary_clr);
  border: 1px solid transparent;
}

.abt_card ul li .list_wrap input:checked ~ span {
  color: var(--white);
  background: var(--primary_clr);
  border: 1px solid transparent;
}

.abt_card ul li .list_wrap:has(.check_1:checked) {
  color: var(--primary_clr);
}

.btn_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 17px;
}

.btn_wrap a + a {
  margin-left: 5px;
}

.btn_card {
  border-radius: 40px;
  transition: var(--transtn);
  padding: 10px 15px;
  max-width: 157px;
  width: 100%;
  border: 1px solid rgb(136, 47, 33);
  color: var(--primary_clr);
  background-color: transparent;
  font-size: 15px;
  line-height: 24px;
  text-transform: capitalize;
  font-family: var(--primary_font);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn_card span {
  flex: 0 0 auto;
  margin-right: 6px;
}

.crt_btn {
  background: var(--primary_clr);
  color: var(--white);
}

.crt_btn span svg {
  width: 20px;
}

.crt_btn:hover {
  border: 1px solid rgb(136, 47, 33);
  color: var(--primary_clr);
  background-color: transparent;
}

.crt_btn span svg path,
.crt_btn span svg circle {
  stroke: var(--white);
  transition: var(--transtn);
}

.crt_btn:hover span svg path,
.crt_btn:hover span svg circle {
  stroke: var(--primary_clr);
}

.dtls_btn:hover {
  color: var(--white);
  background: var(--primary_clr);
}

.food_wrp + .food_wrp {
  margin-top: 50px;
}

.short_wrp .food_cards .fd_card .crd_img {
  padding: 46px 10px 34px;
}

.short_wrp .food_cards .fd_card .crd_img img {
  width: 126px;
}

/* foodcrd_sec end */

/* note sec start */
.note_sec {
  position: relative;
  background-image: url("../images/founders_bg.png");
  background-repeat: no-repeat;
  background-size: 50% 100%;
  background-position: right;
}

.note_sec .note_img {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  margin-right: auto;
}

.note_sec .note_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.note_wrap {
  max-width: 503px;
  margin-left: auto;
  padding: 67px 0;
}

.note_wrap h2 {
  color: rgb(136, 47, 33);
  font-family: var(--primary_font);
  font-size: 45px;
  font-weight: 600;
  line-height: 68px;
  letter-spacing: -3%;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.note_wrap p {
  color: var(--body);
  font-family: var(--primary_font);
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
}

/* note sec End */

.indiaProject_txt {
  margin-left: auto;
  max-width: 550px;
}

.succ_msg { 
  color: #2ed22e;
  font-size: 14px;
  line-height: 16px;
  text-transform: capitalize;
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
}

.succ_msg.err_msg {
  color: #ff0000;
}

/* 16-12 */
/* .fd_card {
  padding-bottom: 0;
} */
/* 16-12 */

/* Product Details Start */

.product_detl_sec {
  margin: 80px 0;
}

.product_detl_sliders {
  position: sticky;
  top: 0;
  margin-bottom: 20px;
}

.big_prt_slider,
.sml_prt_slider {
  margin-bottom: 20px;
}

.big_prt_slider .big_prt_slide {
  background-color: #a2a2a21a;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.big_prt_slider .big_prt_slide img {
  margin: 0 auto;
}

.sml_prt_slider .sml_prt_slide {
  width: 100%;
  padding: 0 5px;
  opacity: 0.5;
  border: solid 1px transparent;
}

.sml_prt_slider .sml_prt_slide_box {
  background-color: #a2a2a21a;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 5px;
  padding: 10px 0;
  cursor: pointer;
}

.sml_prt_slider .sml_prt_slide img {
  margin: 0 auto;
  height: 80px;
  object-fit: contain;
}

.sml_prt_slide.slick-current {
  opacity: 1;
}

.sml_prt_slide.slick-current .sml_prt_slide_box {
  border: solid 1px #e4894e;
}

.pdts-input button {
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 14px;
  line-height: 48px;
  color: var(--body);
  font-weight: 400;
  background: transparent;
  padding: 0;
  width: 100%;
  text-align: left;
  padding-left: 15px;
  border: solid 1px #dddddd;
  border-radius: 5px;
}

.pdts-input button:after,
.pdts-input button:before {
  content: " ";
  width: 7px;
  height: 1px;
  border-radius: 2px;
  background-color: var(--ttle_clr);
  position: absolute;
  bottom: 25px;
}

.pdts-input button:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 15px;
}

.pdts-input button:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 20px;
}

.pdts-input__options {
  position: absolute;
  width: 100%;
  left: 0;
  top: 101%;
  background-color: #fff;
  -webkit-box-shadow: rgba(72, 72, 72, 0.2) 0px 15px 20px;
  box-shadow: rgba(72, 72, 72, 0.2) 0px 15px 20px;
  border-radius: 2px;
  overflow: hidden;
  height: 0;
  opacity: 0;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.pdts-input__options.open {
  opacity: 1;
  height: auto;
}

.pdts-input__options > div {
  padding: 10px 0;
  text-align: center;
}

.pdts-input__options > div:first-child {
  padding-top: 35px;
}

.pdts-input__options > div:last-child {
  padding-bottom: 35px;
}

.pdts-input__ctrl {
  display: inline-block;
  border: 1px solid #5a5f66;
  font-size: 20px;
  color: #5a5f66;
  padding: 3px 8px;
  line-height: 20px;
  border-radius: 2px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.pdts-input__ctrl.disabled {
  color: #d8d8d8;
  border-color: #d8d8d8;
  cursor: default;
}

.pdts-input__value {
  display: inline-block;
  padding: 0 10px;
  width: 100px;
  cursor: default;
  color: #5a5f66;
  font-size: 14px;
  line-height: 15px;
}

.pdts-input__value span {
  display: inline-block;
  padding-right: 5px;
}

.pdt {
  position: relative;
}

.product_detl_text h6 {
  text-transform: capitalize;
  color: var(--primary_clr);
  font-size: 18px;
  margin-bottom: 10px;
}

.product_detl_text h2 {
  text-transform: capitalize;
  margin-bottom: 15px;
}

.product_detl_text h4,
.product_detl_text h4 > span {
  display: flex;
  align-items: center;
}

.dis_price {
  color: var(--primary_clr);
  font-size: 22px;
}

.dis_price svg path {
  fill: var(--primary_clr);
}

.orgi_price {
  position: relative;
  font-size: 16px;
  margin-left: 10px;
}

.orgi_price svg {
  width: 18px;
}

.orgi_price::before {
  position: absolute;
  top: 50%;
  left: 2px;
  width: 100%;
  height: 1px;
  background-color: var(--ttle_clr);
  content: "";
}

.product_detl_drp {
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.product_detl_drp > div {
  width: 48%;
}

.product_detl_drp label {
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 10px;
  font-weight: normal;
}

.form-select {
  height: 50px;
  border-radius: 5px;
  color: var(--body);
}

.pdts-input button:focus {
  border-color: #86b7fe;
}

.btn_prime,
.btn_seond {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  border: solid 1px var(--primary_clr);
  border-radius: 52px;
  width: 100%;
}

.btn_prime svg,
.btn_seond svg {
  width: 20px;
  height: 20px;
  fill: var(--primary_clr);
  margin-right: 10px;
}

.btn_prime {
  background-color: var(--primary_clr);
  color: var(--white);
}

.btn_prime svg path,
.btn_prime svg circle {
  stroke: var(--white);
  transition: var(--transtn);
}

.btn_seond {
  background-color: var(--white);
  color: var(--primary_clr);
}

.btn_seond svg path {
  stroke: var(--primary_clr);
  transition: var(--transtn);
}

.btn_prime:hover svg,
.btn_seond:hover svg {
  fill: var(--white);
}

.btn_prime:hover {
  background-color: var(--white);
  color: var(--primary_clr);
}

.btn_prime:hover svg path,
.btn_prime:hover svg circle {
  stroke: var(--primary_clr);
  transition: var(--transtn);
}

.btn_seond:hover {
  background-color: var(--primary_clr);
  color: var(--white);
}

.btn_seond:hover svg path {
  stroke: var(--white);
}

.product_detl_drp .btn_wrap {
  margin-top: 25px;
}

/* Product Details End */
.default_archive.zigzag_sec .zigzag_row:nth-child(even) .zigzag_img,
.default_archive.zigzag_sec .zigzag_row:nth-child(odd) .zigzag_txt {
  padding-left: 0;
}

.default_archive.zigzag_sec .zigzag_row:nth-child(odd) .zigzag_img {
  padding-right: 0;
}

/* start 05.12.24 */
.product_detl_sec .succ_msg {
  width: 48%;
}

.btnwrap_new {
  width: 100% !important;
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.btnwrap_new .btn_wrap {
  width: 48%;
}

/* end 05.12.24 */

/* start 10-12-24 */
.wc-archive-page .btn_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*margin-top: 17px;*/
  /*position: absolute;*/
  /*width: calc(100% - 31px);*/
  /*bottom: 20px;*/
}

.wc-archive-page .fd_card {
  padding-bottom: 0;
  position: relative;
  padding-bottom: 65px;
}

.wc-archive-page .fd_card .crd_img img {
  border-radius: 0;
  object-fit: contain;
  max-height: 150px;
}

.wc-archive-page .fd_card .crd_img a {
  max-width: 80%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wc-archive-page .fd_card .crd_img {
  background: rgb(245, 245, 245);
  border-radius: 28px;
  padding: 30px 0;
}

.wc-archive-page .succ_msg {
  width: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}

.wc-archive-page .succ_msg {
  bottom: 3px;
}

.wc-archive-page .btn_wrap {
  bottom: 40px;
}

.wc-archive-page .fd_card {
  padding-bottom: 100px;
}

/* end 10-12-24 */

/* start 12-12-24 */
.big_prt_slider .slick-track {
  display: flex;
}

.big_prt_slider .big_prt_slide {
  /* background-color: #a2a2a21a; */
  background-color: transparent;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
}

/* end 12-12-24 */

/* Account start */

.accnt_page h2 {
  color: var(--ttle_clr_2);
  font-family: var(--primary_font);
  font-size: 45px;
  font-weight: 600;
  line-height: 55px;
  letter-spacing: -1px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.accnt_page .woocommerce form.checkout_coupon,
.accnt_page .woocommerce form.login,
.accnt_page .woocommerce form.register {
  border: 1px solid #e7e7e7 !important;
  padding: 35px 25px;
  margin: 0;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
}

.accnt_page .woocommerce form .form-row label {
  font-family: var(--primary_font);
  font-size: 16px;
  font-weight: 500;
  line-height: 13px;
  margin-bottom: 15px;
}

.accnt_page .woocommerce form .form-row input.input-text,
.accnt_page .woocommerce form .form-row textarea {
  border: 1px solid #ececec;
  border-radius: 12px;
  background: #f9f9f9;
  width: 100%;
  height: 50px;
  padding: 10px 15px;
}

.accnt_page .woocommerce form .form-row {
  padding: 0;
  margin: 0 0 25px;
  width: 100%;
  overflow: unset !important;
}

.accnt_page
  .woocommerce
  .woocommerce-form-login
  .woocommerce-form-login__submit,
.accnt_page .woocommerce-form-register__submit {
  width: 242px;
  height: 54px;
  border-radius: 40px;
  background: var(--primary_clr);
  color: var(--white);
  border: solid 1px var(--primary_clr);
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
  transition: var(--transtn);
  float: none;
}

.accnt_page .woocommerce .form-row:has(#rememberme) {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accnt_page .woocommerce .form-row:has(#rememberme) label {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  margin-right: 15px;
}

.accnt_page .woocommerce .form-row:has(#rememberme) label > span {
  color: #3c3c3c;
  font-family: var(--primary_font);
  font-size: 15px;
  font-weight: 500;
  line-height: 13px;
}

.accnt_page .woocommerce .form-row:has(#rememberme) #rememberme {
  margin-right: 7px;
  width: 16px;
  height: 16px;
}

.accnt_page .woocommerce form .form-row::after,
.accnt_page .woocommerce form .form-row::before,
.accnt_page .woocommerce-page form .form-row::after,
.accnt_page .woocommerce-page form .form-row::before {
  display: none;
}

.accnt_page .woocommerce-LostPassword.lost_password a {
  color: var(--primary_clr);
  font-family: var(--primary_font);
  font-size: 15px;
  font-weight: 400;
  line-height: 13px;
  text-decoration: none;
}

.accnt_page .woocommerce-LostPassword.lost_password {
  display: inline-block;
}

.accnt_page .google-login {
  display: inline-block;
  margin-left: auto;
}

.accnt_page .google-login a {
  color: var(--ttle_clr);
  font-family: var(--primary_font);
  font-size: 15px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 0;
  background-color: transparent;
}

/*30-12-24 start*/
.accnt_page .google-login a:hover {
  background-color: transparent;
  color: unset;
}

.accnt_page .woocommerce-privacy-policy-text {
  font-family: var(--primary_font);
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  margin-bottom: 20px;
}

.accnt_page .woocommerce .form-row:has(.woocommerce-form-register__submit) {
  margin-bottom: 0;
}

.accnt_page .entry-content {
  margin: 100px 0;
}

.accnt_page
  .woocommerce
  .woocommerce-form-login
  .woocommerce-form-login__submit,
.accnt_page .woocommerce-form-register__submit {
  width: 242px;
  height: 54px;
  border-radius: 40px !important;
  background: var(--primary_clr) !important;
  color: var(--white) !important;
  border: solid 1px var(--primary_clr) !important;
  font-size: 17px !important;
  font-weight: 500 !important;
  line-height: 28px !important;
  transition: var(--transtn) !important;
  float: none;
  margin-right: unset;
}

.accnt_page
  .woocommerce
  .woocommerce-form-login
  .woocommerce-form-login__submit:hover,
.accnt_page .woocommerce-form-register__submit:hover {
  background: var(--white) !important;
  color: var(--primary_clr) !important;
}

.accnt_page .google-login a img {
  width: 35px;
  height: 35px;
  border-radius: 100%;
  margin-left: 10px;
}

/* after loging */
.accnt_page .woocommerce-MyAccount-navigation-link {
  color: var(--ttle_clr);
  transition: var(--transtn);
}

.accnt_page
  .woocommerce-MyAccount-navigation-link
  + .woocommerce-MyAccount-navigation-link,
.accnt_page .woocommerce-MyAccount-content p + p {
  margin-top: 15px;
}

.accnt_page .woocommerce-info {
  border-top-color: var(--primary_clr);
}

.accnt_page .woocommerce-info::before {
  color: var(--primary_clr);
}

.accnt_page .woocommerce-MyAccount-navigation-link.is-active,
.accnt_page .woocommerce-MyAccount-navigation-link:hover {
  color: var(--primary_clr);
}

.accnt_page .woocommerce table.my_account_orders td,
.accnt_page .woocommerce table.my_account_orders th {
  padding: 10px 5px;
  vertical-align: middle;
}

.accnt_page .woocommerce-Address-title.title h2 {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 15px;
}

.accnt_page .woocommerce-MyAccount-content p {
  font-size: 14px;
  margin-bottom: 20px;
}

.woocommerce-account .addresses .title .edit {
  float: none;
  color: var(--primary_clr);
  padding: 0;
  border-radius: 20px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: underline;
}

.accnt_page address {
  color: var(--body);
  font-size: 14px;
  margin-bottom: 10px;
}

.accnt_page
  p.woocommerce-form-row.woocommerce-form-row--wide.form-row.form-row-wide
  span {
  color: red;
  font-size: 12px;
}

.accnt_page
  p.woocommerce-form-row.woocommerce-form-row--wide.form-row.form-row-wide
  .show-password-input {
  color: var(--ttle_clr);
}

.accnt_page.is_loged_page button.woocommerce-Button.button {
  width: 242px;
  height: 54px;
  border-radius: 40px;
  background: var(--primary_clr);
  color: var(--white);
  border: solid 1px var(--primary_clr);
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
  transition: var(--transtn);
  float: none;
  margin-right: unset;
}

.accnt_page
  li.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--customer-logout
  a {
  color: #ff2500;
  text-decoration: underline;
}

.accnt_page .woocommerce-orders-table__cell-order-number a,
.accnt_page .woocommerce-orders-table__cell-order-actions a {
  text-decoration: underline !important;
  color: var(--primary_clr);
}

.accnt_page fieldset legend {
  font-size: 16px;
}

.accnt_page .woocommerce form fieldset .form-row label {
  color: #832222a6;
  font-size: 13px;
  font-weight: 500;
  line-height: 13px;
  margin-bottom: 12px;
}

.accnt_page .woocommerce form .show-password-input.display-password::after,
.woocommerce-page form .show-password-input.display-password::after {
  color: blue;
}

.accnt_page .woocommerce form.register {
  justify-content: space-between;
}

.accnt_page .woocommerce form.register .form-row-first,
.accnt_page .woocommerce form.register .form-row-last {
  width: 48%;
}

.accnt_page .woocommerce form .form-row.form-row-first .required,
.accnt_page .woocommerce form .form-row.form-row-last .required {
  color: #ff0000;
  font-size: 12px;
}

/* is_not_loged_page */
.is_loged_page .woocommerce {
  position: relative;
}

.is_loged_page .woocommerce::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 28%;
  height: 100%;
  width: 1px;
  background-color: var(--primary_clr);
}

/* Account end */

/* Checkout Start */
.chckout_page {
  padding: 75px 0;
}

.chckout_page
  .wc-block-checkout__contact-fields
  .wc-block-components-checkout-step__heading {
  margin: 0;
  margin-bottom: 15px;
}

.chckout_page .wc-block-components-title.wc-block-components-title {
  font-size: 25px;
  line-height: 30px;
}

.chckout_page .wc-block-components-checkout-step__description {
  font-size: 13px;
  line-height: 17px;
  margin: 0 0 10px;
}

.chckout_page .wp-block-woocommerce-checkout {
  padding-top: 0;
}

.chckout_page .wc-block-components-country-input {
  margin-top: 0;
}

/* Checkout End */

/* questionnaire page start */

.questionnaire {
  background-color: #fff6f1;
  padding: 80px 0 100px;
}

.questionnaire .container {
  position: relative;
}

.questionnaire_dog {
  position: absolute;
  bottom: -95px;
  left: -60px;
}

.questionnaire_form h2 {
  color: var(--ttle_clr_2);
  font-family: var(--primary_font);
  font-size: 45px;
  font-weight: 600;
  line-height: 40px;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 45px;
}

.questionnaire_form form {
  max-width: 730px;
  border-radius: 10px;
  filter: drop-shadow(0px 15px 45px rgba(0, 0, 0, 0.09));
  background: var(--white);
  padding: 40px 20px 60px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.gender_dog {
  border: 1px solid rgb(236, 236, 236);
  border-radius: 12px;
  background: rgb(249, 249, 249);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.form-row {
  height: 50px;
  margin: 0;
  overflow: hidden;
  position: relative;
  width: 50%;
  text-align: center;
}

.form-input {
  -webkit-appearance: none;
  appearance: none;
}

.form-input::before {
  content: "";
  cursor: pointer;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.form-input:checked::before {
  border: 1px solid rgb(255, 209, 201);
  border-radius: 12px 0px 0px 12px;
  background: rgb(255, 231, 227);
}

.form-row:last-child .form-input:checked:before {
  border: 1px solid rgb(255, 209, 201);
  border-radius: 0 12px 12px 0;
  background: rgb(255, 231, 227);
}

.form-input::after {
  display: none;
}

.form-input:checked::after {
  border: 4px solid #ffffff;
}

.form-label {
  color: #606060;
  font-size: 16px;
  font-weight: 500;
  line-height: 50px;
  z-index: 1;
  position: relative;
  margin-bottom: 0;
}

.form-input:checked ~ .form-label {
  color: #8c2817;
}

.questionnaire_form form .form_wrap input,
.questionnaire_form form .form_wrap select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgb(236, 236, 236);
  border-radius: 12px;
  background: rgb(249, 249, 249);
  height: 52px;
  padding: 10px 15px;
}

.questionnaire_form form .form_wrap .gender_dog input {
  width: auto;
  box-sizing: border-box;
  border: 1px solid rgb(236, 236, 236);
  border-radius: 12px;
  background: rgb(249, 249, 249);
  height: unset;
  padding: unset;
}

.questionnaire_form form .form_wrap label {
  color: var(--ttle_clr);
  font-size: 16px;
  font-weight: 500;
  margin: 30px 0 12px;
  font-family: var(--primary_font);
}

.questionnaire_form form .form_wrap .gender_dog label {
  margin: 0;
}

.questionnaire_form .form_wrap:nth-child(1) {
  width: 56%;
}

.questionnaire_form .form_wrap:nth-child(2) {
  width: 20%;
}

.questionnaire_form .form_wrap:nth-child(3) {
  width: 20%;
}

.questionnaire_form .form_wrap:nth-child(4) {
  width: 33%;
}

.questionnaire_form .form_wrap:nth-child(5) {
  width: 37%;
}

.questionnaire_form .form_wrap:nth-child(6) {
  width: 26%;
}

.questionnaire_form .form_wrap:nth-child(7) {
  width: 100%;
}

.questionnaire_form form .form_wrap select,
.select2-container--bootstrap-5 .select2-selection {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../images/dropdowm_arrw.svg);
  background-position: top 18px right 10px;
  background-repeat: no-repeat;
  background-size: 15px;
  cursor: pointer;
  padding-right: 35px;
  border-radius: 12px;
}

/* 16-12 */
.form_check {
  width: 100%;
  padding: 35px 0 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

#form_textbox {
  width: 100%;
  height: 0;
  opacity: 0;
}

#health:checked ~ textarea {
  height: 100px;
  opacity: 1;
  margin-top: 25px;
  padding: 10px 15px;
  border-radius: 12px;
  border: 1px solid rgb(236, 236, 236);
  background-color: rgb(249, 249, 249);
  padding-right: 30px;
  resize: none;
  color: var(--body);
}

/* 16-12 */

.form_check > input {
  width: 17px;
  height: 17px;
  margin-right: 10px;
  accent-color: var(--primary_clr);
}

.form_check > label {
  font-size: 16px;
  line-height: 13px;
  margin-right: 5px;
}

.form_submit {
  text-align: center;
  width: 100%;
}

.form_submit input {
  width: 242px;
  height: 54px;
  border-radius: 40px;
  background: var(--primary_clr);
  color: var(--white);
  border: solid 1px var(--primary_clr);
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
  transition: var(--transtn);
}

.form_submit input:hover {
  background: var(--white);
  color: var(--primary_clr);
}

.select2-container,
.selection,
.select2-search__field {
  width: 100%;
}

.select2-selection,
.select2-container--bootstrap-5 .select2--small.select2-selection--single {
  min-height: 52px;
  line-height: 52px;
}

.select2-container--bootstrap-5
  .select2--small.select2-dropdown.select2-dropdown--below {
  margin-top: -1px;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-search {
  height: auto;
}

.select2-container--bootstrap-5
  .select2-selection--multiple
  .select2-selection__rendered:has(.select2-selection__choice)
  .select2-search,
.select2-selection__arrow,
.select2-container--bootstrap-5 .select2-dropdown .select2-search {
  display: none;
}

.select2-container--bootstrap-5
  .select2-selection--multiple
  .select2-search
  .select2-search__field {
  line-height: 40px;
  height: unset;
}

.select2-container--bootstrap-5
  .select2-selection--multiple
  .select2-selection__rendered {
  padding: 0 !important;
}

.select2-container--bootstrap-5
  .select2-dropdown
  .select2-results__options
  .select2-results__option,
.select2-container--bootstrap-5
  .select2-selection--multiple
  .select2-selection__rendered
  .select2-selection__choice {
  font-size: 15px;
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5 .select2-dropdown,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
  box-shadow: unset;
  border: 1px solid rgb(255, 209, 201);
}

.select2-container--bootstrap-5 .select2-selection {
  height: auto;
}

.select2-container--bootstrap-5
  .select2-dropdown
  .select2-results__options
  .select2-results__option.select2-results__option--selected,
.select2-container--bootstrap-5
  .select2-dropdown
  .select2-results__options
  .select2-results__option[aria-selected="true"]:not(
    .select2-results__option--highlighted
  ),
.select2-container--bootstrap-5
  .select2-dropdown
  .select2-results__options
  .select2-results__option.select2-results__option--highlighted {
  background-color: rgb(255, 231, 227);
  color: var(--primary_clr);
}

.select2-container--bootstrap-5
  .select2-selection--multiple
  .select2-selection__rendered
  .select2-selection__choice
  .select2-selection__choice__remove {
  margin-left: unset;
  margin-right: 5px;
}

.select2-container--bootstrap-5 .select2--small.select2-selection--single {
  padding: 10px 15px;
  border-radius: 12px;
  background-color: rgb(249, 249, 249);
  padding-right: 30px;
}

.select2-container--bootstrap-5
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 30px;
}

/* questionnaire page end */

/* FAQ start */
.faq_bnr .bnnr_wrp h1 {
  font-family: var(--primary_font);
  max-width: 632px;
  margin-left: auto;
  margin-right: auto;
}

.faq_bnr .bnnr_wrp .site_btn {
  background-color: var(--white);
  color: var(--primary_clr);
  border: 1px solid var(--white);
}

.faq_bnr .bnnr_wrp .site_btn .btn_icon {
  color: var(--white);
  background: var(--ttle_clr_2);
}

.faq_bnr .bnnr_wrp .site_btn::after {
  background-color: var(--primary_clr);
}

.faq_bnr .bnnr_wrp .site_btn:hover {
  color: var(--white);
  border: 1px solid transparent;
}

.faq_bnr .bnnr_wrp .site_btn:hover .btn_icon {
  color: var(--ttle_clr_2);
  background-color: var(--white);
}

/* accordion sec start */

.cstmaccr_wrap {
  --bs-accordion-border-color: none;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.cstmaccr_wrap .cstm_accr {
  width: 49%;
}

.cstmaccr_wrap .cstm_accr .cstmaccr_btn {
  background: rgb(255, 250, 249);
  border: 1px solid rgb(255, 228, 223);
  border-radius: 10px;
  padding: 30px 100px 30px 18px;
  color: rgb(30, 30, 30);
  font-family: var(--primary_font);
  font-size: 18px;
  font-weight: 500;
  line-height: 23px;
}

.cstmaccr_wrap .cstm_accr .cstmaccr_btn:not(.collapsed) {
  background: transparent;
  border: none;
  padding: 0 80px 0 0;
  margin-bottom: 8px;
}

.cstmaccr_wrap .cstm_accr {
  margin-bottom: 20px;
}

.cstmaccr_wrap .cstm_accr:has(.accordion-button:not(.collapsed)) {
  border-radius: 10px;
  box-shadow: 0px 15px 45px 0px rgba(0, 0, 0, 0.09);
  background: var(--white);
  padding: 22px 18px 20px;
}

.accordion-button::after {
  content: "\2b";
  font-family: "FontAwesome";
  position: absolute;
  top: 30%;
  right: 18px;
  color: var(--white);
  background-image: none;
  font-size: 16px;
  transform: none;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(140, 40, 23);
  border: 1px solid rgb(140, 40, 23);
}

.accordion-button:not(.collapsed)::after {
  content: "\f068";
  color: rgb(140, 40, 23);
  font-family: "FontAwesome";
  position: absolute;
  top: 30%;
  right: 0;
  background-image: none;
  transform: none;
  background-color: rgb(255, 230, 225);
  border: 1px solid transparent;
}

.cstm_accr .cstmaccr_bdy {
  padding: 0;
  color: rgb(104, 104, 104);
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  font-family: var(--primary_font);
  max-width: 95%;
}

.accnt_page .form-row {
  height: auto;
  text-align: left;
}

/* FAQ end */

/* Helping Box Start */

#chat-circle {
  position: fixed;
  bottom: 50px;
  right: 50px;
  background: var(--primary_clr);
  width: auto;
  height: auto;
  border-radius: 25px 25px 0 25px;
  color: var(--white);
  padding: 10px 25px;
  cursor: pointer;
  z-index: 99;
  box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.6),
    0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

#chat-overlay {
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: none;
}

.chat-box {
  display: none;
  background: #efefef;
  position: fixed;
  right: 30px;
  bottom: 50px;
  width: 250px;
  max-width: 85vw;
  max-height: 100vh;
  border-radius: 5px;
  box-shadow: 0px 5px 35px 9px #00000040;
  z-index: 99;
}

.chat-box-toggle {
  float: right;
  margin-right: 15px;
  cursor: pointer;
}

.chat-box-header {
  background: var(--primary_clr);
  height: 65px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  color: var(--white);
  text-align: center;
  font-size: 18px;
  padding-top: 20px;
}

.chat-box-body {
  position: relative;
  height: 230px;
  height: auto;
  border: 1px solid #ccc;
  overflow: hidden;
}

.chat-box-body:after {
  content: "";
  background-image: url(../images/ourMissionBg.png);
  opacity: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  position: absolute;
  z-index: -1;
}

.chat-logs {
  padding: 15px;
  height: 230px;
  overflow-y: scroll;
}

.chat-logs ul li + li {
  margin-top: 15px;
}

.chat-logs ul li a {
  display: inline-flex;
  align-items: center;
}

.chat-logs ul li img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  margin-right: 20px;
  object-fit: cover;
  flex: 0 0 auto;
}

.chat-logs ul li .dog_name {
  width: calc(100% - 70px);
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--primary_font);
  color: var(--primary_clr);
}

.chat-logs::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

.chat-logs::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}

.chat-logs::-webkit-scrollbar-thumb {
  background-color: var(--primary_clr);
}

.cm-msg-button {
  clear: both;
  margin-bottom: 70px;
}

.material-icons {
  font-style: italic;
}

/* Helping Box End */

/* dog_listing Start */

.dog_listing {
  padding: 100px 0;
  /* background-color: #fff6f1; */
}

.dog_listing h2 {
  color: var(--ttle_clr_2);
  font-family: var(--primary_font);
  font-size: 30px;
  font-weight: 600;
  line-height: 35px;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 35px;
}

.dog_list {
  max-width: 540px;
  margin: 0 auto;
}

.dog_list ul li {
  background-color: var(--white);
  border-radius: 80px;
  box-shadow: 0px 15px 45px 0px rgba(0, 0, 0, 0.09);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 8px;
}

.dog_list ul li + li {
  margin-top: 25px;
}

.dog_list ul li .dog_list_img {
  width: 85px;
  height: 85px;
  border-radius: 100%;
  margin-right: 15px;
  overflow: hidden;
}

.dog_list ul li .dog_list_text {
  width: calc(100% - 225px);
  /*width: calc(100% - 165px);*/
  display: flex;
  flex-direction: column;
  column-gap: 13px;
}

.dog_list ul li .dog_list_text a {
  width: 100%;
  display: block;
  color: var(--ttle_clr);
  font-family: var(--primary_font);
  font-size: 22px;
  font-weight: 500;
  line-height: 25px;
  margin-bottom: 5px;
  text-transform: capitalize;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
}

.dog_list ul li .dog_list_text span {
  color: #646464;
  font-family: var(--primary_font);
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.dog_list ul li .dog_list_text span + span {
  /*margin-left: 18px;*/
}

.dog_list ul li .dog_list_text span b {
  color: var(--ttle_clr);
  font-weight: 600;
}

.dog_list ul li .dog_list_icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--primary_clr);
  background-color: var(--primary_clr);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 100%;
  margin-left: 15px;
}

.dog_list ul li .dog_list_icon svg {
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
}

.dog_list ul li .dog_list_icon svg line,
.dog_list ul li .dog_list_icon svg polyline {
  stroke: var(--white);
  transition: var(--transtn);
}

.dog_list ul li .dog_list_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.dog_list ul li .dog_list_icon:hover svg line,
.dog_list ul li .dog_list_icon:hover svg polyline {
  stroke: var(--primary_clr);
}

.dog_list ul li .dog_list_icon:hover {
  background-color: transparent;
}

.dog_list .dog_list_text a:hover {
  color: var(--primary_clr);
}

/* dog_listing End */

/* dog_profile Start */

.dog_profile h2 {
  color: var(--ttle_clr_2);
  font-family: var(--primary_font);
  font-size: 45px;
  font-weight: 600;
  line-height: 40px;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 45px;
}

.dog_pf_img {
  width: 160px;
  height: 160px;
  border-radius: 100%;
  position: relative;
  margin: 0 auto -80px;
  border: solid 5px #205276;
  background-color: #f4e3bf;
  position: relative;
  z-index: 9;
}

.dog_profile {
  padding: 100px 0;
  background-color: #fff6f1;
}

.dog_pf {
  border-radius: 12px;
  background: var(--white);
  max-width: 540px;
  margin: 0 auto;
  padding: 100px 45px 30px 45px;
  box-shadow: 0px 15px 45px 0px rgba(0, 0, 0, 0.09);
  position: relative;
}

#dog_pf_tggl {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--body);
  margin-right: -5px;
  cursor: pointer;
}

.dog_pf_btn {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 22px;
  color: var(--body);
}

.dog_pf .dog_pf_btn ul {
  display: none;
  position: absolute;
  min-width: 120px;
  right: 0;
  text-align: right;
  margin-bottom: 0;
  margin-left: 0;
  border-radius: 5px;
  padding: 10px 15px;
  background: rgba(255, 235, 232, 0.7);
}

.dog_pf .dog_pf_btn ul li,
.dog_pf .dog_pf_btn ul li button {
  margin-left: 0;
  margin-bottom: 0;
  border-radius: 0;
  background: transparent;
  text-transform: capitalize;
  padding: 0;
  color: var(--primary_clr);
  font-weight: 500;
}

.update_dog_prfl .questionnaire_dog {
  bottom: -43px;
  left: -45px;
  max-width: 215px;
}

.dog_pf .dog_pf_btn ul li a > i {
  margin-left: 5px;
}

.dog_pf .dog_pf_btn ul li + li {
  margin-top: 10px;
}

.dog_pf h3 {
  color: var(--ttle_clr);
  font-family: var(--primary_font);
  font-size: 30px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis; */
}

.dog_pf h6 {
  color: var(--primary_clr);
  font-size: 17px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  margin-bottom: 40px;
}

.dg_age_wit {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
  margin-bottom: 40px;
}

.dg_age_wit h4 {
  color: var(--ttle_clr);
  font-size: 22px;
  font-weight: 500;
  line-height: 25px;
  margin-bottom: 10px;
}

.dg_age {
  width: 50%;
  position: relative;
  padding: 0 10px;
}

.dg_age:nth-child(1)::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #c9c9c9;
  content: "";
}

.dg_age_wit span {
  color: #646464;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.dog_pf h5 {
  color: var(--ttle_clr);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 15px;
}

.dog_pf ul li {
  color: var(--primary_clr);
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  border-radius: 20px;
  background: rgba(255, 235, 232, 0.7);
  padding: 2px 10px;
  margin-bottom: 10px;
}

.dog_pf ul {
  margin-bottom: 20px;
  margin-left: -7px;
}

.dog_pf p {
  color: #757575;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
}

.dog_pf ul li {
  margin-left: 7px;
}

#imageUpload {
  display: none;
}

#profileImage {
  cursor: pointer;
}

#image_icon {
  position: absolute;
  bottom: -5px;
  right: 5px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
}

#profile-container img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 100%;
}

.dog_pf h3 span {
  margin-left: 10px;
  width: 20px;
}

/* dog_profile End */
.form_uplod input[type="file"] {
  color: #878787;
  font-size: 15px;
}

.form_uplod input[type="file"]::-webkit-file-upload-button {
  box-sizing: border-box;
  border: 1px solid #ececec;
  border-radius: 12px;
  background: #f9f9f9;
  padding: 10px 15px;
  color: var(--body);
  margin-right: 10px;
}

.form_uplod {
  width: 100%;
  margin-top: 30px;
}

.form_uplod > label {
  margin-right: 10px;
}

.questionnaire_form .form_wrap:has(#multiple-select-field) {
  width: 100%;
}

/* 19-12-2024 */
.accnt_page.is_loged_page .woocommerce-input-wrapper {
  width: 100%;
}

.questionnaire {
  background: transparent;
}

/* Subscription Page Start */
.subcrtn_bnr {
  position: relative;
  padding: 140px 0 190px;
  background: #feede4;
}

.sbscrtn_wrp h1 {
  color: var(--primary_clr);
  font-size: 55px;
  font-weight: 700;
  line-height: 51px;
  letter-spacing: -0.3px;
  margin-bottom: 35px;
}

.subcrtn_bnr p {
  font-weight: 300;
  margin-bottom: 10px;
}

.sbscrtn_wrp h6 {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 10px;
}

.subs_dog_hldr {
  max-width: 620px;
  float: right;
  margin: -60px -110px -30px 70px;
}

.sbscrtn_wrp h6 span {
  display: inline;
  color: var(--primary_clr);
}

.pack_chse_card {
  text-align: center;
  border-radius: 30px;
  box-shadow: 0px 15px 45px 0px rgba(0, 0, 0, 0.09);
  background: #fff;
  padding: 50px 50px 70px;
  margin-top: -60px;
  position: relative;
  letter-spacing: -0.8px;
}

.chs_hldr h2 {
  color: var(--ttle_clr_2);
  font-size: 55px;
  line-height: 83px;
  margin-bottom: 15px;
}

.pack_chse_card h4 {
  color: #1e1e1e;
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
  padding: 0 15px;
  margin-bottom: 13px;
}

.pack_chse_card p {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 10px;
}

.pack_chse_card p span {
  color: #393939;
  font-weight: 500;
  display: inline;
}

.chs_hldr {
  max-width: 745px;
  margin: auto;
  margin: 0 auto 50px;
}

.cstmized_ordr {
  /*border-top: 1px solid rgb(198, 198, 198);*/
  padding-top: 40px;
  margin-top: 35px;
}

.cstmized_ordr h3 {
  color: var(--ttle_clr_2);
  font-size: 30px;
  font-weight: 600;
  line-height: 45px;
  text-align: left;
  text-transform: capitalize;
  margin-bottom: 55px;
}

.order_item figure {
width: 270px;
    margin: auto;
    box-shadow: 0px 0px 28px 12px rgba(0, 0, 0, 0.08);
    border-radius: 5%;
    height: 200px;
    overflow: hidden;
  /*max-width: 183px;*/
}

.order_item figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.ordr_prdct {
  color: rgb(30, 30, 30);
  font-size: 20px;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
  margin: 35px 0 18px 0;
}

/* .order_item select {
  border: 1px solid rgb(236, 236, 236);
  border-radius: 5px;
  width: 117px;
  height: 43px;
  padding: 0 15px;
  cursor: pointer;
  -webkit-appearance: none;
  background: #f9f9f9 url(../images/down_arw.png) no-repeat;
  background-size: 12px;
  background-position: right 15px center;
} */

.order_item input:focus {
  border-color: var(--primary_clr);
}

.cstmized_ordr .row > * {
  margin-bottom: 55px;
}

p.no_chse {
  color: var(--primary_clr);
  font-weight: 500;
  line-height: 22px;
  text-align: left;
  background: #ffe4df;
  padding: 12px 25px;
  border-radius: 4px;
  position: relative;
}

p.no_chse::after {
  content: "";
  position: absolute;
  background: #8c2817;
  width: 5px;
  top: 0;
  bottom: 0;
  left: 0;
  border-radius: 4px 0 0 4px;
}

.chse_notes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.chse_notes p {
  color: var(--primary_clr);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
  margin-bottom: 0;
}

.carts_btn {
  color: rgb(137, 137, 137);
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
  width: 170px;
  height: 53px;
  border-radius: 40px;
  background: rgb(217, 217, 217);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 25px;
  transition: var(--transtn);
}

.carts_btn:hover {
  background: var(--primary_clr);
  color: #fff;
}

.carts_btn:hover svg path {
  fill: #fff;
}

.carts_btn svg path {
  transition: var(--transtn);
}

.chse_notes p span {
  font-weight: 600;
  color: var(--primary_clr);
}

.cstmized_ordr .row {
  margin-bottom: 25px;
}

.packchose_sec {
  padding-bottom: 85px;
}

.pck_chk_lst ul {
  display: flex;
  flex-wrap: wrap;
}

.pck_chk_lst ul li {
  width: 50%;
  flex: 0 0 auto;
  padding: 0 45px;
  margin-bottom: 25px;
}

.chs_chk_hldr {
  position: relative;
  /* color: #fff; */
  border-radius: 5px;
  /* background: rgb(140, 40, 23); */
  height: 50px;
  /* border: 1px solid var(--primary_clr); */
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  /*background: rgb(242, 242, 242);*/
  padding: 0 20px;
  background: #fff;
  border: 1px solid rgb(236, 236, 236);
}

.chs_chk_hldr input {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
  opacity: 0;
  z-index: 1;
}

.chkmrk {
  width: 18px;
  height: 18px;
  border: 2px solid #0000006b;
  position: relative;
  border-radius: 50%;
  flex: 0 0 auto;
}

.chkmrk::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary_clr);
  opacity: 0;
}

.chs_chk_hldr input:checked ~ .chkmrk::after {
  opacity: 1;
  background: #fff;
}
.chs_chk_hldr input:checked ~ .chkmrk {
  border-color: #fff;
  background: var(--primary_clr);
}
.chs_chk_hldr:has(input:checked) {
  background: var(--primary_clr);
}
.chs_chk_hldr input:checked ~ label {
  color: #fff;
}

.chs_chk_hldr input:checked ~ .chkmrk {
  background: var(--primary_clr);
}

.chs_chk_hldr label {
  color: #1e1e1e;
  font-size: 17px;
  line-height: 1.2;
}

.pck_chk_lst li select {
  border: 1px solid rgb(236, 236, 236);
  border-radius: 12px;
  width: 100%;
  height: 60px;
  padding: 0 15px;
  cursor: pointer;
  -webkit-appearance: none;
  background: #f9f9f9 url(../images/down_arw.png) no-repeat;
  background-size: 12px;
  background-position: right 15px center;
  text-align: center;
  font-size: 18px;
}

.pck_chk_lst li select:focus {
  border-color: var(--primary_clr);
}

.under_chose_chk ul,
.under_chose_chk_trial ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
}

.under_chose_chk ul li,
.under_chose_chk_trial ul li {
  width: 33.33%;
  flex: 0 0 auto;
  margin-bottom: 10px;
  padding: 0 15px;
}

.under_chose_chk {
  display: none;
}
.ordr_input {
  border: 1px solid rgb(236, 236, 236);
  border-radius: 5px;
  width: 117px;
  height: 43px;
  padding: 0 15px;
  text-align: center;
  font-family: var(--primary_font);
}
.nmbr_wrp i {
  font-size: 24px;
  cursor: pointer;
  color: var(--primary_clr);
}
.nmbr_wrp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Subscription Page End */

/* My Account Structure Change Start */

.amyactrow {
  max-width: 730px;
  margin: 0 auto;
}

.myacnt_sub h3 {
  color: var(--primary_clr);
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.myacnt_sub ul li {
  position: relative;
  /*padding-left: 17px;*/
  font-size: 15px;
}

/*.myacnt_sub ul li::after {*/
/*  position: absolute;*/
/*  width: 8px;*/
/*  height: 8px;*/
/*  border-radius: 50%;*/
/*  background: var(--ttle_clr_2);*/
/*  left: 0;*/
/*  top: 10px;*/
/*  content: '';*/
/*}*/
.myacntsec .row > * {
  padding: 0 10px;
  margin-bottom: 20px;
}
.txtcntr h3 {
  margin-bottom: 0;
}

.txtcntr .myacnt_sub {
  display: flex;
  align-items: center;
  justify-content: center;
  /*height: auto;*/
  /*width: auto;*/
  /*padding: 40px 50px;*/
  /*color: #fff;*/
}
.myacnt_sub {
  height: 100%;
  border-radius: 10px;
  filter: drop-shadow(0px 15px 45px rgba(0, 0, 0, 0.09));
  background: var(--white);
  padding: 30px 15px 30px;
  width: 100%;
    word-break: break-word;
}
.myacnt_sub p {
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
}
.dash_star_rtng {
  display: flex;
  gap: 6px;
}
.amyactrow .dog_list {
  max-width: 100%;
  border-radius: 10px;
  filter: drop-shadow(0px 15px 45px rgba(0, 0, 0, 0.09));
  background: var(--white);
  padding: 30px 15px 30px;
}
.dash_pups_btn {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}
.txtcntr {
  display: flex;
  align-items: center;
  justify-content: center;
}
.user_ordr_count {
  color: #323232;
}
.dash_star_rtng li i {
  color: #fcbf45;
}
.popup_select_pack_dog .fbcontentbox p {
  color: #fff;
  width: 100%;
  max-width: 100%;
  text-align: center;
}

/* 30-01-25 Changes */
.doggy_dtls {
  display: flex;
  flex-direction: column;
}

.dog_list ul li .dog_list_text span + span {
  margin-left: 0px;
}

.dg_dlt_btn {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dg_dlt_btn i {
  color: #646464;
  font-size: 17px;
  transition: var(--transtn);
}
.dg_dlt_btn .delete-btn:hover i {
  color: var(--primary_clr);
}
.dg_dlt_btn .delete-btn {
  transition: var(--transtn);
  background: transparent;
}

.dg_dlt_wrp {
  display: flex;
  align-items: center;
}

.dg_dlt_btn a:hover i {
  color: var(--primary_clr);
}
.pups-profile-registration-cls {
  border: 1px solid var(--primary_clr);
  border-radius: 100px;
  padding: 10px 25px;
  color: var(--primary_clr);
  transition: var(--transtn);
}
.pups-profile-registration-cls:hover {
  background: var(--primary_clr);
  color: #fff;
}
.redirect-pups-profile-cls {
  text-align: center;
  margin-top: 35px;
}

.no_dog_cls {
  text-align: center;
}

.pck_chk_lst li select.subscription-select {
  border-radius: 5px;
  height: 50px;
  text-align: left;
  font-size: 15px;
  color: var(--body);
  margin-top: 10px;
}

/* 30-01-25 Changes */

/* My Account Structure Change End */

/* twg 03-02 */
.sbscrtn_wrp h3 {
  color: #1e1e1e;
  font-size: 26px;
  font-weight: 500;
  line-height: 29px;
  margin-bottom: 13px;
  text-transform: capitalize;
}

.sbscrtn_wrp h3 span {
  background: #8c2817;
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  text-transform: capitalize;
  font-weight: 600;
  position: relative;
  margin-left: 15px;
}

.sbscrtn_wrp h3 span::after {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-right: 24px solid #8c2817;
  border-bottom: 15px solid transparent;
  content: "";
  position: absolute;
  left: -13px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.human_grd_txt h2 {
  font-size: 40px;
  font-weight: 600;
  color: #8c2817;
  line-height: 50px;
  letter-spacing: -1.4px;
  text-transform: capitalize;
  margin-bottom: 35px;
}

.human_grd_txt h3 {
  font-size: 36px;
  font-weight: 600;
  color: #1e1e1e;
  letter-spacing: -1.4px;
  line-height: 50px;
  /*max-width: 652px;*/
}

.human_grd_txt h3 span {
  font-style: italic;
}

.human_grd_wrp {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-direction: column;
}
.human_grd_wrp a {
  margin: 40px auto 0;
}

.humangrd_sec {
  background: #ffe6d9;
  padding: 55px 0;
}

.paw_card {
  border: 1px solid #f2d9d5;
  border-radius: 20px;
  box-shadow: 0px 15px 45px 0px rgba(0, 0, 0, 0.09);
  background: rgb(255, 255, 255);
  padding: 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.paw_img {
  height: 227px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 18px;
}

.w100 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.paw_card h4 {
  color: rgb(140, 40, 23);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.paw_card h2 {
  color: rgb(30, 30, 30);
  font-size: 26px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.6px;
  margin-bottom: 10px;
}

.paw_card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.3px;
  color: #505050;
  margin-bottom: 18px;
}

.paw_card p span {
  font-weight: 600;
  color: #882f21;
}
.paw_card a {
  margin-top: auto;
}
.paw_sec {
  padding: 65px 0 60px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.paw_wrp {
  text-align: center;
  margin-bottom: 55px;
}
.paw_wrp h2 {
  color: rgb(30, 30, 30);
  font-size: 33px;
  font-weight: 600;
  line-height: 33px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.paw_wrp h6 {
  color: rgb(136, 47, 33);
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.paw_sec .row > * {
  margin-bottom: 30px;
}

/*04-02-2025*/
.trial_brn .sbscrtn_wrp h6 {
  line-height: 26px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.5px;
}
.trial_brn p {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.5px;
}
.subcrtn_bnr p span {
  color: rgb(136, 47, 33);
  font-weight: 500;
}
.sbscrtn_wrp a {
  margin-top: 15px;
}
.dogchose_sec .chs_hldr h2 {
  line-height: 68px;
  letter-spacing: -0.6px;
  color: rgb(30, 30, 30);
}
.dogchose_sec h2 span {
  color: rgb(140, 40, 23);
}
.dogchose_sec .chs_hldr {
  max-width: 100%;
}
.dogchose_sec .pack_chse_card h4 {
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}
.dogchose_sec .pack_chse_card h4 span {
  font-weight: 600;
  color: rgb(136, 47, 33);
}
.ftr_menu a:hover {
  color: var(--ttle_clr_2);
}
.ftr_menu a {
  transition: 0.4s all;
  font-weight: 600;
}

.empty_dog_lst_hdng {
  text-align: center;
}

.empty_dog_lst_btn {
  justify-content: center;
}
p.total_price_pack {
  color: rgb(30, 30, 30);
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
}
p.total_price_pack span {
  font-size: 22px;
}
p.recomded_weght {
  border-radius: 52px;
  background: rgb(140, 40, 23);
  color: rgb(255, 255, 255);
  font-weight: 500;
  line-height: 36px;
  padding: 8px 32px;
  /*display: inline-block !important;*/
}

.recomded_weght_div {
  text-align: right;
}

/*06-02-2025*/
p.total_price_pack {
  padding-top: 7px;
  font-size: 16px;
}

ul#menu-footer-menu .menu-item {
  line-height: 22px;
}

p.total_price_pack span {
  color: var(--primary_clr);
  font-family: var(--primary_font);
  font-size: 18px;
  line-height: 25px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

p.total_price_pack span.actual_pack_price {
  color: #a2a2a2;
  font-weight: 400;
  text-decoration-line: line-through;
  text-transform: capitalize;
  margin-left: 7px;
}
.recomded_weght_div {
  text-align: unset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.recomded_weght_div h3 {
  margin-bottom: 0;
}
.recomded_weght_div p.recomded_weght {
  font-size: 15px;
  border-radius: 52px;
  line-height: 30px;
  padding: 7px 25px;
  margin-bottom: 0;
}

.cstmized_ordr {
  margin-top: 0;
}

input#Maintaincurrentweight:checked::before {
  border-radius: 0px !important;
}
/*06-02-2025*/

/* 08-02-2025 Start */
.why_us_bg {
  margin-top: 40px;
}
.why_us_sec .row > div {
  position: relative;
}
.why_us_sec .row > div:nth-child(1),
.why_us_sec .row > div:nth-child(3) {
  margin-top: -50px;
}
.why_us_sec .row > div:nth-child(3) li:nth-child(1),
.why_us_sec .row > div:nth-child(3) li:nth-child(4) {
  margin-right: 85px;
}
.why_us_sec .row > div:nth-child(3) li:nth-child(3) {
  margin-right: 0;
}
.why_us_sec .row > div:nth-child(1) li:nth-child(1),
.why_us_sec .row > div:nth-child(1) li:nth-child(4) {
  margin-left: 85px;
}
.why_us_sec .row > div:nth-child(1) li:nth-child(3) {
  margin-left: 0;
}
.why_us_sec .row > div:nth-child(1) li:nth-child(4) {
  position: unset;
  min-height: 150px;
  margin-top: unset;
}
.why_us_sec {
  padding: 65px 0 60px;
}

/* 08-02-2025 End */

/* 10-02-2025 start */

.dash_dog_list_form .modal.show .modal-dialog:has(.update_dog_prfl) {
  max-width: 750px;
}

.dash_dog_list .dg_dlt_wrp {
  margin-left: auto;
  margin-right: 20px;
}

.dog_list.dash_dog_list_form
  .select2-selection--multiple
  ul.select2-selection__rendered
  li
  + li {
  margin-top: 0;
}

/* 10-02-2025 end */

/* 14-02-25 start */
.why_choose {
  margin-top: 60px;
}

/* 14-02-25 end */

/* 17-02-25 start */
.trial_brn .sbscrtn_wrp h3 > span:after{
    display: none;
}
.trial_brn .sbscrtn_wrp h3 > span{
    margin-left: 0px;
}
.accnt_page li.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--customer-logout a{
        color: var(--ttle_clr);
        transition: var(--transtn);
}

.accnt_page li.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--customer-logout a:hover{
        color: var(--primary_clr);
}
.wc-block-checkout__terms span.wc-block-components-checkbox__label a{
    color: var(--primary_clr);
    transition: var(--transtn);
}
.wc-block-checkout__terms span.wc-block-components-checkbox__label a:hover{
        text-decoration: underline;
}
.why_us_bg::before{
    display: none;
}
/* 17-02-25 end */

/*18-02*/
.empty_fdbk span{
        color: var(--primary_clr);
    font-weight: 600;
    text-decoration: underline;
}

.page-template-template-our_products .indiaProject{
margin-bottom: 0px;
}

.page-template-template-our_products .chse_notes,
.page-template-template-filtered-products .chse_notes,
.archive .chse_notes {
  margin-top: 0;
}

.single-product .chse_notes{
  justify-content: center;
}

.single-product .chse_notes p{
  text-align: center;
}

.questionnaire_form form .form_wrap input[readonly] {
  color: #8c2817;
  opacity: 0.5;
  background: rgb(255, 231, 227);
      cursor: not-allowed;

}

.gender_dog.gender_preselected {
    opacity: 0.5;
}
.gender_dog.gender_preselected .form-input::before,
.gender_dog.gender_preselected label {
    cursor: not-allowed !important;
}

.form_wrap.breed_preselected .select2{
    cursor: not-allowed !important;
}

.form_wrap.breed_preselected .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered{
    color: #8c2817;
}

.form_wrap.breed_preselected .select2-container--bootstrap-5 .select2--small.select2-selection--single{
    pointer-events: none !important;
    opacity: 0.5;
    background: rgb(255, 231, 227);
}

.dog_list .select2-container--bootstrap-5.select2-container--open.select2-container--below .select2-selection ul li {
    border-radius: 0;
}