@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

:root {
  --primaryColor: #89C131;

}

body,
html {
  overflow-x: hidden;
}

body {
  font-size: 16px;
  line-height: 29px;
  color: #5E3120;
  font-family: 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

.delete {
  margin-top: 25px;
}

img {
  max-width: 100%;
}

.btn-primary.focus,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus {
  box-shadow: none;
}

a {
  color: #00a5d0;
}

a:hover {
  color: #00a5d0;
}

a:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0 0 20px 0;
  line-height: 1.2em;
}

h1 {
  font-size: 81px;
  line-height: 1;
}

h2 {
  font-size: 55px;
}

h3 {
  font-size: 24px;
  line-height: 36px;
}

h4 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 10px;
}

h5 {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}

h6 {
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 10px;
}

p {
  margin: 0 0 20px 0;
}

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

ol {
  padding-left: 20px;
}

ol li {
  margin-bottom: 5px;
}

ul {
  padding: 0;
}

ul li {
  padding: 0;
  padding-left: 20px;
  position: relative;
  list-style: none;
  margin-bottom: 5px;
}

ul li:before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #000;
  position: absolute;
  top: 9px;
  left: 0;
}

a {
  transition: 0.3s all ease-in-out 0s;
  -webkit-transition: 0.3s all ease-in-out 0s;
  -moz-transition: 0.3s all ease-in-out 0s;
}

.dropdown-toggle:focus {
  outline: none;
}

mark {
  color: #4dbdf4;
  font-weight: 700;
  background: transparent;
  padding: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
.form-control {
  padding: 5px 22px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #DDE3EE;
  border-radius: 12px;
  height: 64px;
}

.form-control:focus {
  border: 1px solid #89C131;
  box-shadow: none;
}

select {
  background: url(images/down-arrow.svg) right 10px center no-repeat;
  background-size: 20px;
}

select[multiple] {
  background: transparent;
  min-height: 85px;
}

textarea.form-control {
  min-height: 199px;
  resize: none;
}

.form-control {
  color: #646A71;
  font-size: 14px;
}

button,
input[type="button"],
input[type="submit"] {
  text-align: center;
  padding: 10px 34px;
  border-radius: 3px;
  box-shadow: 0px 4px 8px rgb(0 0 0 / 6%);
  -webkit-box-shadow: 0px 4px 8px rgb(0 0 0 / 6%);
  border: none;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: #82bc10;
  border: 2px solid #82bc10;
  transition: 0.3s all ease-in-out 0s;
  -webkit-transition: 0.3s all ease-in-out 0s;
  -moz-transition: 0.3s all ease-in-out 0s;
  cursor: pointer;
  display: inline-block;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  text-transform: capitalize;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
  background: #5CA515;
  color: #fff;
  outline: none;
  text-decoration: none;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #afb2b6;
}

.form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #afb2b6;
}

.form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #afb2b6;
}

.form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #afb2b6;
}


/*checkbox open*/

.check-pro {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


/* Hide the browser's default checkbox */

.check-pro input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}


/* Create a custom checkbox */

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}


/* On mouse-over, add a grey background color */

.check-pro:hover input~.checkmark {
  background-color: #ccc;
}


/* When the checkbox is checked, add a blue background */

.check-pro input:checked~.checkmark {
  background-color: #2196F3;
}


/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}


/* Show the checkmark when checked */

.check-pro input:checked~.checkmark:after {
  display: block;
}


/* Style the checkmark/indicator */

.check-pro .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


/* Create a custom radio button */


/*checkbox end*/


/*radio open*/

.radio-pro {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


/* Hide the browser's default radio button */

.radio-pro input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}


/* Create a custom radio button */

.radio-pro .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}


/* On mouse-over, add a grey background color */

.radio-pro:hover input~.checkmark {
  background-color: #ccc;
}


/* When the radio button is checked, add a blue background */

.radio-pro input:checked~.checkmark {
  background-color: #2196F3;
}


/* Show the indicator (dot/circle) when checked */

.radio-pro input:checked~.checkmark:after {
  display: block;
}


/* Style the indicator (dot/circle) */

.radio-pro .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}


/*radio end*/

.navbar-nav li:before {
  display: none;
}


/*file upload open*/
.customfile_input {
  height: 31px;
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  opacity: 0;
}

.customfile_label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  padding-left: 215px;
  line-height: 25px;
}

.customfile_label::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 197px;
  background: none;
  border: 2px solid #e9c04a;
  display: block;
  content: 'Choose File';
  height: 100%;
  text-align: center;
  line-height: 27px;
  cursor: pointer;
  font-family: 'CenturyGothic';
  font-size: 16px;
  color: #e9c04a;
  text-transform: uppercase;
}

.customfile_inputin:hover+.customfile_label::after {
  background: #e9c04a;
  color: #2a597f;
}

.customfile_inputin {
  position: relative;
  z-index: 2;
  width: auto;
  margin: 0;
  opacity: 0;
  height: 100%;
  cursor: pointer;
}

.imageupload_inp {
  padding-top: 10px;
  width: 100%;
}



/*file upload end*/


/*images-check box open*/

.support_forminptradio {
  position: relative;
}

.support_forminptradio label {
  margin: 0;
  position: relative;
  display: inline-block;
  ;
}

.support_forminptradio_label {
  padding-left: 34px;
}

.support_forminptradio input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

.support_forminptradio input[type="checkbox"]+.support_forminptradio_label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 15px;
  height: 15px;
  background: url(images/chk2.png) no-repeat center center;
  cursor: pointer;
}

.support_forminptradio input[type="checkbox"]:checked+.support_forminptradio_label::before {
  background-image: url(images/chk1.png);
}


/*images-check box end*/


/*images-radio box open*/

.support_forminptradio input[type="radio"] {
  visibility: hidden;
  display: none;
}

.support_forminptradio input[type="radio"]+.support_forminptradio_label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 15px;
  height: 15px;
  background: url(images/red1.png) no-repeat center center;
  cursor: pointer;
}

.support_forminptradio input[type="radio"]:checked+.support_forminptradio_label::before {
  background-image: url(images/red2.png);
}


/*images-radio box end*/


/*back to top open*/

#return-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: url(images/up-arrow.png) center no-repeat #588752;
  background-size: 25px;
  width: 52px;
  height: 52px;
  display: block;
  text-decoration: none;
  z-index: 999;
  border-radius: 0;
  display: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#return-to-top:hover {
  background: url(images/up-arrow.png) center no-repeat #000;
  background-size: 25px;
}

#return-to-top:hover i {
  color: #fff;
  top: 5px;
}


/*back to top end*/


/*wordpress menu open*/

.clickD {
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: url(images/down-arrow.svg)center center no-repeat;
  cursor: pointer;
  display: block;
  background-size: 10px;
  float: right;
  margin-top: 5px;
}

.navbar-nav>li {
  position: relative;
}

.navbar-nav>li .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  display: none;
  z-index: 999;
  width: 180px;
  background: #fff;
  box-shadow: 0px 4px 13px rgb(0 0 0 / 4%);
  -webkit-box-shadow: 0px 4px 13px rgb(0 0 0 / 4%);
  border-radius: 12px;
  overflow: hidden;
}

.navbar-nav>li .sub-menu>li>a {
  font-size: 16px;
  display: block;
  width: 100%;
  padding: 5px 24px;
  text-decoration: none;
  color: #303030;
}

.navbar-nav>li .sub-menu li a {
  border-bottom: 1px solid #F2F2F2;
}

.navbar-nav>li .sub-menu li:last-child a {
  border: 0;
}

.navbar-nav>li .sub-menu>li>a:hover {
  background: #99d016;
  color: #fff;
}

.navbar-nav>li .sub-menu>li {
  padding: 0;
  margin: 0 !important;
}

.navbar-nav>li:last-child .sub-menu {
  left: inherit;
  right: 0;
}

.mobile_hd_hd {
  display: none;
}



/* 04/11/2024 dm */

.share-list.share-list-new {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.fa-instagram {
  background: #9c3e9a;
  color: white;
  padding: 8px;
  border-radius: 4px;
  width: 31px;
  text-align: center;
  -moz-transition: opacity 0.2s ease-in, top 0.2s ease-in;
  -ms-transition: opacity 0.2s ease-in, top 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in, top 0.2s ease-in;
  -webkit-transition: opacity 0.2s ease-in, top 0.2s ease-in;
  transition: opacity 0.2s ease-in, top 0.2s ease-in;
}

.fa-instagram:hover {
  background: #9c3e9a;
  color: white;
  padding: 8px;
  border-radius: 4px;
  width: 31px;
  text-align: center;
  opacity: .8;
  top: -4px;
  position: relative;
}

/* 04/11/2024 dm */



@media(min-width:1025px) {
  .navbar-nav>li:hover>.sub-menu {
    display: block;
  }
}

@media(max-width:1024px) {

  /*.navbar-nav .clickD { position: relative;right: 0;top: 0;width: 20px;height:20px;background: url(images/sort-down.svg)center center no-repeat red; 
  cursor: pointer; display: block;background-size: 10px; float: right; margin-top: 5px;}*/
  ul.navbar-nav li .clickD.toggled+.sub-menu {
    display: block;
  }
}


/*wordpress menu end*/

.navbar {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 42px 0 0;
}

.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 18px;
  padding: 0 !important;
  color: #5E3120 !important;
  position: relative;
  text-transform: capitalize;
}

.navbar-nav>li {
  margin-bottom: 0;
}

.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-item:hover .nav-link {
  color: #5BA717 !important;
}

.navbar-nav .nav-item .nav-link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 17px;
  -webkit-transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  background: url(images/leaf.svg) no-repeat;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  background-size: 100% 100%;
}

.navbar-nav .nav-item:hover .nav-link:before,
.navbar-nav .nav-item.active .nav-link:before {
  opacity: 1;
}

.navbar-nav>li {
  padding-left: 40px;
}

.navbar-nav>li:first-child {
  padding-left: 0
}

.navbar-nav>li.menu-item-has-children .nav-link {
  padding-right: 25px !important;
}

.header {
  background: #F6FAFF;
  padding: 15px 0;
}

.sub-menu li {
  margin: 10px 0;
}

.sub-menu li a {
  color: #5E3120;
  font-weight: 500;
}

.sub-menu li a:hover {
  text-decoration: none;
}

.form-select {
  display: inline-block;
  box-shadow: 0px 4px 13px rgb(0 0 0 / 4%);
  -webkit-box-shadow: 0px 4px 13px rgb(0 0 0 / 4%);
  border-radius: 4px;
  text-transform: uppercase;
  transform: skew(-18deg);
  -ms-transform: skew(-18deg);
  -webkit-transform: skew(-18deg);
  background: #fff;
}

.form-select:after {
  content: " ";
  position: absolute;
  display: block;
  width: 90%;
  height: 100%;
  top: 0;
  left: -16px;
  z-index: -1;
  background: #fff;
  -webkit-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
  -ms-transform: skew(-15deg, 0deg);
  -webkit-transform: skew(-15deg, 0deg);
  transform: skew(-15deg, 0deg);
  border-radius: 4px;
}

.form-select .form-control {
  padding: 0;
  display: inline-block;
  transform: skew(18deg);
  -ms-transform: skew(18deg);
  -webkit-transform: skew(18deg);
  border: none;
  border-radius: 0;
  color: #000;
  padding: 12px 40px 12px 12px;
  height: 48px !important;
  background: url(images/down-arrow.svg) transparent right 20px center no-repeat;
  background-size: 10px;
}

.form-select .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}

.form-control {
  font-size: 13px;
  color: #5E3120;
  font-weight: 500;
}

.form-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.form-signbtn {
  transform: skew(-18deg);
  -ms-transform: skew(-18deg);
  -webkit-transform: skew(-18deg);
  background: #FFFFFF;
  font-size: 13px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.06);
  padding: 4px;
  border-radius: 3px;
  font-weight: 500;
}

.form-signbtn a:first-child {
  color: #89C131;
  border-radius: 3px;
  display: inline-block;
  padding: 8px 30px;
}

.sign-up-btn {
  display: inline-block;
  background: #89C131;
  padding: 8px 30px;
  color: #fff;
  border-radius: 3px;
}

.sign-up-btn:hover {
  background: #5CA515;
}

.form-signbtn a:first-child:hover {
  background: #5CA515;
}

.form-signbtn a span {
  transform: skew(18deg);
  -ms-transform: skew(18deg);
  -webkit-transform: skew(18deg);
  display: inline-block;
}

.form-signbtn a:hover {
  color: #fff;
}

.form-signbtn a {
  display: inline-block;
}

.top-header {
  text-align: right;
}

.form-groupsearch {
  width: 450px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -ms-flexbox;
  background: #fff;
  transform: skew(-18deg);
  -ms-transform: skew(-18deg);
  -webkit-transform: skew(-18deg);
  margin: 0 20px;
  border-radius: 3px;
  box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.04);
  -webkit-box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.04);
}

.sub-btn {
  display: inline-block;
  padding: 10px 34px;
  border-radius: 3px;
  box-shadow: 0px 4px 8px rgb(0 0 0 / 6%);
  -webkit-box-shadow: 0px 4px 8px rgb(0 0 0 / 6%);
  border: none;
  font-size: 13px;
  font-weight: 500;
  margin: 4px 0;
}

.sub-btn span {
  transform: skew(18deg);
  -ms-transform: skew(18deg);
  -webkit-transform: skew(18deg);
  display: inline-block;
}

.form-search-label {
  width: calc(100% - 115px);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.form-search-label label {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: skew(18deg) translate(0, -50%);
  -ms-transform: skew(18deg) translate(0, -50%);
  transform: skew(18deg) translate(0, -50%);
  background: rgb(137 193 49 / 20%);
  padding: 6px 12px;
}

.form-search-label .form-control {
  width: 100%;
  border: none;
  border-radius: 0;
  font-size: 12px;
  font-weight: 400;
  transform: skew(18deg);
  -ms-transform: skew(18deg);
  -webkit-transform: skew(18deg);
  background: transparent;
  height: 48px;
  padding-left: 45px;
}

.form-search-label .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.banner {
  position: relative;
}

/* 29-02-2024 css start (DD) */
.banner-description {
  padding: 30px;
  text-align: center;
}

/* 29-02-2024 css end (DD) */
.banner-overlay {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  /* background: -webkit-gradient( linear, left top, right top, color-stop(-2.28%, #ffffff), color-stop(96.73%, rgba(228, 229, 229, 0)));
  background: -o-linear-gradient( left, #ffffff -2.28%, rgba(228, 225, 225, 0) 96.73%);
  background: linear-gradient( 90deg, #ffffff -2.28%, rgba(228, 208, 208, 0) 96.73%); */
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

.banner-inner {
  width: 100%;
}

.banner-overlay h1 {
  /*font-family: 'Playfair Display', serif;*/
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;

}

/* 29-02-2024 css start (DD) */
.banner-overlay .how-to-text {
  text-shadow: 2px 1px 3px #000;
}

/* 29-02-2024 css end (DD) */

.banner-overlay h1 span {
  font-weight: 700;
  color: #89C131;
}

.banner-inner p {
  color: #fff;
  margin-bottom: 35px;
}

.create-btn {
  display: inline-block;
  background: #89C131;
  padding: 12px 45px;
  color: #fff;
  border-radius: 3px;
  transform: skew(-18deg);
  -ms-transform: skew(-18deg);
  -webkit-transform: skew(-18deg);
  box-shadow: 0px 15px 20px rgb(129 202 16 / 20%);
  -webkit-box-shadow: 0px 15px 20px rgb(129 202 16 / 20%);
  -moz-box-shadow: 0px 15px 20px rgb(129 202 16 / 20%);
  font-size: 13px;
}

.create-btn span {
  transform: skew(18deg);
  -ms-transform: skew(18deg);
  -webkit-transform: skew(18deg);
  display: inline-block;
  font-weight: 500;
}

.create-btn:hover {
  background: #5CA515;
  color: #fff;
}

.banner-img img {
  width: 100%;
  min-height: 1px !important;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
  height: 500px;
}

.main-heading {
  /*font-family: 'Playfair Display', serif;*/
  font-weight: 400;
  color: #000;
  margin-bottom: 30px;
  /* text-transform: capitalize; */
}

.main-heading span {
  font-weight: 700;
  color: #89C131;
}

.about-section {
  width: 100%;
  padding: 70px 0;
  position: relative;
  margin-top: 200px;
}

.about-img {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

.about-img img {
  border-radius: 40px;
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 9;
}

.about-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: -60px;
  width: 400px;
  height: 400px;
  background: url(images/dotted-pattern.svg) no-repeat;
  background-size: 100% 100%;
}

.about-img:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -60px;
  width: 400px;
  height: 400px;
  background: url(images/dotted-pattern.svg) no-repeat;
  background-size: 100% 100%;
}

.about-info .main-heading {
  font-size: 41px;
}

.about-info {
  max-width: 60%;
  position: absolute;
  top: 0;
  right: 0;
  background: #F9F9F9;
  padding: 275px 0 125px;
}

.about-inner {
  max-width: 600px;
  margin: 0 auto;
  padding-left: 80px;
}

.cookbook-section {
  width: 100%;
  /* background: url(images/cookbook-img.jpg) no-repeat top center; */
  background-size: cover;
  padding: 25px 0;
  margin-bottom: 10px;
}

.cookbook-item {
  width: calc(50% - 18px);
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  background: #FFFFFF;
  box-shadow: 0px 1px 6px 2px rgb(214 211 211 / 25%);
  -webkit-box-shadow: 0px 1px 6px 2px rgb(214 211 211 / 25%);
  -moz-box-shadow: 0px 1px 6px 2px rgba(214, 211, 211, 0.25);
  padding: 20px 15px;
  margin: 26px 9px 0;
  border-radius: 12px;
}

.cookbook-process {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 20px -9px 0;
}

.cookbook-number {
  width: 67px;
  height: 66px;
  background: #5CA515;
  border-radius: 10px;
  display: inline-block;
  font-weight: 700;
  color: #fff;
  font-size: 20px;
  text-align: center;
  display: -ms-flexbox;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

.cookbook-info {
  width: calc(100% - 67px);
  display: inline-block;
  padding-left: 20px;
}

.cookbook-info h4 {
  font-weight: 700;
  color: #000;
}

.cookbook-info p {
  font-size: 13px;
  color: #000;
  line-height: 1.5;
}

.time-section {
  width: 100%;
  background: url(images/tree.svg) no-repeat bottom right;
  min-height: 850px;
  position: relative;
}

.time-imginner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  z-index: 9;
  text-align: center;
}

.time-imginner:before {
  content: "";
  position: absolute;
  top: 0;
  left: -15px;
  background: url(images/grey-eclipse.svg) no-repeat;
  width: 736px;
  height: 768px;
  background-size: 100% 100%;
  background-position: center;
  z-index: 1;
}

.time-imginner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(images/green-eclipse.svg) no-repeat;
  width: 690px;
  height: 800px;
  background-size: 100% 100%;
  background-position: center;
}

.time-img {
  position: relative;
  width: 800px;
  margin: 0 auto;
  padding: 50px 0;
}

.time-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: -60px;
  width: 350px;
  height: 400px;
  background: url(images/dotted-pattern.svg) no-repeat;
  background-size: 100%;
}

.time-img:after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 90px;
  width: 340px;
  height: 340px;
  background: url(images/small-dotted-pattern.svg) no-repeat;
  background-size: 100%;
}

.time-imginner img {
  position: relative;
  z-index: 9;
  width: 693px;
  display: inline-block;
}

.time-leftbar {
  position: absolute;
  top: 0;
  left: 0;
}

.time-leftinfo {
  margin-left: auto;
  padding-top: 200px;
}

.time-innerinfo {
  width: 80%;
}

.ingrediants-block {
  width: 100%;
  position: relative;
  padding-bottom: 190px;
  background: #2A2A2E;
}

.mobile-book {
  display: none;
}

.ingredient-bg {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  height: 100%;
}

.ingredient-bginner {
  position: relative;
  z-index: 9;
  width: 880px;
  padding-top: 140px;
  margin: 0 auto;
}

.ingredient-bg::before {
  content: "";
  position: absolute;
  width: 50%;
  left: 0;
  top: 0;
  background: #89C131;
  height: 100%;
}

.ingredient-bg::after {
  content: "";
  position: absolute;
  width: 50%;
  right: 0;
  top: 0;
  background: #2A2A2E;
  height: 100%;
}

.ingredient-info {
  margin-left: auto;
  padding: 90px 0;
}

.ingredient-info .main-heading {
  color: #fff;
}

.ingredient-info p {
  color: #fff;
}

.ingredient-mainheading {
  position: relative;
  z-index: 9;
  color: #fff;
  padding: 58px 0;
}

.ingredient-mainheading .main-heading {
  color: #fff;
  padding-left: 50px;
}

.ingredient-info .main-heading span {
  display: block;
}

.recipe-safeblock {
  width: 100%;
  background: url(images/tree.svg) no-repeat;
  background-position: left -200px bottom;
}

.cheerful-ban {
  position: relative;
  margin: 80px 0 0;
}

.cheerful-ban:after {
  content: "";
  width: 850px;
  height: 850px;
  display: inline-block;
  border-radius: 50%;
  background: rgba(137, 193, 49, 0.2);
  position: absolute;
  top: 0;
  left: -60px;
}

.cheerful-ban:before {
  content: "";
  width: 650px;
  height: 650px;
  display: inline-block;
  border-radius: 50%;
  background: #89C131;
  position: absolute;
  top: 20%;
  left: -26px;
}

.cheerful-img {
  position: relative;
  z-index: 9;
}

.book-icon {
  width: 155px;
  height: 155px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -ms-flexbox;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  bottom: 27%;
  left: -50px;
  z-index: 9;
  position: absolute;
}

.book-icon:last-child {
  bottom: auto;
  top: 30%;
  left: auto;
  right: 3%;
}

.recipe-safeblock .col-lg-6:first-child {
  padding-right: 180px;
}

.grey-security-icon {
  width: 347px;
  height: 347px;
  background: #FAFAFA;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -ms-flexbox;
  -ms-flex-align: center !important;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 40px;
}

.play-stroreblock {
  width: 100%;
  background: #E7E7E7;
}

.hand-img {
  position: relative;
}

.hand-img:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-top-right-radius: 500px;
  background: #89C131;
  top: 0;
  right: 0
}

.hand-img-inner {
  width: 85%;
  background: #E7E7E7;
  border-top-right-radius: 500px;
  position: relative;
  z-index: 9;
}

.hand-img-inner img {
  margin-top: -70px;
}

.gplay-btn {
  display: inline-block;
  background: #89C131;
  padding: 10px 20px;
  color: #fff;
  border-radius: 3px;
  transform: skew(-18deg);
  -ms-transform: skew(-18deg);
  -webkit-transform: skew(-18deg);
  box-shadow: 0px 15px 20px rgb(129 202 16 / 20%);
  -webkit-box-shadow: 0px 15px 20px rgb(129 202 16 / 20%);
  -moz-box-shadow: 0px 15px 20px rgb(129 202 16 / 20%);
}

.play-inner {
  transform: skew(18deg);
  -ms-transform: skew(18deg);
  -webkit-transform: skew(18deg);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -ms-flexbox;
  -ms-flex-align: center !important;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.gplay-btn p span {
  display: block;
}

.gplay-btn p {
  line-height: 1.2;
  padding-left: 10px;
}

.appplay-btn {
  background: #070707;
  margin-left: 20px;
}

.play-stroreblock .col-lg-7 {
  padding-right: 51px;
}

.footer {
  background: #151515;
}

.footer-top p {
  color: #fff;
  font-size: 14px;
  margin-top: 17px;
  padding-right: 80px;
}

.footer-top {
  padding: 34px 0
}

.subheading {
  color: #fff;
  /*font-family: 'Playfair Display', serif;*/
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 45px;
  text-transform: capitalize;
}

.footer-list {
  margin-bottom: 0;
}

.footer-list li {
  margin: 0;
  padding: 6px 0;
}

.footer-list li a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}

.footer-list li:before,
.social-listing li:before {
  display: none;
}

.footer-list li a:hover {
  text-decoration: none;
  color: #89C131
}

.email-pro {
  width: 100%;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  padding: 10px 0;
  color: #fff;
}

.email-pro img {
  display: inline-block;
  margin-right: 15px;
}

.email-pro a {
  color: #fff;
}

a:hover {
  text-decoration: none;
}

.copyright {
  border-top: 1px solid #5B5959;
  padding: 25px 0;
  font-size: 14px;
  color: #fff;
}

.copyright .col-md-6:last-child {
  text-align: right;
}

.social-listing {
  margin-bottom: 0;
  display: inline-block;
}

.social-listing li {
  display: inline-block;
  padding-left: 4px;
}

.social-listing li a {
  width: 40px;
  height: 40px;
  display: inline-block;
  background: #FFFFFF;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #89C131;
  ;
}

.social-listing li:first-child {
  padding-left: 0;
}

.social-listing li a:hover {
  color: #FFFFFF;
  background: #89C131;
}

.inner-banner {
  width: 100%;
  position: relative;
}

.innerbanner-overlay {
  background: -webkit-gradient(linear, left top, right top, color-stop(-2.28%, #000000), color-stop(96.73%, rgba(59, 54, 54, 0)));
  background: -o-linear-gradient(left, #000000 -2.28%, rgba(59, 54, 54, 0) 96.73%);
  background: linear-gradient(90deg, #000000 -2.28%, rgba(59, 54, 54, 0) 96.73%);
}

.innerbanner-overlay h1 span {
  display: block;
}

.innerbanner-info p {
  color: #fff;
  margin-bottom: 20px;
  max-width: 70%;
}

.innerbanner-info {
  width: 100%;
}

.recipe-section {
  width: 100%;
  position: relative;
  background: url(images/dotted-pattern.svg) no-repeat;
  background-position: left top;
}

.recipe-img {
  border-top-right-radius: 50px;
  overflow: hidden;
  height: 700px;
}

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

.recipe-imgpattern {
  padding: 90px 0;
  position: relative;
  z-index: 9;
}


/*.recipe-imgpattern:after{
  content: ""; position: absolute; top: 0; left: 0; width: 450px; height: 450px; 
   background: url(images/dotted-pattern.svg) no-repeat; display: inline-block;
}*/

.recipe-info {
  margin-left: auto;
  padding: 60px 0 0 100px;
  background: url(images/recipe-bg.jpg) no-repeat right top;
  background-size: 100% 100%;
  position: absolute;
  padding: 140px 0 40px;
  right: 0;
  top: 0;
  max-width: 60%;
  padding-left: 260px;
}

.recipe-inner {
  max-width: 600px;
}

.recipe-listing {
  position: relative;
}

.recipe-listing:before {
  content: "";
  width: 2px;
  height: 100%;
  background: #E6EAE1;
  top: 0;
  left: 2px;
  position: absolute;
}

.recipe-listing li:before {
  background: #89C131
}

.recipe-listing li {
  margin-bottom: 8px;
  color: #2A2A2E
}

.about-tree {
  text-align: center;
  margin-top: -70px;
}

.about-tree img {
  display: inline-block;
}

.about-bottomarea {
  width: 100%;
}

.about-number {
  width: 97px;
  height: 97px;
  background: #5CA515;
  border-radius: 10px;
  display: inline-block;
  font-weight: 700;
  color: #fff;
  font-size: 32px;
  text-align: center;
  display: -ms-flexbox;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 18px;
}

.about-numberingitems {
  background: #F9F9F9;
  border-radius: 12px;
  width: 100%;
  padding: 42px 27px;
  text-align: left;
  margin-bottom: 35px;
}

.about-numberingitems h3 {
  /*font-family: 'Playfair Display', serif;*/
  color: #000;
}

.about-numberingitems p {
  color: #6D6D6D;
  padding-right: 60px;
}

.about-numberingimg {
  margin-bottom: 35px;
  height: calc(100% - 35px);
}

.about-numberingimg img {
  width: 100%;
  border-radius: 12px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.contact-block {
  width: 100%;
  padding: 85px 0;
  background: url(images/contact-bg-pattern.jpg), url(images/tree.svg);
  background-size: 100%, auto;
  background-position: top 40px left, left -200px bottom 250px;
  background-repeat: no-repeat, no-repeat;
}

.contact-panel {
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 4px 34px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0px 4px 34px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  margin-top: 90px;
}

.contact-panel form {
  padding: 37px 15px 37px 46px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.send-btn {
  display: inline-block;
  padding: 13px 47px;
  border-radius: 3px;
  box-shadow: 0px 4px 8px rgb(0 0 0 / 6%);
  -webkit-box-shadow: 0px 4px 8px rgb(0 0 0 / 6%);
  border: none;
  font-size: 13px;
  font-weight: 500;
  transform: skew(-18deg);
  -ms-transform: skew(-18deg);
  -webkit-transform: skew(-18deg);
}

.send-btn span {
  transform: skew(18deg);
  -ms-transform: skew(18deg);
  -webkit-transform: skew(18deg);
  display: inline-block;
  color: #fff;
}

.gmap iframe,
.gmap {
  width: 100%;
  height: 100%;
}

.contact-address {
  width: 100%;
  background: url(images/contact-leaf.svg) no-repeat #F9F9F9;
  padding: 310px 0 75px;
  margin-top: -250px;
  background-position: bottom 75px right 30px;
}

.contact-addblock {
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 2px 13px rgba(172, 164, 164, 0.03);
  -webkit-box-shadow: 0px 2px 13px rgba(172, 164, 164, 0.03);
  border-radius: 12px;
  padding: 47px;
}

.contact-addicon {
  display: inline-block;
  margin-bottom: 26px;
}

.contact-addblock h4 {
  /*font-family: 'Playfair Display', serif;*/
  font-weight: 700;
  color: #000;
}

.contact-addblock p {
  font-size: 19px;
  font-weight: 500;
}

.contact-addblock p a {
  color: #5E3120;
}

.subscription-block {
  width: 100%;
}

.subscription-blockup {
  width: 100%;
  padding: 120px 0 350px;
  background: url(images/subscribe-pattern.jpg) no-repeat #f9f9f9;
  background-size: 100%;
  background-position: top left;
}

.subscription-package {
  width: 100%;
  margin-top: -270px;
  background: url(images/membership-leaf.svg) no-repeat, url(images/membership-leaf1.png) no-repeat;
  background-size: auto, auto;
  background-position: bottom 200px left, bottom 180px right 30px;
  padding-bottom: 150px;
}

.memebership-list {
  width: calc(20% - 16px);
  background: #FFFFFF;
  box-shadow: 0px 20px 40px rgba(3, 0, 77, 0.04);
  -webkit-box-shadow: 0px 20px 40px rgba(3, 0, 77, 0.04);
  padding: 29px 12px;
  border-radius: 12px;
  margin: 0 8px 0;
}

.membrship-listing {
  font-size: 14px;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.6;
  min-height: 270px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 35px;

}

.memebership-panel {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  width: 20%;
  padding: 0 7px;
}

.member-addon-panel {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -ms-flex-wrap: wrap;
  /* flex-wrap: wrap; */
  margin: 0;
  margin: 7px;
  padding: 0 7px;
}

.membrship-listing li {
  padding-left: 30px;
  margin-bottom: 20px;
}

.membrship-listing li:before {
  background: url(images/tick-circle.svg) no-repeat;
  width: 18px;
  height: 18px;
  background-size: cover;
  top: 1px;
}

.membrship-listing li span {
  font-size: 13px;
  color: #8E8A8A;
  display: block;
}

.memebership-list p {
  color: #939395;
  font-size: 14px;
  line-height: 2;
}

.memebership-list h3 {
  font-size: 30px;
  /*font-family: 'Playfair Display', serif;*/
  font-weight: 700;
  color: #5E3120;
  margin-bottom: 8px;
  text-align: center;
}

.subscription-block .create-btn {
  padding: 9px 45px;
}

.memebership-list:nth-child(3) h3 {
  color: #5E3120
}

.memebership-list:nth-child(4) h3 {
  color: #89C131
}

.memebership-list:nth-child(5) h3 {
  color: #5CA515
}

.sign-in-block {
  width: 100%;
  background: url(images/tree-white.svg) no-repeat #89C131;
  background-position: bottom left;
  position: relative;
  padding: 110px 0
}

.sign-in-block:after {
  content: "";
  width: 54%;
  height: 100%;
  background: url(images/sign-banner.jpg) no-repeat;
  background-position: right;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0
}

.sign-in-block .container {
  position: relative;
  z-index: 1;
}

.sign-popup {
  max-width: 890px;
  margin: 0 auto;
  background: #FFFFFF;
  box-shadow: 0px 2px 31px rgba(0, 0, 0, 0.13);
  -webkit-box-shadow: 0px 2px 31px rgba(0, 0, 0, 0.13);
  /* padding: 53px 220px; */
  padding: 53px 50px;
  text-align: center;
  border-radius: 20px;
}

.sign-popup .form-control {
  border: 1px solid #DDE3EE;
  height: 56px;
}

.sign-popup .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #afb2b6;
  ;
}

.sign-popup .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #afb2b6;
  ;
}

.sign-popup .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #afb2b6;
  ;
}

.sign-popup .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #afb2b6;
  ;
}

.sign-popup h2 {
  color: #89C131;
  font-size: 25px;
  /*font-family: 'Playfair Display', serif;*/
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 13px;
}

.sign-popup h4 {
  /*font-family: 'Playfair Display', serif;*/
  font-weight: 700;
  text-transform: capitalize;
  color: #26292B;
  margin-bottom: 50px;
}

.accept-input {
  display: inline-block;
  margin-top: 0;
  top: 0;
  vertical-align: middle;
  transform: scale(1);
  -ms-transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  position: relative;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.accept-input:before {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 1px solid #DDE3EE;
  border-radius: 3px;
  content: "";
}

.accept-input:checked:before {
  background-color: #89C131;
  border-color: #89C131;
}

.accept-input:checked:after {
  background: transparent;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  position: absolute;
}

.accept-input+label {
  max-width: calc(100% - 32px);
  margin-bottom: 0;
  vertical-align: text-top;
  color: #2F2F32;
  font-size: 15px;
  font-weight: 500;
  padding-left: 12px;
  text-transform: capitalize;
  line-height: 20px;
}

.forgot-btn {
  color: #89C131;
  font-weight: 700;
  font-size: 15px;
  display: inline-block;
}

.sign-up-bottom {
  width: 100%;
  border-top: 1px solid #EFEFEF;
  padding: 42px 0;
  margin-top: 25px;
}

.sign-up-bottom p {
  font-size: 15px;
  font-weight: 500;
  color: #5E3120;
}

.sign-up-bottom p a {
  color: #5E3120;
}

.sign-up-bottom p a:hover {
  color: #89C131;
}

.sign-up-bottom .send-btn {
  box-shadow: 0px 10px 15px rgb(129 202 16 / 40%);
  -webkit-box-shadow: 0px 10px 15px rgb(129 202 16 / 40%)
}

.or-txt {
  text-align: center;
  position: relative;
}

.or-txt:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #EEEEEE;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.or-txt span {
  display: inline-block;
  color: #BDBBBB;
  background: #fff;
  padding: 0 46px;
  position: relative;
  z-index: 9;
}

.social-iconslist li:before {
  display: none;
}

.social-iconslist {
  margin-top: 25px;
}

.social-iconslist li {
  display: inline-block;
  padding-left: 25px;
}

.social-iconslist li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center !important;
  -webkit-box-align: center !important;
  align-items: center !important;
  width: 59px;
  height: 59px;
  border-radius: 50%;
  background: #F9FCFF;
  box-shadow: 0px 4px 8px rgb(0 0 0 / 6%);
  -webkit-box-shadow: 0px 4px 8px rgb(0 0 0 / 6%);
}

.social-iconslist li a:hover {
  background: #fff;
}


/*pk 6-10-2021*/
.slick-dots {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 18px;
  counter-reset: my-awesome-counter;
}

.slick-dots li:before {
  display: none;
}

.slick-dots li {
  padding: 0;
  padding-left: 52px;
  margin: 19px 0;
  line-height: 0.8;
  text-align: right;
  counter-increment: my-awesome-counter;
  position: relative;
  cursor: pointer;
}

.slick-dots li:after {
  content: "0" counter(my-awesome-counter) "/06";
  position: absolute;
  left: 0;
  font-weight: 500;
  color: #FFFFFF;
  font-size: 14px;
  top: 5px;
  opacity: 0;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

.ban-slide {
  position: relative;
}

.slick-dots li button {
  padding: 0;
  background: #808080;
  font-size: 0;
  width: 22px;
  height: 2px;
  border: 0;
  border-radius: 0;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.slick-dots li.slick-active button {
  width: 30px;
  background: #8ac130;
}

.slick-dots li:first-child,
.slick-dots li:last-child {
  opacity: 0.5;
}

.slick-dots li:nth-child(2),
.slick-dots li:nth-child(5) {
  opacity: 0.7;
}

.slick-dots li.slick-active {
  opacity: 1;
}

.slick-dots li.slick-active:after {
  opacity: 1;
}

/*search results page*/
.common-gap {
  padding: 55px 0;
}

.common-after {
  position: relative;
  z-index: 1;
  /*    border-top: 2px solid #fff;*/
}

.common-after:after {
  position: absolute;
  content: '';
  background: #f9f9f9;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: -1;
  height: 40%;
}

.cmn-box {
  background: #fff;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 20px rgb(0 0 0 / 15%);
  width: 100%;
  border-radius: 10px;
  padding: 50px;
}

.search-results-box {
  margin-bottom: 60px;
}

.search-results-box:last-child {
  margin-bottom: 0;
}

.cmn-wrap {
  width: 85%;
  margin: auto;
  position: relative;
}

.cmn-pic {
  border-radius: 6px;
  overflow: hidden;
}

.cmn-pic img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.cmn-sub-hdr {
  color: #252B42;
  font-size: 35px;
  /*font-family: 'Playfair Display', serif;*/
  font-weight: 700;
}

.cmn-sb-inn {
  color: #5E3120;
  font-size: 24px;
  /*font-family: 'Playfair Display', serif;*/
  font-weight: 700;
}

.search-member-tree {
  color: #89C131;
}

.cmn-mr {
  margin-bottom: 70px;
}

.search-results {
  position: relative;
}

.shp1 {
  position: absolute;
  top: 10%;
  left: 5%;
}

.shp2 {
  position: absolute;
  right: 15px;
  top: 5%;
}

.shp3 {
  position: absolute;
  bottom: 20%;
  left: 2%;
}

.shp4 {
  position: absolute;
  right: 5%;
  bottom: 15%;
}


/* profile page*/
.profile-sec {
  position: relative;
}

.profile-box h6 {
  font-size: 20px;
  font-weight: 700;
  color: #89C131;
  margin-bottom: 14px;
}

.profile-box h6 span {
  font-size: 16px;
  font-weight: 700;
  /*font-family: 'Playfair Display', serif;*/
  color: #5E3120;
}

.profile-btm {
  /* border-top: 1px solid #F6F5F5; */
  padding-top: 4px;
}

.dish-innr {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.dish-pic {
  height: 220px;
  overflow: hidden;
  display: block;
}

.dish-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

.dish-pic img:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.dish-txt {
  text-align: center;
  padding: 30px 15px;
}

.font-wgh {
  font-weight: 700;
}

.dsh-innr {
  padding: 15px;
}

.dsh-outr {
  margin: -15px;
}

.c-hdr {
  color: #000000;
  font-size: 35px;
  /*font-family: 'Playfair Display', serif;*/
  font-weight: 400;
  margin-bottom: 45px;
}

.c-hdr span {
  color: #89C131;
  font-weight: 700;
}

.dish-content {
  padding: 35px 35px 70px;
}

/*04/11/2021*/
.dish-content2 {
  padding: 35px 35px 70px;
}

/*04/11/2021*/
.cmn-box.profile-box {
  padding: 40px 0 0;
}

.profile-top {
  padding: 0 35px 45px;
}

.resp-tabs-list {
  margin: 0;
}

.resp-tabs-list li:before {
  display: none;
}

.resp-tabs-list li {
  min-height: 112px;
  text-align: center;
  border: 1px solid #DCDCDC;
  border-radius: 45px;
  padding: 12px;
  margin: 0;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  cursor: pointer;
}

.resp-tabs-list li a {
  background: #f7f7f7;
  display: block;
  border-radius: 30px;
  width: 100%;
  height: 87px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

.resp-tabs-list li figure {
  margin-bottom: 10px;
}

.resp-tabs-list li p {
  margin: 0;
  color: #656060;
  font-size: 12px;
  line-height: 1.15em;
}

.resp-tabs-list li.resp-tab-active p {
  color: #000000;
}

.resp-tabs-list li.resp-tab-active {
  border-color: #3EC032;
}

.resp-tabs-list li.resp-tab-active a {
  background: #f5fdf2;
}

.resp-tabs-list li figure img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

.resp-tabs-list li.resp-tab-active figure img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.dish-slider .slick-list {
  margin: 0 -20px;
}

.dish-slider .slick-slide {
  padding: 0 20px;
}

ul.resp-tabs-list {
  padding: 120px 35px 70px;
  background: #fcfcfc;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 30px;
  right: 35px;
  padding: 0;
  background-color: transparent;
  border: 1px solid #DCE0D6;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  font-size: 0;
  width: 43px;
  height: 43px;
}

.slick-prev {
  right: 100px;
  background-image: url('images/arrow1.svg');
}

.slick-next {
  background-image: url('images/arrow2.svg');
}

.slick-prev:hover,
.slick-next:hover,
.slick-prev:focus,
.slick-next:focus {
  border-color: #89C131;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
}

.slick-prev:hover,
.slick-prev:focus {
  background-image: url('images/arrow1.svg');
}

.slick-next:focus,
.slick-next:hover {
  background-image: url('images/arrow2.svg');
}

.main-heading.sml {
  font-size: 30px;
  /*font-size: 40px;*/
}

.main-heading.recipe_notes {
  font-size: 30px;
}

.dish-outr {
  position: relative;
}

.hd-ab {
  position: absolute;
  top: 30px;
  left: 35px;
  z-index: 55;
}

.shp3.ps1 {
  bottom: 48%;
}

.shp4.ps2 {
  bottom: 44%;
}

/*dim sums page*/
.profile-btm p {
  font-weight: 500;
  font-size: 15px;
  margin: 0 0 10px 0;
  width: 100%;
  /* width: 70%; */
  line-height: 22px;
}

.profile-btm.dim-btm h6 {
  /*font-family: 'Playfair Display', serif;*/
  font-size: 14px;
  /* color: #252B42; */
  color: #b77611;
}

.dim_btm_cc {
  /*font-family: 'Playfair Display', serif;*/
  font-size: 20px;
  color: #89C131;
}

.dim_btm_cc_clr {
  color: #5E3120 !important;
}

.share-list {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  right: 20px;
  top: 0px;
}

.share-list li:before {
  display: none;
}

.share-list li {
  padding: 0;
  margin: 0 14px 0 0;
}

.share-list li:last-child {
  margin-right: 0;
}

.share-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 100%;
  border: 1px solid #5E3120;
  font-size: 13px;
  color: #5E3120;
}

.share-list li a:hover {
  color: #89C131;
  border-color: #89C131;
}

.pos-stc {
  position: static;

}

.pos-stc h5 {
  font-size: 14px;
}

.cmn-box.dim-outr {
  padding: 15px;
}

.dim-top {
  padding: 37px 40px 25px 30px;
  position: relative;
}

.cook-time {
  padding: 30px 40px 50px;
  background: #fcfcfc;
}

.card-innr {
  background: #fff;
  border-radius: 10px;
  padding: 2px;
  min-height: 122px;
  width: 100%;
  text-align: center;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.card-innr figure {
  min-height: 62px;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.card-innr-2 {
  width: 25px;
}

.cook-icons {
  margin-bottom: 5px !important;
}

.card-hdr {
  font-weight: 500;
  color: #89C131;
  margin-bottom: 8px;
  line-height: 1.2em;
  font-size: 17px;
  /* height: 50px; */
}

.card-hdr-2 {
  font-weight: 500;
  color: #89C131;
  margin-bottom: 8px;
  line-height: 0.2em;
  font-size: 10px;
}

.card-para {
  font-weight: 500;
  font-size: 10px;
  margin: 0;
}

.ingradients-outr {
  padding: 40px;
}

.card-hdr.color {
  color: #000000;
}

.card-innr-box {
  min-height: 122px !important;
}

.ingradients-outr .cmn-list {
  margin-top: 35px;
}

.cmn-list.flx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cmn-list.flx li {
  width: calc(100% / 4);
}

.cmn-list {
  margin: 0;
}

.cmn-list li::before {
  background: #8ac130;
  width: 12px;
  height: 12px;
  top: 8px;
}

.cmn-list li {
  color: #5E3120;
  font-weight: 500;
  font-size: 19px;
  margin-bottom: 33px;
  padding-left: 30px;
}

.cmn-list li:last-child {
  margin-bottom: 0;
}

.cmn-list.flx li:nth-last-child(4),
.cmn-list.flx li:nth-last-child(2),
.cmn-list.flx li:nth-last-child(3) {
  margin-bottom: 0;
}

.how-to-make-outr {
  padding: 40px;
  background: #fcfcfc;
}

.gallery-outr {
  padding: 30px 40px 50px;
}

.video-pic {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}

.video-pic figure {
  margin: 0;
  height: 100%;
}

.video-pic figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.video-pic:after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.27);
  width: 100%;
  height: 100%;
}

.vd-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  width: 95px;
  height: 95px;
  border-radius: 100%;
  background: #fff;
  z-index: 8;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sml-pic {
  border-radius: 10px;
  overflow: hidden;
  margin: 0;
  height: 100%;
}

.sml-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gal-outr {
  margin: -15px;
}

.gal-innr {
  padding: 15px;
}

.gal-innr {
  height: calc(100% / 2);
}

/*my cookbook page */
.cmn-hdr {
  margin-bottom: 50px;
}

.cmn-hdr p {
  width: 75%;
  margin: auto;
}

.my-cookbook-innr .card-para {
  /*font-family: 'Playfair Display', serif;*/
  font-weight: 700;
  margin-bottom: 35px;
}

.cook-img {
  margin-bottom: 35px;
}

.my-cookbook-innr {
  width: 60%;
  margin: auto;
}

.my-cookbook-innr .card-hdr {
  line-height: 1.6em;
  margin-bottom: 20px;
}

.my-cookbook .cmn-box {
  padding-top: 110px;
  padding-bottom: 110px;
}

.my-cookbook.common-after::after {
  height: 70%;
}

.my-ck {
  position: relative;
}

.my-cookbook .shp3 {
  bottom: 33%;
}

.my-ck .shp1 {
  top: 13%;
  left: 12%;
}

.my-ck .shp4 {
  right: 8%;
  bottom: 30%;
}

.hdr-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-top: 20px;
}

.hdr-right .navbar {
  padding: 0;
}

.profile-hd {
  padding-left: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pr-pic span {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #89C131;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 100%;
}

.pr-pic {
  max-width: 32px;
  -ms-flex-preferred-size: 32px;
  flex-basis: 32px;
}

.profile-hd a {
  color: #000000;
  font-weight: 500;
  font-size: 18px;
}

.profile-hd ul li {
  padding: 10px;
  margin: 0;
}

.profile-hd ul li:before {
  display: none;
}

.profile-hd .dropdown {
  padding-left: 10px;
  max-width: calc(100% - 32px);
  -ms-flex-preferred-size: calc(100% - 32px);
  flex-basis: calc(100% - 32px);
}

.profile-hd .dropdown-toggle::after {
  border-top-color: #87c031;
}

.profile-hd .dropdown-menu {
  background: #fff;
  box-shadow: 0px 4px 13px rgb(0 0 0 / 4%);
  -webkit-box-shadow: 0px 4px 13px rgb(0 0 0 / 4%);
  border: 0;
}

/*create-my-cookbook page*/
.cmn-box.create-box {
  padding: 85px 150px;
}

.create-box .form-control {
  height: 72px;
  border-color: #89C131 !important;
  color: #26292B;
  font-size: 15px;
  font-weight: 500;
}

.create-box select.form-control:not([size]):not([multiple]) {
  height: 72px;
}

.create-box select.form-control {
  background-size: 13px;
  background-position: right 40px center;
  color: #26292B;
  font-size: 15px;
  font-weight: 500;
}

.create-box ::-webkit-input-placeholder {
  color: #afb2b6;
  font-size: 15px;
  font-weight: 500;
}

.create-box :-ms-input-placeholder {
  color: #afb2b6;
  font-size: 15px;
  font-weight: 500;
}

.create-box ::-moz-placeholder {
  color: #afb2b6;
  font-size: 15px;
  font-weight: 500;
}

.create-box ::-ms-input-placeholder {
  color: #afb2b6;
  font-size: 15px;
  font-weight: 500;
}

.create-box ::placeholder {
  color: #26292B;
  font-size: 15px;
  font-weight: 500;
}

.create-box label {
  font-size: 16px;
  font-weight: 700;
  /*font-family: 'Playfair Display', serif;*/
  margin-bottom: 20px;
}

.create-box .form-group {
  margin-bottom: 50px;
}

.check-img {
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  margin: 0;
  text-align: center;
  border: 4px solid transparent;
  display: block;
}

.check-img img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.check-img span {
  padding: 26px 26px 40px;
}

.create-box .check-pro {
  padding: 0;
  margin: 0;
}

.create-box .check-pro input:checked~.check-img {
  border-color: #89C131;
}

.check-outr {
  margin: -15px -30px;
}

.check-innr {
  padding: 15px 30px;
}

/*family-tree page*/
.family-tree-sec {
  position: relative;
}

.family-tree-outr {
  padding-top: 50px;
}

.family-tree-outr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.family-tree-innr {
  width: 75%;
  margin: auto;
}

.tree-heading {
  padding: 20px 0 60px;
}

.tree-heading h2 {
  font-weight: 700;
}

.tree-heading h3 {
  color: #373737;
  font-size: 37px;
  font-weight: 400;
}

.tree-heading p {
  color: #2A2A2E;
  width: 73%;
  margin: auto;
}

.family-tree-innr {
  position: relative;
}

.tree-member {
  max-width: 170px;
  text-align: center;
  position: absolute;
  /*z-index: 9;*/
}

.tree-member figure {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  border: 4px solid #89C131;
  margin-bottom: 8px;
  margin-left: auto;
  margin-right: auto;
}


.tree-member figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.tree-member p {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  text-align: center;
  /*padding: 15px 19px;*/
  padding: 8px 10px;
  border-radius: 5px;
  background: #89C131;
  display: inline-block;
  -webkit-box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  line-height: 18px;
}

.mem8 {
  top: 28%;
  left: 8%;
}

.mem5 {
  left: 7%;
  top: 11%;
}

.mem4 {
  top: 10%;
  left: 24%;
}

.mem7 {
  top: 28%;
  left: 25%;
}

.mem1 {
  top: -5%;
  left: 35%;
}

.mem2 {
  top: -3%;
  right: 30%;
}

.mem3 {
  top: 10%;
  right: 17%;
}

.mem6 {
  right: 3%;
  top: 19%;
}

.mem9 {
  right: 21%;
  top: 34%;
}

.mem10 {
  right: 4%;
  top: 36%;
}

.mem16 {
  right: 0;
  position: absolute;
  left: 3%;
  top: 42%;
  margin: 0 auto;
}

.path1 {
  position: absolute;
  top: 18%;
  left: 4%;
}

.path3 {
  position: absolute;
  top: 40%;
  left: 2%;
}

.path4 {
  position: absolute;
  top: 60%;
  left: 4%;
}

.path7 {
  position: absolute;
  right: 4%;
  top: 33%;
}

.path8 {
  position: absolute;
  right: 7%;
  top: 60%;
}

.path6 {
  position: absolute;
  right: 30%;
  top: 52%;
  z-index: -9;
}

.path2 {
  position: absolute;
  top: 28%;
  left: 13%;
}

.path5 {
  position: absolute;
  top: 47%;
  left: 21%;
  z-index: -9;
}

/*our-recipe-book-sec*/
.our-recipe-book-sec {
  background: #F9F9F9;
  padding-bottom: 70px;
  padding-top: 22px;
}

.our-recipe-book-outr {
  width: 55%;
  position: relative;
  margin-left: auto;
}

.our-recipe-book-outr:after {
  position: absolute;
  content: '';
  border: 2px dashed #000000;
  top: 50px;
  right: 30px;
  left: 0;
  bottom: 50px;
}

.our-recipe-book-outr img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.our-recipe-book-txt {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0px;
  width: 50%;
  z-index: 88;
}

.hdr-right .navbar-nav>li {
  padding-left: 70px;
}

.hdr-right .navbar-nav>li:first-child {
  padding-left: 0;
}

.main-heading.fn {
  font-size: 47px;
  font-weight: 700;
  position: relative;
  margin: 0 0 10px;
}

.blk {
  color: #2A2A2E;
  position: relative;
}

.ckbook-list {
  margin: 64px 0 0;
  padding: 26px 64px;
  background: #fff;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ckbook-list-innr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.ckbook-list li:before {
  display: none;
}

.ckbook-list li {
  padding: 0;
  margin: 0 27px 0 0;
}

.ckbook-list li:last-child {
  margin-right: 0;
}

.ckbook-list li a {
  width: 44px;
  height: 44px;
  border: 2px solid #5f3121;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 5px;
}

.ckbook-list li a:hover {
  background: #5f3121;
}

.ckbook-list li a:hover img {
  -webkit-filter: brightness(100);
  filter: brightness(100);
}

.ckbook-list li a.gr-cl {
  border-color: #89C131;
}

.ckbook-list li a.gr-cl:hover {
  background: #89C131;
}

.our-recipe-book-outr.bx-left {
  margin-left: 0;
}

.our-recipe-book-outr.bx-left:after {
  right: 0;
  left: 30px;
}

.our-recipe-book-outr.bx-left .our-recipe-book-txt {
  left: 0;
  right: 0;
  margin: auto;
}

.ckbook-list li a.disabled {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.15;
}

.drag-top-hdr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 90px;
}

.main-heading.sml-font {
  font-size: 41px;
  margin: 0;
}

.drag-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
}

.create-btn.pnk {
  background: #EC4545;
  box-shadow: 0px 15px 20px rgb(236 69 69 / 20%);
  -webkit-box-shadow: 0px 15px 20px rgb(236 69 69 / 20%);
  -moz-box-shadow: 0px 15px 20px rgb(236 69 69 / 20%);
}

.drag-btn .create-btn.pnk {
  margin-left: 20px;
}

.drag-otr {
  padding-bottom: 65px;
  border-bottom: 1px solid #E4DDDD;
  margin-bottom: 55px;
}

.drag-img-innr img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.drag-img-outr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.drg-box {
  width: calc(100% / 2);
  text-align: center;
}

.drg-innr {
  border: 1px solid #000000;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  background: #fff;
  position: relative;
}

.drg-box:first-child .drg-innr {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
}

.drg-box:last-child .drg-innr {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.drag-img-innr {
  height: 220px;
  display: block;
}

.drg-box p {
  margin: 24px 0 0;
  font-size: 19px;
  font-weight: 500;
}

.drg-innr.delete {
  border-color: #EC4545;
}

.btn.wdt {
  min-width: 190px;
  box-shadow: 0px 15px 20px rgb(129 202 16 / 20%);
  -webkit-box-shadow: 0px 15px 20px rgb(129 202 16 / 20%);
  -moz-box-shadow: 0px 15px 20px rgb(129 202 16 / 20%);
}

.recipe-table-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 30px 30px 30px 20px;
}

.recipe-table-top .create-box select.form-control:not([size]):not([multiple]) {
  height: 64px;
  min-width: 250px;
  background-color: transparent;
}

.check-pro.chk {
  margin: 0;
  width: 27px;
  height: 27px;
}

.check-pro input:checked~.checkmark {
  background-color: #89C131;
}

.check-pro.chk .checkmark {
  background-color: #C4C4C4;
  width: 18px;
  height: 18px;
}

.check-pro.chk .checkmark::after {
  left: 6px;
  top: 3px;
}

.table th,
.table td {
  padding: 30px;
  font-size: 19px;
  font-weight: 500;
}

.table th {
  background: #f8f8f8;
  color: #5E3120;
  border: 0;
}

.table td,
.table td a {
  color: #6C6562;
}

.table td a:hover {
  color: #89C131;
}

.table select {
  border: 0;
  -webkit-appearance: none;
  background-size: 10px;
  background-position: right center;
  min-width: 60px;
}

.table thead th {
  border-bottom: 0;
}

.table td {
  border-top: 0;
  border-bottom: 1px solid #dee2e6;
}

/*recipe method*/
.recipe-method-sec {
  background: #F9F9F9;
}

.check-outr.recipe-check .innr-img {
  width: 120px;
  margin: auto;
  position: relative;
  z-index: 1;
  min-height: 102px;
}

.check-outr.recipe-check .innr-img img {
  height: auto;
  width: auto;
}

.check-outr.recipe-check .innr-img:after {
  position: absolute;
  content: '';
  background: #FFF8F6;
  width: 64px;
  height: 64px;
  border-radius: 100%;
  z-index: -1;
  left: 0;
  top: 0;
  display: none;
}

.check-outr.recipe-check .check-img span {
  padding: 0;
}

.innr-txt {
  margin-top: 30px;
}

.check-outr.recipe-check .check-img {
  background: #fff;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  min-height: 270px;
  border-width: 2px;
  display: block;
}

.check-outr.recipe-check .check-innr {
  padding: 15px;
}

.check-outr.recipe-check {
  margin: -15px;
}

.check-outr.recipe-check .innr-txt {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
}

.create-box .check-pro input:checked~.check-img .innr-img img {
  -webkit-filter: invert(51%) sepia(56%) saturate(615%) hue-rotate(49deg) brightness(97%) contrast(95%);
  filter: invert(51%) sepia(56%) saturate(615%) hue-rotate(49deg) brightness(97%) contrast(95%);
}

.create-box .check-pro input:checked~.check-img .innr-img:after {
  background: #EFFFE8;
}

.recipe-method-sec.common-gap {
  padding: 110px 0;
}

.create-box label.lb-sm {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 16px;
}

.create-box.new-recipe-form .form-control {
  border-color: #CFC1C1;
}

.create-box.new-recipe-form .form-control:focus {
  border-color: #000000;
}

.create-box.new-recipe-form .form-group {
  margin-bottom: 20px;
}

.create-box.new-recipe-form textarea.form-control {
  padding-top: 16px;
  min-height: 223px;
}

.form-check-innr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.create-box.new-recipe-form .form-check-innr {
  margin: 35px 0 55px;
}

.form-check-innr .radio-pro {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  padding-left: 42px;
  margin-right: 34px;
  font-size: 24px;
  margin-bottom: 0;
}

.form-check-innr .radio-pro:last-child {
  margin-right: 0;
}

.radio-pro .checkmark {
  width: 21px;
  height: 21px;
  background: transparent;
  border: 2px solid #89C131;
  top: 2px;
}

.radio-pro input:checked~.checkmark {
  background-color: transparent;
}

.radio-pro .checkmark::after {
  top: 2px;
  left: 2px;
  width: 13px;
  height: 13px;
  background: #89C131;
}

.submit-btn {
  position: relative;
  background: #89C131;
  color: #FFFFFF;
  min-width: 198px;
  padding-top: 16px;
  padding-bottom: 16px;
  box-shadow: 0px 4px 8px rgba(137, 193, 49, 0.4);
  -webkit-box-shadow: 0px 4px 8px rgba(137, 193, 49, 0.4);
}

.submit-btn:hover,
.submit-btn:focus {
  background: #5CA515
}

.btn-innr {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  padding: 0;
  background: none;
  left: 0;
  top: 0;
}

.cmn-box.create-box.new-recipe-form {
  padding: 55px 80px;
}

.trumbowyg-box,
.trumbowyg-editor {
  /* min-height: 150px; */
  margin: 0;
  border-radius: 12px;
  /* height: 150px; */
}

.invitations-btn {
  margin-top: 45px;
}

.invitations-btn .btn {
  margin-right: 40px;
}

.invitations-btn .btn:last-child {
  margin-right: 0;
}

.btn.create-btn.orng {
  background: #5E3020;
  box-shadow: 0px 4px 8px rgba(94, 48, 32, 0.4);
  -webkit-box-shadow: 0px 4px 8px rgba(94, 48, 32, 0.4);
  padding-top: 16px;
  padding-bottom: 16px;
}

.btn.create-btn.orng:hover {
  background: #673828;
}

.invitations-sec.common-after:after {
  height: 70%;
}

.nav-tabs {
  padding-bottom: 35px;
}

.nav-tabs li {
  margin: 0 70px 0 0;
  padding: 0;
}

.nav-tabs li:last-child {
  margin-right: 0;
}

.nav-tabs li:before {
  display: none;
}

.nav-tabs li a {
  color: #5E3120;
  font-size: 23px;
  font-weight: 500;
  padding: 0;
  border: 0;
}

.nav-tabs .nav-link {
  border: 0;
}

.nav-tabs .nav-link.active,
.nav-tabs li a:hover,
.nav-tabs .nav-item.show .nav-link {
  color: #89C131;
}

.content-innr {
  padding-top: 35px;
}

.invite-list a:last-child {
  margin-right: 0;
}

.invite-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.invite-list-invite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.invite-list-invite a {
  width: 130px;
  height: 30px;
  border-radius: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 15px;
  border: 2px solid transparent;
  margin-right: 25px;
}

.invite-list a {
  width: 30px;
  height: 30px;
  border-radius: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 15px;
  border: 2px solid transparent;
  margin-right: 25px;
}

.invite-list a.mail {
  border-color: #89C131;
  color: #89C131;
}

.invite-list a.mail:hover {
  color: #fff;
  background: #89C131;
}

.invite-list a.delete {
  border-color: #F31717;
  color: #F31717;
}

.invite-list a.delete:hover {
  color: #fff;
  background: #F31717;
}

.invite-list-invite a.mail {
  color: #5E3120;
  font-weight: 500;
  text-align: center;
}

.content-mail {
  color: #5E3120;
  font-weight: 500;
}

.content-mail:hover {
  color: #89C131;
}

.content-innr ul {
  margin: -35px 0 0;
}

.content-innr ul li {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #ece6e6;
  padding: 35px 0;
}

.content-innr ul li:before {
  display: none;
}

.check-outr.fmly-tree-check .check-img img {
  height: auto;
  width: auto;
}

.check-outr.fmly-tree-check .check-img {
  padding: 30px;
}

.mm-pic img {
  padding: 20px;
}

.mm-pic {
  background: #FCFCFC;
  border: 4px solid #89C131;
}

.family-tree-innr.tree2 p {
  min-width: 117px;
}

/*18-10-2021*/
.rcpe-outr {
  padding: 8px 40px;
}

.rcpe-outr .ingradients-outr .cmn-list li {
  width: calc(100% / 2);
}

.rcpe-outr .how-to-make-outr {
  padding: 0;
  background: none;
}

.rcpe-outr .ingradients-outr {
  padding: 0;
}

.cmn-list.flx li:nth-last-child(4),
.cmn-list.flx li:nth-last-child(2),
.cmn-list.flx li:nth-last-child(3) {
  margin-bottom: 33px;
}

.upload-box {
  width: 100%;
  height: 321px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 10px;
  background: #F4F4F4;
  overflow: hidden;
  position: relative;
}

.upload-box span {
  width: 95px;
  height: 95px;
  border-radius: 100%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.upload-hdr {
  font-size: 22px;
  font-weight: 500;
}

.upload-para {
  font-size: 19px;
  font-weight: 500;
  margin: 30px 0;
}

.input-file {
  position: relative;
  cursor: pointer;
  min-width: 202px;
  text-align: center;
}

.custom-file-input {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.cookbook-process-outr .cookbook-item {
  width: 100%;
  background: none;
  -webkit-box-shadow: 0px 1px 6px 2px rgba(214, 211, 211, 0.25);
  box-shadow: 0px 1px 6px 2px rgba(214, 211, 211, 0.25);
  margin: 0;
}

.cookbook-process-outr .cookbook-info h4 {
  margin: 0;
  width: 75%;
}

.cookbook-process-outr {
  padding-top: 50px;
}

.navbar-nav>li .sub-menu {
  width: 216px;
  padding: 0 20px;
}

.navbar-nav>li .sub-menu li {
  margin: 0;
  padding: 0;
}

.navbar-nav>li .sub-menu li a {
  padding: 14px 0;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.upload-recipe-pic {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.create-box.recipe-hlp-form .form-control {
  border-color: #000000;
}

.cover-box-outr {
  margin: -25px;
}

.cover-box-innr {
  padding: 25px;
}

.add-more-link {
  color: #89C131;
  font-size: 19px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

.add-more-link:hover {
  color: #5E3120;
}

.add-more-link span {
  width: 28px;
  height: 28px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
  background: #89C131;
  color: #fff;
  margin-right: 5px;
  font-size: 14px;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

.add-more-link:hover span {
  background: #5E3120;
}

.pin {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 999;
}

.gal-dt-innr {
  position: relative;
}

.up-innr {
  border-bottom: 1px solid #E3E1E1;
  padding-bottom: 70px;
}

.upload-box.up-width-inn {
  width: 40%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 14px;
}

.create-box textarea.form-control {
  padding-top: 30px;
  line-height: 1.8em;
  color: #2A2A2E;
  font-weight: 400;
}

.editor-hgt .trumbowyg-box,
.editor-hgt .trumbowyg-editor {
  min-height: 280px;
  height: 280px;
}

.cmn-box.box-pd {
  padding: 20px;
}

.cook-time-box {
  padding-bottom: 50px;
  margin-bottom: 40px;
  border-bottom: 1px solid #E3E1E1;
}

.gal-box-bottom .video-pic .upload-box {
  height: 100%;
}

.gal-box-bottom .video-pic:after {
  display: none;
}

.gal-box-bottom .upload-box {
  height: 200px;
}

.add-more-dishes {
  padding: 35px 0 0;
}

.add-more-dishes-innr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /*border-top: 1px solid #E3E1E1;
    border-bottom: 1px solid #E3E1E1;*/
  padding: 45px 90px 45px 10px;
}

.add-more-dishes-innr h2 {
  margin: 0;
}

.add-more-link.bg {
  font-size: 20px;
}

.fm-tree-sec.common-after:after {
  height: 15%;
}

.fm-tree-sec .shp1 {
  top: 3%;
  left: 2%;
}

.fm-tree-sec .shp2 {
  top: 2%;
}

.fm-tree-sec .shp3.ps1 {
  top: 27%;
  left: 1%;
}

.fm-tree-sec .shp4.ps2 {
  bottom: auto;
  top: 31%;
}

.sh5 {
  position: absolute;
  bottom: 45%;
  left: 4%;
}

.sh6 {
  position: absolute;
  bottom: 40%;
  right: 4%;
}

.sh7 {
  position: absolute;
  bottom: 12%;
  left: 2%;
}

.sh8 {
  position: absolute;
  bottom: 8%;
  right: 2%;
}

.datepicker.form-control {
  background-image: url('images/calender.svg');
  background-size: 18px;
  background-position: right 20px center;
  background-repeat: no-repeat;
}

.tree-member.edit .mm-pic img {
  padding: 0;
}

.tree-member.edit .mm-pic {
  margin-top: -18px;
}

.tree-member ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  position: relative;
  padding: 0 21px 0 14px;
  z-index: 99;
  margin-top: -27px;
}

.tree-member ul:after {
  position: absolute;
  content: '';
  background: url('images/curve.png') no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 80px;
  left: 0;
  right: 0;
  top: 10px;
  z-index: -1;
}

.tree-member ul li {
  margin-right: 30px;
  list-style-type: none;
  padding: 0;
}

.tree-member ul li:before {
  display: none;
}

.tree-member ul li:nth-child(4) {
  position: absolute;
  z-index: 9;
  top: 70px;
  right: -40px;
}

.tree-member ul li:last-child {
  margin-top: 0;
}

.tree-member ul li a {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: #89C131;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 6px;
}

.tree-member ul li:first-child {
  margin-top: 4px;
}

.tree-member ul li:nth-child(3) {
  margin-top: 27px;
}

.mbl-img {
  display: none;
}

.social-iconslist li:first-child {
  padding-left: 0;
}

/*Animesh*/
.error {
  color: red;
  font-size: 12px;
  float: left;
}

.validation_error {
  color: red;
  font-size: 13px;
  float: left;
}

.pr-pic img {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #89C131;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 100%;
}

/*04/11/2021*/
.login_cc .row {
  width: 100%;
}

.upload-box .profile_image_cc {
  width: 100%;
  height: 100%;
}

.profile_image_cc>img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.tree-member figure {
  overflow: hidden;
}

.recipe-hlp-form .form-control[readonly] {
  background-color: #fff !important;
}

.upload-box span>video,
.recipeFav_cc>img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.upload-box .recipeFav_cc {
  width: 100%;
  height: 100%;
}

.gallery-outr figure>video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gallery-outr .recipeFav_cc {
  width: 100%;
  height: 100%;
}

.not_fav_list {
  min-height: 112px;
  text-align: center;
  border: 1px solid #DCDCDC;
  border-radius: 45px;
  padding: 12px;
  margin: 0;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  cursor: pointer;
  font-size: 22px !important;
  margin-top: 20px !important;
}

.create-my-cookbook .trumbowyg-editor,
.create-my-cookbook .trumbowyg-textarea {
  height: 310px !important;
}

.create-my-cookbook .trumbowyg-box {
  min-height: 310px !important;
  height: 370px !important;
}

.create-my-cookbook .create-my-cookbook .create-box label {
  color: #333;
}

.create-my-cookbook .create-box .form-control::-webkit-input-placeholder {
  color: #b7b7b7;
}

.create-my-cookbook .create-box .form-control::-moz-placeholder {
  color: #b7b7b7;
}

.create-my-cookbook .create-box .form-control:-ms-input-placeholder {
  color: #b7b7b7;
}

.create-my-cookbook .create-box .form-control:-moz-placeholder {
  color: #b7b7b7;
}

.create-my-cookbook .create-box .form-control {
  color: #333;
}

.create-my-cookbook .create-box label {
  color: #333;
  font-size: 16px;
}

select.decorated option:hover {
  box-shadow: 0 0 10px 100px #1882A8 inset;
}

/* 18/11/2021 Start */

.our-recipe-book-holder {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  align-content: center;
}

.our-recipe-book-holder::after {
  display: none;
}

.our-recipe-book-holder figure {
  position: relative;
}

.our-recipe-book-holder figure::before {
  position: absolute;
  content: '';
  border: 5px dashed #000000;
  top: -20px;
  right: 0px;
  left: -20px;
  bottom: 50px;
  width: 108%;
  height: 108%;
}

.our-recipe-book-holder>* {
  flex: 0 0 auto;
  width: 50%;
}

.our-recipe-book-holder .our-recipe-book-txt {
  position: relative;
  top: 0;
  transform: translateY(0);
  padding: 50px;
}

.our-recipe-book-holder:not(.bx-left) {
  flex-direction: row-reverse;
}

.box-holder>*[id^=row],
.box-holder>*[id^=ingredient] {
  position: relative;
  overflow: hidden;
  border: 1px solid #CFC1C1;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.btn-wrapper {
  margin-bottom: 20px;
}

.box-holder .btn_remove {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  left: auto;
  border-radius: 0px 0 0 30px;
  font-size: 18px;
  font-weight: bold;
}

.box-holder .form-holder {
  margin-bottom: 20px;
}

.box-holder .form-holder label {
  display: block;
}

.box-holder .form-holder .error {
  float: none;
}

.save-btn-holder {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.save-btn-holder .btn {
  margin-bottom: 20px;
}

.video-view-holder .col-md-6,
.video-view-holder .col-md-12 {
  margin-bottom: 30px;
}

.video-view-holder>.row {
  max-height: 100vh;
  overflow: auto;
}

.video-view-holder .gal-outr {
  margin: 0 -15px;
  min-height: 400px;
  align-content: flex-start;
}

.video-view-holder .gal-outr .gal-innr {
  height: 100%;
  max-height: 180px;
  padding-top: 0;
  padding-bottom: 0;
}

.video-view-holder .gal-outr .gal-innr>* {
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  min-height: 180px;
}

.video-view-holder .video-pic {
  min-height: 250px;
  max-height: 400px;
}

.video-view-holder .sticky {
  top: 0;
  position: relative;
}

.count_fav_row {
  margin-top: 40px;
}

.pagination-bot-controller+nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 30px;
}

.pagination-bot-controller+nav>* {
  flex: 0 0 auto;
  width: 100%;
  margin: 10px auto;
}

.pagination-bot-controller+nav svg {
  width: 40px !important;
}

.pagination-bot-controller+nav .inline-flex {
  display: inline-flex;
  padding: 0 !important;
}

.pagination-bot-controller+nav div div>span {
  font-size: 24px;
}

.pagination-bot-controller+nav .inline-flex>* {
  display: inline-flex;
  justify-content: center;
  width: 58px;
  height: 58px;
  line-height: 58px;
  padding: 0 !important;
}

.pagination-bot-controller+nav .inline-flex>* .inline-flex {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.pagination-bot-controller+nav .inline-flex a {
  color: var(--primaryColor);
}

.pagination-bot-controller+nav>div:first-child>* {
  padding: 10px 15px !important;
}

.pagination-bot-controller+nav p {
  margin-bottom: 10px;
}

/* 18/11/2021 End */

/* 16/1/2023 Start */
.inner-banner .banner-img img {
  width: 100%;
  height: 500px;
  min-height: 350px !important;
}

.inner-banner .banner-img {
  max-height: 350px;
  overflow: hidden;
}

/* 16/1/2023 Start */

/* 23/01/2023 start */
.feature-recipe-box.cus_row {
  padding-left: 0;
  padding-right: 0;
}

.feature-recipe-box.cus_row [class*="col-"] {
  margin-bottom: 32px;
}

/* 23/01/2023 end */

/* 24.04.23 start  */

.next_prev_arrw_wrap {
  padding: 0;
  margin: 0 auto 25px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
}

.next_prev_arrw_wrap li {
  padding: 0 15px;
}

.next_prev_arrw_wrap li::before {
  display: none;
}

.next_prev_arrw_wrap li a {
  display: inline-block;
}

.next_prev_arrw_wrap li img {
  width: 45px;
}

/* 24.04.23 end  */

/* 25.05.23 start */

.create-qr {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.qr-text-inner {
  width: 50%;
  padding: 0 15px;
}

.create-qr-inner {
  width: 50%;
  padding: 0 15px;
  /* margin-top: 75px; */
  /* margin-bottom: 75px; */
}

.qr-text-inner p {
  width: 100%;
  margin-bottom: 15px;
}

.index-2 form {
  width: 50%;
  margin: 0 auto;
}

.recipe_one_col {
  width: 60%;
}

.recipe_two_col {
  width: 40%;
}

/* .memebership-panel */


/* 16-06-2023-css */
.tab-content {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -7px;
  justify-content: center;
}

.available-tree {
  text-align: center;
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 600;
}

.tree_btn_wrap a {
  padding: 13px 20px;
  line-height: 1;
  min-width: 226px;
}

.tree_btn_wrap .create-btn {
  font-weight: 500;
  font-style: normal;
}

.cont_inr2 .parsley-required {
  padding: 0 !important;
  border: 0;
  margin-top: 40px;
}

.tab_pane_wrap {
  width: 100%;
}

.tree_table {
  width: 100%;
  border-collapse: collapse;
}

.tree_table .invite-list-invite {
  display: table-cell;
}

.tree_table .invite-list-invite a {
  justify-content: flex-start;
}

.tree_table td {
  padding: 30px 10px;
  border-bottom: 1px solid #ece6e6;
}

.tree_table th {
  padding: 30px 10px;
  border-bottom: 1px solid #ece6e6;
}

.tree_table_responsive {
  overflow-x: auto;
}

/* css update start RN 20-02-2024 */
.dynamic-inner-banner .banner-overlay {
  position: static;
}

.dynamic-inner-banner .banner-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-height: inherit;
}

.dynamic-inner-banner .banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.dynamic-inner-banner {
  padding: 50px 0;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.sw-video-sec h2 {
  font-size: 34px;
  font-weight: 400;
  color: #000;
  margin-bottom: 35px;
}

.sw-video-sec-iframe {
  max-width: 585px;
  width: 100%;
  height: 324px;
  margin: 0 auto;
}

.sw-video-sec-iframe iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sw-video-sec.sw-common-gap {
  padding-top: 50px;
}

.sw-single-sec.sw-common-gap {
  padding-top: 22px;
}

.sw-single-right img {
  width: 100%;
}

.owner_id {
  font-weight: 700;
  font-size: 18px;
}

.sw-single-right {
  padding-left: 100px;
}

.row-reverse .sw-single-right {
  padding-left: 0;
}

.create-box .form-group {
  margin-bottom: 10px;
}

.cmn-box-each {
  margin-bottom: 35px;
  padding: 25px 30px 40px;
  border: 1px solid #89C131;
  border-radius: 20px;
  position: relative;
}

.cmn-box-each:last-child {
  margin-bottom: 0;
}

.gift-form-wrapper {
  border-bottom: 0;
  padding-bottom: 30px;
}

.gift-form-heading {
  position: absolute;
  display: inline-block;
  line-height: 1;
  font-size: 22px;
  color: #000;
  background: #fff;
  padding: 5px 10px;
  top: -16px;
  left: 30px;
}

/*-  SM 04_10_24  -*/

.blg-sec {
  padding: 52px 0 100px;
  position: relative;
  z-index: 1;
}

.blg-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 553px;
  background-color: #F9F9F9;
  z-index: -1;
}

.blg-hd-top {
  width: 100%;
  max-width: 918px;
  margin: 0 auto 76px;
}

.text-center {
  text-align: center;
}

.blg-hd-top p,
.blg-hd-top h1 {
  color: #000;
}

.blg-hd-top h1 {
  font-size: 63px;
  font-weight: 700;
  color: #89C131;
}

.blg-cd-box {
  padding: 50px 57px 50px 50px;
  background: #FFFFFF;
  box-shadow: 0px 4px 34px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}

.blg-cd-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.blg-cd-box-img {
  width: 49%;
}

.blg-cd-box-cont {
  width: 51%;
  padding-left: 60px;
}

.blg-cd-link {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.blg-cd-link img {
  width: 100%;
  /* object-fit: cover; */
}

.blog-name {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.3em;
  text-transform: capitalize;
  color: #89C131;
  display: inline-block;
  margin-bottom: 14px;

  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blg-cd-box-cont p {
  color: #2A2A2E;
}

.blg-cd-date {
  display: flex;
  align-items: start;
  margin-bottom: 14px;
}

.blg-cd-img {
  width: 18px;
  flex-shrink: 0;
}

.blg-cd-img img {
  width: 100%;
}

.blg-cd-text {
  padding: 1px 0 0 9px;
}

.blg-cd-text span {
  display: inline-block;
  line-height: 1.1;
  font-weight: 500;
  font-size: 19px;
}

.blg-cd-col {
  margin-bottom: 40px;
}

.blg-cd-col:last-child {
  margin-bottom: 0px;
}

.blog-item-wrap {
  position: relative;
}

.lv-top-rgt {
  position: absolute;
  bottom: 100%;
  left: 100%;
  margin: 0 0 47px 24px;
  max-width: 203px;
  z-index: -1;
  pointer-events: none;
}

.lv-top-lft {
  position: absolute;
  bottom: 100%;
  right: 100%;
  margin: 0 86px 86px 0px;
  max-width: 63px;
  z-index: -1;
  pointer-events: none;
}

.lv-top-lft-three {
  position: absolute;
  top: 30%;
  right: 99%;
  margin: 0 0 47px 24px;
  max-width: 203px;
  z-index: -1;
  pointer-events: none;
}

.lv-top-lft-four {
  position: absolute;
  top: 40%;
  left: 100%;
  margin-left: 46px;
  max-width: 63px;
  z-index: -1;
  pointer-events: none;
}

.blog-dtl-img {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 40px;
}

.blog-dtl-img img {
  width: 100%;
  object-fit: cover;
}

.blog-dtl-sec {
  padding: 80px 0 0;
}

.blog-dtl-wrap {
  position: relative;
  z-index: 1;
}

.blog-dtl-wrap h1 {
  line-height: 1.1;
  color: #89C131;
  font-size: 63px;
  font-weight: 700;
  margin-bottom: 40px;
}

.blog-dtl-wrap h2,
.blog-dtl-wrap h3,
.blog-dtl-wrap h4,
.blog-dtl-wrap h5 {
  color: #000000;
}

.blog-dtl-wrap p {
  color: #000000;
}

.blg-cd-box-cont strong,
.blog-dtl-wrap h2 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 700;
  display: inline-block;
}

.blog-dtl-wrap .lv-top-lft {
  bottom: 94%;
  margin: 0 86px 0 0px;
}

.blog-dtl-wrap .lv-top-rgt {
  bottom: 91%;
  margin: 0 0 0 24px;
}

.blog-dtl-wrap .lv-top-lft-three {
  top: 43%;
  right: 98.9%;
  margin: 0 0 0 24px;
}

.blog-dtl-wrap .lv-top-lft-four {
  top: 56%;
  left: 99%;
}

.related-blog {
  padding: 100px 0;
}

.js-related-blog-slider .slick-list {
  margin: -20px;
}

.related-blog-col {
  padding: 20px;
}

.js-related-blog-slider .slick-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid #DCE0D6;
  z-index: 11;
  top: unset;
  bottom: 104%;
  transition: all 0.3s ease-in-out;
}

.js-related-blog-slider .slick-arrow:focus {
  outline: none;
}

.js-related-blog-slider .slick-arrow:hover {
  border-color: #89C131;
  filter: brightness(0) saturate(100%) invert(68%) sepia(73%) saturate(444%) hue-rotate(37deg) brightness(91%) contrast(86%);
}

.related-blog h2 {
  margin-bottom: 40px;
}

.js-related-blog-slider .slick-next {
  right: 0;
}

.js-related-blog-slider .slick-prev {
  right: 44px;
  margin-right: 20px;
}

.js-related-blog-slider .blg-cd-img {
  margin-top: 5px;
}

.blog-text {
  margin-bottom: 30px;
  display: block;
  width: 100%;
}

.header .logo.web-logo {
  width: 390px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  z-index: 9;
}

.navbar-brand {
  padding: 0;
  margin: 0;
  width: 250px;
  flex: 0 0 auto;
}

.redeem-logo-link {
  width: 110px;
  height: 100%;
  flex: 0 0 auto;
  margin-left: 30px;
}

.navbar-nav>li {
  padding-left: 30px;
}

.js-related-blog-slider .slick-track {
  display: flex !important;
}

.js-related-blog-slider .slick-slide {
  height: auto;
}

.js-related-blog-slider .blg-cd-box,
.js-related-blog-slider .related-blog-col,
.js-related-blog-slider .slick-slide>div {
  height: 100%;
}

/* for banner */

.banner {
  z-index: 1;
}

.for-lands {
  position: relative;
  top: unset;
  left: unset;
  padding: 80px 0;
  height: inherit;
}

.for-lands-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.for-lands-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*-  SM 04_10_24 end -*/

/*-  SM 08_10_24 str -*/

.blg-cd-box-cont h1 {
  font-size: 33px;
}

.blg-cd-box-cont h2 {
  font-size: 28px;
}

.blg-cd-box-cont h3 {
  font-size: 23px;
}

.blg-cd-box-cont h4 {
  font-size: 18px;
}

.blg-cd-box-cont h5 {
  font-size: 16px;
}

.blg-cd-box-cont h6 {
  font-size: 16px;
}

/* 08/09/2024 dm */
/* .blg-cd-link {
  height: 400px;
} */
/* 08/09/2024 dm */

.blg-cd-link img {
  height: 100%;
  width: 100%;
  /* object-fit: cover; */
}

/* 08/09/2024 dm */
/* .blog-dtl-img {
  height: 600px;
} */
/* 08/09/2024 dm */

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

/*-  SM 08_10_24 end -*/
/* 08/09/2024 dm */
.home-banner-row {
  padding: 40px 0;
}

.blg-cd-link {
  height: 330px;
}

.blog-dtl-img {
  height: 440px;
}

/* 08/09/2024 dm */

/* 31/10/24 work start */


.blg-top-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.blg-top-lft-col {
  width: 50%;
}

.blg-top-rgt-col {
  width: 50%;
  padding: 25px 25px 25px 80px;
  align-self: center;
  text-align: center;
}

.blg-top-rgt-col h1 {
  color: #000;
  font-size: 65px;
  margin: 0px;
  font-weight: 400;
}

.blog-dtl-top-banner .blog-dtl-img {
  margin: 0px;
  border-radius: 0px;
  height: auto;
}

.blog-dtl-top-banner {
  padding-top: 60px;
}

/* 31/10/24 work end */

/* AD 08/11/2024 */
.style-elm-wpr {
  border: 1px solid #84c341;
  border-radius: 10px;
  padding: 20px 25px;
}

.style-elm-wpr select#fontStyle {
  width: 100%;
  border: 1px solid #cccccc;
  height: 45px;
  border-radius: 5px;
  padding: 0 10px;
  background-size: 11px;
  appearance: none;
  margin-bottom: 15px;
  color: #222;
}

.style-elm-wpr p {
  font-size: 20px;
  color: #393939;
  font-weight: 500;
}

.style-elm-wpr p:not(:last-child) {
  margin-bottom: 8px;
}

.style-elm-row.row {
  margin-bottom: -20px;
}

.style-elm-col {
  margin-bottom: 20px;
}

.each-style-elm {
  height: 100%;
}

.each-style-elm.border-btm {
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e5e5;
}

.each-style-elm.border-rht {
  border-right: 1px solid #e5e5e5;
}

.each-style-elm .edit_btn-new {
  font-size: 19px;
  margin-left: 6px;
  cursor: pointer;
}

.each-style-elm .color_picker,
.each-style-elm .color_picker2 {
  top: 0;
  right: 25px;
  bottom: auto;
  left: auto;
}

.each-style-elm .title_color_cc,
.each-style-elm .desc_color_cc {
  font-size: 18px;
}

.half-opacity {
  opacity: 0.35;
}

.each-style-elm .trans-check-wpr {
  display: flex;
  align-items: center;
}

.each-style-elm .trans-check-wpr input[type="checkbox"] {
  flex: 0 0 auto;
  margin-left: 10px;
}

.each-style-elm .trans-check-wpr p {
  margin: -1px 0 0 !important;
}

/* AD 08/11/2024 END */

.banner_div p a {
  color: #5d9b32;
}

.read-more-link {
  color: #5d9b32;
}

/* CSS Modification 09.12.24 */
.dish-slider-alt .slick-slide {
  padding: 0 10px;
}

.dish-slider-alt .slick-list {
  margin: 0 -10px;
}

.resp-tabs-list.dish-slider-alt li a {
  height: 144px;
}

.resp-tabs-list.dish-slider-alt li a img {
  margin-bottom: 6px;
}

.rltd_trees_mob_vew {
  display: none;
}

/* CSS Modification 09.12.24 */
/*support 16/12/2024*/
.crdtcard-butn-wrapr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;

}

.crdtcard-butn-bx {
  border-radius: 15px;
  padding: 12px 15px;
  background-color: #f3f3f3;
  max-width: 340px;
}

.crdtcard-butn-bx ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
  margin: 0 -4px -4px -4px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.crdtcard-butn-bx ul li {
  list-style: none;
  padding: 0 4px 4px 4px;
  margin-bottom: 0;
  width: 25%;
}

.crdtcard-butn-bx ul li::before {
  display: none;
}

.crdtcard-butn-bx ul li .crdtcard-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 1px solid #cccccc;
  padding: 6px;
  width: 100%;
  height: 45px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 5px;
}

.crdtcard-butn-bx ul li .crdtcard-icon img {
  max-width: 50px;
}

/*support 16/12/2024*/
/* sg-08-jan-2025 */
.video-sec .left-video-sec {
  position: relative;
  padding-top: 56%;
}

.video-sec .left-video-sec iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* sg-08-jan-2025 */
/*support pp.c 6/2/2024*/
.subscribe-pkg-tab .nav-item {
  margin-right: 0;
}

.subscribe-pkg-tab .nav-link {
  padding: 8px 30px;
  font-size: 18px;
  /* border:1px solid #5E3120; */
  border-radius: 0;
  border-top: 1px solid #5E3120;
  border-bottom: 1px solid #5E3120;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  color: #5E3120;
  transform: skew(-18deg);
  -ms-transform: skew(-18deg);
  -webkit-transform: skew(-18deg);
  padding: 8px 25px;
  min-width: 150px;
  text-align: center;
  background-color: #f9f9f9;
}

.subscribe-pkg-tab .nav-link span {
  transform: skew(18deg);
  -ms-transform: skew(18deg);
  -webkit-transform: skew(18deg);
  display: inline-block;
}

.subscribe-pkg-tab .nav-link:hover {
  border-top-color: #5E3120;
  border-bottom-color: #5E3120;
}

.subscribe-pkg-tab .nav-item:first-child .nav-link {
  border-left: 1px solid #5E3120;
}

.subscribe-pkg-tab .nav-item:last-child .nav-link {
  border-right: 1px solid #5E3120;
}

.subscribe-pkg-tab .nav-link.active {
  border: 1px solid #89C131;
  background-color: #89C131;
  color: #fff;
}

.subscribe-pkg-tab .nav-item:first-child .nav-link.active {
  border-left-color: #89C131;
}

.subscribe-pkg-tab .nav-item:last-child .nav-link.active {
  border-right-color: #89C131;
}

.subscribe-pkg-tab .tab-container {
  border-bottom: 1px solid #dee2e6;
  margin: 20px 0 30px;
}

.subscription-package.subscribe-pkg-tab .nav-tabs {
  border-bottom: 0;
  margin: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/*support pp.c 6/2/2024*/
/*support pp.c 7/2/2024*/
.freesvgimg {
  text-align: center;
  background-color: var(--primaryColor);
  max-width: 76%;
  margin: 22px auto;
  text-transform: uppercase;
  font-weight: 500;
  color: #ffffff;
  padding: 4px 20px;
  box-shadow: 0px 15px 20px rgb(129 202 16 / 20%);
  -webkit-box-shadow: 0px 15px 20px rgb(129 202 16 / 20%);
  letter-spacing: 1px;
  transform: skew(-18deg);
  -ms-transform: skew(-18deg);
  -webkit-transform: skew(-18deg);
}

.freesvgimg span {
  transform: skew(18deg);
  -ms-transform: skew(18deg);
  -webkit-transform: skew(18deg);
  display: inline-block;
}

/*support pp.c 7/2/2024*/


/* 27/02/2025 start */

.sign-popup form {
  max-width: 600px;
  margin: 0 auto;
}

/* 27/02/2025 start */

/* support starts 24.03.2025  */
.banner {
  /* min-height: 600px; */
  background-color: #E7E7E7;
}

.yt-video-bnnr {
  width: 100%;
  height: 350px;
  max-width: 640px;
  margin: 0 auto;
}

.yt-video-bnnr iframe {
  width: 100%;
  height: 100%;
}

.invitn-btn-edit {
  display: inline-block !important;
  background: #89C131 !important;
  padding: 12px 60px !important;
  color: #fff !important;
  border-radius: 3px !important;
  transform: skew(-18deg) !important;
  -ms-transform: skew(-18deg) !important;
  -webkit-transform: skew(-18deg) !important;
  box-shadow: 0px 15px 20px rgb(129 202 16 / 20%) !important;
  -webkit-box-shadow: 0px 15px 20px rgb(129 202 16 / 20%) !important;
  -moz-box-shadow: 0px 15px 20px rgb(129 202 16 / 20%) !important;
  font-size: 14px !important;
}

.facebook-icon {
  display: inline-block;
  width: 34px;
  height: 34px;
  background-color: #3b5998;
  color: white;
  text-align: center;
  line-height: 36px;
  border-radius: 4px;
  font-size: 18px;
  transition: background-color 0.3s;
}

.facebook-icon:hover {
  background-color: #2d4373;
  text-decoration: none;
  color: white;
  padding: 8px;
  border-radius: 4px;
  width: 31px;
  text-align: center;
  opacity: .8;
  top: -4px;
  position: relative;
}

/* #st-1 .st-btn[data-network='facebook']{
  display: none !important;
} */

/* .st-btn .st-first .st-remove-label{
  display: none !important;
} */

/* 30-04-2025 M.M Css Start */
.new-testmonials-slider-outer {
  margin-bottom: 50px;
  position: relative;
}

.new-testmonials-slider .slick-list {
  margin: 0 -25px;
}

.new-testmonials-slider .new-testminials-item {
  padding: 0 25px;
}

.new-testmonials-card {
  text-align: center;
}

.new-testmonials-card>figure {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
}

.new-testmonials-card>figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.new-testmonials-slider-outer .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  outline: none;
  z-index: 9;
  background-color: #ffffff;
}

.new-testmonials-slider-outer .slick-prev {
  left: -80px;
}

.new-testmonials-slider-outer .slick-next {
  right: -80px;
}

/* 30-04-2025 M.M Css End */




/* 02-05-2025 S.Mv Css Start */
.row.uploaded_image_show.recipe_row {
  width: auto !important;
}

.profile-top .recipe_row .opload_image_sec img,
.recipe_row .opload_image_sec img {
  height: 80px;
}

.recipe_row .opload_image_sec {
  width: 100%;
}

/* 02-05-2025 S.Mv Css End */


/* 02/06/2025 S.Mv Css Start */
.redeem-outer {
  padding-top: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.redeem-inr {
  box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.04);
  -webkit-box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.04);
  padding: 40px 30px 40px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.redeem-upr {
  margin-bottom: 30px;
}

.redeem-upr p {
  font-size: 14px;
}

.redeem-frn-inr {
  transform: skew(-18deg);
  -ms-transform: skew(-18deg);
  -webkit-transform: skew(-18deg);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px;
  position: relative;
}

.redeem-frn-inr input[type="text"] {
  transform: skew(18deg);
  -ms-transform: skew(18deg);
  -webkit-transform: skew(18deg);
  border: 0;
  height: 45px;
}

.redeem-frn-inr .form-group {
  margin: 0;
  width: 680px;
}

.redeem-frn-inr .btn.send-btn {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}

.redeem-frn-inr .text-danger {
  position: absolute;
  bottom: -34px;
  left: 20px;
  font-size: 14px;
  transform: skew(18deg);
  -ms-transform: skew(18deg);
  -webkit-transform: skew(18deg);
}

.redeem-clear-btn {
  position: absolute;
  top: 50%;
  right: 25%;
  transform: skew(18deg) translateY(-50%);
  -ms-transform: skew(18deg) translateY(-50%);
  -webkit-transform: skew(18deg) translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.redeem-clear-btn img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
  width: 8px;
}

.redeem-clear-btn.active {
  display: flex;
}



/* 02/06/2025 S.Mv Css End */

/* pro 24-6-25 start */
.cmn-hdr p {
  width: 100%;
  margin: 0 0 10px;
}

.cmn-hdr p:last-child {
  margin-bottom: 0;
}

.gift-item-video-wpr {
  margin-bottom: 30px;
}

.gift-item-video-wpr:last-child {
  margin-bottom: 0;
}

.gift-item-video-inr {
  position: relative;
  padding-top: 37%;
  max-width: 900px;
  margin: 0 auto;
}

.gift-item-video-inr iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.gift-item-sec .main-heading {
  margin-bottom: 30px;
}

/* pro 24-6-25 end */

/* 30/1/25 work start */
.cmn-wrap-theme-black .cmn-box.dim-outr {
  color: #000;
}

.cmn-wrap-theme-black .profile-btm.dim-btm h6 {
  color: #000;
}

.cmn-wrap-theme-black .card-hdr-2 {
  color: #000;
}

.cmn-wrap-theme-black .dim_btm_cc_clr {
  color: #000 !important;
}

.cmn-wrap-theme-black .recipe_description_box .card-innr figure {
  filter: brightness(0);
}

/* 30/1/25 work end */

.mobile-logo-wrppr {
  display: none;
}

.qr-text-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-box {
  margin: 15px 0;
}

.qr-btn {
  margin-top: 10px;
  padding: 10px 25px;
}

.permission-link {
  margin-top: 12px;
  font-size: 16px;

}

.qr-btn-list-outer {
  margin-top: 15px;
}

.qr-btn-list-outer ul {
  list-style: none;
  margin: -5px;
}

.qr-btn-list-outer ul li::before {
  display: none;
}

.qr-btn-list-outer ul li {
  width: 100%;
  text-align: center;
  padding: 5px;
  margin: 0;
}

/* 10.02.26 start */

.gift-card-link-wrppr {
  max-width: 890px;
  margin: -85px auto 0;
}

.gift-card-link {
  display: block;
  position: relative;
  max-width: 180px;
  margin-left: auto;
  z-index: 1;
}

.gift-card-link img {
  width: 100%;
}

.gift-card-link span {
  color: #E5B43A;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  max-width: 135px;
  width: 100%;
}

/* 10.02.26 end */
/* 11.2.26 */
.redeem-outer.gap-btmredem {
  padding-bottom: 50px;
  /* text-align: center; */
}

.redeem-outer.gap-btmredem img {
  border-radius: 12px;
  margin: 20px 0;
}

/* CSS Modification 12.2.26 */
.nw_lnd h1 {
  font-size: 58px;
}

/* CSS Modification 12.2.26 */

.membership-note {
  font-size: 14px;
  font-weight: 500;
  padding: 0 0 6px 0;
}
.crrnt-plan-sec {
    text-align: center;
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
}
/*----------------Responsive css-------------------*/

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1300px;
  }
}

@media (min-width: 1900px) {
  .container {
    max-width: 1400px;
  }
}

@media (max-width: 1900px) {

  .create-my-cookbook .trumbowyg-editor,
  .create-my-cookbook .trumbowyg-textarea {
    height: 275px !important;
    min-height: 275px !important;
  }

  .hdr-right .navbar-nav>li {
    padding-left: 50px;
  }
}

@media screen and (max-width: 1800px) {
  h1 {
    /*font-size: 70px;*/
    font-size: 50px;
  }

  .contact-block .cms_pages .main-heading h1 {
    font-size: 50px !important;
  }

  .ingredient-bginner {
    width: 700px;
    margin-bottom: 50px;
  }

  .cookbook-number {
    width: 50px;
    height: 50px;
  }

  .cookbook-info {
    width: calc(100% - 50px);
    padding-left: 12px;
  }

  .recipe-info {
    padding-left: 170px;
  }

  .time-img {
    width: 740px;
  }

  .time-imginner:before {
    width: 640px;
    height: 632px;
    left: 0;
  }

  .time-imginner:after {
    width: 590px;
    height: 626px;
  }

  .time-imginner img {
    width: 570px;
  }

  .time-img:after {
    right: 110px;
    width: 280px;
    height: 280px;
    bottom: 40px;
  }

  .time-section {
    min-height: 750px;
  }

  .time-leftinfo {
    padding-top: 150px;
  }

  .ingredient-info {
    padding: 50px 0
  }

  .ingrediants-block {
    padding-bottom: 100px;
  }

  .ingredient-mainheading .main-heading {
    padding-left: 110px;
  }

  .time-section {
    background-size: 22%;
  }

  .cheerful-ban:after {
    width: 750px;
    height: 750px;
    top: 60px;
  }

  .cheerful-ban {
    margin: 40px 0 0;
  }

  .grey-security-icon {
    width: 270px;
    height: 270px;
  }

  .cheerful-ban:before {
    width: 600px;
    height: 600px;
  }

  .recipe-safeblock .col-lg-6:first-child {
    padding-right: 120px;
  }

  .about-info {
    padding: 275px 0 60px;
  }

  h4 {
    font-size: 18px;
  }

  .memebership-list h3 {
    font-size: 19px;
  }

  .membrship-listing li span {
    font-size: 12px;
  }

  .memebership-list p {
    font-size: 13px;
    line-height: 1.9;
    text-align: center;
  }

  .about-number {
    width: 80px;
    height: 80px;
  }

  .sign-in-block:after {
    width: 55.5%;
  }

  .sign-popup {
    max-width: 750px;
    /* padding: 53px 120px; */
  }

  /* SM 04_10_24 */
  .lv-top-rgt {
    left: 97%;
    margin: 0 0 47px 0px;
    max-width: 163px;
  }

}

@media screen and (max-width: 1700px) {
  .recipe-info {
    padding-left: 170px;
  }

  .main-heading {
    margin-bottom: 10px;
    /*margin-bottom: 30px;*/
  }

  .banner-img img {
    min-height: 724px;
  }

  .shp2,
  .shp3 {
    width: 140px;
  }

  /* SM 04_10_24 */
  .lv-top-rgt {
    left: 94%;
  }

  .lv-top-lft {
    margin: 0 0 76px 0px;
  }

  .lv-top-lft-three {
    top: 30%;
    right: 98%;
    margin: 0 0 47px 0;
    max-width: 103px;
  }

  .lv-top-lft-four {
    margin-left: 0;
  }

}

@media screen and (max-width: 1480px) {
  h4 {
    font-size: 17px;
    /* text-align: center; */
  }

  .cookbook-item {
    width: calc(50% - 14px);
    padding: 15px 12px;
    margin: 26px 7px 0;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
  }

  .navbar-nav>li {
    padding-left: 26px;
  }

  h2 {
    font-size: 40px;
  }

  .ingredient-bginner {
    width: 600px;
  }

  .time-imginner:after {
    width: 525px;
    height: 527px;
  }

  .time-imginner:before {
    width: 575px;
    height: 499px;
    left: 0;
  }

  .time-imginner img {
    width: 450px;
  }

  .time-img {
    width: 650px;
  }

  .time-section {
    background-size: 20%;
    min-height: 650px;
  }

  .cheerful-ban:after {
    width: 640px;
    height: 640px;
  }

  .cheerful-ban:before {
    width: 550px;
    height: 550px;
  }

  .cheerful-img {
    width: 450px;
  }

  .book-icon {
    width: 110px;
    height: 110px;
  }

  .book-icon img {
    width: 50px;
  }

  .membrship-listing li {
    padding-left: 23px;
  }

  .membrship-listing {
    font-size: 13px;
  }

  .sign-in-block:after {
    width: 54%;
  }

  .banner-img img {
    /*min-height: 624px;*/
    min-height: 500px;
  }

  .font-wgh {
    font-size: 19px;
  }

  /* SM 04_10_24 */
  .blog-dtl-wrap .lv-top-rgt {
    bottom: 95%;
    margin: 0 0 0 0;
    left: 96%;
    max-width: 123px;
  }

  .blog-dtl-wrap .lv-top-lft {
    margin: 0 16px 0 0px;
  }

}

/* 30-04-2025 M.M  Css Start */
@media (max-width: 1399px) {
  .new-testmonials-slider-outer .slick-prev {
    left: 0;
  }

  .new-testmonials-slider-outer .slick-next {
    right: 0;
  }

  .new-testmonials-slider {
    padding: 0 50px;
  }

  .form-groupsearch {
    width: 350px;
  }

}

/* 30-04-2025 M.M  Css End */

@media screen and (max-width: 1199px) {
  .tree_btn_wrap .create-btn {
    margin-bottom: 10px;

  }

  .logo {
    width: 110px;
  }

  .blog-dtl-img {
    height: auto;
  }

  .form-groupsearch {
    width: 330px;
  }

  .navbar-nav .nav-link {
    font-size: 14px;
  }

  .navbar-nav .nav-item .nav-link::before {
    width: 19px;
    height: 13px;
  }

  .navbar {
    padding: 30px 0 0;
  }

  body {
    font-size: 14px;
  }

  h1 {
    font-size: 55px;
  }

  .create-btn {
    padding: 10px 37px;
  }

  .banner-img img {
    min-height: 550px;
  }

  .about-img::before,
  .about-img::after {
    width: 50%;
    height: 40%;
  }

  .about-img {
    padding: 40px 0;
  }

  .about-info {
    padding: 150px 0 60px 30px;
  }

  .cookbook-section {
    padding: 80px 0;
  }

  .time-img::before {
    width: 38%;
    height: 40%;
  }

  .ingredient-info {
    padding: 50px 30px;
  }

  .grey-security-icon {
    width: 235px;
    height: 235px;
  }

  h2 {
    font-size: 35px;
  }

  .gplay-btn {
    padding: 10px 15px;
  }

  .subheading {
    font-size: 20px;
    margin-bottom: 26px;
  }

  .recipe-img {
    height: 617px;
  }

  h3 {
    font-size: 22px;
    line-height: 32px;
  }

  .about-numberingitems p {
    padding-right: 20px;
  }

  .about-numberingitems h3 {
    font-size: 18px;
  }

  .recipe-info {
    padding-left: 142px;
    padding-right: 20px;
  }

  .contact-addblock p {
    font-size: 16px;
  }

  .contact-addicon {
    margin-bottom: 20px;
    min-height: 58px;
  }

  .memebership-list h3 {
    font-size: 19px;
  }

  .subscription-block .create-btn {
    padding: 9px 27px;
  }

  .membrship-listing {
    margin-bottom: 30px;
    padding-top: 20px;
  }

  .subscription-blockup {
    padding: 90px 0 250px;
  }

  .cmn-sub-hdr {
    font-size: 28px;
  }

  .cmn-sb-inn {
    font-size: 19px;
  }

  .search-results-box {
    margin-bottom: 40px;
  }

  .cmn-box {
    padding: 30px;
  }

  .hdr-right .navbar-nav>li {
    padding-left: 30px;
  }

  .profile-hd {
    padding-left: 50px;
  }

  .profile-hd a {
    font-size: 15px;
  }

  .cmn-box.create-box {
    padding: 85px 120px;
  }

  .upload-box {
    height: 280px;
  }

  .form-check-innr .radio-pro {
    margin-right: 27px;
    font-size: 19px;
    padding-left: 35px;
  }

  .gal-box-bottom .upload-box {
    height: 160px;
  }

  .add-more-link.bg {
    font-size: 24px;
  }

  .main-heading.sml {
    font-size: 30px;
  }

  .create-box.recipe-hlp-form {
    padding: 40px 0 0;
  }

  .up-innr {
    padding-bottom: 50px;
    margin-bottom: 50px;
  }

  .shp2,
  .shp3 {
    width: 91px;
  }

  .fm-tree-sec .shp4.ps2 {
    width: 60px;
  }

  .create-box label {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .create-box .form-group {
    margin-bottom: 30px;
  }

  .create-box .form-control {
    height: 56px;
  }

  .create-box select.form-control:not([size]):not([multiple]) {
    height: 56px;
  }

  .main-heading.sml {
    font-size: 26px;
    /*margin-bottom: 22px;*/
  }

  .profile-box h6 {
    font-size: 20px;
  }

  .our-recipe-book-txt .main-heading.fn {
    font-size: 38px;
    max-width: 300px;
  }

  .main-heading.sml-font {
    font-size: 28px;
  }

  .drag-top-hdr {
    margin-bottom: 39px;
  }

  .drg-box p {
    margin: 14px 0 0;
    font-size: 16px;
  }

  .drag-otr {
    padding-bottom: 40px;
    margin-bottom: 33px;
  }

  .our-recipe-book-sec .container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .card-para {
    font-size: 15px;
  }

  .card-hdr {
    font-size: 17px;
  }

  .cmn-list li {
    font-size: 15px;
    margin-bottom: 9px !important;
  }

  .rcpe-outr {
    padding: 0 40px;
  }

  .tree-member figure {
    width: 85px;
    height: 85px;
  }

  .tree-member p {
    font-size: 12px;
    padding: 8px 7px;
  }

  .family-tree-innr.tree2 p {
    min-width: 73px;
  }

  .mm-pic img {
    padding: 12px;
  }

  .video-view-holder .gal-outr .gal-innr>* {
    min-height: 150px;
  }

  /* 16/1/2023 Start */
  .same-height .form-group label {
    min-height: 60px;
  }

  .same-height .select2-container--default .select2-selection--multiple {
    height: 56px !important;
    min-height: auto !important;
    align-items: center;
  }

  .same-height .select2-container {
    width: 100% !important;
  }

  .same-height .select2-container--default .select2-search--inline .select2-search__field {
    line-height: 1;
    margin-top: 13px;
  }

  /* 16/1/2023 End */

  /* css update start RN 20-02-2024 */
  .create-box .form-group {
    margin-bottom: 10px;
  }

  .sw-single-right {
    padding-left: 0;
  }

  /* css update end RN 20-02-2024 */
  /* SM 04_10_24 */
  .blg-cd-box {
    align-items: flex-start;
    padding: 30px;
  }

  .blg-cd-box-img {
    width: 50%;
  }

  .blg-cd-box-cont {
    width: 50%;
    padding-left: 30px;
  }

  .blog-name {
    font-size: 35px;
  }

  .blg-cd-text span {
    font-size: 16px;
  }

  .blg-hd-top h1 {
    font-size: 50px;
  }

  .blg-hd-top {
    margin: 0 auto 50px;
  }

  .lv-top-rgt {
    left: 91%;
    max-width: 103px;
    margin: 0 0 107px 0px;
  }

  .lv-top-lft {
    margin: 0 0 -14px 0px;
    right: 96%;
  }

  .lv-top-lft-three {
    top: 23%;
    right: 92%;
  }

  .lv-top-lft-four {
    top: 23%;
    left: 96%;
  }

  /* SM 04_10_24 */

  .blg-cd-box-img {
    width: 40%;
  }

  .blg-cd-box-cont {
    width: 60%;
  }

  .blog-name {
    font-size: 30px;
    margin-bottom: 8px;
  }

  .blg-cd-date {
    margin-bottom: 8px;
  }

  .blog-dtl-wrap h1 {
    font-size: 50px;
  }

  .blog-dtl-sec {
    padding: 60px 0 0;
  }

  .blog-dtl-wrap .lv-top-lft {
    margin: 0 0 0 0px;
    bottom: 98%;
  }

  .blog-dtl-wrap .lv-top-rgt {
    bottom: 98%;
    left: 93%;
    max-width: 73px;
  }

  .blog-dtl-wrap .lv-top-lft-three {
    top: 33%;
    right: 97%;
    margin: 0 0 0 24px;
    max-width: 63px;
  }

  .blog-dtl-wrap .lv-top-lft-four {
    top: 46%;
    left: 95%;
  }

  .related-blog {
    padding: 70px 0;
  }

  .header .logo.web-logo {
    /* width: 150px; */
    width: 280px;
    position: absolute;
    top: 60px;
    z-index: 99;
  }

  .navbar-brand {
    width: 180px;
  }

  .redeem-logo-link {
    width: 70px;
    margin-left: 15px;
  }

  .navbar-nav>li {
    padding-left: 13px;
  }


  .for-lands {
    padding: 60px 0;
  }

  .blg-cd-link {
    height: 311px;
  }

  /* 31/10/24 work start */
  .blg-top-rgt-col h1 {
    font-size: 30px;
  }

  /* 31/10/24 work end */

  /*support pp.c 6/2/2024*/
  .subscribe-pkg-tab .tab-container {
    margin-top: 40px;
  }

  .freesvgimg {
    max-width: 90%;
  }

  /*support pp.c 6/2/2024*/

  /* 30-04-2025 M.M Css Start */
  .new-testmonials-slider {
    padding: 0 30px;
  }

  .new-testmonials-slider-outer .slick-prev {
    left: -18px;
  }

  .new-testmonials-slider-outer .slick-next {
    right: -18px;
  }

  /* 02-05-2025 M.M Css End */
  .uploaded_image_show>div {
    width: 33.33%;
    flex: inherit;
    max-width: 33.33%;
  }

  .profile-top .recipe_row .opload_image_sec img,
  .recipe_row .opload_image_sec img {
    height: 70px;
  }

  /* 02-05-2025 s.M Css End */


  /* 30-04-2025 s.M Css End */




  /* 02/06/2025 S.Mv Css Start */
  .redeem-frn-inr .form-group {
    width: 610px;
  }

  /* 02/06/2025 S.Mv Css End */

}



/* 27/02/2025 start */

.block-sign-up .main-heading {
  font-size: 2.61vw;
}

.block-sign-up:after {
  width: 52.5%;
}

/* 27/02/2025 end */




@media screen and (max-width: 1080px) {
  .mm-pic img {
    padding: 14px;
  }
}

@media screen and (max-width: 991px) {
  .navbar-toggler {
    border: none;
  }

  .stick,
  .stick:after,
  .stick:before {
    width: 30px;
    height: 2px;
    background: #000;
    position: absolute;
    right: 14px;
    top: auto;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    border-radius: 5px;
  }

  .stick:before {
    content: '';
    top: -10px;
    left: 0;
  }

  .stick:after {
    content: '';
    top: 10px;
    left: 0;
  }

  .navbar-collapse {
    position: fixed;
    left: -100%;
    top: 0;
    background: #fff;
    -webkit-transition: 0.3s all ease-in-out 0s;
    -o-transition: 0.3s all ease-in-out 0s;
    transition: 0.3s all ease-in-out 0s;
    z-index: 999;
    height: 100%;
    width: 100%;
    padding: 20px 30px;
    overflow-y: scroll;
    margin: 0;
  }

  .mobile_hd_hd {
    display: block;
    padding-top: 20px;
    width: 100%;
  }

  .for-lands {
    padding: 50px 0;
  }

  .mobile-menu-close.mobileMenuClose {
    background: transparent !important;
    min-width: inherit;
    padding: 0;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    border: 0 !important;
    margin-top: 0;
    cursor: pointer;
    border: none;
    font-size: 26px;
    color: #000;
    display: table;
    margin-left: auto;
  }

  .navbar-nav>li {
    margin-right: 0;
  }

  .navbar-collapse.show {
    left: 0;
    -webkit-transition: 0.3s all ease-in-out 0s;
    -o-transition: 0.3s all ease-in-out 0s;
    transition: 0.3s all ease-in-out 0s;
    overflow-y: scroll;
    text-align: center;
  }

  .navbar-nav>li .sub-menu {
    position: relative;
    top: auto;
    width: 100%;
  }

  .sub-btn {
    padding: 10px 25px;
  }

  .form-groupsearch {
    width: 295px;
    margin-right: 0;
  }

  .form-search-label {
    width: calc(100% - 95px);
  }

  .logo {
    width: 92px;
  }

  .form-inline {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 90px;
    pointer-events: none;
  }

  .form-inline>* {
    pointer-events: all;
  }

  /* .form-signbtn {
    margin-right: 60px;
    margin-top: 20px;
  } */

  .navbar {
    padding: 0;
  }

  .navbar-toggler {
    position: absolute;
    right: 0;
    bottom: 30px;
    z-index: 888;
    padding: 0;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .navbar-toggler:hover {
    background: none;
  }

  .navbar-nav>li:first-child {
    padding-left: 26px;
  }

  .navbar-nav>li {
    text-align: left;
    margin: 10px 0;
  }

  .navbar-nav .nav-item .nav-link::before {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    left: 0;
    right: 0;
    margin: auto;
    top: -8px;
  }

  .navbar-nav .nav-item .nav-link {
    display: inline-block;
  }

  .banner-img img {
    min-height: 465px;
  }

  h1 {
    font-size: 40px;
  }

  .banner-overlay h1 {
    margin-bottom: 20px;
  }

  .banner-inner p {
    margin-bottom: 20px;
    width: 66%;
  }

  .about-info .main-heading {
    font-size: 36px;
  }

  .about-inner {
    max-width: 100%;
    padding-left: 0;
  }

  .about-info {
    max-width: 100%;
    position: static;
  }

  .about-info {
    padding: 40px 30px;
    text-align: center;
  }

  .cookbook-section {
    padding: 60px 0;
    text-align: center;
  }

  .cookbook-info {
    width: 100%;
    padding-left: 0;
  }

  .cookbook-item {
    display: block !important;
  }

  .cookbook-number {
    margin-bottom: 15px;
  }

  .time-leftbar {
    position: static;
  }

  .time-leftinfo {
    padding: 40px 0;
    text-align: center;
  }

  .time-innerinfo {
    width: 100%;
  }

  .ingredient-bg {
    position: static;
  }

  .ingredient-mainheading {
    padding: 50px 0 0;
  }

  .ingredient-bginner {
    padding-top: 0;
    margin-bottom: 15px;
  }

  .ingrediants-block {
    padding-bottom: 50px;
  }

  .ingredient-bg::before {
    width: 10%;
  }

  .ingredient-info {
    text-align: center;
  }

  .ingredient-mainheading .main-heading {
    padding-left: 0;
    text-align: center;
  }

  .recipe-safeblock {
    text-align: center;
  }

  .recipe-safeblock .col-lg-6:first-child {
    padding-right: 0;
  }

  .cheerful-ban::after,
  .cheerful-ban::before {
    left: 0;
    margin: auto;
  }

  .cheerful-img {
    margin: auto;
  }

  .hand-img-inner img {
    margin-top: 0;
  }

  .play-stroreblock {
    text-align: center;
    padding-top: 50px;
  }

  .play-stroreblock .col-lg-7 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .play-stroreblock .col-lg-5 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .hand-img {
    margin-top: 50px;
  }

  .footer-top p {
    font-size: 13px;
    padding-right: 0;
  }

  .subheading {
    font-size: 17px;
    margin-bottom: 17px;
  }

  .footer-list li a {
    font-size: 12px;
  }

  body {
    font-size: 12px;
    line-height: 24px;
  }

  .footer-top {
    padding: 50px 0;
  }

  .copyright {
    font-size: 12px;
  }

  .navbar-nav>li.menu-item-has-children .nav-link {
    padding-right: 0 !important;
  }

  .recipe-info {
    position: static;
    max-width: 100%;
    width: 100%;
  }

  .recipe-info {
    padding-left: 40px;
    padding-right: 40px;
  }

  .recipe-imgpattern {
    padding: 50px 0;
  }

  .about-bottomarea-heading {
    padding: 40px 0;
    text-align: center;
  }

  .about-tree {
    text-align: center;
    width: 250px;
    margin: auto;
    margin-top: 20px;
  }

  .about-numberingitems {
    padding: 30px;
    text-align: center;
  }

  .contact-panel {
    margin-top: 50px;
  }

  .contact-address {
    padding: 226px 0 75px;
  }

  .contact-address .col-lg-4 {
    margin-bottom: 30px;
  }

  .contact-address .col-lg-4:last-child {
    margin-bottom: 0;
  }

  .memebership-list {
    width: calc(33% - 16px);
    margin-bottom: 30px;
  }

  .subscription-package {
    margin-top: -200px;
    padding-bottom: 100px;
  }

  .hdr-right .navbar-nav>li {
    padding-left: 0;
  }

  .profile-hd {
    padding-left: 0;
    padding-right: 0;
  }

  .hdr-right {
    padding-top: 0;
  }

  .hdr-right .navbar-toggler {
    bottom: 2px;
  }

  .my-cookbook .cmn-box {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .shp2,
  .shp3 {
    width: 87px;
  }

  .common-after::after {
    z-index: -2;
  }

  .cmn-box.create-box {
    padding: 50px 80px;
  }

  .create-box label {
    font-size: 19px;
  }

  .create-box .form-group {
    margin-bottom: 37px;
  }

  .check-img img {
    height: 115px;
  }

  .upload-box {
    height: 220px;
  }

  .upload-hdr {
    font-size: 16px;
  }

  .cmn-box.create-box.new-recipe-form {
    padding: 30px 50px;
  }

  .nav-tabs li a {
    font-size: 19px;
  }

  .nav-tabs li {
    margin: 0 30px 0 0;
  }

  .create-box.new-recipe-form textarea.form-control {
    min-height: 190px;
  }

  .invitations-btn {
    margin-top: 30px;
  }

  .trumbowyg-box,
  .trumbowyg-editor {
    min-height: 250px;
    height: 250px;
  }

  .sign-in-block::after {
    width: 57%;
  }

  .our-recipe-book-txt .main-heading.fn {
    font-size: 28px;
    max-width: 227px;
    margin-bottom: 15px;
  }

  .ckbook-list {
    margin: 24px 0 0;
    padding: 16px 14px;
  }

  .main-heading.sml-font {
    font-size: 22px;
  }

  .create-btn {
    padding: 10px 16px;
  }

  .drag-btn .create-btn.pnk {
    margin-left: 8px;
  }

  .drag-top-hdr {
    margin-bottom: 32px;
    display: block;
  }

  .drag-btn {
    margin-top: 15px;
  }

  .drag-innr {
    margin-top: 14px;
  }

  .table th,
  .table td {
    font-size: 14px;
  }

  .table th {
    background: transparent;
  }

  .recipe-method-sec.common-gap {
    padding: 41px 0 68px;
  }

  .upload-para {
    font-size: 16px;
    margin: 20px 0;
  }

  .cookbook-process-outr .cookbook-info h4 {
    font-size: 14px;
    line-height: 20px;
  }

  .cookbook-process-outr .cookbook-item {
    margin: 0 0 18px;
  }

  .cmn-hdr {
    margin-bottom: 33px;
  }

  .create-box label.lb-sm {
    font-size: 16px;
  }

  .profile-btm p {
    font-size: 16px;
    width: 100%;
  }

  .card-innr {
    margin-bottom: 15px;
  }

  .ingradients-outr .cmn-list {
    margin-top: 17px;
  }

  .ingradients-outr {
    margin-bottom: 20px;
  }

  .tree-member figure {
    width: 70px;
    height: 70px;
  }

  .family-tree-innr.tree2 .our-story {
    font-size: 10px;
  }

  .tree-member p {
    padding: 5px 4px;
  }

  .family-tree-sec .container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .tree-heading h3 {
    font-size: 27px;
    margin-bottom: 10px;
  }

  .tree-heading h2 {
    margin-bottom: 10px;
  }

  .mm-pic img {
    padding: 15px;
  }

  .tree-member ul li:last-child {
    margin-top: 11px;
  }

  .tree-member ul li {
    margin-right: 1px;
  }

  .tree-member ul li img {
    width: 13px;
  }

  .tree-member ul:after {
    background-size: 89% 49%;
    width: 90%;
    height: 95px;
    left: 0;
    right: 0;
    top: 10px;
  }

  .tree-member ul li a {
    width: 23px;
    height: 23px;
  }

  .tree-member ul {
    margin: 0 0 8px;
  }

  .video-view-holder .gal-outr .gal-innr>* {
    min-height: 150px;
  }

  .clickD {
    width: 100%;
    background: url(images/down-arrow.svg)center right no-repeat;
  }

  /* 23/01-2023 start */
  .sharethis-inline-share-buttons {
    display: flex !important;
    margin-left: 5px;
  }

  #st-1 .st-btn {
    width: 31px;
    height: 28px !important;
    line-height: 28px !important;
    margin-right: 5px !important;
  }

  #st-1 .st-btn>img {
    top: 6px !important;
  }

  .card-para {
    font-size: 10px;
    line-height: 1.2em;
  }

  .card-hdr-2 {
    line-height: 1.2em;
  }

  .cmn-box.dim-outr .uploaded_image_show {
    width: 100% !important;
  }

  .cmn-box.dim-outr .opload_image_sec img {
    height: 56px !important;
  }

  .recipe_description_box_wrapper {
    width: 100% !important;
    flex-wrap: wrap;
    margin: 0 -10px;
    padding-top: 12px;
  }

  .recipe_description_box_wrapper .recipe_description_box {
    width: 33.33% !important;
    margin: 0 !important;
    padding: 0 10px;
  }

  /* 23/01-2023 */
  /* 16-06-2023 */
  .memebership-panel {
    width: 33.33%;
    margin-bottom: 10px;
  }

  .memebership-list {
    width: 100%;
  }

  /* update start RN 03-07-2023 */
  .outer-heading {
    position: static;
  }

  .dish-outr {
    padding: 0 15px;
  }

  /* update end RN 03-07-2023 */

  /* css update start RN 20-02-2024 */
  .cmn-wrap {
    width: 100%;
  }

  .create-box .form-group {
    margin-bottom: 10px;
  }

  .gift-form-heading {
    font-size: 20px;
    top: -15px;
  }

  .dynamic-inner-banner {
    min-height: 350px;
  }

  .sw-single-left {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .sw-video-sec.sw-common-gap {
    padding-bottom: 40px;
  }

  /* css update end RN 20-02-2024 */

  .related-blog h2 {
    margin-bottom: 25px;
  }

  .js-related-blog-slider .slick-arrow {
    bottom: 100%;
  }

  .js-related-blog-slider .blg-cd-img {
    margin-top: 2px;
  }

  .blog-text {
    margin-bottom: 15px;
  }

  .blg-cd-link {
    height: auto;
  }


  /* AD 08/11/2024 */
  .each-style-elm.border-rht {
    border-right: 0;
  }

  .style-elm-wpr {
    border-radius: 7px;
    padding: 18px 15px;
  }

  .style-elm-wpr p {
    font-size: 16px;
  }

  .each-style-elm .title_color_cc,
  .each-style-elm .desc_color_cc {
    font-size: 16px;
  }

  .each-style-elm .edit_btn-new {
    font-size: 16px;
  }

  .style-elm-wpr p:not(:last-child) {
    margin-bottom: 5px;
  }

  /* AD 08/11/2024 END */


  /* 27/02/2025 strat */

  .block-sign-up .main-heading {
    font-size: 30px;
  }


  .block-sign-up::after {
    width: 53.8%;
  }

  /* 27/02/2025 strat */

  /* support starts 24.03.2025  */
  .yt-video-bnnr {
    min-height: 350px;
  }

  .bnnr-lft-txt {
    padding-bottom: 20px;
  }

  /* support ends 24.03.2025  */

  /* 30-04-2025 M.M Css Start */
  .new-testmonials-slider {
    padding: 0 0 65px;
  }

  .new-testmonials-slider .slick-arrow {
    top: auto;
    bottom: 0;
    transform: translateY(0);
  }

  .new-testmonials-slider-outer .slick-prev {
    left: calc(50% - 48px);
  }

  .new-testmonials-slider-outer .slick-next {
    right: calc(50% - 48px);
  }

  .new-testmonials-card>figure {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
  }

  /* 30-04-2025 M.M Css End */


  /* 02-05-2025 S.Mv Css Start */
  .uploaded_image_show,
  .cmn-box.dim-outr .uploaded_image_show {
    width: auto !important;
    flex-wrap: wrap !important;
  }

  .recipe_row .opload_image_sec img,
  .profile-top .opload_image_sec img,
  .cmn-box.dim-outr .opload_image_sec img {
    height: 76px !important;
  }

  .uploaded_image_show>div {
    width: 50%;
    max-width: 50%;
  }

  /* 02-05-2025 S.Mv Css Start */


  /* 02-06-2025 S.Mv Css Start */
  .redeem-frn-inr .form-group {
    width: 370px;
  }

  .redeem-clear-btn {
    right: 35%;
  }

  /* 02-06-2025 S.Mv Css End */

  /* pro 24-6-25 start */

  .gift-item-video-inr {
    padding-top: 50%;
  }


  .gift-item-sec .main-heading {
    margin-bottom: 20px;
  }

  /* pro 24-6-25 end */

  .header .logo.web-logo {
    top: 67px;
  }
}

@media screen and (max-width: 768px) {

  .rcpe_ttle {
    position: static;
  }

  .rltd_trees_mob_vew {
    display: block;
  }

  .rltd_trees_mob_vew {
    padding: 15px;
  }

  .rltd_trees_mob_vew_lstng {
    padding: 0;
    list-style: none;
  }

  .rltd_trees_mob_vew_lstng li {
    padding: 0;
  }

  .rltd_trees_mob_vew_lstng li::before {
    display: none;
  }

  .rltd_trees_mob_vew_lstng li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 15px;
    border: 1px solid #DCDCDC;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #6d6d6d;
  }

  .rltd_trees_mob_vew_lstng li a img {
    max-width: 80px;
    min-width: 80px;
    width: 100%;
    margin-right: 15px;
  }

  /* CSS Modification 12.2.26 */
  .nw_lnd h1 {
    font-size: 40px;
  }

  /* CSS Modification 12.2.26 */
}

@media screen and (max-width: 767px) {

  .header .logo.web-logo,
  .logo {
    display: none;
  }

  .navbar-brand {
    width: 72%;
  }

  .form-inline {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 25px;
  }

  .navbar-toggler {
    bottom: 52px;
  }

  .about-info .main-heading {
    font-size: 28px;
  }

  .main-heading {
    margin-bottom: 20px;
  }

  h2 {
    font-size: 24px;
    line-height: 33px;
  }

  h4 {
    font-size: 15px;
  }

  .cheerful-ban::after {
    width: 520px;
    height: 520px;
  }

  .cheerful-ban::before {
    width: 470px;
    height: 470px;
  }

  .cheerful-img {
    width: 370px;
  }

  .footer-top p {
    margin-top: 0;
    margin-bottom: 30px;
  }

  .social-listing {
    margin-top: 20px;
  }

  .copyright {
    text-align: center;
  }

  .copyright .col-md-6:last-child {
    text-align: center;
  }

  .about-section {
    padding: 40px 0 0;
  }

  .form-signbtn {
    margin-right: 0;
  }

  .cheerful-ban::before,
  .cheerful-ban::after {
    margin: auto;
    right: 0;
  }

  .recipe-safeblock {
    background-position: left 0 bottom;
    background-size: 159px;
  }

  .time-innerinfo {
    padding: 0 20px;
  }

  .innerbanner-info {
    text-align: center;
    padding: 20px;
  }

  .innerbanner-info p {
    max-width: 100%;
  }

  .recipe-img {
    height: 550px;
    padding: 0 30px;
  }

  .contact-panel form {
    padding: 30px;
  }

  .gmap {
    height: 400px;
  }

  .memebership-list {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }

  .memebership-list:last-child {
    margin-bottom: 0;
  }

  .subscription-package {
    margin-top: 0;
    padding-bottom: 50px;
  }

  .subscription-blockup {
    padding: 50px 0 50px;
  }

  .membrship-listing li {
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .search-results-box {
    margin-bottom: 40px;
    text-align: center;
  }

  .search-results {
    z-index: 1;
  }

  .shp2,
  .shp1,
  .shp3,
  .shp4 {
    z-index: -1;
  }

  .search-results.common-after::after {
    z-index: -2;
  }

  .my-cookbook-innr {
    width: 100%;
  }

  .my-ck {
    z-index: 1;
  }

  .my-ck .shp4 {
    right: 3%;
    bottom: 3%;
  }

  .hdr-right {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .hdr-right .navbar {
    position: static;
  }

  .hdr-right .navbar-toggler {
    bottom: 24px;
  }

  .cmn-wrap {
    width: 100%;
  }

  .cmn-box.create-box {
    padding: 30px;
  }

  .cover-box-innr {
    padding: 15px;
  }

  .cover-box-outr {
    margin: -15px;
  }

  .create-box.recipe-hlp-form {
    padding: 40px 0 0;
  }

  .cmn-hdr {
    margin-bottom: 30px;
  }

  .create-box label.lb-sm {
    font-size: 16px;
  }

  .nav-tabs li a {
    font-size: 16px;
  }

  .nav-tabs {
    padding-bottom: 23px;
  }

  .invitations-btn .btn {
    margin-right: 20px;
  }

  .create-btn {
    padding: 10px 24px;
  }

  .content-innr ul li {
    padding: 25px 0;
  }

  .form-check-innr .radio-pro {
    font-size: 14px;
  }

  .create-box.new-recipe-form .form-check-innr {
    margin: 25px 0 40px;
  }

  .sign-popup {
    max-width: 100%;
    padding: 30px;
  }

  .create-box label {
    font-size: 16px;
    margin-bottom: 10px;
  }

  textarea.form-control {
    min-height: 238px;
    font-size: 14px !important;
    line-height: 23px !important;
  }

  .main-heading.sml {
    font-size: 20px;
    margin-bottom: 22px;
  }

  .editor-hgt {
    margin-bottom: 10px;
  }

  .gal-box-bottom .col-md-6+.col-md-6 {
    margin-top: 30px;
  }

  .gal-box-bottom .video-pic .upload-box {
    height: 166px;
  }

  .add-more-link.bg {
    font-size: 20px;
  }

  .add-more-dishes-innr {
    display: block;
  }

  .sh7,
  .sh8 {
    display: none;
  }

  #horizontalTab {
    padding: 0 35px 30px;
    margin-top: 41px !important;
  }

  .profile-top {
    padding: 0 35px 21px;
  }

  .hd-ab {
    top: -45px;
  }

  .resp-accordion figure img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
  }

  h2.resp-tab-active span.resp-arrow {
    border-bottom: 12px solid #c1c1c1;
  }

  h2.resp-accordion {
    margin-bottom: 12px;
  }

  .dish-content {
    border: 1px solid #c1c1c1 !important;
    margin-bottom: 10px;
  }

  /*04/11/2021*/
  .dish-content2 {
    border: 1px solid #c1c1c1 !important;
    margin-bottom: 10px;
  }

  /*04/11/2021*/
  .c-hdr {
    font-size: 21px;
    margin-bottom: 26px;
  }

  .resp-accordion p {
    font-size: 18px;
    color: #6d6d6d;
  }

  .our-recipe-book-outr {
    width: 68%;
  }

  .ckbook-list li {
    margin: 0 9px 0 0;
  }

  .ckbook-list li a {
    width: 37px;
    height: 37px;
  }

  .our-recipe-book-outr.bx-left:after {
    right: 30px;
  }

  .text-center.mb-5 {
    margin-bottom: 0 !important;
  }

  .recipe-table-top .create-box select.form-control:not([size]):not([multiple]) {
    height: 48px;
    min-width: 185px;
  }

  .create-box select.form-control {
    background-position: right 10px center;
    font-size: 14px;
    padding: 5px 13px;
  }

  .innr-txt {
    margin-top: 3px;
  }

  .check-outr.recipe-check .check-img {
    min-height: initial;
  }

  .upload-hdr {
    margin-bottom: 10px;
  }

  .gallery-outr .col-md-6+.col-md-6 {
    margin-top: 30px;
  }

  .gallery-outr .col-md-6.gal-innr {
    margin-top: 0;
  }

  .pos-stc {
    position: relative;
  }

  .share-list {
    top: 5px;
  }

  .cook-time h2 {
    text-align: center;
  }

  .family-tree-innr {
    width: 100%;
  }

  .tree-heading h3 {
    font-size: 19px;
    margin-bottom: 10px;
    line-height: 28px;
  }

  .tree-heading {
    padding: 20px 0 0px;
  }

  .family-tree-outr {
    padding-top: 13px;
  }

  .our-recipe-book-holder>* {
    flex: 0 0 auto;
    width: 100%;
    margin: 20px auto;
  }

  .our-recipe-book-holder {
    width: 100%;
  }

  .our-recipe-book-holder .our-recipe-book-txt {
    padding: 20px 0;
  }

  /* 16/1/2023 Start */
  .same-height .form-group label {
    min-height: auto;
  }

  .same-height-row>[class*="col-"] .lb-sm {
    height: auto !important;
  }

  /* 16/1/2023 End */

  /* 23/01-2023 start */
  .cmn-box.dim-outr .opload_image_sec img {
    height: 136px !important;
  }

  .share-list li {
    margin: 0 6px 0 0;
  }

  #st-1 .st-btn {
    width: 30px;
    padding: 0 5px !important;
  }

  /* 23-01-2023 end*/

  /* 25.05.23 start */

  .create-qr {
    flex-direction: column;
    margin: 0;
  }

  .qr-text-inner,
  .create-qr-inner {
    padding: 0;
    width: 100%;
  }

  .create-qr-inner {
    margin-bottom: 15px;
  }

  .index-2 form {
    width: 100%;
  }

  .memebership-panel {
    width: 50%;
  }

  .memebership-list {
    width: 100% !important
  }

  .available-tree {
    font-size: 24px;
    line-height: 1.2;
  }

  /* update start RN 03-07-2023 */
  #horizontalTab {
    padding-left: 0;
    padding-right: 0;
    margin-top: 0 !important;
  }

  /* update end RN 03-07-2023 */

  /* css update start RN 20-02-2024 */
  .cmn-box-each {
    padding: 25px 15px;
  }

  .gift-form-apply-btn {
    margin-top: 20px !important;
  }

  .up-innr {
    padding-bottom: 20px;
  }

  /* css update end RN 20-02-2024 */

  /* SM 04_10_24 */
  .blg-cd-box-img {
    width: 100%;
  }

  .blg-cd-box-cont {
    width: 100%;
    padding: 20px 0 0;
  }

  .blog-dtl-wrap h1 {
    font-size: 40px;
    margin-bottom: 22px;
  }

  .blog-dtl-img {
    margin-bottom: 30px;
  }

  .blog-dtl-wrap p {
    margin-bottom: 10px;
  }

  .blog-dtl-wrap h2 {
    margin-bottom: 6px;
  }

  .related-blog {
    padding: 40px 0;
  }

  /* 31/10/24 work start */
  .blg-top-lft-col {
    width: 100%;
  }

  .blg-top-rgt-col {
    width: 100%;
    padding: 35px 0px 0px 0px;
    text-align: left;
  }

  .blg-top-rgt-col h1 {
    font-size: 28px;
  }

  .blog-dtl-sec {
    padding-top: 30px;
  }

  /* 31/10/24 work end */
  /*support 16/12/2024*/
  .crdtcard-butn-bx {
    width: 100%;
    margin-top: 15px;
    max-width: 100%;
  }

  /*support 16/12/2024*/

  /* 27/02/2025 start */

  .block-sign-up::after {
    width: 55%;
  }


  .sign-popup h2 {
    font-size: 20px;
  }

  /* 27/02/2025 end */

  /* S.Mv Css Start 02-05-25 */
  .uploaded_image_show.recipe_row {
    width: auto !important;
  }

  .cmn-box.dim-outr .recipe_row .opload_image_sec img,
  .profile-top .opload_image_sec img {
    height: 96px !important;
  }


  .uploaded_image_show>div {
    width: 33.33% !important;
    flex: inherit;
  }



  /* S.Mv Css End 02-05-25 */


  /* 02-06-2025 S.Mv Css Start */
  .redeem-frn-inr {
    padding: 8px;
  }

  .redeem-frn-inr input[type="text"] {
    padding-left: 10px;
  }

  .redeem-frn-inr .form-group {
    width: 60%;
  }

  .redeem-frn-inr .btn.send-btn {
    min-width: 110px;
  }

  .redeem-frn-inr .btn.send-btn input[type="submit"] {

    padding: 10px 14px;
  }


  /* 02-06-2025 S.Mv Css End */


  .mobile-logo-wrppr {
    max-width: 350px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .redeem-logo-link {
    width: 100px;
  }

  .mobile-logo-wrppr .navbar-brand {
    width: calc(100% - 115px);
  }


}

@media screen and (max-width: 690px) {
  .table {
    width: 100%;
    max-width: 1500px;
    overflow-y: scroll;
    display: block;
  }
}

@media screen and (max-width: 640px) {
  .our-recipe-book-outr {
    width: 100%;
  }

  .our-recipe-book-outr:after {
    left: 30px;
  }

  .path1,
  .path2,
  .path3,
  .path4,
  .path6,
  .path8 {
    display: none;
  }
}

@media screen and (max-width: 575px) {
  .form-signbtn {
    margin-top: 15px;
  }

  .form-inline {
    margin-bottom: 12px;
  }

  h1 {
    font-size: 28px;
  }

  .banner-inner {
    text-align: center;
    padding: 20px;
    width: 100%;
    margin: auto;
  }

  .banner-overlay {
    position: static;
    background: #000;
  }

  .banner-inner p {
    width: 100%;
  }

  .slick-dots li {
    margin: 10px 0;
  }

  .slick-dots li::after {
    font-size: 12px;
  }

  .slick-dots li {
    padding-left: 39px;
  }

  .banner-img img {
    min-height: 440px;
  }

  .cheerful-ban::after {
    width: 440px;
    height: 440px;
  }

  .banner-img img {
    min-height: 200px;
  }

  .cheerful-ban::before {
    width: 348px;
    height: 348px;
  }

  .cheerful-img {
    width: 323px;
  }

  .book-icon {
    width: 84px;
    height: 84px;
  }

  .book-icon:last-child {
    top: 23%;
    right: 9%;
  }

  .book-icon {
    left: 0;
  }

  .cheerful-ban {
    margin: 0;
  }

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

  .email-pro {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .ingredient-bginner {
    width: 100%;
  }

  .time-imginner::after {
    width: 429px;
    height: 466px;
  }

  .mbl-img {
    display: block;
    width: 100%;
  }

  .time-img {
    display: none;
  }

  .slick-dots {
    top: 20px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .cookbook-item {
    width: 100%;
  }

  .ingredient-info {
    padding: 25px 30px;
  }

  .cmn-box {
    padding: 20px;
  }

  .cmn-sub-hdr {
    font-size: 23px;
  }

  .cmn-sb-inn {
    font-size: 16px;
  }

  .search-results-box {
    margin-bottom: 30px;
  }

  .common-gap {
    padding: 40px 0;
  }

  .cmn-hdr p {
    width: 100%;
  }

  .shp2,
  .shp3 {
    width: 58px;
  }

  .profile-hd a {
    font-size: 13px;
  }

  .navbar-brand {
    width: 124px;
  }

  .sign-up-bottom {
    padding: 25px 0;
    margin-top: 10px;
  }

  .sign-up-bottom p {
    font-size: 13px;
  }

  .sign-in-block::after {
    width: 70%;
  }

  .accept-input+label {
    max-width: calc(100% - 24px);
    font-size: 13px;
    padding-left: 8px;
  }

  .sign-in-block {
    padding: 50px 0;
  }

  .sign-up-bottom .text-left {
    text-align: center !important;
    margin-bottom: 14px;
  }

  .sign-up-bottom .text-right {
    text-align: center !important;
  }

  .form-check-innr .radio-pro:last-child {
    margin-left: 15px;
  }

  .dish-content {
    padding: 35px 15px 70px;
  }

  /*04/11/2021*/
  .dish-content2 {
    padding: 35px 15px 70px;
  }

  /*04/11/2021*/
  .dim-top {
    padding: 10px 0px 10px 0px;

  }

  /*24/11/2021*/

  .searchBtn {
    opacity: 1 !important;
  }

  /*24/11/2021*/
  .rcpe-outr .ingradients-outr .cmn-list li {
    width: 100%;
  }

  .cook-time {
    padding: 30px 0px 50px;
  }

  .rcpe-outr {
    padding: 0 0px;
  }

  .mem6 {
    right: 19%;
    top: 24%;
  }

  .mem9 {
    right: 21%;
    top: 46%;
  }

  .mem10 {
    top: 36%;
  }

  .mem8 {
    top: 45%;
  }

  .mem1 {
    top: 0;
  }

  .mem4 {
    top: 11%;
    left: 15%;
  }

  .mem5 {
    left: 7%;
    top: 26%;
  }

  .family-tree-innr {
    height: 600px;
  }

  .family-tree-innr>figure {
    height: 100%;
  }

  .family-tree-innr figure img {
    height: 100%;
  }

  .tree-member ul {
    margin: -33px 0 8px;
  }

  .upload-box.up-width-inn {
    width: 74%;
  }

  /* update start RN 03-07-2023 */
  .banner-img img {
    height: 180px;
  }

  /* update end RN 03-07-2023 */
  /* SM 04_10_24 */
  .blg-hd-top h1 {
    font-size: 40px;
  }

  .blg-cd-box {
    padding: 15px;
  }

  .blog-name {
    font-size: 25px;
    margin-bottom: 14px;
  }

  .blg-cd-box-cont {
    padding: 15px 0 0;
  }

  .blg-cd-text span {
    font-size: 14px;
  }

  .blg-cd-text {
    padding: 3px 0 0 9px;
  }

  .lv-top-lft-four,
  .lv-top-lft-three,
  .lv-top-lft,
  .lv-top-rgt {
    display: none;
  }

  .blg-hd-top {
    margin: 0 auto 30px;
  }

  .blg-cd-col {
    margin-bottom: 25px;
  }

  .js-related-blog-slider .blg-cd-img {
    margin-top: 4px;
  }

  /*support pp.c 6/2/2024*/
  .subscribe-pkg-tab .nav-link {
    padding: 8px 15px;
    min-width: auto;
    font-size: 17px;
  }

  /*support pp.c 6/2/2024*/


  /* 27/02/2025 start */

  .block-sign-up .main-heading {
    font-size: 26px;
  }

  .block-sign-up::after {
    width: 55%;
  }

  /* 27/02/2025 end */

  /* support starts 24.03.2025  */
  .banner {
    min-height: 500px;
  }

  .banner-img {
    display: none;
  }


  .gift-card-link-wrppr {
    margin: -30px auto 0;
    padding-right: 15px;
  }

  .gift-card-link {
    max-width: 130px;
  }

  .gift-card-link span {
    font-size: 11px;
    max-width: 95px;
  }
}

@media screen and (max-width: 484px) {
  .gplay-btn {
    margin-bottom: 10px;
  }

  .appplay-btn {
    margin-left: 0;
  }

  .gplay-btn {
    display: block;
  }

  .cheerful-ban::after {
    width: 340px;
    height: 340px;
  }

  .cheerful-ban::before {
    width: 277px;
    height: 277px;
  }

  .cheerful-img {
    width: 262px;
  }

  .recipe-img {
    height: 420px;
  }

  .recipe-info {
    padding: 51px 30px 40px;
  }

  .gmap {
    height: 350px;
  }

  .contact-block {
    padding: 50px 0;
  }

  .contact-address {
    padding: 226px 0 50px;
  }

  .create-box label {
    font-size: 16px;
  }

  .invitations-btn {
    margin-top: 30px;
  }

  .invitations-btn .btn {
    margin-right: 0;
    margin-bottom: 13px;
  }

  .cmn-box.create-box.new-recipe-form {
    padding: 30px;
  }

  .nav-tabs li {
    margin: 0 20px 0 0;
  }

  .nav-tabs li a {
    font-size: 14px;
  }

  .content-innr {
    padding-top: 20px;
  }

  .invitations-btn {
    margin-top: 20px;
  }

  .invite-list a {
    margin-right: 12px;
  }

  .create-box.new-recipe-form .form-check-innr {
    display: block;
  }

  .form-check-innr .radio-pro {
    margin: 10px 0;
  }

  .submit-btn {
    min-width: 100px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .send-btn {
    padding: 13px 30px;
  }

  .invitations-btn .btn.create-btn.orng {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .profile-top {
    padding: 0 15px 21px;
  }

  #horizontalTab {
    padding: 0 15px 30px;
  }

  .hd-ab {
    left: 15px;
  }

  .resp-accordion p {
    font-size: 15px;
  }

  .ckbook-list li {
    width: 30%;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px !important;
    margin: 0;
  }

  .ckbook-list {
    display: block;
  }

  /* 16/1/2023 Start */
  .inner-banner .banner-img img {
    height: auto;
    min-height: 250px !important;
  }

  .inner-banner .banner-img {
    max-height: 250px;
    overflow: hidden;
  }

  /* 16/1/2023 End */

  .memebership-panel {
    width: 100%;
  }

  .memebership-panel .memebership-list {
    margin: 0 !important;
  }

  /* update start RN 03-07-2023 */
  #horizontalTab {
    padding-left: 0;
    padding-right: 0;
  }

  /* update end RN 03-07-2023 */

  /* css update start RN 20-02-2024 */
  .dynamic-inner-banner .banner-img {
    max-height: inherit;
    overflow: inherit;
  }

  .dynamic-inner-banner .banner-img img {
    height: 100%;
    min-height: 100% !important;
  }

  /* css update end RN 20-02-2024 */
  /* CSS Modification 12.2.26 */
  .nw_lnd h1 {
    font-size: 28px;
  }

  /* CSS Modification 12.2.26 */
}

/* update start RN 03-07-2023 */
@media(max-width: 479px) {
  .banner-img img {
    height: 140px;
  }

  /* update end RN 03-07-2023 */
  /* css update start RN 20-02-2024 */
  .dynamic-inner-banner {
    padding: 30px 0;
  }

  .sw-video-sec h2 {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .sw-single-left {
    padding-top: 0 !important;
  }

  /*support 16/12/2024*/
  .crdtcard-butn-bx {
    max-width: 100%;
  }

  .crdtcard-butn-bx ul li .crdtcard-icon {
    height: 40px;
  }

  .crdtcard-butn-bx ul li .crdtcard-icon img {
    max-width: 40px;
  }

  .crdtcard-butn-bx {
    padding: 12px 12px;
    border-radius: 10px;
  }

  /*support 16/12/2024*/

  /* sg-08-jan-2025 */
  .video-sec .left-video-sec {
    padding-top: 58%;
  }

  /* sg-08-jan-2025 */
  .freesvgimg {
    max-width: 50%;
  }

  .block-sign-up::after {
    width: 70%;
  }

  /* S.Mv css Start 02-05-25 */
  .uploaded_image_show>div {
    width: 50% !important;
  }

  /* S.Mv css end 02-05-25 */


  /* 02-06-2025 S.Mv Css End */
  .redeem-frn-inr {
    border: 0;
    transform: initial;
    -ms-transform: initial;
    -webkit-transform: initial;
  }

  .redeem-frn-inr {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
  }

  .redeem-frn-inr .form-group {
    width: 100%;
    transform: skew(-18deg);
    -ms-transform: skew(-18deg);
    -webkit-transform: skew(-18deg);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 7px;
  }

  .redeem-frn-inr .btn.send-btn {
    position: relative;
    width: 100%;
    min-width: 100%;
    top: initial;
    transform: initial;
    right: initial;
    margin-top: 20px;
    transform: skew(-18deg);
    -ms-transform: skew(-18deg);
    -webkit-transform: skew(-18deg);
  }

  .redeem-frn-inr input[type="text"] {
    height: 38px;
  }

  .form-group-outer {
    width: 100%;
  }

  .redeem-frn-inr .text-danger {
    position: relative;
    bottom: -3px;
    left: 0px;
  }


  .redeem-clear-btn {
    right: 5%;
    top: 27px;
    -webkit-transform: skew(-1deg) translateY(-50%);
    transform: skew(-1deg) translateY(-50%);
    -ms-transform: skew(-1deg) translateY(-50%);
  }

  .redeem-frn-inr input[type="text"] {
    padding-right: 29px;
  }


  /* 02-06-2025 S.Mv Css End */
  /* pro 26-6-25 start */
  .gift-item-video-inr {
    padding-top: 60%;
  }

  /* pro 26-6-25 end */

  .mobile-logo-wrppr {
    max-width: 250px;
  }

  .redeem-logo-link {
    width: 60px;
  }

  .mobile-logo-wrppr .navbar-brand {
    width: calc(100% - 75px);
  }

  .navbar-toggler {
    bottom: 35px;
  }
}

@media screen and (max-width: 450px) {
  .form-select {
    margin-bottom: 12px;
  }

  .form-groupsearch {
    width: 240px;
  }

  .slick-dots {
    top: 4px;
  }

  .cheerful-ban::after {
    width: 290px;
    height: 290px;
  }

  .cheerful-ban::before {
    width: 242px;
    height: 242px;
  }

  .recipe-img {
    height: 284px;
  }

  .trumbowyg-box,
  .trumbowyg-editor {
    min-height: 250px;
    height: 250px;
  }

  .sign-popup {
    padding: 30px 20px;
  }

  .our-recipe-book-outr img {
    height: 400px;
  }

  .our-recipe-book-txt .main-heading.fn {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .our-recipe-book-outr:after {
    top: 24px;
    bottom: 21px;
  }

  .recipe-table-top {
    display: block;
  }

  .create-box {
    margin-bottom: 10px;
  }

  .mem1 {
    left: 29%;
  }

  .mem8 {
    top: 49%;
  }

  .mem7 {
    top: 34%;
    left: 3%;
  }

  .mem5 {
    left: 1%;
    top: 21%;
  }

  .mem4 {
    top: 8%;
    left: 12%;
  }

  .mem9 {
    top: 49%;
  }

  .path5 {
    left: 26%;
  }

  /* supports starts 24.03.2025  */
  .yt-video-bnnr {
    min-height: 250px;
  }

}

@media screen and (max-width: 380px) {
  .submit-btn {
    min-width: 90px;
  }

  .send-btn {
    padding: 13px 20px;
  }

  .cmn_wrap_image_sec img {
    height: 720px !important;
  }
}

@media screen and (max-width: 360px) {
  .forgot-btn {
    font-size: 13px;
  }

  .accept-input+label {
    font-size: 11px;
  }

  .create-btn {
    padding: 10px 18px;
  }

  .main-heading.sml-font {
    font-size: 21px;
  }

  /* update start RN 03-07-2023 */
  .banner-img img {
    height: 120px;
  }

  /* update end RN 03-07-2023 */

  .mobile-logo-wrppr {
    max-width: 210px;
  }
}



/********************01-12-2021*******************/
.dropdown a {
  color: #000;
  font-size: 18px;
  font-weight: 500;
}

.dropdown-menu li:before {
  display: none;
}

.dropdown-menu li a {
  font-size: 16px;
  color: #424242;
}

.dropdown-menu {
  padding: 10px 0px;
  width: 190px;
}

.ckbook-list-btn {
  margin: 60px 0 0;
  text-align: center;
}

.bx-left figure {
  position: relative;
  margin: 0;
}

.drg-fullfil img {
  width: 50px;
  height: 50px;
}

.drg-fullfil {
  position: absolute;
  z-index: 9;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 35%;
}

@media screen and (max-width: 480px) {
  .our-recipe-book-holder figure::before {
    top: 0;
    right: 0px;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .dropdown a {
    font-size: 15px;
  }

  .our-recipe-book-txt {
    left: 0;
  }

  .new_image_add {
    background: rgba(255, 255, 255, 0.9) !important;
  }

  .tree-member ul {
    padding: 0;
    margin: 0px 0 8px;
  }
}

@media screen and (max-width: 812px) {
  .table-details {
    overflow: scroll;
  }
}

@media screen and (max-width: 850px) {
  .form-inline {
    -webkit-box-pack: center;
    -ms-flex-pack: end;
    justify-content: center;
  }
}

@media screen and (max-width: 736px) {
  .tree-member ul li:nth-child(3) {
    margin-top: 9px;
  }

  .tree-member ul li:nth-child(4) {
    top: 22px;
    right: 10px;
  }
}

@media screen and (max-width: 667px) {
  .our-recipe-book-holder figure::before {
    top: 0;
    right: 0px;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .table-logo {
    width: 100% !important;
    margin: 0 auto 10px !important;
  }

  .table-sec h2 {
    font-size: 24px !important;
  }

}

@media screen and (max-width: 1100px) {
  .our-recipe-book-holder figure::before {
    top: 0;
    right: 0px;
    left: 0;
    bottom: 50px;
    width: 100%;
    height: 100%;
  }

  .subscription-package .nav-tabs {
    margin: 20px 0 30px;
  }
}

.table-sec {
  text-align: center;
  padding: 40px 0 40px;
}

.table-details table {
  width: 100%;
  margin: 0 auto;
}

.table-details {
  padding: 10px 0;
  width: 100%;
}

.table-details h4 {
  font-size: 25px;
  color: #4a4a4a;
  margin: 0 0 20px;
}

.table-details tbody th {
  border: 1px solid #ccc;
  padding: 10px 10px;
  background: #45652f;
  font-size: 16px;
  color: #fff;
}

.table-details tbody td {
  border: 1px solid #ccc;
  padding: 10px 10px;
}

.table-sec h2 {
  font-size: 30px;
  color: #45652f;
  width: 100%;
  font-weight: bold;
}

.table-logo {
  width: 100%;
  margin: 0 0 10px;
  position: relative;
}

.table-logo img {
  position: absolute;
  z-index: 9;
  top: -17px;
  left: 0;
  width: 100px;
}

.table-details p {
  text-align: left;
  margin: 20px 0 10px;
  font-size: 20px;
  font-weight: bold;
  color: #313131;
}

.table-details ul {
  padding: 0 0 0 25px;
}

.table-details ul li {
  text-align: left;
  list-style: decimal;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 10px;
  color: #484848;
  padding: 0;
}

.table-details tbody th b {
  font-size: 20px;
  border-bottom: 1px solid #fff;
}

.table-details ul li:before {
  display: none;
}

.preview_popup {
  max-width: 840px;
}

.preview_popup .modal-header {
  border: none;
}

.preview_popup .our-recipe-book-txt {
  position: absolute;
  top: 4%;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  width: 100%;
  z-index: 88;
  text-align: center;
  /*overflow-y: scroll;*/
}

.edit_btn-new {
  font-size: 25px;
  color: #82bc10 !important;
}

.our-recipe-book-txt h4 {
  font-size: 25px;
  color: #000;
  text-transform: capitalize;
  line-height: 1.3;
}

.preview_image_holder {
  position: relative;
}

.preview_image_holder figure::before {
  position: absolute;
  content: '';
  border: 4px dashed #000000;
  top: -10px;
  right: 0px;
  left: -8px;
  bottom: 40px;
  width: 102%;
  height: 104%;
}

input[type="color"] {
  border-radius: 2px;
  height: 30px;
  padding: 2px 2px;
  background: transparent;
  width: 30px;
}

.color_picker {
  position: absolute;
  z-index: 9;
  bottom: 10px;
  left: 36%;
}

.color_picker_text {
  position: relative;
}

.color_picker2 {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 27%;
}

.preview_image_holder img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 980px) {
  .opload_image_sec img {
    height: 100px !important;
  }

  .tree-member ul li:nth-child(4) {
    top: 40px;
    right: 10px;
  }

  .tree-member ul li:nth-child(3) {
    margin-top: 17px;
  }
}

@media screen and (max-width: 812px) {
  .sml-pic img {
    height: 140px;
  }

  .memebership-list {
    /* width: calc(29% - 0px) !important; */
  }
}

@media screen and (max-width: 568px) {
  .preview_popup .our-recipe-book-txt {
    left: 20px;
    width: 85%;
    height: 160px;
    overflow-y: scroll;
  }

  .list_tree_sec li {
    width: 17% !important;
  }

  .preview_image_holder figure::before {
    top: 0;
    right: 0px;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .review_new_tab {
    width: 100% !important;
  }

  .cmn_wrap_image_sec img {
    width: 100%;
    height: 730px;
    object-fit: cover;
  }

  .mem11 {
    top: 56%;
    left: 18%;
  }

  .mem9 {
    right: 21%;
    top: 38%;
  }

  .opload_image_sec img {
    height: 200px !important;
  }

}

@media screen and (max-width: 769px) {
  .preview_popup .our-recipe-book-txt {
    left: 30px;
    width: 92%;
    height: 320px;
  }

  .our-recipe-book-txt .main-heading.fn {
    max-width: 80%;
  }

  .color_picker {
    bottom: 0px;
    right: 45%;
  }

  .color_picker2 {
    left: 19%;
  }

  .cmn-box.create-box.new-recipe-form {
    padding: 10px 20px;
  }

  .table-logo img {
    position: absolute;
    z-index: 9;
    top: -50px;
    left: 0;
    width: 80px;
    right: 0;
    margin: 0 auto;
  }

  .cmn_wrap_image_sec img {
    width: 100%;
    height: 730px !important;
    object-fit: cover;
  }

  .sml-pic img {
    height: 140px;
  }

  .opload_image_sec img {
    height: 200px !important;
  }

  .profile-top .opload_image_sec img {
    height: 30px !important;
  }

  .recipe_row .opload_image_sec img,
  .profile-top .opload_image_sec img {
    height: 76px !important;
  }

}

@media screen and (max-width: 375px) {
  .tree-member ul li:nth-child(3) {
    margin-top: 13px;
  }

  .tree-member ul li:nth-child(4) {
    top: 30px !important;
    right: -10px !important;
  }

  .preview_popup .our-recipe-book-txt {
    left: 30px;
    width: 80%;
    height: 130px;
  }

  .color_picker2 {
    left: 30%;
  }

  .color_picker {
    right: 46%;
  }

  .send-btn {
    -webkit-transform: skew(-5deg);
  }

  .send-btn span {
    -webkit-transform: skew(5deg);
  }

  .table-logo img {
    top: -70px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  .mem1 {
    left: 26%;
    top: -20px;
  }

  .cmn-box.create-box.new-recipe-form {
    padding: 30px 20px;
  }

  .family-tree-innr.tree2 p {
    min-width: 60px;
  }

  .mem10 {
    right: 0%;
  }

  .block-sign-up .main-heading {
    font-size: 23px;
  }

}

@media screen and (max-width: 480px) {
  .list_tree_sec li {
    width: 25% !important;
  }

  .tree-member ul li:nth-child(4) {
    top: 45px;
    right: -10px;
  }

  .table-logo img {
    position: absolute;
    z-index: 9;
    top: -50px;
    left: 0;
    width: 80px;
    right: 0;
    margin: 0 auto;
  }

  .cover-box-video video {
    width: 100%;
    height: 200px !important;
  }

  .video-view-holder .gal-outr .gal-innr {
    max-height: inherit;
  }

  .mem13 {
    top: 13% !important;
    left: 28% !important;
  }

  .mem14 {
    top: 18% !important;
    right: 34% !important;
  }

  .mem11 {
    top: 29% !important;
    left: 22% !important;
  }
}

@media screen and (max-width: 667px) {
  .cmn_wrap_image_sec img {
    width: 100%;
    height: 730px !important;
    object-fit: cover;
  }

  .video-view-holder .gal-outr .gal-innr {
    max-height: inherit !important;
  }

  .sml-pic img {
    height: auto;
  }

  .memebership-list {
    width: calc(100% - 0px) !important;
    margin: 15px 0 !important;
  }

  .profile-top .opload_image_sec img {
    height: 60px !important;
  }


  /*S.Mv Css Start 02-05-25 */
  .cmn-box.dim-outr .recipe_row .opload_image_sec img,
  .profile-top .opload_image_sec img {
    height: 96px !important;
  }

  /*S.Mv Css End 02-05-25 */


}

/*.modal_slider_new.modal-dialog {
    max-width: 1270px;
    margin: 1.75rem auto;
}*/

/*.trumbowyg-editor span {
    color: transparent; !important;
}
.trumbowyg-editor p {
    color: transparent; !important;
}
.trumbowyg-editor strong {
    color: transparent; !important;
}
*/

.review_new_tab {
  width: 80%;
  margin: 0 auto;
  position: relative;
}

.review_new_tab .our-recipe-book-txt {
  position: absolute;
  top: 10%;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  left: 10px;
  width: 80%;
  z-index: 88;
}

.resp-tabs-list.not_fav_list p {
  padding: 120px 0;
}

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

.preview_image_heading h2 {
  font-size: 35px;
  font-weight: bold;
  margin: 0 0 40px;
}

.cmn_wrap_image_sec {
  position: absolute;
  opacity: 0.3;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
}

.cmn_wrap_image_sec img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.cover-box-video video {
  width: 100%;
  height: 400px;
}

.recipe_pic_cc img {
  height: 190px !important;
  width: 100%;
  object-fit: cover;
}

.recipe_by_name {
  float: right;
  margin-top: 10px;
}

.new_image_add {
  border: 1px solid #5e3120;
  border-radius: 5px;
  box-shadow: 0 0 5px 0 #ccc;
  background: rgba(255, 255, 255, 0.5);
}

.mem11 {
  top: 45%;
  left: 11%;
}

.mem12 {
  top: 50%;
  right: 14%;
}

.mem13 {
  top: 13%;
  left: 40%;
}

.mem14 {
  top: 16%;
  right: 30%;
}

.mem15 {
  top: 46%;
  left: 28%;
}

/**************/
.memebership-list {
  /* width: calc(33% - 13px); */
  background: #FFFFFF;
  box-shadow: 0px 20px 40px rgba(3, 0, 77, 0.04);
  -webkit-box-shadow: 0px 20px 40px rgba(3, 0, 77, 0.04);
  padding: 29px 12px;
  border-radius: 12px;
  margin: 0;
  width: 100%;
}

.subscription-package .nav-tabs {
  padding-bottom: 10px;
  margin: 20px 0 30px;
}

.subscription-package .nav-tabs li.active a.show {
  color: #89c131;
}


#loader {
  border: 12px solid #f3f3f3;
  border-radius: 50%;
  border-top: 12px solid #444444;
  width: 70px;
  height: 70px;
  animation: spin 1s linear infinite;
  z-index: 99999999;
  position: fixed;
  left: 0;
  right: 0px;
  margin: o auto;
}

.loader_overlay {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  content: "";
  left: 0;
  right: 0px;
  top: 0;
  margin: 0 auto;
  z-index: 999999;
  width: 100%;
  height: 100%;
}

.loader_sectin {
  position: relative;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.modal_images_cc input[type="file"] {
  text-indent: -10000px;
  color: transparent;
  position: relative;
  z-index: 99;
  background: transparent;
}

.image_file_input {
  position: relative;
  z-index: 99;
}

.text_image_file {
  position: absolute;
  top: 20px;
  z-index: 9;
  left: 30px;
  color: #979797;
  font-size: 14px;
  cursor: pointer;
}

.modal_close_icon {
  position: absolute;
  z-index: 9;
  top: 10px;
  right: 10px;
  background: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
}

.birth_death_date {
  display: flex;
  justify-content: space-between;
}

.non_added_member li:last-child {
  margin: 6px 0 0 !important;
}

.upload_box input {
  display: none !important;
  float: left;
}

[type="file"]+label.btn-2 {
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
}

[type="file"]+label.btn-2 {
  display: inline-block;
  background: #89C131;
  padding: 12px 45px;
  color: #fff;
  border-radius: 3px;
  transform: skew(-18deg);
  -ms-transform: skew(-18deg);
  -webkit-transform: skew(-18deg);
  box-shadow: 0px 15px 20px rgb(129 202 16 / 20%);
  -webkit-box-shadow: 0px 15px 20px rgb(129 202 16 / 20%);
  -moz-box-shadow: 0px 15px 20px rgb(129 202 16 / 20%);
  font-size: 13px;
  width: 100%;
  margin: 20px 0 0px 0;
}

.upload_box span {
  transform: skew(18deg);
  -ms-transform: skew(18deg);
  -webkit-transform: skew(18deg);
  display: inline-block;
}

.opload_image_sec img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin: 15px 0 15px;
}

.uploaded_image_show {
  width: 85% !important;
  flex-wrap: nowrap;
}

.pdf_section iframe {
  height: 600px;
}

.profile-top .opload_image_sec img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
  margin: 15px 0 15px;
}

.list_tree_sec li {
  display: inline-block;
  padding: 10px 10px;
  text-align: center;
  margin: 10px 0;
  width: 12%;
}

.list_tree_sec li::before {
  display: none;
}

.list_tree_sec li img {
  width: 100px;
  margin: 0 auto;
}

.list_tree_sec li a h4 {
  font-size: 15px;
  background: #82bc10;
  color: #fff;
  border-radius: 5px;
  margin: 5px 0 5px;
  padding: 5px 5px;
}

.list_tree_sec ul {
  text-align: center;
}

.list_tree_sec li.active {
  border: 1px solid #ccc;
}

.container_cc {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.box_cc {
  border: 3px solid #666;
  background-color: #ddd;
  border-radius: .5em;
  padding: 10px;
  cursor: move;
  font-size: 24px;
  font-weight: bold;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
  height: 72px;
  border-color: #89C131 !important;
  color: #26292B;
  font-size: 15px;
  font-weight: 500;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #89C131 !important;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid #89C131 1px !important;
  outline: 0;
}

.select2-container--default .select2-selection--multiple {
  background-color: transparent !important;
  border: 1px solid #89C131 !important;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
  min-height: 72px !important;
  background: url(images/down-arrow.svg) right 10px center no-repeat !important;
  background-position: right 40px center !important;
  border-radius: 12px !important;
  background-size: 13px !important;
  padding-right: 50px !important;
}

.select2-container--default .select2-selection--multiple {
  /*padding-top: 12px;*/
}

.select2-container--default .select2-selection--multiple li:before {
  display: none;
}

/*.create-box ul li:before{display: none !important;}*/
/*.select2-selection__rendered li:before{display: none !important;}
*/
#select2-data-20-z1oi ul li:before {
  display: none !important;
}

.select2-results__options li:before {
  display: none;
}

.drag-drop .container_cc {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}

.drag-drop li:before {
  display: none;
}







.select2-container--default .select2-search--inline .select2-search__field {
  height: auto !important;
  line-height: auto;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 0px !important;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
  margin: 0px !important;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: flex !important;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none;
  align-items: center;
  padding-top: 5px;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: top !important;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-search--inline textarea::placeholder {
  color: #4c4c4c !important;
  font-weight: 600 !important;
}

.select2-container--default .select2-search--inline .select2-search__field {
  height: auto !important;
  line-height: auto;
  line-height: initial;
  padding-left: 15px !important;
}

li.box_cc span {
  float: right;
  display: inline-block;
}

li.box_cc span a {
  color: #793120;
}

.btn_remove.delete {
  position: relative;
  top: -30px;
  width: 150px;
  font-size: 18px;
}

.cmn_sec_ads_img img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  /*border-radius: 12px;*/
}

.cmn_sec_ads {
  margin: 10px 0;
}

.container_cc li ul {
  margin-top: 10px
}

.container_cc li ul li {
  margin-left: 50px;
  background: url(images/right_arrow_icon.svg) left 5px;
  background-repeat: no-repeat;
  padding-left: 25px;
  background-size: 20px;
  font-size: 20px;
  line-height: 24px;
}

.container_cc li ul li ul li {
  margin-left: 50px;
}

.our_recipe_tree_cc .card-innr {
  margin: 10px 0;
}

.breadcum {
  display: inline-block;
  list-style: none;
}

.breadcum li {
  display: inline-block;
  padding: 5px 10px;
}

.breadcum li:before {
  display: none;
}

.breadcum li a {
  color: #000;
}

.breadcum .active a {
  color: #5CA515;
}

.restrict_mode_private {
  opacity: 0.65 !important;
  cursor: not-allowed !important;
}

.nav_cc a {
  color: #89C131 !important;
}

.cms_pages.main-heading h1 {
  font-size: 50px !important;
}

.cms_pages.main-heading ul h1 {
  font-size: 50px !important;
}

/****************landing-page-css************************/
.sw-banner {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.sw-banner:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /*background:rgba(0,0,0,0.5);*/
  z-index: 2;
}

.sw-banner-content {
  padding: 307px 0 142px;
  text-align: left;
  position: relative;
  z-index: 3;
  max-width: 672px;
}

.sw-banner-content h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: #fff;
  font-size: 81px;
  margin: 30px 0 55px;
  line-height: 1;
}

.sw-banner-content h2 span {
  color: #89C131;
  display: block;
}

.sw-banner-content p {
  color: #fff;
  font-size: 22px;
  line-height: 1.4;
  margin: 0 0 15px;
  font-weight: 400;
}

.sw-banner-content p b {
  font-weight: 500;
}

.sw-banner-content p a {
  color: #89C131;
}

.sw-pp {
  position: relative;
  margin: 0 0 56px;
  /*  padding-bottom:20px;*/
}

/*.sw-pp:after{
  content:"";
  position: absolute;
  bottom:0;
  left:0;
  right:0;
  background:#C4C4C4;
  max-width:726px;
  margin:0 auto;
  height:3px;      
}*/
.sw-common-gap {
  padding-top: 78px;
  padding-bottom: 78px;
}

.sw-single-left .cookbook-number {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 700;
  width: 98px;
  height: 98px;
}

.sw-single-left p {
  font-size: 16px;
  line-height: 1.4;
  color: #6D6D6D;
}

.sw-single-left p a {
  color: #876728;
  position: relative;
  display: inline-block;
}

.sw-single-left p a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #876728;
  width: 100%;
  height: 1px;
}

.sw-single-left p span {
  color: #5CA515;
}

.sw-single-left {
  padding: 28px 28px;
  background: #f9f9f9;
  border-radius: 20px;
  height: 100%;
}

.row-reverse {
  flex-direction: row-reverse;
  margin-top: 42px;
}

.sw-single-left ul {
  margin: 0 -1%;
  overflow: hidden;
}

.sw-single-left ul li {
  margin: 0 1%;
  width: 48%;
  float: left;
  padding-left: 26px;
  color: #6D6D6D;
  font-size: 16px;
  font-weight: 500;
}

.sw-single-left ul li:before {
  background-image: url(images/ck5.png);
  width: 17px;
  height: 17px;
  background-repeat: no-repeat;
  top: 6px;
}

.g-color {
  display: block;
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  color: #5CA515;
  margin-top: 16px;
}

.sw-single-sec {
  position: relative;
}

.sw-img-one {
  position: absolute;
  top: 78px;
  left: 90px;
}

.sw-img-two {
  position: absolute;
  top: 220px;
  right: 20px;
}

.sw-video-sec figure {
  position: relative;
}

.vc-img {
  width: 100%;
  border-radius: 20px;
}

.sw-video-sec.sw-common-gap {
  /* padding-top: 20px; */
  position: relative;
}

.sw-video-sec:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  height: 300px;
  background: #f9f9f9;
  z-index: -4;
}

.vc-img-one {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 102px;
  height: 102px;
}

.main-footer {
  padding: 26px 0;
  background-color: #151515;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.main-footer p a {
  color: #fff;
}

.main-footer p {
  margin: 0;
}

.main-footer p a:hover {
  color: #5CA515;
}

.sw-banner-content p a:hover {
  color: #5CA515;
}

.sw-banner-content a {
  display: inline-block;
}

.sw-single-left p a:hover {
  color: #5CA515;
}

.sw-single-left p a:hover:after {
  background: #5CA515;
}

.sw-video-sec {
  position: relative;
}

.sk-img-one {
  position: absolute;
  top: -25px;
  left: 142px;
}

.sk-img-two {
  position: absolute;
  top: -20px;
  right: 40px;
}

.sk-img-three {
  position: absolute;
  top: 250px;
  left: -10px;
}

.sk-img-four {
  position: absolute;
  bottom: 84px;
  right: 70px;
}

.sk-img-five {
  position: absolute;
  bottom: -40px;
  left: -20px;
  z-index: -3;
}

.ld-header {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9;
  padding: 25px 0;
}

/* .wpr-div{
  background: 
} */
/* .sw-single-right {
    height: 100%;
} */
.sw-single-right img {
  /* height: 100%; */
  object-fit: cover;
  border-radius: 20px;
}

.new-dog-txt-sec {
  max-width: 320px;
}

#st-1 .st-btn[data-network='whatsapp'] {
  display: inline-block !important;
}



.family-tree-innr.tree2 .our-story {
  min-width: unset;
  height: 100%;
  width: 100%;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fm-tree-sec .edit-profile-text-caption {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
  font-weight: 500;
}

.family-tree-sec .tree-member .our_story_view_btn {
  margin-top: 27px !important;
}

.invitations-sec .cmn-wrap .flex {
  margin-top: 12px;
  text-align: center
}

.picture {
  position: relative;
}

.icon {
  position: absolute;
  top: 73px;
  right: 12px;
  color: red;
  background: white;
  font-size: 20px;
  border-radius: 100%;
  padding: 14px;
}


.faq_accordian .btn-link {
  font-weight: 400;
  color: #89c131;
  background-color: transparent;
}

.faq_accordian .card {
  margin: 10px 0;
  border: none;
}


.new-pdf-img-middle {
  text-align: center;
}




/* .user-small-text{
  max-width: 213px;
  font-size: 11px;
}
.user-small-text P{
width: 269px;
} */



.user-uniq-id {
  margin: 0 auto;
  display: flex;
  justify-content: end;
  width: 100%;
}

.user-small-text {
  font-size: 10px;
  text-align: right;
}

.user-small-text p {
  width: auto;
  text-align: left;
  margin: 0;
}

.member-unique-id p {
  font-size: 13px;
  margin: 0;
}

.member-header {
  margin: 0;
}

.ort-unique-id {
  display: flex;
  justify-content: end;
  font-weight: 500;
  font-size: 15px;
}

.ort-unique-no {
  display: flex;
  justify-content: end;
  font-size: 13px;
  font-weight: 700;
  color: #89C131;
}

.member-ort-unique-id {
  margin: 0;
  font-weight: 500;
  font-size: 18px;
}

.member-ort-unique-id span {
  color: #89C131;
}

.member-ort-unique {
  font-size: 14px;
  font-weight: 700;
  color: #89C131;
  margin-bottom: 14px;
}

.cancel-subscription:hover {

  background-color: #c82333 !important;
}

.navbar-expand-lg .navbar-collapse {
  padding-bottom: 11px;
}




.new_form_check {
  margin-left: 30px !important;
}

.new_add-more-dishes {
  justify-content: flex-start;
}


.new_up_inner-second {
  margin-bottom: 0;
}


.new_change_pass_sce-gap {
  padding-bottom: 0;
  margin-bottom: 48px;
}

.new_all-font_fix_inner {
  font-size: 16px;
}

.new_all-font_fix_inner span {
  font-size: 11px;
  margin-left: 8px;
}

.circle-mem1 {
  left: 55%;
  top: -4%;
}

.circle-mem2 {
  top: 0%;
  right: 16%;
}

.circle-mem3 {
  top: 14%;
  right: 3%;
}

.circle-mem4 {
  top: 36%;
  right: 0%;
}

.circle-mem5 {
  top: 60%;
  right: 0%;
}

.circle-mem6 {
  top: 80%;
  right: 9%;
}

.circle-mem7 {
  top: 85%;
  right: 29%;
}

.circle-mem8 {
  top: 85%;
  right: 50%;
}

.circle-mem9 {
  top: 81%;
  right: 70%;
}

.circle-mem10 {
  top: 65%;
  right: 84%;
}

.circle-mem11 {
  top: 44%;
  right: 87%;
}

.circle-mem12 {
  top: 24%;
  right: 86%;
}

.circle-mem13 {
  top: 7%;
  right: 77%;
}

.circle-mem14 {
  top: 0%;
  right: 63%;
}

.circle-mem15 {
  top: -7%;
  right: 49%;
}

.circle-mem16 {
  width: 154px !important;
  height: 156px !important;
}

.circle-story {
  padding: 52px !important;
}

.footer-text {
  margin: 0 auto;
  text-align: center !important;
}

.contributed-text {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contributed-text h5 {
  margin-bottom: 0;
  font-size: 14px;
}

.contributed-text i {
  padding-left: 9px;
  font-size: 14px;
}

.select2-container--default .select2-selection--multiple {
  height: 91px !important;
  overflow: scroll !important;
  width: 100% !important;

}

.cover-box-new {
  padding-top: 12%;
}

.upload-box .front-preview-image {
  width: 100%;
  height: 100%;
  border-radius: 100% !important;
  background: #fff !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.upload-box .back-image {
  width: 100%;
  height: 100%;
  border-radius: 100% !important;
  background: #fff !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.delete-tree-template {
  top: 7%;
  left: 87%;
  background: center;
}

.night-mode-toogle {
  position: relative;
  top: 0;
  left: 40px;
}

.night-mode-toogle input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.night-mode-toogle label {
  width: 51px;
  height: 26px;
  background-color: #5e3120;
  display: flex;
  border-radius: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  position: relative;
  transform: scale(1.5);
}

.night-mode-toogle .fa-moon::before {
  color: #070707;
  opacity: 0;
}

.night-mode-toogle .fa-sun::before {
  color: #fff;
}

.night-mode-toogle .ball {
  width: 20px;
  height: 20px;
  background-color: #89c131;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 50%;
  transition: transform 0.2s linear;
}

.night-mode-toogle .checkbox:checked+.label .ball {
  transform: translateX(24px);
}

::placeholder {
  color: #afafaf !important;
  opacity: 1;
}

.family_member {
  padding: 14px;
}

/**************************/

.recipe-table th {
  padding: 10px;
}

.table_sorting_wrapper {
  display: flex;
  align-items: center;
}

.arrow_sorting {
  position: relative;
  top: 5px;
  margin: 0 0 0 10px;
}

.arrow_sorting a.up_arrow {
  position: absolute;
  transform: rotate(180deg);
  top: -14px;
}

.recipe_description_box_wrapper {
  display: flex;
  align-items: center;
  width: 85%;
}

.recipe_description_box_wrapper .recipe_description_box {
  width: calc(100% / 4);
  margin: 0 10px 0 0;
}

.recipe_description_box .card-innr-box {
  min-height: 100px !important;
}

.recipe_description_box .card-innr figure {
  min-height: 45px;
}


.profile-inner h1 {
  padding-top: 23px;
  font-size: 38px;
}

.profile-box-sec {
  box-shadow: 0 0px 37px #c5c5c5;
  border-radius: 10px;
}

.profile-box-sec .row {
  text-align: center;
  padding-top: 25px;
  padding-bottom: 95px;
  width: 100%;
}

.profile-box-sec .row .col-md-4 img {
  width: 321px;
  height: 274px;
}

.profile-box-sec .row .col-md-4 {
  padding-left: 100px;
}

.profile-box-sec .row .col-md-8 {
  padding-left: 100px;
  text-align: left;
}

.profile-box-sec .row .col-md-8 h3 {
  font-size: 41px;
  font-weight: 400;
  color: #000;
}

.profile-box-sec .row .col-md-8 h5 {
  font-size: 30px;
  font-weight: 400;
  padding-bottom: 12px;
  color: #5E3120;
}

.profile-box-sec .row .col-md-8 p {
  font-size: 16px;
  line-height: 29px;
  color: #5E3120;
  font-family: 'Roboto', sans-serif;
}

.profile-box-sec .profile-button .profile-new-button {
  padding: 8px 105px !important;
}

.home-profile-sec {
  margin-bottom: 44px;
}

.home-profile-sec h2 {
  font-size: 34px;
}

.home-profile-sec p {
  line-height: 24px;
}

.fetures-recipe-sec h2 {
  font-size: 34px;
}

.profile-inner {
  font-size: 41px;
  font-weight: 400;
  color: #000;
}

.fetures-heading {
  font-size: 40px;
  font-weight: 300;
  color: #000;
}

.fetures-heading h1 {
  font-size: 38px;
}

.slider-span {
  font-size: 16px;
  line-height: 29px;
  color: #89C131;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  text-align: center;

}

.video-sec {
  padding-top: 50px;
  padding-bottom: 100px;
}

.video-sec .row {
  margin-left: 20px;
  margin-right: 20px;
}

.video-sec .col-md-6 {
  max-width: 100%;
}

.feature-recipe {
  text-align: center;
  padding-bottom: 22px;
  box-shadow: 0 0 20px rgb(0 0 0 / 15%);
}

.feature-recipe img {
  width: 272px;
  height: 166px;
  object-fit: cover;
  border-radius: 6px;
}

.profile-cmn-pic {
  overflow: hidden;
  padding: 30px;
}

.profile-cmn-pic img {
  border-radius: 20px;
  height: 246px;
  object-fit: contain;
}

.feature-recipe-box {
  padding: 20px 110px;
}

.home-profile-sec .cmn-box {
  padding: 0px;
}



.feature-recipe1 {
  padding: 20px 20px 15px 20px;
}

.recommended-printer {
  color: #00a5d0;
}

.file-image-border {
  border-radius: 10px;
}

.file-cc img {
  width: 460px;
  height: 280px;
  object-fit: cover;
}


@media(max-width:1199px) {
  .share-list {
    position: inherit;
    margin: 0 0 10px;
    right: 0;
  }
}

.upload-box-wrapper {
  text-align: center;
  margin: 0 0 20px;
}

.upload-box-wrapper .pre-preview-image {
  width: 40%;
  height: 321px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 10px;
  background: #F4F4F4;
  overflow: hidden;
  position: relative;
  margin: 10px auto;
}

.upload-box-wrapper-input {
  position: relative;
}

.upload-hdr-upload {
  text-align: center;
}

.delete_icon .icon {
  top: 60px;
  left: auto;
  background: #fff;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.delete_icon .pin {
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 999;
}

.img_txt {
  font-size: 11px;
  line-height: 15px !important;
}

.cover-box-inner-wrapper .upload-box {
  width: 40%;
  margin: 0 auto;
}

.cover-box-inner-wrapper p {
  text-align: center;
}

.prev_next_btn {
  display: flex;
  align-items: center;
}

.prev_next_btn a {
  margin: 15px 0 0 0;
}

.upload-box-wrapper .galler-image-cc {
  width: 40%;
  height: 321px;
}

.galler-image-cc>img {
  width: 100%;
  height: 321px;
  -o-object-fit: cover;
  object-fit: cover;
}

.web-logo {
  width: 276px;
}

.cover-note {
  font-size: 14px;
  font-weight: 500;
}

.youtube-title {
  margin-bottom: 30px;
}

.limit-character {
  color: red;
  font-size: 12px;
}

.copy-member-label {
  color: #333 !important;
  font-size: 15px !important;
}

.select2-container--default .select2-selection--multiple {
  height: 70px !important;
}

.tooltips {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltips .tooltiptext {
  visibility: hidden;
  width: 533px;
  background-color: #35744d;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  bottom: 0%;
}

.tooltips:hover .tooltiptext {
  visibility: visible;
}

@media only screen and (max-width:800px) {

  /* For tablets: */
  .tooltips .tooltiptext {
    width: 169px;
  }
}

@media screen and (max-width: 380px) {
  .tooltips .tooltiptext {
    width: 139px;
  }
}

@media only screen and (max-width:500px) {

  /* For mobile phones: */
  .tooltips .tooltiptext {
    width: 160px;
  }
}

.gift-section {
  padding: 55px 0;
}

.index-2 {
  background: #FFFFFF;
  box-shadow: 0px 20px 40px rgba(3, 0, 77, 0.04);
  -webkit-box-shadow: 0px 20px 40px rgba(3, 0, 77, 0.04);
  padding: 29px 12px;
  border-radius: 12px;
  margin: 15px 8px 0;
}