/*
* Theme Name: FitBody
* Author: Nxt Web Studio
* Text Domain: nxt
* Version: 1.0.01
*/
/* Common elements styling */
.post .entry ul {
  margin-left: 25px;
}

.post .entry ol {
  margin-left: 25px;
}

.post .entry a img {
  border: 0;
}

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

img.centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

img.alignright {
  margin: 2px 0 2px 7px;
  display: inline;
}

img.alignleft {
  margin: 2px 7px 2px 0;
  display: inline;
}

.alignright {
  float: right;
  display: inline;
}

.alignleft {
  float: left;
  display: inline;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Calendar widget */
#wp-calendar {
  empty-cells: show;
  margin: 10px auto 0;
}

#wp-calendar #next a {
  padding-right: 10px;
  text-align: right;
}

#wp-calendar #prev a {
  padding-left: 10px;
  text-align: left;
}

#wp-calendar a {
  display: block;
}

#wp-calendar caption {
  text-align: center;
  width: 100%;
}

#wp-calendar td {
  padding: 3px 0;
  text-align: center;
}

.wp-caption {
  border: 1px solid #ddd;
  text-align: center;
  padding-top: 4px;
  margin: 10px;
}

.wp-caption img {
  margin: 0;
  padding: 0;
  border: 0 none;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  padding: 0 4px 5px;
  margin: 0;
}

.searchform label {
  color: #fff;
}

/* Big images in rich text editor should not break page layout */
.post .entry,
.content {
  overflow: hidden;
}

.edit-page {
  text-align: right;
  margin-bottom: 20px;
  position: absolute;
  top: 0;
  right: 0;
}

/* ------------------------------------------------------------ *	Variables
\* ------------------------------------------------------------ */
/*  Base Font  */
/*  Shell  */
/*  Media Queries  */
/*  Colours  */
/* ------------------------------------------------------------ *	Reset
\* ------------------------------------------------------------ */
*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
main {
  display: block;
}

html {
  tap-highlight-color: transparent;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
}

img,
iframe,
video,
audio,
object {
  max-width: 100%;
}

img,
iframe {
  border: 0 none;
}

img {
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

b,
strong {
  font-weight: bold;
}

address {
  font-style: normal;
}

svg:not(:root) {
  overflow: hidden;
}

a,
button,
input[type="submit"],
input[type="button"],
input[type="reset"],
input[type="file"],
input[type="image"],
label[for] {
  cursor: pointer;
}

a[href^="tel"],
button[disabled],
input[disabled],
textarea[disabled],
select[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="color"],
textarea,
a[href^="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

button,
select {
  text-transform: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

nav ul,
nav ol {
  list-style: none outside none;
}

/* ------------------------------------------------------------ *	Helpers
\* ------------------------------------------------------------ */
/*  Clear  */
.clear {
  content: '';
  display: block;
  clear: both;
}

/*  Notext  */
.notext {
  overflow: hidden;
  text-indent: 101%;
  white-space: nowrap;
}

/*  Hidden  */
[hidden],
.hidden {
  display: none !important;
}

/*  Alignleft  */
.alignleft {
  float: left;
}

/*  Alignright  */
.alignright {
  float: right;
}

/*  Disabled  */
[disabled],
.disabled {
  cursor: default;
}

/*  Flexbox  */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-align-y-top {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-align-y-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-y-bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-align-x-left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-align-x-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-align-x-spaced {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-align-x-justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-align-x-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/*  Grid  */
.col {
  max-width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 10px;
}

.cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin: 0 -10px;
}

.col-1of2 {
  max-width: 50%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

@media (max-width: 1023px) {
  .col {
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding: 0;
  }

  .cols {
    margin: 0;
  }

  .col+.col {
    margin-top: 20px;
  }
}

/*  Responsive Helpers  */
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none;
}

@media (max-width: 884px) {
  .hidden-xs {
    display: none !important;
  }

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

  .visible-xs-inline {
    display: inline !important;
  }

  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 885px) and (max-width: 1023px) {
  .hidden-sm {
    display: none !important;
  }

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

  .visible-sm-inline {
    display: inline !important;
  }

  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .hidden-md {
    display: none !important;
  }

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

  .visible-md-inline {
    display: inline !important;
  }

  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1201px) {
  .hidden-lg {
    display: none !important;
  }

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

  .visible-lg-inline {
    display: inline !important;
  }

  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

/* ------------------------------------------------------------ *	Base
\* ------------------------------------------------------------ */
@font-face {
  font-family: 'Gilroy';
  src: url("css/fonts/gilroy-black-webfont.eot");
  src: url("css/fonts/gilroy-black-webfont.eot?#iefix") format("embedded-opentype"), url("css/fonts/gilroy-black-webfont.woff2") format("woff2"), url("css/fonts/gilroy-black-webfont.woff") format("woff"), url("css/fonts/gilroy-black-webfont.ttf") format("truetype"), url("css/fonts/gilroy-black-webfont.svg#gilroy-blackuploaded_file") format("svg");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url("css/fonts/gilroy-bold-webfont.eot");
  src: url("css/fonts/gilroy-bold-webfont.eot?#iefix") format("embedded-opentype"), url("css/fonts/gilroy-bold-webfont.woff2") format("woff2"), url("css/fonts/gilroy-bold-webfont.woff") format("woff"), url("css/fonts/gilroy-bold-webfont.ttf") format("truetype"), url("css/fonts/gilroy-bold-webfont.svg#gilroy-bolduploaded_file") format("svg");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url("css/fonts/gilroy-regular-webfont.eot");
  src: url("css/fonts/gilroy-regular-webfont.eot?#iefix") format("embedded-opentype"), url("css/fonts/gilroy-regular-webfont.woff2") format("woff2"), url("css/fonts/gilroy-regular-webfont.woff") format("woff"), url("css/fonts/gilroy-regular-webfont.ttf") format("truetype"), url("css/fonts/gilroy-regular-webfont.svg#gilroy-regularuploaded_file") format("svg");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url("css/fonts/Roboto-Regular.ttf");
  src: url("css/fonts/Roboto-Regular.ttf") format("embedded-opentype"), url("css/fonts/Roboto-Regular.ttf") format("ttf"), url("css/fonts/Roboto-Regular.ttf") format("ttf"), url("css/fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url("css/fonts/Roboto-Bold.ttf");
  src: url("css/fonts/Roboto-Bold.ttf") format("embedded-opentype"), url("css/fonts/Roboto-Bold.ttf") format("ttf"), url("css/fonts/Roboto-Bold.ttf") format("ttf"), url("css/fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: bold;
}

@font-face {
  font-family: 'OpenSans';
  src: url("css/fonts/OpenSans-Bold.ttf");
  src: url("css/fonts/OpenSans-Bold.ttf") format("embedded-opentype"), url("css/fonts/OpenSans-Bold.ttf") format("ttf"), url("css/fonts/OpenSans-Bold.ttf") format("ttf"), url("css/fonts/OpenSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: bold;
}

@font-face {
  font-family: 'OpenSans';
  src: url("css/fonts/OpenSans-Regular.ttf");
  src: url("css/fonts/OpenSans-Regular.ttf") format("embedded-opentype"), url("css/fonts/OpenSans-Regular.ttf") format("ttf"), url("css/fonts/OpenSans-Regular.ttf") format("ttf"), url("css/fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

body {
  min-width: 320px;
  background: #fff;
  font-family: "OpenSans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: #000;
  counter-reset: number;
}



@media (max-width: 884px) {
  body {
    background: none !important;
  }

  body .wrapper {
    padding-top: 40px;
  }
}

body.woocommerce-checkout {
  background: none;
}

body.woocommerce-checkout .wrapper {
  padding: 0;
}

body.woocommerce-checkout footer {
  padding: 20px;
}

body.woocommerce-checkout footer .copyright {
  padding-top: 0;
  border-top: none;
}

body.woocommerce-cart {
  background: none;
}

body.post-type-archive-testimonial {
  background: none;
}

body.post-type-archive-testimonial .main {
  margin-top: 120px;
}

body.post-type-archive-testimonial .header {
  background: #1c1c1c;
}

body.post-type-archive-testimonial .wrapper {
  padding-top: 0;
}

body.single-product {
  background: #fff url(css/images/temp/pge-single-bg.jpg) center 0 no-repeat;
}

@media (max-width: 884px) {
  body.single-product {
    background: none !important;
  }
}

body.single-product--secondary .main {
  background-position: center 1460px;
}

@media (max-width: 884px) {
  body.single-product--secondary .main {
    background-position: center 30vh;
  }
}

body.home .header .cart {
  background: #1c1c1c00 !important;
  transition: 0.3s;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #1c1c1c !important;
}

@media (max-width: 884px) {

  /*body.home { background: #fff url(css/images/temp/intro-bg.jpg) center -300px no-repeat; -webkit-background-size: auto; }*/
  body.single-product .header {
    /* background: none; */
  }
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a[href^='tel'] {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* margin-bottom: 14px; */
  line-height: 1.2;
  font-family: "Roboto", sans-serif, serif;
}

/* h1 {
  font-size: 60px;
} */

/* h2 {
  font-size: 53px;
  line-height: 1.3;
  font-weight: bold;
  color: #212121;
  padding-bottom: 4%;
  text-align: center;
} */

/* h3 {
  font-size: 24px;
  font-weight: bold;
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
} */

p,
ul,
ol,
dl,
table,
blockquote {
  margin-bottom: 10px;
}

h1[class],
h2[class],
h3[class],
h4[class],
h5[class],
h6[class],
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:last-child,
ol:last-child,
dl:last-child,
table:last-child,
blockquote:last-child {
  margin-bottom: 0;
}

@media (max-width: 884px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;
    color: #212121;
  }

  h3 {
    font-size: 20px;
    font-weight: 700;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 17px;
  }

  h6 {
    font-size: 15px;
  }

  p {
    font-size: 15px;
  }
}

@media (max-width: 509px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: #212121;
  }

  h3 {
    font-size: 18px;
    font-weight: 700;
  }

  h4 {
    font-size: 17px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 15px;
  }

  p {
    font-size: 15px;
  }
}

/* ------------------------------------------------------------ *	Icons
\* ------------------------------------------------------------ */
.sticker {
  display: inline-block;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  padding: 12px 20px;
  top: -8px;
  right: -2%;
  background-repeat: no-repeat;
  font-size: 18px;
  line-height: 1;
  z-index: 10;
  font-family: "Gilroy", sans-serif, serif;
}

/* ------------------------------------------------------------ *	Buttons
\* ------------------------------------------------------------ */
.btn {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

.btn-block {
  display: block;
  width: 100%;
}

.btn-blocked {
  pointer-events: none;
}

/* ------------------------------------------------------------ *		Button Menu
\* ------------------------------------------------------------ */
.btn-menu {
  margin-top: -25px;
  position: relative;
  z-index: 50;
  display: inline-block;
  vertical-align: middle;
  width: 27px;
  height: 19px;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.btn-menu span {
  position: absolute;
  left: 0;
  display: block;
  height: 3px;
  width: 200%;
  background: #fff;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  font-size: 0;
  line-height: 0;
  text-indent: -4004px;
  -webkit-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  border-radius: 0px;
}

.btn-menu span:nth-child(1) {
  top: 0px;
}

.btn-menu span:nth-child(2) {
  top: 20px;
}

.btn-menu span:nth-child(3) {
  top: 40px;
}

.btn-menu.open span {
  background: #fff;
}

.btn-menu.open span:nth-child(1) {
  top: 8px;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.btn-menu.open span:nth-child(2) {
  left: -60px;
  opacity: 0;
}

.btn-menu.open span:nth-child(3) {
  top: 8px;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.btn-small {
  border: 1px solid transparent;
  background-color: transparent;
  font-size: 18px;
  font-family: "Gilroy", sans-serif, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  padding: 9.5px 32px;
  border-radius: 20px;
  -webkit-transition: color .3s, background .3s;
  -o-transition: color .3s, background .3s;
  transition: color .3s, background .3s;
  display: inline-block;
  line-height: 1;
}

.btn-small.btn--green {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#68b24d), to(#8ce21d));
  background-image: -webkit-linear-gradient(#68b24d, #8ce21d);
  background-image: -o-linear-gradient(#68b24d, #8ce21d);
  background-image: linear-gradient(#68b24d, #8ce21d);
}

.btn-small.btn--green:hover {
  text-decoration: none;
  background: none;
  border: 1px solid #fff;
}

.btn-medium {
  border: 1px solid transparent;
  text-align: center;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #FFA800;
  display: block;
  width: 100%;
  border-radius: 30px;
  padding: 20px;
  line-height: 1;
  -webkit-transition: color .3s, background .3s;
  -o-transition: color .3s, background .3s;
  transition: color .3s, background .3s;
}

.btn-medium:hover {
  text-decoration: none;
  background-color: #fff !important;
  border: 1px solid #FFA800;
  color: #FFA800;
}

.btn-big {
  font-size: 18px;
  padding: 20px;
  width: 100%;
  display: block;
  text-align: center;
  border-radius: 50px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  -webkit-transition: color .3s, background .3s;
  -o-transition: color .3s, background .3s;
  transition: color .3s, background .3s;
}

.btn-big:hover {
  text-decoration: none;
  background-color: transparent !important;
}

.btn-big.btn--green-border {
  border-color: #299a0b;
  color: #299a0b;
}

.btn-big.btn--green-border:hover {
  background: #299a0b !important;
  color: #fff;
}

.btn-big.btn--purple-border {
  border-color: #7b2bad;
  color: #7b2bad;
}

.btn-big.btn--purple-border:hover {
  background: #7b2bad !important;
  color: #fff;
}

.btn--green {
  background-color: #73b05c;
}

.btn--green:hover {
  text-decoration: none;
  background-color: transparent;
}

.btn--purple {
  background-color: #754590;
}

.btn--purple:hover {
  text-decoration: none;
  background-color: transparent;
}

.btn--pink {
  background-color: #f9928f;
  border-color: #f9928f;
}

.btn--pink:hover {
  text-decoration: none;
  background-color: transparent;
}

.btn-smaller {
  font-size: 14px;
  color: #2a8a11;
  text-decoration: underline;
  border: 1px solid #ececec;
  padding: 15px 20px;
  border-radius: 20px;
}

.btn-smaller:hover {
  text-decoration: none;
  background-color: #2a8a11;
  color: #fff;
}

/* ------------------------------------------------------------ *	Wrapper
\* ------------------------------------------------------------ */
.wrapper {
  position: relative;
  /* min-height: 100vh; */
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  -o-transition: transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
  overflow: hidden;
}

.wrapper:after {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  opacity: 0;
  -webkit-transition: opacity .4s, visibility .4s;
  -o-transition: opacity .4s, visibility .4s;
  transition: opacity .4s, visibility .4s;
  visibility: hidden;
}

.wrapper.menu-open {
  -webkit-transform: translateX(320px);
  -ms-transform: translateX(320px);
  transform: translateX(320px);
  max-width: 100vw;
  position: fixed;
  overflow: visible;
}

.home .wrapper {
  padding-top: 0;
}

/* ------------------------------------------------------------ *	Shell
\* ------------------------------------------------------------ */
.shell {
  max-width: 1220px;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0 auto;
}

/* ------------------------------------------------------------ *	List
\* ------------------------------------------------------------ */
[class^='list'] ul {
  list-style-type: none;
  margin: 0;
}

.list-review {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}

.list-review li+li {
  margin-left: 3px;
}

.list-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  list-style: none;
  width: 100%;
  font-size: 14px;
}

.list-text li {
  margin-left: 5%;
}

.list-badges {
  display: none !important;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 1023px) {
  .list-badges {
    display: none !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .list-badges li {
    padding: 10px;
  }
}

.list-details {
  text-transform: uppercase;
  font-family: "Gilroy", sans-serif, sans-serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  list-style: none;
}

.list-details li {
  padding-left: 26px;
  position: relative;
}

.list-details li:before {
  content: url(css/images/temp/check.svg);
  display: block;
  width: 13px;
  height: 13px;
  position: absolute;
  top: 1px;
  left: 2px;
}

.list-details li+li {
  margin-top: 25px;
}

.list-fields {
  list-style: none;
  border-radius: 50px;
  overflow: hidden;
}

.list-fields li {
  padding: 30px 43px 25px 43px;
}

.list-fields li:first-child {
  padding-top: 36px;
}

.list-fields li+li {
  border-top: 1px solid #e1e1e1;
}

.list-fields li:nth-child(odd) {
  background: #f5f5f5;
}

.list-radios {
  list-style: none;
}

.list-radios h5 {
  text-transform: uppercase;
  font-size: 17px;
}

.list-radios .radio {
  font-family: "Gilroy", sans-serif, sans-serif;
}

.list-radios .radio input {
  display: none;
}

.list-radios .radio input[type=radio]+label {
  border-radius: 7px;
  display: block;
  width: 100%;
  padding: 20px 20px 20px 45px;
  position: relative;
}

.list-radios .radio input[type=radio]+label:before {
  content: '';
  width: 20px;
  height: 20px;
  display: block;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 3px;
  position: absolute;
  top: 23px;
  left: 10px;
}

.list-radios .radio input[type=radio]+label:after {
  content: url(css/images/temp/check.svg);
  display: none;
  width: 13px;
  height: 13px;
  position: absolute;
  top: 25px;
  left: 13px;
}

.list-radios .radio input[type=radio]+label:hover {
  background-color: #f0f0f0;
}

.list-radios .radio input[type=radio]+label .price {
  font-size: 17px;
  font-weight: 700;
}

.list-radios .radio input[type=radio]+label .price del {
  color: #ee000e;
}

.list-radios .radio input[type=radio]+label .price ins {
  color: #467e3b;
  text-decoration: none;
}

.list-radios .radio input[type=radio]:checked+label {
  display: block;
  width: 100%;
  background-color: #f0f0f0;
  padding: 20px 20px 20px 45px;
}

.list-radios .radio input[type=radio]:checked+label:before {
  border-color: transparent;
}

.list-radios .radio input[type=radio]:checked+label:after {
  display: block;
}

.list-info {
  font-size: 16px;
}

.list-payments {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.list-payments li+li {
  margin-left: 7px;
}

.list-payments a {
  pointer-events: none;
}

.list-features {
  list-style: none;
  font-size: 16px;
  padding-left: 30px;
}

.list-features li {
  position: relative;
  margin-bottom: 20px;
}

.list-features li strong {
  font-size: 17px;
  text-transform: uppercase;
  font-family: "Gilroy", sans-serif, sans-serif;
}

.list-features li p {
  margin-bottom: 5px;
}

.list-features li:before {
  content: url(css/images/icons/ico-tick.svg);
  width: 80px;
  height: 80px;
  display: inline-block;
  position: absolute;
  top: -30px;
  left: -59px;
  pointer-events: none;
}

.list-features-secondary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  list-style: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.list-features-secondary img {
  width: 100%;
  max-width: 70px;
  height: 100%;
  max-height: 30px;
}


.list-features-secondary li {
  /* min-width: 53%; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  align-items: flex-start;
  font-size: 14px;
  color: #000000;
  text-transform: uppercase;
  position: relative;
  flex-direction: column;
}

.list-features-secondary li:nth-child(odd) {
  padding-right: 0;
}

.list-features-secondary li b {
  /* position: absolute;
  top: -70%;
  left: 100px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-left: 0;
  margin-left: 0px;*/
  margin-bottom: 13px;
}

.list-features-secondary li {
  margin-top: 33px;
}

@media (max-width: 509px) {
  .list-features-secondary li {
    width: 30%;
  }
}

.list-accordion {
  list-style: none;
  font-size: 16px;
  color: #380e50;
  font-size: 16px;
  color: #380e50;
  font-weight: 700;
}

.list-accordion li {
  border-bottom: 1px solid #eeeeee;
}

.list-accordion li>a {
  display: block;
  position: relative;
  color: #383838;
  padding: 17px 24px;
}

.list-accordion li>a:after {
  content: '';
  width: 1px;
  height: 11px;
  background: currentColor;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(0deg);
  -ms-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.list-accordion li>a:before {
  content: '';
  width: 11px;
  height: 1px;
  background: currentColor;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.list-accordion li>a.active,
.list-accordion li>a:hover {
  color: #ed1c24;
  text-decoration: none;
}

.list-accordion li>a.active:after {
  -webkit-transform: translateY(-50%) rotate(270deg);
  -ms-transform: translateY(-50%) rotate(270deg);
  transform: translateY(-50%) rotate(270deg);
}

.list-accordion li a.link-scroll:after {
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  right: 18px;
  height: 7px;
}

.list-accordion li a.link-scroll:before {
  -webkit-transform: translateY(-50%) rotate(-135deg);
  -ms-transform: translateY(-50%) rotate(-135deg);
  transform: translateY(-50%) rotate(-135deg);
  right: 20px;
  width: 7px;
}

.list-accordion li p {
  font-size: 15px;
  font-weight: 400;
  color: #000;
}

.list-accordion li:last-child {
  border-bottom: 0;
}

.list-accordion .list__content {
  display: none;
  padding: 0px 24px 17px;
  margin-top: -8px;
}

.list-accordion .list__content a {
  text-decoration: underline;
}

.list-accordion .list__content a:hover {
  text-decoration: none;
}

.list-goals {
  list-style: none;
}

.list-goals li {
  text-align: center;
  color: #380e50;
  font-size: 15px;
  padding: 0 24px;
  line-height: 1.6;
  min-width: 25%;
}

.list-goals li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 124px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.list-goals li span img {
  height: auto;
  width: auto;
  max-width: auto;
  max-height: auto;
  display: block;
}

.list-goals li img {
  margin-bottom: 20px;
  display: inline-block;
  max-width: 100px;
}

.list-goals li p {
  margin-bottom: 10px;
}

.list-goals li p+p {
  color: #000;
}

.list-goals li strong {
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Gilroy", sans-serif, sans-serif;
  font-size: 17px;
}

.list-goals .slick-dots {
  bottom: -18px;
}

.list-goals .slick-dots button {
  font-size: 0;
  line-height: 0;
  text-indent: -4004px;
}

.list-goals .slick-dots li {
  width: auto;
  padding: 0;
  min-width: auto;
}

@media (max-width: 884px) {
  .list-goals {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.list-ingredients {
  list-style: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.list-ingredients li {
  text-align: center;
  font-size: 22px;
  color: #380e50;
  text-transform: uppercase;
  font-family: "Gilroy", sans-serif, sans-serif;
  font-weight: 700;
  width: 190px;
  padding-top: 50px;
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
}

.list-ingredients li img {
  display: inline-block;
}

.list-ingredients li p {
  text-align: center;
  color: #000;
}

.list-ingredients li:nth-child(1n) {
  background: url(css/images/temp/ingr-bg-1.jpg) no-repeat center 0;
}

.list-ingredients li:nth-child(2n) {
  background: url(css/images/temp/ingr-bg-2.jpg) no-repeat center 0;
}

.list-ingredients li:nth-child(3n) {
  background: url(css/images/temp/ingr-bg-3.jpg) no-repeat center 0;
}

.list-ingredients li:nth-child(4n) {
  background: url(css/images/temp/ingr-bg-4.jpg) no-repeat center 0;
}

.list-ingredients li:nth-child(5n) {
  background: url(css/images/temp/ingr-bg-5.jpg) no-repeat center 0;
}

.list-ingredients li:nth-child(6n) {
  background: url(css/images/temp/ingr-bg-6.jpg) no-repeat center 0;
}

.list-ingredients .slick-dots {
  bottom: -48px;
}

.list-ingredients .slick-dots button {
  font-size: 0;
  line-height: 0;
  text-indent: -4004px;
  width: auto;
  padding: 0;
  width: 15px;
  height: 15px;
}

.list-ingredients .slick-dots li {
  padding: 0;
  width: auto;
  margin: 0 2px;
}

.list-prepare {
  list-style: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.list-prepare li {
  text-align: center;
  -width: 267px;
  font-size: 15px;
  line-height: 1.67;
  margin-left: 5px;
  margin-right: 5px;
}

.list-prepare li strong {
  color: #380e50;
  font-family: "Gilroy", sans-serif, sans-serif;
  font-size: 22px;
}

.list-prepare li img {
  margin-bottom: 20px;
  display: inline-block;
}

.list-prepare .slick-dots {
  bottom: -28px;
}

.list-prepare .slick-dots button {
  font-size: 0;
  line-height: 0;
  text-indent: -4004px;
  width: auto;
  padding: 0;
  width: 15px;
  height: 15px;
}

.list-prepare .slick-dots li {
  padding: 0;
  width: auto;
  margin: 0 2px;
}

.list-tips {
  list-style: none;
  font-size: 16px;
  color: #380e50;
  padding-top: 20px;
}

.list-tips li {
  padding-left: 71px;
  font-size: 16px;
  line-height: 1.56;
  position: relative;
  color: #000;
}

.list-tips li:before {
  counter-increment: number;
  content: "#" counter(number);
  position: absolute;
  top: -5px;
  left: 0;
  font-size: 34px;
  font-family: "Gilroy", sans-serif, sans-serif;
  font-weight: 700;
}

.list-tips li+li {
  margin-top: 20px;
}

.list-reviews {
  list-style: none;
}

.list-reviews li {
  background: #fff;
}

.list-reviews>li {
  border: 1px solid #e1e1e1;
  border-radius: 25px 0 0 25px;
  padding: 30px 40px 40px 40px;
  position: relative;
}

.list-reviews>li p {
  font-size: 15px;
  line-height: 1.6;
}

.list-reviews>li p strong {
  font-size: 18px;
  color: #333;
  font-family: "Gilroy", sans-serif, sans-serif;
}

.list-reviews>li+li {
  margin-top: 20px;
}

.list-reviews .btn-smaller {
  position: absolute;
  bottom: -1px;
  right: -1px;
  border-radius: 20px 0 0 0;
  text-transform: uppercase;
  font-size: 14px;
}

.list-faq {
  list-style: none;
}

.list-faq>li {
  padding-left: 60px;
  position: relative;
}

.list-faq>li:before {
  content: '?';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 24px;
  color: #9136c6;
  font-weight: 700;
  border: 1px solid #9136c6;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 38px;
}

.list-faq>li p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

.list-faq>li p strong {
  font-size: 18px;
  color: #333;
}

.list-faq>li+li {
  margin-top: 25px;
}

.list-bundle {
  list-style: none;
  border-radius: 50px 50px 0 0;
  overflow: hidden;
  margin-bottom: 0;
}

.list-bundle h6 {
  color: #299a0b;
}

.list-bundle p {
  font-size: 17px;
  line-height: 1.7;
  color: #380e50;
  font-weight: 700;
  text-transform: uppercase;
}

.list-bundle li {
  padding: 25px 43px 25px 107px;
  position: relative;
}

.list-bundle li:before {
  content: '';
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: block;
  margin-top: -25px;
  position: absolute;
  top: 50%;
  left: 33px;
  background: url(css/images/icons/ico-check.png) no-repeat center center;
}

.list-bundle li+li {
  border-top: 1px solid #e1e1e1;
}

.list-bundle li:nth-child(odd) {
  background: #f5f5f5;
}

.list-get {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.list-get li {
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  width: 280px;
  position: relative;
}

.list-get li span {
  font-size: 16px;
  color: #380e50;
  font-weight: 700;
}

.list-get li+li {
  padding-left: 60px;
  margin-left: 60px;
}

.list-get li+li:before {
  content: '+';
  font-size: 95px;
  color: #380e50;
  font-weight: 700;
  position: absolute;
  top: 15px;
  left: -25px;
}

.list-get .list-inner {
  max-width: 970px;
  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;
}

.list-get .list-inner-double {
  position: relative;
}

.list-get .list-inner-double:before {
  content: '';
  width: 140px;
  height: 17px;
  display: block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}

.list-get .list-inner-double:after {
  content: '';
  width: 140px;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.list-get p {
  max-width: 250px;
  margin: auto;
  padding-top: 25px;
  margin-top: 19px;
  position: relative;
}

.list-get p:before {
  content: '';
  width: 1px;
  height: 17px;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  background: #fff;
}

@media (max-width: 884px) {
  .list-get {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .list-get p {
    padding-top: 0;
  }

  .list-get li+li {
    padding-left: 0;
    margin-left: 0;
    padding-top: 30px;
  }

  .list-get li+li:before {
    display: none;
  }
}

.list-numbered {
  list-style: none;
}

.list-numbered li {
  padding-left: 55px;
  font-size: 22px;
  line-height: 1.3;
  position: relative;
  color: #380e50;
  text-transform: uppercase;
  font-family: "Gilroy", sans-serif, sans-serif;
  font-weight: 700;
}

.list-numbered li+li {
  margin-top: 31px;
}

.list-numbered li:before {
  counter-increment: number;
  content: counter(number);
  position: absolute;
  top: -6px;
  left: 0;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  width: 36px;
  height: 36px;
  text-align: center;
  background: #380e50;
  border-radius: 8px;
  line-height: 40px;
}

.list-benefits {
  list-style: none;
}

.list-benefits li {
  background: #fff;
  -webkit-box-shadow: 0 3px 13px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 13px rgba(0, 0, 0, 0.1);
  padding: 20px 55px;
  font-size: 15px;
  line-height: 1.27;
  min-height: 255px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 20px;
}

.list-benefits li h3 {
  text-transform: uppercase;
}

.list-benefits li p {
  color: #666;
}

.list-benefits li img {
  max-width: 100%;
  width: auto;
  min-height: 90px;
  max-height: 90px;
}

.list-benefits li+li {
  margin-top: 20px;
}

@media (max-width: 884px) {
  .list-benefits li {
    padding: 15px 10px;
  }
}

.list-tips-secondary {
  list-style: none;
  text-align: center;
}

.list-tips-secondary h3 {
  margin-bottom: 11px;
}

.list-tips-secondary p {
  margin-bottom: 6px;
}

.list-tips-secondary b {
  background: #6f319c;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 40px;
  display: inline-block;
  margin-bottom: 5px;
}

.list-tips-secondary li {
  margin-bottom: 45px;
  color: #fff;
  font-size: 15px;
}

.list-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 40px;
}

.list-gallery li {
  padding: 0 10px;
  width: 25%;
}

.list-gallery a {
  pointer-events: none;
}

@media (max-width: 1023px) {
  .list-gallery {
    padding: 0;
  }
}

@media (max-width: 884px) {
  .list-gallery {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -20px;
    margin-top: -20px;
  }

  .list-gallery li {
    width: 50%;
    margin-bottom: 20px;
  }
}

.list-benefits-secondary {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.list-benefits-secondary li {
  width: 25%;
  padding: 0 25px;
  text-align: center;
}

.list-benefits-secondary li img {
  margin-bottom: 20px;
}

.list-benefits-secondary li p {
  font-size: 15px;
  line-height: 1.6;
}

.list-benefits-secondary li p strong {
  text-transform: uppercase;
  font-family: "Gilroy", sans-serif, sans-serif;
  font-size: 17px;
  line-height: 1.2;
}

.list-bottle li {
  font-size: 15px;
  line-height: 1.6;
}

.list-bottle li+li {
  padding-top: 50px;
}

.list-bottle li h5 {
  text-transform: uppercase;
  font-family: "Gilroy", sans-serif, sans-serif;
  font-size: 17px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.list-bottle li img {
  margin-bottom: 20px;
}

.list-examples {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
}

.list-examples li {
  padding: 6px;
}

.list-examples li img {
  display: block;
  -webkit-box-shadow: 0 0 14px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.15);
  border: 9px solid #fff;
}

/* ------------------------------------------------------------ *	Nav
\* ------------------------------------------------------------ */
.nav {
  font-weight: 500;
  text-transform: uppercase;
  min-width: 40%;
  padding: 0 1.5%;
  font-family: "Gilroy", sans-serif, serif;
}

.nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.nav li {
  width: auto;
  white-space: nowrap;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.nav li.current-menu-item:not(.btn-shop) a,
.nav li.current_page_item:not(.btn-shop) a {
  background: #68b24d;
  border-radius: 50px;
}

/*
.nav li.current-menu-item:not(.btn-shop) a:after,
.nav li.current_page_item:not(.btn-shop) a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 50px;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  -webkit-transition: opacity .3s, -webkit-transform .3s;
  transition: opacity .3s, -webkit-transform .3s;
  -o-transition: transform .3s, opacity .3s;
  transition: transform .3s, opacity .3s;
  transition: transform .3s, opacity .3s, -webkit-transform .3s;
} */

.nav li:hover .dropdown {
  visibility: visible;
  opacity: 1;
}

.nav .btn-highlight a {
  -webkit-transition: background .3s;
  -o-transition: background .3s;
  transition: background .3s;
  border-radius: 50px;
}

.nav .btn-highlight a:hover {
  background: #68b24d;
}

@media (max-width: 1023px) {
  .nav .btn-shop {
    color: #ed1c24;
  }

  .btn-shop a {
    padding: 25% 0 !important;
  }
}

@media (min-width: 1023px) {
  .nav .btn-shop {
    background-color: #ed1c24;
    /* height: 80px; */
    border: 1px solid #ed1c24;
    border-radius: 0px;
  }

  .nav .btn-shop:hover {
    text-decoration: none;
    background-color: #ed1c24;
  }
}

.nav a {
  position: relative;
  padding: 8px 4%;
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 34% 0;
}

.btn-shop a {
  padding: 34% 0;
}

/* .nav a:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0px solid #ffa801;
      border-radius: 50px;
      -webkit-transform: scale(0.9);
          -ms-transform: scale(0.9);
              transform: scale(0.9);
      opacity: 0;
      -webkit-transition: opacity .3s, -webkit-transform .3s;
      transition: opacity .3s, -webkit-transform .3s;
      -o-transition: transform .3s, opacity .3s;
      transition: transform .3s, opacity .3s;
      transition: transform .3s, opacity .3s, -webkit-transform .3s; }
    .nav a:hover:after {
      -webkit-transform: scale(1);
          -ms-transform: scale(1);
              transform: scale(1);
      opacity: 0.5; }
    .nav a:hover {
      text-decoration: none; } */
.nav .btn-menu {
  display: none;
}

.nav-secondary .shell {
  max-width: 840px;
  background: #fff;
  border-radius: 50px;
}

.nav-secondary ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  list-style: none;
  padding: 13px 80px;
}

.nav-secondary ul a {
  font-size: 18px;
  color: #000000;
  font-weight: 700;
  font-family: "Gilroy", sans-serif, sans-serif;
}

.nav-secondary ul a.js-shown,
.nav-secondary ul a:hover {
  color: #287f0a;
  text-decoration: none;
}

@media (max-width: 884px) {
  .shop_section {
    margin-top: 51px;
  }

  .btn-menu {
    display: block;
    margin-right: 25px;
    /* position: absolute;
    top: 10px;
    left: 0;  */
  }

  .nav {
    width: 100%;
    padding-right: 0 !important;
  }

  .nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
  }

  .nav ul li {
    width: 100%;
  }
}

.dropdown {
  position: absolute;
  top: calc(100%);
  left: 0;
  width: 100%;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .1s, visibility .1s;
  -o-transition: opacity .1s, visibility .1s;
  transition: opacity .1s, visibility .1s;
  padding: 15px 20px;
}

@media (max-width: 884px) {
  .dropdown {
    display: none !important;
  }
}

/* ------------------------------------------------------------ *	Header
\* ------------------------------------------------------------ */
.header {
  background: #1c1c1c;
  transition: 0.5s;
  left: 0;
}

.home .header {
  background: #1c1c1c;
  transition: 0.5s;
  left: 0;
}

.home .header .shell {
  padding-bottom: 0;
  margin-bottom: 0;
}

.home .header .cart {
  background: #1c1c1c;
}

@media (max-width: 884px) {
  .home .header {

    top: 27px;
    padding: 10px 0;
  }

  .home .header .cart {
    top: 25px;
  }
}

.header {
  width: 100%;
  color: #fff;
  position: fixed;
  top: 30px;
  z-index: 5000;
  background: #1c1c1c;
  font-size: 16px;
  height: 77px;

  /* padding: 15px 0; */
  /* 1200px */
  /* 1023px */
  /* 767px */
  /* 479px */
}

.header .shell {
  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: flex-start;
  position: relative;
}

.header .btn-menu {
  display: none;
}

.header .cart {
  position: absolute;
  top: 44px;
  right: 0;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  height: 30px;
  width: 50px;
  background: #1c1c1c;
  border-radius: 10px 10px 0 0;
}

.header .cart .cart-customlocation {
  position: relative;
}

.header .cart a {
  display: block;
  position: relative;
}

.header .cart span {
  position: absolute;
  top: 7px;
  right: 7px;
  font-size: 10px;
  background-color: #f53131;
  padding: 1px 3px;
  border-radius: 20px;
  z-index: 50;
}

.header .cart svg {
  fill: #fff;
  width: 35px;
  height: 35px;
  -webkit-transition: fill .3s;
  -o-transition: fill .3s;
  transition: fill .3s;
  position: absolute;
  top: 9px;
  right: 9px;
}

.header .cart:hover svg {
  fill: #ed1c24;
}

.header .header__inner {
  width: 100%;
  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;
  position: relative;
  padding: 0;
}

.header .header__inner .logo img {
  max-width: 100px;
}

@media (max-width: 1023px) {
  .header .logo+.nav {
    padding-right: 20px;
  }

  .header .header__inner .logo img {
    max-width: 160px;
  }
}

@media (max-width: 884px) {


  .header .header__inner .logo img {
    max-width: 160px;
  }

  .header {
    /* background: none; */
    padding-top: 16px;
    position: fixed;
    top: 27px;
    z-index: 5000;

    height: 64px;
    padding-top: 10px;
  }

  .header .header__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    max-width: 320px;
    background: #1c1c1c;
    height: 100%;
    z-index: 6000;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    padding-left: 0;
    padding-right: 0;
  }

  .header .header__inner .logo {
    display: none;
  }

  .header .logo.visible-xs-block {
    /* margin: auto; */
    min-width: 100px;
  }

  .header .cart {
    background: none !important;
    top: 26px;
    right: 75px;
  }

  .shop-btn {
    position: absolute;
    right: 0px;
    height: 64px;
    width: 64px;
    background-color: #ed1c24;
  }

  .shop-btn-text {
    position: absolute;
    top: 31%;
    left: 11px;
  }

  .header .cart:after,
  .header .cart:before {
    display: none;
  }

  .header .btn-menu {
    display: block;
    /* position: absolute;
        top: 10px;
        left: 22px; */
  }

  .header .nav .btn-shop {
    /* background: #ffa801; */
    color: #fff;
  }

  .header .nav .btn-shop a:after {
    border-radius: 0;
  }

  .header .nav {
    padding-left: 0;
  }

  .header .nav a:after {
    border-radius: 0;
  }
}

/*.single-product .header {
  background: #ed1c24 url(css/images/temp/page-single-bg.jpg) center -42px no-repeat; }

 --------------------*	Footer---------------------------------------- *
\* ------------------------------------------------------------ */

.payments_footer {

  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer {
  color: rgb(29, 29, 29);
  padding: 50px;
  background: #f2f2f2;
}

.footer h6 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.footer h6~h6 {
  margin-top: 30px;
}

.footer .footer__logo {
  min-width: 145px;
  width: 145px;
  margin-right: 85px;
}

.footer .footer__logo img {
  width: 100%;
}

.footer .footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 50px;
  font-size: 16px;
  line-height: 1.3;
  color: rgb(29, 29, 29);
  font-family: "Gilroy", sans-serif, sans-serif;
}

.footer .footer__inner p {
  line-height: 1.5;
}

.footer .cols {
  padding-bottom: 50px;
}

.footer .menu {
  list-style: none;
}

.footer .menu a {
  font-size: 14px;
  font-family: "Gilroy", sans-serif, sans-serif;
  line-height: 2.14;
  color: rgb(29, 29, 29);
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

.footer .menu a:hover {
  color: #fff;
  text-decoration: none;
}

.woocommerce-checkout .footer ul,
.section-cart .footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.woocommerce-checkout .footer ul li,
.section-cart .footer ul li {
  padding: 5px 8px 5px 8px;
}

.footer {
  background: url(https://thefitbody.eu/en/wp-content/uploads/sites/4/2021/11/FIT-BODY-Logo-gray-footer.svg) no-repeat 771px 20px #f2f2f2;
  background-size: 420px;
}

@media (max-width: 884px) {

  .footer {
    background: url(https://thefitbody.eu/en/wp-content/uploads/sites/4/2021/11/FIT-BODY-Logo-gray-footer.svg) no-repeat center 5px #f2f2f2;
    background-size: 329px;
  }

  .woocommerce-checkout .footer ul li,
  .section-cart .footer ul li {
    width: 100%;
  }
}

.woocommerce-checkout .footer .copyright,
.section-cart .footer .copyright {
  text-align: left;
}

.copyright {

  text-align: right;
  font-family: "Gilroy", sans-serif, sans-serif;
  font-size: 13px;
  color: #c8c8c8;
  padding-top: 20px;
}

@media (max-width: 1023px) {
  .footer .col {
    max-width: 48%;
  }

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

@media (max-width: 884px) {
  .footer {
    padding: 90px 20px 20px 20px;
  }

  .footer .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 35px;
  }

  .footer .footer__logo {
    margin-bottom: 30px;
  }

  .footer .cols {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .footer .cols .col {
    padding-bottom: 25px;
  }

  .footer .cols .col+.col {
    margin-top: 0;
  }
}

@media (max-width: 509px) {
  .footer {
    padding: 90px 20px 20px 20px;
  }

  .footer .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 35px;
  }

  .footer .footer__logo {
    margin-bottom: 30px;
  }

  .footer .cols {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-bottom: 20px;
  }

  .footer .cols .col {
    padding-bottom: 25px;
    width: 50%;
    max-width: 50%;
  }

  .footer .cols .col+.col {
    margin-top: 0;
  }

  .footer .copyright {
    padding-top: 40px;
  }
}

/* ------------------------------------------------------------ *	Form
\* ------------------------------------------------------------ */
.checkbox {
  position: relative;
  padding-left: 68px;
}

.checkbox label {
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Gilroy", sans-serif, sans-serif;
}

.checkbox label img {
  padding-right: 8px;
  margin-bottom: 6px;
}

.checkbox label span {
  color: #380e50;
}

.checkbox label:before {
  content: '';
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #e1e1e1;
  border-radius: 50%;
}

.checkbox label:after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.checkbox label:hover {
  color: #6f319c;
}

.checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}



.checkbox input:checked+label:before {
  background: currentColor url(css/images/icons/ico-check.png) no-repeat center center;
  border-color: currentColor;
}

.checkbox p {
  font-size: 18px;
  margin-bottom: 4px;
}

@media (max-width: 884px) {
  .checkbox p {
    font-size: 16px;
  }
}

.checkbox p.product__price ins {
  text-decoration: none;
}

.checkbox p.product__price strong {
  color: #269100;
  text-decoration: none;
}

.checkbox p.product__price span {
  display: block;
  margin-bottom: 4px;
  color: #f53131;
  font-size: 16px;
  font-weight: bold;
}

.form-search-faq {
  padding-top: 20px;
}

.form-search-faq .form__controls {
  position: relative;
  max-width: 665px;
  margin: auto;
}

.form-search-faq .form__controls label {
  width: 35px;
  height: 35px;
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.form-search-faq .form__controls input.field {
  border: 1px solid #e1e1e1;
  font-size: 19px;
  color: #1c1c1c;
  width: 100%;
  padding: 23px 84px 23px 44px;
  border-radius: 50px;
  text-transform: uppercase;
  color: #1c1c1c;
  font-family: "Gilroy", sans-serif, sans-serif;
  font-weight: 700;
  -webkit-transition: color .3s, border-color .3s;
  -o-transition: color .3s, border-color .3s;
  transition: color .3s, border-color .3s;
}

.form-search-faq .form__controls input.field::-webkit-input-placeholder {
  color: #1c1c1c;
}

.form-search-faq .form__controls input.field:-ms-input-placeholder {
  color: #1c1c1c;
}

.form-search-faq .form__controls input.field::-ms-input-placeholder {
  color: #1c1c1c;
}

.form-search-faq .form__controls input.field::placeholder {
  color: #1c1c1c;
}

.form-search-faq .form__controls input.field:focus {
  border-color: #287f0a;
  color: #287f0a;
}

.form-search-faq .form__controls input.field:focus+label svg {
  fill: #287f0a;
}

@media (max-width: 884px) {
  .form-search-faq {
    display: none;
  }
}

.form-variation.form-variation--secondary~.list-features-secondary {
  margin-top: 20px;
}

@media (max-width: 884px) {
  .form-variation.form-variation--secondary td.product-price {
    display: block;
    text-align: center;
  }

  .form-variation.form-variation--secondary td.product-price .percentage-discount {
    margin-bottom: 8px;
  }
}

.form-variation .variations tr {
  padding: 15px 25px 15px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form-variation .variations tr:last-child {
  background: #fff;
  padding-bottom: 30px;
  margin-bottom: -50px;
  border-radius: 0 0 50px 50px;
  z-index: 50;
  position: relative;
}

.form-variation .variations .label {
  width: 100%;
  max-width: 156px;
  font-family: "Gilroy", sans-serif, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
}

.form-variation .variations .value {
  width: 100%;
}

.form-variation .variations .reset_variations {
  display: none !important;
}

.form-variation .variations select {
  width: 100%;
  border: 1px solid #dadada;
  padding: 12px 30px;
  border-radius: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background: #fff url(css/images/icons/select-arrow.jpg) right center no-repeat;
  font-size: 15px;
  color: #380e50;
}

.form-variation .form__row {
  padding: 25px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form-variation .form__row .form__controls {
  width: 100%;
}

.form-variation .form__row+.form__row {
  border-top: 1px solid #e1e1e1;
}

.form-variation .single_variation_wrap .quantity {
  display: none;
}

.form-variation .single_add_to_cart_button {
  display: block;
  position: relative;
}

.form-variation .single_add_to_cart_button:before {
  content: '';
  width: 100%;
  height: 100%;
  background: inherit;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 0 50px 50px;
  opacity: 0;
  -webkit-transition: opacity .4s;
  -o-transition: opacity .4s;
  transition: opacity .4s;
}

.form-variation .single_add_to_cart_button:after {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  -o-transition: transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}

.form-variation .single_add_to_cart_button.adding-to-cart,
.form-variation .single_add_to_cart_button.add-to-cart-failed,
.form-variation .single_add_to_cart_button.adding-to-cart {
  pointer-events: none;
}

.form-variation .single_add_to_cart_button.adding-to-cart:after {
  content: url(css/images/icons/loader.svg);
  vertical-align: top;
  font-weight: 400;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  margin-left: -25px;
  width: 50px;
  height: 50px;
  margin-top: -8px;
}

.form-variation .single_add_to_cart_button.adding-to-cart:before {
  content: '';
  opacity: 1;
}

.form-variation .single_add_to_cart_button.added-to-cart:after {
  content: url(css/images/icons/ico-check.png);
  vertical-align: top;
  font-weight: 400;
  position: absolute;
  top: 54%;
  left: 50%;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  margin-left: -10px;
  width: 20px;
  height: 20px;
}

.form-variation .single_add_to_cart_button.added-to-cart:before {
  content: '';
  opacity: 1;
  background: #287f0a;
}

.form-variation .single_add_to_cart_button.add-to-cart-failed:after {
  content: '\2716';
  font-weight: 700;
  font-size: 30px;
  vertical-align: top;
  font-weight: 400;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  margin-left: -10px;
  width: 20px;
  height: 20px;
}

.form-variation .single_add_to_cart_button.add-to-cart-failed:before {
  content: '';
  opacity: 1;
  background: #f53131;
}

@media (max-width: 509px) {
  .form-variation .variations tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .form-variation .variations .label {
    padding-bottom: 7px;
  }
}

.wpcf7 {
  font-family: "Gilroy", sans-serif;
}

.wpcf7 p {
  margin-bottom: 23px;
}

.wpcf7 p:last-of-type {
  margin-bottom: 0;
}

.wpcf7 .form-cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.wpcf7 .form-col {
  max-width: 50%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.wpcf7 .wpcf7-form-control-wrap,
.wpcf7 .wpcf7-form-control {
  position: relative;
  display: block;
  width: 100%;
}

.wpcf7 .wpcf7-form-control-wrap [class*='tip'] {
  position: absolute;
  top: calc(50% + 5px);
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 0;
  line-height: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.3s, opacity 0.3s;
  -o-transition: visibility 0.3s, opacity 0.3s;
  transition: visibility 0.3s, opacity 0.3s;
}

.wpcf7 [class*='tip'].wpcf7-not-valid-tip:before {
  content: '*';
  display: inline-block;
  font-family: "Gilroy", sans-serif, sans-serif;
  font-size: 20px;
  color: #f9593a;
}

.wpcf7 [class*='tip'].wpcf7-valid-tip:before {
  content: '';
  display: inline-block;
  width: 19px;
  height: 13px;
  background: url(css/images/icons/ico-check.png) no-repeat 0 0;
}

.wpcf7 .wpcf7-form-control-wrap:not([class*='acceptance']) {
  padding: 0;
  background: #fff;
}

.wpcf7 .wpcf7-form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 15px 22px;
  border-radius: 5px;
  border: 1px solid #000;
  font-size: 16px;
  line-height: 1.2;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.wpcf7 .wpcf7-form-control::-webkit-input-placeholder {
  color: #9fa3a7;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.wpcf7 .wpcf7-form-control:-ms-input-placeholder {
  color: #9fa3a7;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.wpcf7 .wpcf7-form-control::-ms-input-placeholder {
  color: #9fa3a7;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.wpcf7 .wpcf7-form-control::placeholder {
  color: #9fa3a7;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.wpcf7 .wpcf7-form-control:focus,
.wpcf7 .wpcf7-form-control:focus::-webkit-input-placeholder {
  color: #000;
}

.wpcf7 .wpcf7-form-control:focus,
.wpcf7 .wpcf7-form-control:focus:-ms-input-placeholder {
  color: #000;
}

.wpcf7 .wpcf7-form-control:focus,
.wpcf7 .wpcf7-form-control:focus::-ms-input-placeholder {
  color: #000;
}

.wpcf7 .wpcf7-form-control:focus,
.wpcf7 .wpcf7-form-control:focus::placeholder {
  color: #000;
}

.wpcf7 .wpcf7-form-control.wpcf7-not-valid {
  border-bottom-color: #f9593a;
}

.wpcf7 .wpcf7-form-control.wpcf7-not-valid::-webkit-input-placeholder {
  color: #f9593a;
}

.wpcf7 .wpcf7-form-control.wpcf7-not-valid:-ms-input-placeholder {
  color: #f9593a;
}

.wpcf7 .wpcf7-form-control.wpcf7-not-valid::-ms-input-placeholder {
  color: #f9593a;
}

.wpcf7 .wpcf7-form-control.wpcf7-not-valid::placeholder {
  color: #f9593a;
}

.wpcf7 .wpcf7-form-control.wpcf7-not-valid~.wpcf7-not-valid-tip {
  visibility: visible;
  opacity: 1;
}

.wpcf7 .wpcf7-form-control.wpcf7-valid~.wpcf7-valid-tip {
  visibility: visible;
  opacity: 1;
}

.wpcf7 .screen-reader-response {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.2;
}

.wpcf7 .screen-reader-response p {
  margin-bottom: 0;
  margin-top: 21px;
}

.wpcf7 [class*='menu'] {
  position: relative;
}

.wpcf7 [class*='menu']:before {
  content: '';
  position: absolute;
  top: 4px;
  bottom: 4px;
  right: 33px;
  z-index: 10;
  width: 40px;
  border-left: 1px solid #aaa;
  background-color: transparent;
  pointer-events: none;
}

.wpcf7 [class*='menu']:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 45px;
  width: 12px;
  height: 7px;
  background: url(css/images/icons/ico-arrow-down.png) no-repeat 0 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
}

.wpcf7 [class*='menu'] select {
  white-space: normal;
  cursor: pointer;
  border-radius: 0;
  background: none;
}

.wpcf7 [class*='menu'] select::-ms-expand {
  display: none;
}

.wpcf7 [class*='menu'] select option {
  color: #000;
}

.wpcf7 .wpcf7-acceptance {
  padding: 0;
  border: 0;
}

.wpcf7 .wpcf7-list-item {
  position: relative;
  display: inline-block;
}

.wpcf7 .wpcf7-list-item label {
  display: inline-block;
}

.wpcf7 .wpcf7-list-item input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}

.wpcf7 .wpcf7-list-item a {
  text-decoration: underline;
  color: #000;
}

.wpcf7 .wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  min-height: 31px;
  padding: 10px 0 10px 58px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.8;
  color: #000;
}

.wpcf7 .wpcf7-list-item .wpcf7-list-item-label:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #000;
  margin-top: -16px;
  -webkit-transition: border-color 0.3s, background 0.3s;
  -o-transition: border-color 0.3s, background 0.3s;
  transition: border-color 0.3s, background 0.3s;
}

.wpcf7 .wpcf7-list-item .wpcf7-list-item-label:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 14px;
  width: 16px;
  height: 12px;
  background: url(css/images/icons/ico-check-white@2x.png) no-repeat 0 0;
  background-size: 100% 100%;
  -webkit-transform: translateY(-50%) scale(0.3) rotate(180deg);
  -ms-transform: translateY(-50%) scale(0.3) rotate(180deg);
  transform: translateY(-50%) scale(0.3) rotate(180deg);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  -o-transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
  transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
  transition: transform 0.3s, opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
}

.wpcf7 .wpcf7-list-item input:checked~.wpcf7-list-item-label:before {
  border-color: #000;
  background: #000;
}

.wpcf7 .wpcf7-list-item input:checked~.wpcf7-list-item-label:after {
  -webkit-transform: translateY(-50%) scale(1) rotate(0deg);
  -ms-transform: translateY(-50%) scale(1) rotate(0deg);
  transform: translateY(-50%) scale(1) rotate(0deg);
  opacity: 1;
  visibility: visible;
}

.wpcf7 .wpcf7-submit {
  position: relative;
  display: inline-block;
  padding: 10px 15px;
  border: 1px solid #549542;
  background: #549542;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #ffffff;
  -webkit-transition: border-color 0.3s, background 0.3s, color 0.3s;
  -o-transition: border-color 0.3s, background 0.3s, color 0.3s;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.wpcf7 .wpcf7-submit:hover,
.wpcf7 .wpcf7-submit:focus {
  text-decoration: none;
  background: #8fd37c;
  border: 1px solid #8fd37c;
  color: #fff;
}

.wpcf7 .wpcf7-response-output {
  display: none;
}

.wpcf7.form-contact .wpcf7-form {
  position: relative;
  max-width: 550px;
}

.wpcf7.form-contact .wpcf7-form-control {
  border: 0;
}

.wpcf7.form-contact .telefone input {
  width: calc(100% - 190px);
}

.wpcf7.form-contact .wpcf7-form-control-wrap:not([class*='acceptance']) {
  padding: 4px;
  background: #fff;
}

.wpcf7.form-contact [class*='acceptance'] {
  background-color: transparent;
}

.wpcf7.form-contact .wpcf7-submit {
  position: absolute;
  top: 4px;
  right: 4px;
  max-width: 190px;
  border-radius: 0 5px 5px 0;
}

@media (max-width: 1023px) {
  .wpcf7 p {
    margin-bottom: 15px;
  }

  .wpcf7 .screen-reader-response {
    margin-bottom: 30px;
    font-size: 14px;
  }

  .wpcf7 .wpcf7-acceptance {
    padding: 0;
  }

  .wpcf7.form-contact .wpcf7-form-control:not(.wpcf7-acceptance) {
    padding: 10px;
    font-size: 14px;
  }

  .wpcf7.form-contact .telefone input {
    width: calc(100% - 150px);
  }

  .wpcf7.form-contact .wpcf7-submit {
    padding: 10px 20px;
    max-width: 150px;
  }
}

@media (max-width: 884px) {
  .wpcf7 .screen-reader-response {
    font-size: 12px;
  }

  .wpcf7 .screen-reader-response p {
    margin-top: 10px;
  }

  .wpcf7 .wpcf7-form-control:not(.wpcf7-acceptance) {
    padding: 15px;
    font-size: 14px;
  }

  .wpcf7.form-contact .wpcf7-form {
    max-width: 100%;
  }

  .wpcf7 .wpcf7-list-item .wpcf7-list-item-label {
    font-size: 12px;
  }
}

@media (max-width: 509px) {
  .wpcf7.form-contact .wpcf7-form-control:not(.wpcf7-acceptance) {
    padding: 11px 5px;
  }

  .wpcf7.form-contact .telefone input {
    width: calc(100% - 100px);
  }

  .wpcf7.form-contact .wpcf7-submit {
    padding: 12px 10px !important;
    max-width: 100px;
    font-size: 12px !important;
  }
}

/* ------------------------------------------------------------ *	Intro
\* ------------------------------------------------------------ */
.intro {
  background-repeat: no-repeat;
  background-position: center 0;
  padding-top: 147px;
  margin-bottom: 73px;
}

.intro .shell {
  position: relative;
}

.intro .intro__head {
  text-align: center;
  color: #fff;
  font-family: "Gilroy", sans-serif, sans-serif;
  text-transform: uppercase;
  margin-bottom: 80px;
}

.intro .intro__head h1 {
  font-size: 47px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.intro .intro__head h1 span {
  color: #68b24d;
}

.intro .intro__head p {
  font-size: 33px;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.intro .intro__head p .btn-small {
  margin-left: 16px;
}

.intro .intro__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.intro .intro__body .intro__image {
  position: relative;
}

.intro .intro__body .intro__image--left {
  max-width: 588px;
  width: 100%;
  margin-left: -23px;
  margin-top: -20px;
}

.intro .intro__body .intro__image--right {
  max-width: 620px;
  width: 100%;
  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;
  position: relative;
}

.intro .intro__body .intro__image--right .intro__product-1 {
  margin-left: 215px;
  margin-bottom: -35px;
  width: 100%;
  min-width: 471px;
}

.intro .intro__body .intro__image--right .intro__product-2 {
  position: absolute;
  top: -80px;
  left: -192px;
  min-width: 423px;
}

.intro .intro__body .intro__image--right .intro__product-1,
.intro .intro__body .intro__image--right .intro__product-2 {
  position: relative;
  z-index: 5;
}

.intro .intro__body .ornament {
  position: absolute;
}

.intro .intro__body .ornament-main {
  margin-bottom: 0px;
  position: absolute;
  bottom: -38px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-left: -259px;
}

.intro .intro__body .ornament--1 {
  top: -17.4%;
  left: 50%;
  -webkit-transform: translateX(-302px);
  -ms-transform: translateX(-302px);
  transform: translateX(-302px);
}

.intro .intro__body .ornament--2 {
  bottom: 7%;
  left: 50%;
  -webkit-transform: translateX(-343px);
  -ms-transform: translateX(-343px);
  transform: translateX(-343px);
}

.intro .intro__body .ornament--3 {
  bottom: 21%;
  left: 50%;
  -webkit-transform: translateX(-313px);
  -ms-transform: translateX(-313px);
  transform: translateX(-313px);
}

.intro .intro__body .ornament--4 {
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-182px);
  -ms-transform: translateX(-182px);
  transform: translateX(-182px);
  z-index: 10;
}

.intro .intro__body .ornament--5 {
  top: -18%;
  left: 50%;
  -webkit-transform: translateX(71px);
  -ms-transform: translateX(71px);
  transform: translateX(71px);
}

.intro .intro__body .ornament--6 {
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-16px);
  -ms-transform: translateX(-16px);
  transform: translateX(-16px);
  z-index: 10;
}

.intro .intro__body .ornament--7 {
  bottom: 42.5%;
  left: 50%;
  -webkit-transform: translateX(175px);
  -ms-transform: translateX(175px);
  transform: translateX(175px);
}

@media (max-width: 1023px) {
  .intro {
    margin-bottom: 0;
    padding-top: 117px;
  }

  .intro .intro__body .ornament-main {
    display: none;
  }

  .intro .intro__body .intro__image--left {
    display: none;
  }

  .intro .intro__body .intro__image--right {
    margin-top: 60px;
  }
}

@media (max-width: 884px) {
  .intro .shell {
    padding: 0;
  }

  .intro .intro__head {
    padding-top: 20px;
  }

  .intro .intro__head h1 {
    font-size: 35px;
    min-height: 75px;
  }

  .intro .intro__head h1 span:before {
    content: '';
    display: block;
  }

  .intro .intro__head p {
    font-size: 25px;
    display: block;
  }

  .intro .intro__head p .btn-small {
    display: block;
    max-width: 191px;
    margin: 15px auto;
  }

  .intro .intro__body .intro__image--right .intro__product-2,
  .intro .intro__body .intro__image--right .intro__product-1 {
    min-width: 1px;
    width: 100%;
    top: 0;
    left: 0;
    margin: 0;
  }

  .intro .intro__body .intro__image--right {
    max-width: 100vw;
    margin-top: 0;
  }

  .intro .intro__body .intro__image--right .intro__product-1 {
    width: 60%;
    margin-right: -7%;
    top: 40px;
  }

  .intro .intro__body .intro__image--right .intro__product-2 {
    width: 60%;
    margin-left: -20%;
    top: -20px;
  }

  .intro .intro__body .ornament--5 {
    top: -3%;
  }

  .intro .intro__body .ornament--3 {
    left: 64%;
  }

  .intro .intro__body .ornament--6 {
    display: none;
  }

  .intro .intro__body .ornament--7 {
    left: 29%;
  }

  .intro .intro__body .ornament--4 {
    z-index: 4;
    top: 47px;
    left: 61%;
  }
}

@media (max-width: 509px) {
  .intro .intro .intro__head {
    padding-bottom: 36px;
  }

  .intro .intro__body .ornament--5 {
    top: -4%;
    left: 22%;
  }

  .intro .intro__body .ornament--3 {
    left: 83%;
  }

  .intro .intro__body .ornament--6 {
    display: none;
  }

  .intro .intro__body .ornament--7 {
    left: 5%;
  }

  .intro .intro__body .ornament--4 {
    z-index: 4;
    top: 47px;
    left: 61%;
  }
}

/* ------------------------------------------------------------ *	Section
\* ------------------------------------------------------------ */
.section {
  padding: 30px 0;
  margin-bottom: 25px;
}

.section .section__head {
  text-align: center;
  margin-bottom: 71px;
  text-transform: normal;
}

.section .section__head p {
  font-size: 1.3vmax;
  font-family: "Roboto", sans-serif, sans-serif;
  font-weight: 500;
}

.section h2 {
  text-transform: normal;
  text-align: center;
  font-size: 3.3vmax;
  /* margin-bottom: -20px;
    margin-top: 25px;  */

}

.section .section__action,
.section .gmp,
.section .list-badges {
  margin-top: 43px;
}

.section.section--callout,
.section.section--testimonials {
  margin-bottom: 0;
}

.section .section__action {
  background-color: #ffffff;
  border-radius: 30px;
}

.section .section__action .btn-medium:hover {
  background: #fff;
}

.section .section__action p {
  padding: 15px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-family: "Gilroy", sans-serif, serif;
}

.section .list-text {
  padding: 13px 0;
}

.section.section--goals {
  line-height: 1.4;
}

.section.section--goals .section__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.section.section--goals .section__content {
  max-width: 707px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  color: #181818;
}

.section.section--goals .section__aside {
  max-width: 447px;
  width: 100%;
  padding: 0 10px;
}

.section.section--goals .btn-medium {
  margin: 48px 0;
}

.section.section--goals .section__head {
  color: #212121;
}

.section.section--goals .video-dots {
  bottom: -12px;
}

.section.section--product {
  color: #380e50;
}

.section.section--product .sticker {
  background: #ffd800;
  color: black;
  border-radius: 4px;
}

.section.section--product .shell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.section.section--product .section__product {
  max-width: 697px;
  width: 100%;
  margin: 0 20px;
}

.section.section--product .section__product .section__image {
  position: relative;
  max-width: 553px;
  margin: auto;
}

.section.section--product .section__content {
  max-width: 469px;
  width: 100%;
  padding: 0 10px;
}

.section.section--product .section__content .features {
  padding-top: 30px;
}

.section.section--product .section__product-image {
  position: relative;
  z-index: 5;
}

.section.section--product .gmp {
  max-width: 300px;
  width: 100%;
  margin-left: 32.4%;
}

.section.section--product .ornament {
  position: absolute;
}

.section.section--product .ornament.ornament--8 {
  bottom: 15%;
  left: 50%;
  -webkit-transform: translateX(-195px);
  -ms-transform: translateX(-195px);
  transform: translateX(-195px);
  z-index: 10;
}

.section.section--product .ornament.ornament--9 {
  top: 17%;
  left: 50%;
  -webkit-transform: translateX(-258px);
  -ms-transform: translateX(-258px);
  transform: translateX(-258px);
}

.section.section--product .ornament.ornament--10 {
  bottom: 32%;
  left: 50%;
  -webkit-transform: translateX(189px);
  -ms-transform: translateX(189px);
  transform: translateX(189px);
}

.section.section--product .ornament.ornament--11 {
  bottom: 34%;
  left: 50%;
  -webkit-transform: translateX(-220px);
  -ms-transform: translateX(-220px);
  transform: translateX(-220px);
}

.section.section--product .ornament.ornament--12 {
  bottom: -3%;
  left: 50%;
  -webkit-transform: translateX(127px);
  -ms-transform: translateX(127px);
  transform: translateX(127px);
  z-index: 10;
}

.section.section--goals .btn-medium,
.section.section--product .btn-medium {
  background-color: #FFA800;
}

.section.section--goals .btn-medium,
.section.section--product .btn-medium:nth-child(odd) {
  text-decoration: none;
  background-color: #fff !important;
  border: 1px solid #FFA800;
  color: #FFA800;
}

.section.section--goals .section__head h2,
.section.section--product .section__head h2 {
  color: #212121;
}

.section.section--goals .section__head p,
.section.section--product .section__head p {
  color: #212121 !important;
  margin-top: 15px;
  width: 70%;
  margin: 0 auto;
}

@media (max-width: 884px) {

  .section.section--goals .section__head,
  .section.section--product .section__head {
    text-align: left;
  }
}

@media (max-width: 884px) {

  .section.section--goals .section__body,
  .section.section--product .section__body {
    padding: 0 20px 0 20px;
  }
}

@media (max-width: 1023px) {

  .section.section--goals .section__content>p,
  .section.section--product .section__content>p {
    margin-bottom: 20px;
  }
}

@media (max-width: 1023px) {

  .section.section--goals .section__content .review,
  .section.section--product .section__content .review {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 884px) {

  .section.section--goals .section__content .review .list-review,
  .section.section--product .section__content .review .list-review {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.section.section--goals .section__content .review p,
.section.section--product .section__content .review p {
  font-size: 16px;
  top: 8px;
}

@media (max-width: 884px) {

  .section.section--goals .section__content .review p,
  .section.section--product .section__content .review p {
    font-size: 14px;
    top: 0;
    margin-top: 4px;
    text-align: left;
  }
}

@media (max-width: 1023px) {

  .section.section--goals .section__content .review p,
  .section.section--product .section__content .review p {
    top: 6px;
  }
}

@media (min-width: 884px) {

  .section.section--goals .section__content .review+p,
  .section.section--product .section__content .review+p {
    margin-bottom: 25px;
  }
}

.section.section--goals .section__content .review+p span,
.section.section--product .section__content .review+p span {
  display: block;
}

@media (max-width: 884px) {

  .section.section--goals .section__aside,
  .section.section--product .section__aside {
    padding: 0 !important;
  }
}

.section.section--goals .features h3,
.section.section--product .features h3 {
  color: currentColor;
}

.section.section--goals .features p,
.section.section--product .features p {
  color: #181818;
}

.section.section--callout {
  background-color: #300946;
  color: #fff;
  background-repeat: no-repeat;
  background-position: 240px 80%;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.7;
  text-align: center;
  text-transform: uppercase;
  padding: 100px 0;
  font-family: "Gilroy", sans-serif, serif;
}

.section.section--callout .shell {
  max-width: 880px;
}

.section.section--callout span {
  color: #80f96b;
}

.section.section--bottle .shell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: top;
  -ms-flex-align: top;
  align-items: top;
}

.section.section--bottle h2 {
  margin-bottom: 20px;
}

.section.section--bottle h2+p {
  color: #464648;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section.section--bottle .list-badges,
.section.section--bottle .btn-medium {
  margin-top: 30px;
}

.section.section--bottle .section__content {
  max-width: 500px;
  width: 45%;
  padding: 0 20px;
  margin: 0 5%;
}

.section.section--bottle .section__aside {
  max-width: 580px;
  width: 45%;
}

.section.section--testimonials {
  background-color: #f4f2f6;
  padding: 80px 0;
  font-family: "Gilroy", sans-serif, sans-serif;
}

.section.section--testimonials h2 {
  text-transform: uppercase;
  margin-bottom: 35px;
  text-align: center;
}

.section.section--feed {
  padding-top: 0px;
}

.section.section--feed .section__head {
  display: none;
  background-color: #fafafa;
  padding: 30px 0;
  border-bottom: 1px solid #dbdbdb;
}

.section.section--feed .adding-to-cart {
  pointer-events: none;
}

.section.section--offers h2 {
  text-align: center;
  margin-bottom: 30px;
}

.section.section--slider {
  padding-bottom: 0;
  margin-bottom: 0;
  padding-top: 66px;
}

.section.section--slider img {
  width: 100%;
}

@media (max-width: 884px) {
  .section.section--slider {
    padding-top: 90px;
  }
}

@media (max-width: 509px) {
  .section.section--slider {
    padding-top: 44px;
  }

  .section.section--slider img {
    width: 100%;
    margin-top: 46px;
  }
}

.section-store {
  padding: 60px 0;
}

.section-store h2 {
  text-transform: uppercase;
  color: #1c1c1c;
}

.section-store .section__group {
  height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: opacity .5s;
  -o-transition: opacity .5s;
  transition: opacity .5s;
}

.section-store .section__group .meta {
  text-align: left;
  margin-bottom: -20px;
  margin-top: -15px;
  border-left: 2px solid red;
  padding-left: 15px;
}

.section-store .section__group .meta h2 {
  margin-bottom: 0;
  text-align: left;
  padding-bottom: 0 !important;
}

@media (max-width: 1200px) {
  .section-store .section__group .meta {
    text-align: left;
    margin-bottom: 40px;
    border-left: 2px solid red;
    padding-left: 15px;
  }

  .section-store .section__group .meta h2 {
    font-size: 20px;
  }
}

.section-store .section__group.js-shown {
  height: auto;
  overflow: visible;
  opacity: 1;
  margin-bottom: 50px;
}

@media (max-width: 1200px) {
  .section-store .section__group.js-shown {
    margin-bottom: 40px;
  }
}

@media (max-width: 884px) {
  .section-store {
    padding-top: 30px;
  }
}

@media (max-width: 509px) {
  .section-store h2 {
    padding-bottom: 0;
  }

}

.section-goals {
  padding: 40px 0;
}

.section-goals .section__head {
  text-align: center;
  padding-bottom: 50px;
}

.section-goals .section__head h2 {
  text-transform: uppercase;
}

.section-goals {
  padding: 40px 0 80px;
}

.section-goals .section__head {
  text-align: center;
  padding-bottom: 50px;
}

.section-goals .section__head h2 {
  text-transform: uppercase;
}

.section-goals+.section-process {
  padding-top: 20px;
}

.section-process {
  padding: 80px 0 60px;
}

.section-process .section__head {
  text-align: center;
  padding-bottom: 50px;
  max-width: 900px;
  margin: auto;
}

.section-process .section__head h2 {
  text-transform: uppercase;
}

.section-ingredients {
  padding: 120px 0;
  margin-top: -80px;
}

.section-ingredients .section__head {
  text-align: center;
  padding-bottom: 50px;
  max-width: 980px;
  margin: auto;
}

.section-ingredients .section__head h2 {
  text-transform: uppercase;
}

.section-ingredients.section-ingredients--secondary {
  padding-top: 80px;
}

.section-prepare {
  padding: 60px 0;
  margin-top: -40px;
}

.section-prepare .section__head {
  text-align: center;
  padding-bottom: 50px;
  max-width: 900px;
  margin: auto;
}

.section-prepare .section__head h2 {
  text-transform: uppercase;
}

.section-description {
  padding: 60px 0 40px;
  margin-bottom: -150px;
}

.section-description .section__head {
  text-align: center;
  padding-bottom: 50px;
  margin-bottom: 85px;
}

.section-description .section__head h2 {
  text-transform: uppercase;
}

.section-description .section__body {
  max-width: 870px;
  margin: auto;
  margin-top: -115px;
}

.section-description p {
  font-size: 18px;
  line-height: 1.56;
  text-align: center;
}

.section-description ul {
  padding-left: 20px;
  font-size: 18px;
}

.section-description ul li+li {
  padding-top: 5px;
}

.section-description+.section-process {
  padding-top: 20px;
}

.section-tips {
  padding: 60px 0;
  /* background: url(css/images/temp/tips-bg.jpg) no-repeat center 0;*/
  background-color: #f7f7f7;
  min-height: 711px;
}

.section-tips .section__head {
  text-align: center;
  padding-bottom: 50px;
}

.section-tips .section__head h2 {
  text-transform: uppercase;
}

.section-tips .shell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1160px;
}

.section-tips .section__image {
  max-width: 593px;
  width: 100%;
}

.section-tips .section__content {
  width: 100%;
}

/* .section-group-secondary {
  padding: 0 0 80px 0;
} */

.section-group-secondary .shell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.section-group-secondary .section__head {
  text-align: center;
  padding-bottom: 50px;
}

.section-group-secondary .section__head h2 {
  text-transform: uppercase;
}

.section-group-secondary .section-reviews {
  margin-bottom: 80px;
}

.section-group-secondary .section-reviews,
.section-group-secondary .section-faq {
  width: 100%;
  padding-top: 120px;
}

.section-group-secondary .section-reviews .section__actions,
.section-group-secondary .section-faq .section__actions {
  padding-top: 20px;
}

.section-group-secondary .section-faq .section__actions {
  padding-top: 40px;
}

.section-reviews .section__head-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.section-reviews .section__head-inner a {
  text-decoration: underline;
  color: #2a8a11;
}

.section-reviews .section__head-inner a:hover {
  text-decoration: none;
}

.section-reviews .review {
  margin-bottom: 0;
  padding-right: 40px;
  position: relative;
  top: 5px;
}

.section-reviews .review .list-review {
  top: -7px;
}

.section-reviews .review p {
  top: 0;
}

.section--feed .section__actions .shell {
  padding: 20px;
}

.section--feed .section__actions .btn-square {
  position: relative;
  background: #549542;
  font-size: 24px;
  color: #ffffff;
  width: 100%;
  text-align: center;
  padding: 25px;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transition: background .4s;
  -o-transition: background .4s;
  transition: background .4s;
  border: 1px solid transparent;
}

@media (max-width: 884px) {
  .section--feed .section__actions .btn-square {
    border-radius: 25px;
    font-size: 18px;
    padding: 20px;
  }
}

.section--feed .section__actions .btn-square:hover {
  background: transparent;
  color: #549542;
  border: 1px solid #549542;
}

.section--feed .section__actions .btn-square.adding-to-cart:after {
  content: url(css/images/icons/loader.svg);
  vertical-align: top;
  font-weight: 400;
  position: absolute;
  top: 66%;
  left: 50%;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  margin-left: -25px;
  width: 40px;
  height: 40px;
  margin-top: -8px;
}

.section-upsells {
  padding: 40px 0;
}

.section-upsells .section__head {
  text-align: center;
  padding-bottom: 50px;
}

.section-upsells .section__head h2 {
  text-transform: uppercase;
}

.section-get {
  padding: 40px 0;
}

.section-get .section__head {
  text-align: center;
  padding-bottom: 50px;
}

.section-get .section__head h2 {
  text-transform: uppercase;
}

.section-prepare-secondary {
  padding: 40px 0;
}

.section-prepare-secondary .shell {
  max-width: 1084px;
}

.section-prepare-secondary .section__head {
  text-align: center;
  padding-bottom: 50px;
  max-width: 500px;
  margin: auto;
}

.section-prepare-secondary .section__head h2 {
  text-transform: uppercase;
}

.section-prepare-secondary .section__content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.section-prepare-secondary .section__content img {
  border-radius: 22px;
}

.section-prepare-secondary .section__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.section-prepare-secondary .section__aside {
  max-width: 468px;
}

.product-single+.section-benefits {
  padding-top: 0;
}

.section-benefits {
  padding: 40px 0;
}

.section-benefits .section__head {
  max-width: 850px;
  padding-bottom: 60px;
  margin: auto;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.2;
}

.section-benefits .section__head h3 {
  font-size: 26px;
}

.section-benefits .section__head p {
  font-size: 18px;
  line-height: 1.56;
  text-transform: none;
}

.section-benefits .section__body {
  text-align: center;
  max-width: 925px;
  margin: auto;
}

.section-benefits .section__body h2 {
  padding-bottom: 30px;
}

.section-benefits+.section-tips-secondary {
  margin-top: -100px;
}

.section-tips-secondary {
  padding: 133px 0 60px;
  background: #300946 url(css/images/temp/section-tips-secondary-bg.jpg) center 0 no-repeat;
  background-size: cover;
}

.section-tips-secondary .section__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.section-tips-secondary .cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.section-tips-secondary .cols .col {
  padding: 0 0;
}

.section-tips-secondary .cols .col.col-size1 {
  max-width: 293px;
  width: 100%;
}

.section-tips-secondary .cols .col.col-size2 {
  max-width: 444px;
  width: 100%;
}

.section-tips-secondary .cols .col:last-child b {
  background: #4e7d42;
}

.section-gallery {
  padding: 40px 0;
}

.section-gallery .section__head {
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 50px;
}

.section-benefits-secondary {
  padding: 40px 0;
}

.section-benefits-secondary .section__head {
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 50px;
}

.section-bottle {
  padding: 40px 0;
}

.section-bottle .section__head {
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 50px;
}

.section-bottle .section__body {
  text-align: center;
}

.section-bottle .section__body ul {
  list-style: none;
}

.section-bottle .section__body .cols {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.section-bottle .section__body .cols .col {
  max-width: 310px;
}

@media (max-width: 509px) {
  .section-bottle .section__body .cols .col:nth-child(1) {
    padding-bottom: 30px;
  }
}

.section-steps {
  padding: 20px 0 !important;
  margin-top: 100px !important;
}

@media only screen and (max-width: 600px) {
  .section-steps {
    margin-top: 140px !important;
  }
}

.section-faq-primary {
  padding: 70px 0;
  text-align: center;
}

.section-faq-primary h2 {
  text-transform: uppercase;
}

.section-faq-primary .section__body {
  padding-top: 90px;
}

@media (max-width: 884px) {
  .section-faq-primary {
    padding-top: 0;
  }
}

.section-cart {
  padding: 30px 0;
  background: #fff;
}

.section-cart .woocommerce-notices-wrapper {
  display: none;
  background: #fff;
  border-radius: 20px;
  margin-top: -20px;
  margin-bottom: 20px;
}

.section-cart .woocommerce-notices-wrapper ul {
  list-style: none;
}

.section-cart .woocommerce-notices-wrapper ul li {
  padding: 5px 10px;
}

.section-cart .woocommerce-notices-wrapper>div {
  padding: 30px 50px !important;
}

.section-cart .woocommerce-notices-wrapper .woocommerce-error {
  color: #f53131;
}

.section-cart .woocommerce-notices-wrapper .woocommerce-message {
  padding: 5px 10px;
}

.section-cart .woocommerce-cart-form {
  border: 1px solid #e5e5e5;
}

.section-cart .woocommerce-cart-form .coupon {
  display: none !important;
}

.section-cart .woocommerce-cart-form thead th {
  background: #fff;
  font-size: 14px;
  border-color: #e5e5e5 #fff #fff;
  background: #e5e5e5;
  padding: 14px 0;
  border-top: 1px solid #fff;
  text-align: left;
}

.section-cart .woocommerce-cart-form tbody {
  font-size: 14px;
}

.section-cart .woocommerce-cart-form tbody td {
  padding: 5px;
}

.section-cart .woocommerce-cart-form tbody tr:hover td {
  background: #ecf2eb;
}

.section-cart .woocommerce-cart-form tbody .product-thumbnail {
  width: 80px;
  height: 80px;
  padding: 0;
  padding-right: 10px;
}

.section-cart .woocommerce-cart-form tbody .product-thumbnail a {
  margin-top: 5px;
  margin-bottom: 5px;
  display: block;
}

.section-cart .woocommerce-cart-form tbody .product-thumbnail img {
  max-height: 80px;
  border: 1px solid #e5e5e5;
}

.section-cart .woocommerce-cart-form tbody .product-name {
  font-size: 13px;
  max-width: 300px;
}

.section-cart .woocommerce-cart-form tbody .product-name a {
  font-weight: 700;
}

.section-cart .woocommerce-cart-form tbody .variation dt {
  height: 14px;
  line-height: 14px;
  padding-top: 2px;
  padding-right: 4px;
  display: inline-block;
  font-weight: 700;
}

.section-cart .woocommerce-cart-form tbody .variation dd {
  height: 14px;
  line-height: 14px;
  padding-top: 2px;
  display: inline-block;
  max-width: 100%;
}

.section-cart .woocommerce-cart-form tbody .woocommerce-Price-amount {
  font-weight: 700;
}

.section-cart .woocommerce-cart-form tbody .quantity .screen-reader-text {
  display: block;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  width: 0;
}

.section-cart .woocommerce-cart-form tbody .quantity input[type="number"] {
  border: 1px solid #e5e5e5;
  padding: 10px;
  font-size: 15px;
  max-width: 80px;
}

.section-cart .woocommerce-cart-form tbody .product-remove {
  padding: 0 10px;
}

.section-cart .woocommerce-cart-form tbody .product-remove a {
  padding: 4px;
  border: 1px solid #e5e5e5;
  background: #fff;
  height: 20px;
  width: 20px;
  display: block;
  line-height: 11px;
  text-align: center;
}

.section-cart .woocommerce-cart-form tbody .product-remove a:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
}

.section-cart .woocommerce-cart-form tbody .actions {
  padding: 10px;
  border: 1px solid #e5e5e5;
  background: #fff !important;
  text-align: right;
}

.section-cart .woocommerce-cart-form tbody .actions button {
  border: 1px solid #7916d0;
  color: #7916d0;
  background: none;
  padding: 10px 15px;
  text-transform: uppercase;
  font-family: "Gilroy", sans-serif, sams-serif;
  font-weight: 700;
}

.section-cart .woocommerce-cart-form tbody .actions button:hover {
  background: #7916d0;
  color: #fff;
  cursor: pointer;
}

.section-cart .woocommerce-cart-form p {
  font-size: 12px;
  text-align: left;
  line-height: 14px;
}

@media (max-width: 884px) {
  .section-cart .woocommerce-cart-form .product-price {
    display: none;
  }

  .section-cart .woocommerce-cart-form .product-name {
    min-width: 200px;
  }

  .section-cart .woocommerce-cart-form tbody .quantity input[type="number"] {
    max-width: 40px;
    padding-right: 0;
  }

  .section-cart .woocommerce-cart-form tbody .product-thumbnail a {
    min-width: 43px;
  }
}

@media (max-width: 509px) {
  .section-cart .woocommerce-cart-form .product-name {
    min-width: 100px;
  }

  .section-cart .woocommerce-cart-form p {
    font-size: 12px;
    text-align: left;
  }
}

.section-cart .cart_totals {
  max-width: 50%;
  border: 1px solid #e5e5e5;
  margin: 20px 0 0 auto;
  padding: 20px;
}

.section-cart .cart_totals h2 {
  background: #e5e5e5;
  padding: 13px 20px;
  margin: -20px -20px 0;
  border-top: 1px solid #fff;
  font-size: 20px;
  text-transform: uppercase;
}

.section-cart .cart_totals ul {
  list-style: none;
}

.section-cart .cart_totals table th {
  text-transform: uppercase;
  padding-right: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 15px;
  text-align: right;
}

.section-cart .cart_totals table tr {
  vertical-align: top;
  text-transform: uppercase;
  font-family: "Gilroy", sans-serif, sams-serif;
}

.section-cart .cart_totals table tr td {
  padding-top: 10px;
  padding-bottom: 10px;
}

.section-cart .cart_totals .shop_table {
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
}

.section-cart .cart_totals .wc-proceed-to-checkout a {
  padding: 20px;
  display: block;
  color: #fff;
  font-family: "Gilroy", sans-serif, sams-serif;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  background: #287f0a;
}

.section-cart .cart_totals .wc-proceed-to-checkout a:after {
  content: '';
  background: url(css/images/icons/slider-arrow-right.png) no-repeat right center;
  width: 16px;
  height: 32px;
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.section-cart .cart_totals .wc-proceed-to-checkout a:hover {
  background: #1c6504;
  text-decoration: none;
}

.section-cart .cart_totals #shipping_method li {
  font-weight: 700;
  color: #1c1c1c;
}

@media (max-width: 884px) {
  .section-cart .cart_totals {
    max-width: 100%;
  }
}

.section-checkout .checkout__header,
.section-thankyou .checkout__header {
  margin: 0 -500px 0 -500px;
  padding: 30px 0 30px 0;
  background-color: #1c1c1c;
  margin-bottom: 10px;
}

.section-checkout .checkout__header img,
.section-thankyou .checkout__header img {
  display: block;
  margin: 0 auto;
  width: 80px;
}

.section-checkout .checkout__breadcrumbs,
.section-thankyou .checkout__breadcrumbs {
  text-align: center;
  margin-bottom: 40px;
}

.section-checkout .checkout__breadcrumbs a:hover,
.section-thankyou .checkout__breadcrumbs a:hover {
  text-decoration: none;
}

.section-checkout .checkout__breadcrumbs a:hover span,
.section-thankyou .checkout__breadcrumbs a:hover span {
  color: #1c1c1c;
}

@media (max-width: 884px) {

  .section-checkout .checkout__breadcrumbs,
  .section-thankyou .checkout__breadcrumbs {
    display: none;
  }
}

.section-checkout .checkout__breadcrumbs span,
.section-thankyou .checkout__breadcrumbs span {
  font-size: 13px;
  color: #666;
}

.section-checkout .checkout__breadcrumbs span.current,
.section-thankyou .checkout__breadcrumbs span.current {
  color: #1c1c1c;
  font-weight: bold;
}

.section-checkout .checkout__breadcrumbs span.separator,
.section-thankyou .checkout__breadcrumbs span.separator {
  margin: 0 2px 0 2px;
}

.section-checkout {
  padding-top: 0;
}

.section-checkout .woocommerce-error,
.section-checkout .woocommerce-success,
.section-checkout .woocommerce-notice {
  margin-top: 15px;
  margin-bottom: 30px;
  border-color: #e5e5e5;
  border-radius: 5px;
}

.section-checkout .btn.btn--back-to-cart {
  text-transform: uppercase;

  border: 1px solid #1c1c1c;
  border-radius: 0px;
  padding: 8px 14px 8px 14px;
  line-height: 1;
  -webkit-transition: color .3s, background .3s;
  -o-transition: color .3s, background .3s;
  transition: color .3s, background .3s;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 24px;
  background-color: #1c1c1c;
  color: #fff;
}

.section-checkout .btn.btn--back-to-cart:hover {
  background-color: white;
  color: #1c1c1c;
}

@media (max-width: 884px) {
  .section-checkout .btn.btn--back-to-cart {
    margin-top: 8px;
  }
}

.section-checkout .woocommerce-NoticeGroup {
  width: 100%;
}

@media (max-width: 884px) {
  .section-checkout .woocommerce-info {
    margin-bottom: 0;
  }
}

.section-checkout .shell {
  max-width: 1100px;
}

.section-checkout .woocommerce-form-coupon-toggle {
  font-size: 14px;
  color: #1c1c1c;
}

.section-checkout form.checkout_coupon {
  margin-bottom: 30px;
}

.section-checkout form.checkout_coupon p {
  display: block;
  width: 100%;
  margin-bottom: 0;
}

.section-checkout form.checkout_coupon p:first-child {
  margin-bottom: 8px;
}

.section-checkout form.checkout_coupon input {
  width: 100%;
  max-width: 300px;
  font-size: 14px;
  padding: 12px;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  margin-bottom: 12px;
  -webkit-transition: border-color 150ms;
  -o-transition: border-color 150ms;
  transition: border-color 150ms;
}

.section-checkout form.checkout_coupon input:focus,
.section-checkout form.checkout_coupon input:active {
  border-color: #1c1c1c;
}

.section-checkout form.checkout_coupon input:invalid {
  border-color: #ee000e;
}

@media (max-width: 884px) {
  .section-checkout form.checkout_coupon input {
    width: 100%;
    max-width: unset;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.section-checkout form.checkout_coupon .button {
  text-transform: uppercase;
  background-color: white;
  color: #1c1c1c;
  border: 1px solid #1c1c1c;
  border-radius: 30px;
  padding: 8px 14px 8px 14px;
  line-height: 1;
  -webkit-transition: color .3s, background .3s;
  -o-transition: color .3s, background .3s;
  transition: color .3s, background .3s;
  font-size: 12px;
  font-weight: bold;
}

.section-checkout form.checkout_coupon .button:hover {
  background-color: #1c1c1c;
  color: #fff;
}

@media (max-width: 884px) {
  .section-checkout form.checkout_coupon .button {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.section-checkout button[name="woocommerce_checkout_place_order"] {
  display: block;
  border: 1px solid transparent;
  text-align: center;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #F0C44F;
  width: 100%;
  margin-top: 20px;
  border-radius: 0px;
  padding: 20px;
  line-height: 1;
  -webkit-transition: color .3s, background .3s;
  -o-transition: color .3s, background .3s;
  transition: color .3s, background .3s;
}

.section-checkout button[name="woocommerce_checkout_place_order"]:hover {
  background: transparent;
  border: 1px solid #F0C44F;
  color: #000000;
}

.section-checkout form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.section-checkout form h3 {
  margin-bottom: 30px;
  color: #212121;
}

.section-checkout form .checkout__main {
  width: 100%;
  padding-right: 100px;
}

@media (max-width: 1200px) {
  .section-checkout form .checkout__main {
    padding-right: 50px;
  }
}

@media (max-width: 884px) {
  .section-checkout form .checkout__main {
    width: 100%;
    padding: 0;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .section-checkout form .checkout__main .checkout__badges {
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: 30px;
  }

  .section-checkout form .checkout__main .checkout__payment-image {
    margin-bottom: 30px;
  }
}

@media (min-width: 884px) {

  .section-checkout form .checkout__main .checkout__before-and-after-image,
  .section-checkout form .checkout__main .checkout__badges,
  .section-checkout form .checkout__main .checkout__payment-image {
    display: none !important;
  }
}

.section-checkout form .checkout__main .checkout__customer-details {
  margin-bottom: 40px;
}

.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #F2F2F2;
  padding: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper p {
  width: 100%;
  margin-bottom: 18px;
}

@media (max-width: 509px) {
  .section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper p {
    padding: 0 !important;
  }
}

.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper p label {
  display: none;
}

.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper p input {
  width: 100%;
  font-size: 14px;
  padding: 12px;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  -webkit-transition: border-color 150ms;
  -o-transition: border-color 150ms;
  transition: border-color 150ms;
}

.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper p input:focus,
.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper p input:active {
  border-color: #1c1c1c;
}

.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper p input:invalid {
  border-color: #ee000e;
}

.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper p select {
  width: 100%;
  font-size: 14px;
  padding: 11px 30px 11px 11px;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  background-image: url("css/images/icons/ico-select-arrow.jpg");
  background-repeat: no-repeat;
  background-position: right;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_email_field,
.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_first_name_field,
.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_last_name_field,
.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_address_1_field,
.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_address_2_field,
.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_city_field,
.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_state_field,
.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_country_field,
.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_postcode_field,
.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_phone_field,
.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #shipping_email_field,
.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #shipping_first_name_field,
.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #shipping_last_name_field,
.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #shipping_address_1_field,
.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #shipping_address_2_field,
.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #shipping_city_field,
.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #shipping_state_field,
.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #shipping_country_field,
.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #shipping_postcode_field,
.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #shipping_phone_field {
  -webkit-box-ordinal-group: initial;
  -ms-flex-order: initial;
  order: initial;
}

.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_country_field,
.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_country_field {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_state_field {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_postcode_field {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_phone_field {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}

.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_first_name_field {
  padding-right: 0;
}

.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_first_name_field,
.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_last_name_field,
.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_country_field,
.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_postcode_field {
  width: 50%;
}

@media (max-width: 509px) {

  .section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_first_name_field,
  .section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_last_name_field,
  .section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_country_field,
  .section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_postcode_field {
    width: 100%;
    padding-right: 0;
  }
}

.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_state_field {
  padding: 0 15px 0 0px;
}

.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_postcode_field {
  padding-left: 15px;
}

.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_state_field~#billing_postcode_field {
  padding-left: 0;
}

.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_state_field,
.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_state_field~#billing_country_field,
.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_state_field~#billing_postcode_field {
  width: 50%;
}

@media (max-width: 509px) {

  .section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_state_field,
  .section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_state_field~#billing_country_field,
  .section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_state_field~#billing_postcode_field {
    width: 100%;
  }
}

.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_state_field[style="display: none;"]~#billing_country_field,
.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper #billing_state_field[style="display: none;"]~#billing_postcode_field {
  width: 50% !important;
}

.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper+.kl_newsletter_checkbox_field {
  padding: 6px 0;
}

.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper+.kl_newsletter_checkbox_field label {
  padding-left: 0;
  font-size: 14px;
  text-transform: uppercase;
}

.section-checkout form .checkout__main .checkout__customer-details .woocommerce-billing-fields__field-wrapper+.kl_newsletter_checkbox_field input {
  visibility: visible;
  opacity: 1;
  position: relative;
  top: 2px;
}

.section-checkout form .checkout__main .checkout__shipping-methods {
  margin-bottom: 40px;
}

.section-checkout form .checkout__main .checkout__shipping-methods h3 {
  margin-bottom: 12px;
}

.section-checkout form .checkout__main .checkout__shipping-methods .woocommerce-shipping-methods {
  /* border: 1px solid #e5e5e5; */
  border-radius: 5px;
  padding: 10px 10px 5px 10px;
  list-style: none;
}

.section-checkout form .checkout__main .checkout__shipping-methods .woocommerce-shipping-methods li {
  position: relative;
}

.section-checkout form .checkout__main .checkout__shipping-methods .woocommerce-shipping-methods li input.shipping_method {
  margin-left: 20px;
  position: absolute;
  top: 25px;
  left: -5px;
  z-index: 999;
}

.section-checkout form .checkout__main .checkout__shipping-methods .woocommerce-shipping-methods li>label {
  display: block;
  position: relative;
  color: #1c1c1c;
  background: #fff;
  margin-bottom: 5px;
  padding: 20px 40px 20px 40px;
  border-radius: 5px;
}

.section-checkout form .checkout__main .checkout__payment-methods {
  margin-bottom: 30px;
}

.section-checkout form .checkout__main .checkout__payment-methods h3 {
  margin-bottom: 12px;
}

.section-checkout form .checkout__main .checkout__payment-methods .woocommerce-checkout-payment {
  padding: 10px 10px 20px 10px;
  /* border: 1px solid #e5e5e5; */
  border-radius: 5px;
}

.section-checkout form .checkout__main .checkout__payment-methods .woocommerce-checkout-payment .wc_payment_methods {
  list-style: none;
}

.section-checkout form .checkout__main .checkout__payment-methods .woocommerce-checkout-payment .wc_payment_methods .payment_box {
  background: #fbf7fd;
  padding: 20px;
  margin-top: -6px;
  position: relative;
  border-radius: 4px;
  display: none;
  font-size: 14px;
}

.section-checkout form .checkout__main .checkout__payment-methods .woocommerce-checkout-payment .wc_payment_methods .payment_box #braintree-cc-form {
  background: #fff;
  border: 1px solid #e5e5e5;
}

.section-checkout form .checkout__main .checkout__payment-methods .woocommerce-checkout-payment .wc_payment_methods .payment_box.payment_method_braintree {
  margin-top: -26px;
}

.section-checkout form .checkout__main .checkout__payment-methods .woocommerce-checkout-payment .wc_payment_methods li {
  position: relative;
}

.section-checkout form .checkout__main .checkout__payment-methods .woocommerce-checkout-payment .wc_payment_methods li a {
  font-size: 14px;
  text-decoration: underline;
  margin-left: 20px;
}

.section-checkout form .checkout__main .checkout__payment-methods .woocommerce-checkout-payment .wc_payment_methods li img {
  max-width: 150px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.section-checkout form .checkout__main .checkout__payment-methods .woocommerce-checkout-payment .wc_payment_methods li input.input-radio {
  margin-left: 20px;
  position: absolute;
  top: 25px;
  left: -5px;
}

.section-checkout form .checkout__main .checkout__payment-methods .woocommerce-checkout-payment .wc_payment_methods li>label {
  display: block;
  position: relative;
  color: #540e7b;
  background: #fbf7fd;
  margin-bottom: 5px;
  padding: 20px 40px 20px 40px;
  border-radius: 5px;
}

.section-checkout form .checkout__main .checkout__payment-methods .woocommerce-checkout-payment .place-order p {
  font-size: 12px;
}

@media (max-width: 884px) {
  .section-checkout form .checkout__main .checkout__payment-methods .about_paypal {
    display: none;
  }
}

.section-checkout form .checkout__sidebar {
  /* width: 40%; */
}

@media (max-width: 884px) {
  .section-checkout form .checkout__sidebar {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .section-checkout form .checkout__sidebar .checkout__before-and-after-image,
  .section-checkout form .checkout__sidebar .checkout__badges,
  .section-checkout form .checkout__sidebar .checkout__payment-image {
    display: none !important;
  }
}

.section-checkout form .checkout__sidebar .sidebar__order-review {
  margin-bottom: 60px;
}

@media (max-width: 884px) {
  .section-checkout form .checkout__sidebar .sidebar__order-review {
    margin-bottom: 20px;
  }
}

.section-checkout form .checkout__sidebar .sidebar__order-review .view-order-details {
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  display: none;
}

.section-checkout form .checkout__sidebar .sidebar__order-review .view-order-details:hover {
  color: #1c1c1c;
}

@media (max-width: 884px) {
  .section-checkout form .checkout__sidebar .sidebar__order-review .view-order-details {
    display: block;
  }
}

.section-checkout form .checkout__sidebar .sidebar__order-review .view-order-details span {
  margin-left: 10px;
}

.section-checkout form .checkout__sidebar .sidebar__order-review .view-order-details span img {
  max-width: 8px;
}

.section-checkout form .checkout__sidebar .sidebar__order-review .view-order-details .open-tab img {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.section-checkout form .checkout__sidebar .sidebar__order-review .view-order-details .close-tab {
  display: none;
}

.section-checkout form .checkout__sidebar .sidebar__order-review .view-order-details .close-tab img {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.section-checkout form .checkout__sidebar .sidebar__order-review .view-order-details.open .open-tab {
  display: none;
}

.section-checkout form .checkout__sidebar .sidebar__order-review .view-order-details.open .close-tab {
  display: inline;
}

.section-checkout form .checkout__sidebar .sidebar__order-review table {
  text-align: left;
}

@-webkit-keyframes expand-order-details {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes expand-order-details {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.section-checkout form .checkout__sidebar .sidebar__order-review table.expanded {
  -webkit-animation-name: expand-order-details;
  animation-name: expand-order-details;
  -webkit-animation-duration: 1500ms;
  animation-duration: 1500ms;
}

@media (max-width: 884px) {
  .section-checkout form .checkout__sidebar .sidebar__order-review table:not(.expanded) thead {
    display: none;
  }
}

@media (max-width: 884px) {
  .section-checkout form .checkout__sidebar .sidebar__order-review table:not(.expanded) tbody {
    display: none;
  }
}

@media (max-width: 884px) {
  .section-checkout form .checkout__sidebar .sidebar__order-review table:not(.expanded) tfoot tr:not(.order-total) {
    display: none;
  }
}

.section-checkout form .checkout__sidebar .sidebar__order-review table thead tr th {
  padding: 0 0 20px 0;
  color: #1c1c1c;
  border-bottom: 1px solid #e5e5e5;
}

.section-checkout form .checkout__sidebar .sidebar__order-review table thead tr .product-total {
  text-align: right;
}

.section-checkout form .checkout__sidebar .sidebar__order-review table tbody tr td {
  font-size: 14px;
  padding: 25px 0 25px 0;
  border-bottom: 1px solid #e5e5e5;
}

.section-checkout form .checkout__sidebar .sidebar__order-review table tbody tr td.product-name {
  padding-left: 20px;
}

.section-checkout form .checkout__sidebar .sidebar__order-review table tbody tr td.product-thumbnail img {
  width: 100%;
  height: auto;
  max-width: 60px;
}

.section-checkout form .checkout__sidebar .sidebar__order-review table tbody tr td.product-total {
  font-size: 14px;
  text-align: right;
}

.section-checkout form .checkout__sidebar .sidebar__order-review table tbody tr td.product-total .woocommerce-Price-amount {
  font-family: "Gilroy", sans-serif, sans-serif;
}

.section-checkout form .checkout__sidebar .sidebar__order-review table tbody tr td.product-total .woocommerce-Price-currencySymbol {
  font-family: "Gilroy", sans-serif, sans-serif;
  margin-right: 2px;
}

.section-checkout form .checkout__sidebar .sidebar__order-review table tfoot tr {
  font-size: 14px;
}

.section-checkout form .checkout__sidebar .sidebar__order-review table tfoot tr.cart-subtotal td,
.section-checkout form .checkout__sidebar .sidebar__order-review table tfoot tr.cart-subtotal th {
  padding: 20px 0 5px 0;
}

.section-checkout form .checkout__sidebar .sidebar__order-review table tfoot tr.woocommerce-shipping-totals td {
  white-space: nowrap;
}

.section-checkout form .checkout__sidebar .sidebar__order-review table tfoot tr.woocommerce-shipping-totals td,
.section-checkout form .checkout__sidebar .sidebar__order-review table tfoot tr.woocommerce-shipping-totals th {
  padding: 0 0 20px 0;
}

.section-checkout form .checkout__sidebar .sidebar__order-review table tfoot tr.order-total td,
.section-checkout form .checkout__sidebar .sidebar__order-review table tfoot tr.order-total th {
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
}

.section-checkout form .checkout__sidebar .sidebar__order-review table tfoot tr.order-total td {
  font-size: 18px;
}

.section-checkout form .checkout__sidebar .sidebar__order-review table tfoot tr th {
  text-align: left;
}

.section-checkout form .checkout__sidebar .sidebar__order-review table tfoot tr td {
  text-align: right;
  padding-right: 0;
}

.section-checkout form .checkout__sidebar .sidebar__order-review table tfoot tr td .woocommerce-Price-amount {
  font-family: "Gilroy", sans-serif, sans-serif;
}

.section-checkout form .checkout__sidebar .sidebar__order-review table tfoot tr td .woocommerce-Price-currencySymbol {
  font-family: "Gilroy", sans-serif, sans-serif;
  margin-right: 2px;
}

.section-checkout .woocommerce-terms-and-conditions-wrapper a {
  color: #75438c;
  /**pointer-events: none;**/
}

.section-contact {
  padding: 40px 0;
  font-size: 15px;
  padding-top: 60px;
}

.section-contact .form-row {
  padding-bottom: 20px;
}

.section-contact .form-row .form-cols {
  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;
}

.section-contact .form-row .form-cols .form-col {
  width: calc(50% - 10px);
}

.section-contact .form-row .form-cols .form-col.form-col-1of1 {
  width: 100%;
}

.section-contact label {
  font-size: 15px;
  font-size: 17px;
  font-weight: 700;
}

.form-title {
  font-size: 25px;
  text-align: center;
  margin: 30px;
}

.section-contact .form-controls {
  width: 100%;
}

.section-contact .form-controls .textarea,
.section-contact .form-controls .field {
  width: 100%;
  border: 1px solid #e5e5e5;
  padding: 10px;
  font-size: 15px;
}

.section-contact .form-controls .field.field-error {
  border-color: red;
}

.section-contact .form-controls .textarea {
  height: 150px;
}

@media (max-width: 884px) {
  .section-contact {
    padding-top: 0;
  }
}

.section.section--about {
  padding-top: 170px;
}

.section.section--about h2.mobile {
  display: none;
  margin-bottom: 10px;
  text-align: center;
}

@media (max-width: 884px) {
  .section.section--about h2.mobile {
    display: block;
  }
}

@media (max-width: 884px) {
  .section.section--about h2.desktop {
    display: none;
  }
}

.section.section--about .shell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
}

.section.section--about .shell .section__video {
  min-width: 325px;
  margin-right: 40px;
  margin-bottom: 20px;
}

@media (max-width: 884px) {
  .section.section--about .shell {
    padding-left: 20px;
    padding-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: left;
  }

  .section.section--about .shell .section__video {
    margin-right: 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .section.section--about .shell .section__content {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .section.section--about .shell p a {
    font-size: 18px;
  }
}

@media (max-width: 1023px) {
  .section.section--product .ornament.ornament--10 {
    left: auto;
    right: 50%;
  }

  .section.section--product .gmp {
    margin-left: 12%;
  }

  .section--goals {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .section.section--product .ornament.ornament--12 {
    left: 28%;
  }

  .section.section--goals .btn-medium {
    margin: 20px 0;
  }

  .section.section--bottle .shell,
  .section.section--product .shell,
  .section .section__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }

  .section.section--bottle .section__content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    text-align: center;
  }

  .section .section__head {
    margin-bottom: 25px;
  }

  .section.section--goals .section__content {
    max-width: 100%;
  }

  .section.section--goals .section__aside {
    margin: auto;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section.section--bottle .section__aside,
  .section.section--bottle .section__aside img,
  .section.section--goals .slider img {
    width: 100%;
    max-width: 100%;
  }

  .section.section--bottle .section__aside {
    padding-top: 20px;
  }

  .section.section--product .section__product-image {
    padding-right: 40px;
  }

  .section.section--product .section__product,
  .section.section--product .section__product .section__image {
    margin: auto;
  }

  .section.section--product .section__content {
    margin: auto;
  }

  .section.section--product .gmp {
    margin: 20px auto;
  }

  .section-group--secondary .section.section--product .section__product {
    display: none;
  }

  .section.section--bottle {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .section.section--testimonials {
    padding-top: 40px;
  }

  .section.section--testimonials h2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section.section--offers h2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-reviews .section__head-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .section-reviews .section__head-inner .review {
    margin-bottom: 20px;
    padding-right: 0;
  }

  .section-reviews .section__head-inner .list-review {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .section-reviews .section__head-inner p {
    padding-left: 0;
  }

  .section-group-secondary .section-reviews .section__head,
  .section-group-secondary .section-faq .section__head {
    padding-bottom: 40px;
  }

  .section-upsells .section__head {
    padding-bottom: 20px;
  }

  .section-bottle .section__body .cols .col {
    width: 33%;
    max-width: auto;
  }

  .section-bottle .section__body .cols .col:nth-child(2) {
    max-width: 220px;
  }

  .section-prepare-secondary .section__aside {
    padding-left: 20px;
  }

  .section-tips-secondary .cols {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .section-tips-secondary .cols .col.col-size2 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: 100%;
    max-width: 100%;
    margin-top: -20px;
  }

  .section-tips-secondary .cols .col.col-size1 {
    padding-top: 0;
    margin-top: 0;
  }

  .section-tips-secondary .cols .section__images {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .section-tips-secondary .cols .section__images img {
    padding: 0 4%;
  }

  section .section__head {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-opinions {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section-process {
    padding-bottom: 0;
  }

  .section-process .slider-process.slider-process--workout {
    margin-top: -40px;
  }
}

@media (max-width: 884px) {
  .section h2 {
    line-height: 1.2;
    font-size: 27px;
  }

  .section.section--product .section__content .features,
  .section.section--product .section__content {
    max-width: 100%;
    width: 100%;
  }

  .section.section--product .ornament.ornament--12,
  .section.section--product .ornament.ornament--8 {
    display: none;
  }

  .section.section--product .ornament.ornament--9 {
    top: 36%;
    left: 68%;
  }

  .section.section--callout {
    padding: 50px 0;
  }

  .section {
    margin-bottom: 0;
  }

  .section.section--goals .section__content {
    padding-left: 0;
    padding-right: 0;
  }

  .section.section--goals .section__content .review+p span {
    display: none;
  }

  .section .section__action {
    margin: 0 -10px 0;
  }

  .section .section__action .btn-medium {
    border-radius: 50px;
  }

  .section .section__head {
    margin-bottom: 10px;
  }

  .section .list-badges {
    margin-top: 15px;
    margin-bottom: 40px;
  }

  .section-group+.section--callout {
    margin-top: 30px;
  }

  .section.section--bottle .section__content {
    margin-left: 0;
    padding: 0;
  }

  .section.section--bottle h2 {
    text-align: center;
    margin-bottom: 10px;
  }

  .section.section--bottle h2+p {
    text-align: center;
    margin-bottom: 10px;
  }

  .section.section--bottle .review {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .section-group--secondary .section--product .section__content .features {
    padding-top: 0;
  }

  .section--offers .shell {
    padding-left: 0;
    padding-right: 0;
  }

  .section-faq-primary .section__body {
    padding-top: 60px;
  }

  .section-group-secondary .shell {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .section-group-secondary .shell .section-faq,
  .section-group-secondary .shell .section-reviews {
    width: 100%;
    max-width: 100%;
  }

  .section-group-secondary .shell .section-reviews .section__head,
  .section-group-secondary .shell .section-faq .section__head {
    min-height: 1px;
  }

  .section-group-secondary .section-reviews .section__actions,
  .section-group-secondary .section-faq .section__actions {
    padding-top: 0;
    padding-bottom: 40px;
    padding-left: 0;
    padding-right: 0;
  }

  .section-group-secondary {
    padding: 40px 0;
  }

  .product-single+section.section-description,
  .section-gallery {
    padding: 20px 0;
  }

  .section-group-secondary .section-reviews .section__body,
  .section-group-secondary .section-faq .section__body {
    min-height: 1px;
    padding-bottom: 20px;
  }

  .section-group-secondary {
    padding-bottom: 0;
  }

  .section-tips .shell {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .section-tips .shell h2 {
    text-align: center;
    padding-top: 40px;
  }

  .section-tips {
    padding-bottom: 10px;
  }

  .section-bottle .section__head {
    padding-bottom: 50px;
  }

  .section-bottle .section__body .cols {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .section-bottle .section__body .cols .col {
    text-align: center;
    margin: auto;
  }

  .section-bottle .section__body .cols .col img {
    max-height: 40vh;
  }

  .section-bottle .section__body .cols .col:nth-child(2) {
    display: none;
  }

  .section-prepare-secondary .section__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .section-prepare-secondary .section__aside {
    padding-top: 40px;
  }

  .section.section--product {
    padding-bottom: 0;
  }

  .section-opinions {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media (max-width: 509px) {
  .section.section--product .ornament.ornament--10 {
    right: 58%;
  }

  .section.section--product .ornament.ornament--11 {
    left: auto;
    right: 0;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .section--feed .section__head {
    margin-bottom: 0;
    padding-bottom: 15px;
  }

  .section--feed .section__body .shell {
    padding-left: 0;
    padding-right: 0;
  }

  .section-goals .section__head {
    padding-bottom: 10px;
  }

  .section-ingredients.section-ingredients--secondary {
    padding-top: 40px;
    padding-bottom: 0;
  }

  .section-ingredients .section__head {
    padding-bottom: 0;
  }

  .section-faq-primary .section__head {
    padding-left: 0;
    padding-right: 0;
  }
}

.section-checkout .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper .form-row .select2-selection__rendered {
  display: inline-block;
  font-size: 14px;
}

.section-checkout .woocommerce-shipping-fields .woocommerce-shipping-fields__field-wrapper .form-row label,
.section-checkout .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper .form-row label {
  max-width: 180px;
  min-width: 180px;
}

.woocommerce-input-wrapper {
  width: 100%;
}

.section-checkout #order_review .shop_table tfoot .woocommerce-shipping-totals #shipping_method label {
  margin-left: 10px;
}

.section-checkout .woocommerce-checkout-payment li {
  position: relative;
}

.section-checkout .woocommerce-checkout-payment li input.input-radio {
  position: absolute;
  top: 24px;
  left: -3px;
  z-index: 20;
}

.section-checkout .woocommerce-checkout-payment li>label::after {
  display: none;
}

#braintree-cc-form label {
  font-size: 14px;
}

#braintree-cc-form #braintree-card-number {
  margin-bottom: 10px;
}

.woocommerce-variation[style=""]+.product__price-variations {
  display: none;
}

.section-thankyou {
  padding-top: 0;
  margin-bottom: 0;
}

.section-thankyou .woocommerce-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.section-thankyou .woocommerce-order-downloads {
  width: 100%;
  margin-bottom: 40px;
  border: 1px solid #e5e5e5;
}

.section-thankyou .woocommerce-order-downloads .woocommerce-table {
  padding: 0 20px 0 20px;
  text-align: left;
}

.section-thankyou .woocommerce-order-downloads .woocommerce-table th {
  padding: 14px;
  background-color: #e5e5e5;
  font-size: 16px;
}

.section-thankyou .woocommerce-order-downloads .woocommerce-table td {
  font-size: 12px;
  padding: 10px 8px;
}

.section-thankyou .woocommerce-order-downloads .woocommerce-table .woocommerce-MyAccount-downloads-file {
  font-weight: bold;
  text-decoration: underline;
}

.section-thankyou .woocommerce-order-downloads .woocommerce-table .woocommerce-MyAccount-downloads-file:hover,
.section-thankyou .woocommerce-order-downloads .woocommerce-table .woocommerce-MyAccount-downloads-file:focus {
  color: #540e7b;
}

@media (max-width: 509px) {

  .section-thankyou .woocommerce-order-downloads tr td.download-remaining,
  .section-thankyou .woocommerce-order-downloads tr td.download-expires,
  .section-thankyou .woocommerce-order-downloads thead {
    display: none;
  }

  .section-thankyou .woocommerce-order-downloads tr,
  .section-thankyou .woocommerce-order-downloads tbody,
  .section-thankyou .woocommerce-order-downloads tr td {
    display: block;
  }

  .section-thankyou .woocommerce-order-downloads tr+tr {
    padding-top: 13px;
  }

  .section-thankyou .woocommerce-order-downloads tbody {
    padding: 10px;
  }

  .section-thankyou .woocommerce-order-downloads .woocommerce-table td {
    padding: 2px 8px;
  }
}

.section-thankyou p.woocommerce-thankyou-order-received {
  width: 100%;
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  background-color: #fff;
  color: #1c1c1c;
  border: 1px solid #e5e5e5;
  padding: 26px 15px 26px 15px;
}

.section-thankyou ul.woocommerce-order-overview {
  font-size: 14px;
  width: 100%;
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
  border: 1px solid #e5e5e5;
}

@media (max-width: 1200px) {
  .section-thankyou ul.woocommerce-order-overview {
    margin-bottom: 15px;
  }
}

.section-thankyou ul.woocommerce-order-overview li {
  padding: 10px 0 10px 12px;
}

.section-thankyou ul.woocommerce-order-overview li:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}

.section-thankyou section h2 {
  font-size: 20px;
  background-color: #ed1c24;
  color: white;
  padding: 8px 12px;
  margin-bottom: 0;
  font-weight: 400;
}

.section-thankyou ul.woocommerce-order-overview+p {
  display: none;
}

.section-thankyou .woocommerce-order-details__title {
  border: 1px solid #e5e5e5;
}

.section-thankyou .woocommerce-order-details {
  width: 65%;
  padding: 0 15px 0 0;
}

@media (max-width: 1200px) {
  .section-thankyou .woocommerce-order-details {
    padding: 0;
  }
}

@media (max-width: 884px) {
  .section-thankyou .woocommerce-order-details {
    width: 100%;
  }
}

.section-thankyou .woocommerce-order-details table {
  border: 1px solid #e5e5e5;
  margin-bottom: 40px;
}

@media (max-width: 884px) {
  .section-thankyou .woocommerce-order-details table {
    margin-bottom: 0;
  }
}

.section-thankyou .woocommerce-order-details table thead th {
  font-size: 16px;
  background: #e5e5e5;
  padding: 14px;
  text-align: left;
  border-top: 1px solid #e5e5e5;
}

.section-thankyou .woocommerce-order-details table tbody tr td,
.section-thankyou .woocommerce-order-details table tbody tr th {
  font-size: 12px;
  padding: 10px 8px;
}

.section-thankyou .woocommerce-order-details table tbody tr td .wc-item-meta,
.section-thankyou .woocommerce-order-details table tbody tr th .wc-item-meta {
  margin-top: 4px;
  list-style: none;
}

.section-thankyou .woocommerce-order-details table tfoot {
  background: #e5e5e5;
}

.section-thankyou .woocommerce-order-details table tfoot tr td,
.section-thankyou .woocommerce-order-details table tfoot tr th {
  font-size: 14px;
  padding: 10px 8px;
  text-align: left;
}

@media (max-width: 884px) {
  .section-thankyou .woocommerce-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.section-thankyou .woocommerce-column {
  border: 1px solid #e5e5e5;
  margin-bottom: 30px;
}

@media (max-width: 884px) {
  .section-thankyou .woocommerce-column {
    width: calc(50% - 7.5px);
    margin-top: 15px;
  }

  .section-thankyou .woocommerce-column:first-child {
    margin-right: 15px;
  }
}

@media (max-width: 509px) {
  .section-thankyou .woocommerce-column {
    width: 100%;
    margin-bottom: 0;
  }

  .section-thankyou .woocommerce-column:first-child {
    margin-right: 0px;
  }

  .section-thankyou .woocommerce-column:last-child {
    margin-bottom: 15px;
  }
}

.section-thankyou .woocommerce-customer-details {
  width: 35%;
  padding: 0 0 0 15px;
}

@media (max-width: 1200px) {
  .section-thankyou .woocommerce-customer-details {
    padding: 0 15px 0 15px;
  }
}

@media (max-width: 884px) {
  .section-thankyou .woocommerce-customer-details {
    width: 100%;
    padding: 0;
  }
}

.section-thankyou .woocommerce-customer-details address {
  font-size: 14px;
  padding: 15px 20px;
}

.section-blog {
  margin-top: 60px;
}

@media (max-width: 1023px) {
  .section-blog {
    margin-top: 30px;
  }
}

.section-blog .section-head {
  margin-bottom: 40px;
}

.section-blog .section-head h1 {
  font-size: 36px;
  color: #540e7b;
}

.section-blog .section-head p {
  font-size: 16px;
}

.section-blog .section-body .posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px 0 -10px;
}

.section-blog .section-body .posts .post {
  width: 33%;
  padding: 0 10px 0 10px;
  margin-bottom: 30px;
}

@media (max-width: 1023px) {
  .section-blog .section-body .posts .post {
    width: 50%;
  }
}

@media (max-width: 884px) {
  .section-blog .section-body .posts .post {
    width: 100%;
  }
}

.section-blog .section-body .posts .post .post-wrapper {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f4f0f8), to(#fff));
  background-image: -webkit-linear-gradient(#f4f0f8, #fff);
  background-image: -o-linear-gradient(#f4f0f8, #fff);
  background-image: linear-gradient(#f4f0f8, #fff);
  padding: 20px;
}

.section-blog .section-body .posts .post .post-image {
  overflow: hidden;
  margin-bottom: 14px;
}

.section-blog .section-body .posts .post .post-image img {
  width: 100%;
  height: auto;
}

.section-blog .section-body .posts .post .post-image:hover img {
  -webkit-animation-name: image_hover;
  animation-name: image_hover;
  -webkit-animation-duration: 1200ms;
  animation-duration: 1200ms;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes image_hover {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes image_hover {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

.section-blog .section-body .posts .post .post-content {
  padding: 0 18px 0 18px;
}

.section-blog .section-body .posts .post .post-content .post-title {
  margin-bottom: 8px;
  font-size: 20px;
  color: #3b0a56;
}

.section-blog .section-body .posts .post .post-content .post-title a:hover,
.section-blog .section-body .posts .post .post-content .post-title a:focus {
  color: #540e7b;
  text-decoration: none;
}

.section-blog .section-body .posts .post .post-content .post-meta {
  font-size: 12px;
  margin-bottom: 12px;
}

.section-blog .section-body .posts .post .post-content .post-excerpt {
  font-size: 16px;
  margin-bottom: 8px;
}

.section-blog .section-body .posts .post .post-content .post-footer a {
  font-size: 16px;
  text-decoration: underline;
}

.section-blog .section-body .posts .post .post-content .post-footer a:hover,
.section-blog .section-body .posts .post .post-content .post-footer a:focus {
  color: #540e7b;
  text-decoration: none;
}

.section-single-post .post {
  margin-top: 40px;
}

@media (max-width: 1023px) {
  .section-single-post .post {
    margin-top: 20px;
  }
}

@media (max-width: 884px) {
  .section-single-post .post {
    margin-top: 10px;
  }
}

.section-single-post .post .post__header img {
  width: 100%;
  height: auto;
}

.section-single-post .post .post__meta {
  padding: 20px 12px 20px 12px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f4f0f8), to(#fff));
  background-image: -webkit-linear-gradient(#f4f0f8, #fff);
  background-image: -o-linear-gradient(#f4f0f8, #fff);
  background-image: linear-gradient(#f4f0f8, #fff);
  margin-bottom: 70px;
}

@media (max-width: 1023px) {
  .section-single-post .post .post__meta {
    margin-bottom: 20px;
  }
}

.section-single-post .post .post__meta h1 {
  font-size: 32px;
  color: #540e7b;
  margin-bottom: 6px;
}

.section-single-post .post .post__meta time {
  font-size: 14px;
  font-weight: bold;
}

.section--image {
  width: 100%;
}

.section--image img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.section-single-post h1,
.section-single-post h2,
.section-single-post h3,
.section-single-post h4,
.section-single-post h5,
.section-single-post h6,
.section-default h1,
.section-default h2,
.section-default h3,
.section-default h4,
.section-default h5,
.section-default h6 {
  color: #2d2b2b;
}

.section-default {
  margin-top: 60px;
}

@media (max-width: 1023px) {
  .section-default {
    margin-top: 30px;
  }
}

@media (max-width: 884px) {
  .section-default {
    margin-top: 0;
  }
}

.section-our-story h2 {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  color: #ed1c24;
  font-size: 52px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 700;
}

@media (max-width: 884px) {
  .section-our-story h2 {
    font-size: 32px;
  }
}

.section-our-story h2+p {
  display: block;
  max-width: 768px;
  margin: 0 auto;
  margin-bottom: 70px;
  font-size: 16px;
  color: #444;
}

@media (max-width: 884px) {
  .section-our-story h2+p {
    font-size: 14px;
    margin-bottom: 30px;
  }
}

.section-our-story .wp-block-media-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

@media (min-width: 884px) {
  .section-our-story .wp-block-media-text:nth-child(even) .wp-block-media-text__media {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

@media (min-width: 884px) {
  .section-our-story .wp-block-media-text:nth-child(even) .wp-block-media-text__content {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

.section-our-story .wp-block-media-text .wp-block-media-text__media,
.section-our-story .wp-block-media-text .wp-block-media-text__content {
  width: 50%;
}

@media (max-width: 884px) {

  .section-our-story .wp-block-media-text .wp-block-media-text__media,
  .section-our-story .wp-block-media-text .wp-block-media-text__content {
    width: 100%;
  }

  .section-our-story .wp-block-media-text .wp-block-media-text__media img,
  .section-our-story .wp-block-media-text .wp-block-media-text__content img {
    margin-bottom: 20px;
  }
}

@media (max-width: 884px) and (max-width: 884px) {

  .section-our-story .wp-block-media-text .wp-block-media-text__media,
  .section-our-story .wp-block-media-text .wp-block-media-text__content {
    padding: 0;
  }
}

@media (max-width: 884px) {
  .section-our-story .wp-block-media-text {
    margin-bottom: 30px;
  }
}

.section-our-story .wp-block-media-text p {
  color: #444;
}

.section-our-story .wp-block-media-text img {
  display: block;
  max-width: 500px;
  margin: 0 auto;
}

.section-our-story .wp-block-media-text+p {
  display: block;
  max-width: 768px;
  margin: 0 auto;
  margin-bottom: 8px;
  font-size: 16px;
  color: #380e50;
}

@media (max-width: 884px) {
  .section-our-story .wp-block-media-text+p {
    font-size: 14px;
  }
}

.section-our-story .wp-block-media-text+p+h2 {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  color: #ed1c24;
  font-size: 52px;
  text-transform: uppercase;
  margin-bottom: 70px;
  font-weight: 700;
}

@media (max-width: 884px) {
  .section-our-story .wp-block-media-text+p+h2 {
    font-size: 32px;
  }
}

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

.section-testimonials .testimonials__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 25px;
  border: 1px solid #e2e2e2;
}

@media (max-width: 884px) {
  .section-testimonials .testimonials__wrapper {
    padding: 0;
    border: none;
  }
}

.section-testimonials .testimonials__summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 12px;
  width: 80%;
}

@media (max-width: 884px) {
  .section-testimonials .testimonials__summary {
    width: 100%;
  }
}

.section-testimonials .testimonials__summary img {
  max-width: 14px;
}

.section-testimonials .testimonials__summary .summary__reviews-count {
  margin-right: 20px;
  padding: 0 10px 0 10px;
  border-right: 1px solid #e2e2e2;
}

@media (max-width: 884px) {
  .section-testimonials .testimonials__summary .summary__reviews-count {
    width: 50%;
    margin-right: 20px;
  }
}

@media (max-width: 607px) {
  .section-testimonials .testimonials__summary .summary__reviews-count {
    width: 100%;
    margin-bottom: 20px;
    border-right: unset;
    margin-right: 0;
    padding: 0 0 10px 0;
    border-bottom: 1px solid #e2e2e2;
  }
}

.section-testimonials .testimonials__summary .summary__reviews-count .list-review {
  margin-bottom: 8px;
}

.section-testimonials .testimonials__summary .summary__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 884px) {
  .section-testimonials .testimonials__summary .summary__list {
    width: calc(50% - 20px);
  }
}

@media (max-width: 509px) {
  .section-testimonials .testimonials__summary .summary__list {
    width: 100%;
  }
}

@media (max-width: 607px) {
  .section-testimonials .testimonials__summary .summary__list {
    width: 100%;
  }
}

.section-testimonials .testimonials__summary .summary__list .summary__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.section-testimonials .testimonials__summary .summary__list .summary__list-item .summary__list-item__stars {
  -ms-flex-negative: 1;
  flex-shrink: 1;
}

@media (min-width: 607px) and (max-width: 884px) {
  .section-testimonials .testimonials__summary .summary__list .summary__list-item .summary__list-item__stars {
    width: calc(35% - 20px);
    margin-bottom: 8px;
  }
}

@media (max-width: 370px) {
  .section-testimonials .testimonials__summary .summary__list .summary__list-item .summary__list-item__stars {
    width: calc(30% - 20px);
    margin-bottom: 8px;
  }
}

.section-testimonials .testimonials__summary .summary__list .summary__list-item .summary__list-item__progress-bar {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  width: 160px;
  background-color: #f8f4fa;
  text-align: right;
  margin: 0 10px;
  min-height: 16px;
}

@media (min-width: 607px) and (max-width: 884px) {
  .section-testimonials .testimonials__summary .summary__list .summary__list-item .summary__list-item__progress-bar {
    width: 65%;
    margin-bottom: 8px;
  }
}

@media (max-width: 370px) {
  .section-testimonials .testimonials__summary .summary__list .summary__list-item .summary__list-item__progress-bar {
    width: 70%;
    margin-bottom: 8px;
  }
}

.section-testimonials .testimonials__summary .summary__list .summary__list-item .summary__list-item__progress-bar .progress {
  height: 100%;
  background-color: #c29ad5;
}

.section-testimonials .testimonials__summary .summary__list .summary__list-item .summary__list-item__total-percentage {
  -ms-flex-negative: 1;
  flex-shrink: 1;
  margin-right: 6px;
  color: #ed1c24;
}

.section-testimonials .testimonials__summary .summary__list .summary__list-item .summary__list-item__reviews-count {
  -ms-flex-negative: 1;
  flex-shrink: 1;
}

.section-testimonials .testimonials__summary .summary__list .summary__list-item .summary__list-item__reviews-count p {
  font-size: 12px;
}

.section-testimonials .testimonials__summary .summary__list .summary__list-item:hover,
.section-testimonials .testimonials__summary .summary__list .summary__list-item:focus {
  text-decoration: none;
}

.section-testimonials .testimonials__summary .summary__list .summary__list-item:hover .summary__list-item__stars,
.section-testimonials .testimonials__summary .summary__list .summary__list-item:hover .summary__list-item__total-percentage,
.section-testimonials .testimonials__summary .summary__list .summary__list-item:hover .summary__list-item__reviews-count,
.section-testimonials .testimonials__summary .summary__list .summary__list-item:focus .summary__list-item__stars,
.section-testimonials .testimonials__summary .summary__list .summary__list-item:focus .summary__list-item__total-percentage,
.section-testimonials .testimonials__summary .summary__list .summary__list-item:focus .summary__list-item__reviews-count {
  opacity: 0.7;
}

.section-testimonials .testimonials__summary .summary__list .summary__list-item:hover .summary__list-item__progress-bar .progress,
.section-testimonials .testimonials__summary .summary__list .summary__list-item:focus .summary__list-item__progress-bar .progress {
  background-color: #ad76c6;
}

.section-testimonials .testimonials__summary .summary__list .summary__list-item.active {
  text-decoration: none;
}

.section-testimonials .testimonials__summary .summary__list .summary__list-item.active .summary__list-item__stars {
  opacity: 0.7;
}

.section-testimonials .testimonials__summary .summary__list .summary__list-item.active .summary__list-item__progress-bar .progress {
  background-color: #ad76c6;
}

.section-testimonials .testimonials__actions {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media (max-width: 884px) {
  .section-testimonials .testimonials__actions {
    width: 100%;
    padding-top: 20px;
  }
}

.section-testimonials .testimonials__actions a {
  display: block;
  width: 140px;
  padding: 6px;
  border: 1px solid #e2e2e2;
  text-align: center;
  font-size: 14px;
}

.section-testimonials .testimonials__actions a:hover,
.section-testimonials .testimonials__actions a:focus {
  text-decoration: none;
  color: #ed1c24;
  border-color: #ed1c24;
}

.section-testimonials .testimonials__messages h6 {
  font-size: 18px;
  margin-top: 20px;
  color: #ed1c24;
}

.section-testimonials .testimonials__messages ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: #f53131;
}

.section-testimonials .testimonials__messages.success h6 {
  color: #299a0b;
}

.section-testimonials .testimonials__form {
  display: none;
  width: 100%;
  padding: 20px 0 0 0;
  font-size: 12px;
}

.section-testimonials .testimonials__form h6 {
  font-size: 28px;
  color: #ed1c24;
  margin-bottom: 40px;
}

.section-testimonials .testimonials__form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px 0 0 0;
  border-top: 1px solid #e2e2e2;
}

.section-testimonials .testimonials__form form .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  /*select {
					padding: 10px;
					border: 1px solid #e2e2e2;
					width: 200px;
					font-size: 14px;
					background: #fff url(css/images/icons/select-arrow.jpg) right center no-repeat;
					appearance: none;
					&:focus {
						border: 1px solid #999;
					}
					&.error {
						outline: none;
						box-shadow: none;
						border: 1px solid #f53131;
					}
					&:valid {
						border: 1px solid #299a0b;
						& + span {
							color: unset;
						}
					}
					& + span {
						margin-top: 8px;
						font-size: 11px;
						font-style: italic;
					}
				}*/
}

.section-testimonials .testimonials__form form .form-row:not(:last-child) {
  margin-bottom: 20px;
}

.section-testimonials .testimonials__form form .form-row .list-review {
  margin-top: 4px;
  margin-bottom: 10px;
}

.section-testimonials .testimonials__form form .form-row label {
  color: #555;
  font-weight: bold;
}

.section-testimonials .testimonials__form form .form-row label img {
  max-width: 60px;
  -webkit-transition: 200ms;
  -o-transition: 200ms;
  transition: 200ms;
  margin-bottom: -25px;
}

.section-testimonials .testimonials__form form .form-row label:hover {
  color: #ed1c24;
}

.section-testimonials .testimonials__form form .form-row label:hover img {
  opacity: .8;
}

.section-testimonials .testimonials__form form .form-row label[for="review_video"] img {
  margin-bottom: -30px;
}

.section-testimonials .testimonials__form form .form-row label.file span {
  display: block;
}

.section-testimonials .testimonials__form form .form-row label.file span+span {
  font-weight: normal;
  margin-top: 6px;
}

.section-testimonials .testimonials__form form .form-row input {
  padding: 10px;
  color: #666;
  border-bottom: 1px solid #e2e2e2;
}

.section-testimonials .testimonials__form form .form-row input:invalid,
.section-testimonials .testimonials__form form .form-row input:required {
  border: 1px solid #e2e2e2;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.section-testimonials .testimonials__form form .form-row input:focus {
  border: 1px solid #999;
}

.section-testimonials .testimonials__form form .form-row input.error {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #f53131;
}

.section-testimonials .testimonials__form form .form-row input:valid {
  border: 1px solid #299a0b;
}

.section-testimonials .testimonials__form form .form-row input:valid+span {
  color: unset;
}

.section-testimonials .testimonials__form form .form-row input+span {
  margin-top: 8px;
  font-size: 11px;
  font-style: italic;
}

.section-testimonials .testimonials__form form .form-row input[type="file"] {
  border: none;
  padding-left: 0;
}

.section-testimonials .testimonials__form form .form-row textarea {
  margin-top: 10px;
  border: 1px solid #e2e2e2;
  padding: 10px;
  color: #666;
}

.section-testimonials .testimonials__form form .form-row textarea.error {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #f53131;
}

.section-testimonials .testimonials__form form .form-row textarea:focus {
  border: 1px solid #999;
}

.section-testimonials .testimonials__form form .form-row textarea:invalid,
.section-testimonials .testimonials__form form .form-row textarea:required {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.section-testimonials .testimonials__form form .form-row textarea:valid {
  border: 1px solid #299a0b;
}

.section-testimonials .testimonials__form form .form-row textarea:valid+span {
  color: unset;
}

.section-testimonials .testimonials__form form .form-row textarea+span {
  margin-top: 8px;
  font-size: 11px;
  font-style: italic;
}

.section-testimonials .testimonials__form form .form-row .stars-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-top: 6px;
}

.section-testimonials .testimonials__form form .form-row .stars-select .star {
  height: 14px;
  width: 14px;
  margin: 3px;
  background: url("css/images/temp/star-1.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.section-testimonials .testimonials__form form .form-row .stars-select .star:hover,
.section-testimonials .testimonials__form form .form-row .stars-select .star.active {
  cursor: pointer;
}

.section-testimonials .testimonials__form form .form-row .stars-select .star:hover~.star,
.section-testimonials .testimonials__form form .form-row .stars-select .star.active~.star {
  background: url("css/images/temp/star-empty.png");
}

.section-testimonials .testimonials__form form .form-row .stars-select .star:hover {
  opacity: .8;
}

.section-testimonials .testimonials__form form .form-row button[type="submit"] {
  width: 100%;
  max-width: 200px;
  padding: 14px;
  font-size: 14px;
  background-color: #299a0b;
  color: #fff;
  border: none;
  -webkit-transition: background-color 200ms;
  -o-transition: background-color 200ms;
  transition: background-color 200ms;
}

.section-testimonials .testimonials__form form .form-row button[type="submit"]:hover,
.section-testimonials .testimonials__form form .form-row button[type="submit"]:focus {
  background-color: #24870a;
}

.single-product .testimonials__list .testimonials__list__body .testimonial-item {
  padding: 30px 20px 20px 20px;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  margin-bottom: 20px;
}

.testimonials__list {
  padding-top: 20px;
}

.testimonials__list .testimonials__list__body h4 {
  color: #ed1c24;
}

.testimonials__list .testimonials__list__body .testimonial-item {
  padding: 20px 0;
}

.testimonials__list .testimonials__list__body .testimonial-item:not(:last-child) {
  border-bottom: 1px solid #e2e2e2;
}

.testimonials__list .testimonials__list__body .testimonial-item .testimonial__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.testimonials__list .testimonials__list__body .testimonial-item .testimonial__header .header__avatar {
  width: 45px;
  height: 45px;
  position: relative;
  border-radius: 100%;
  background: #e2e2e2;
  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;
  margin-right: 10px;
}

.testimonials__list .testimonials__list__body .testimonial-item .testimonial__header .header__avatar .initials {
  position: absolute;
  font-size: 22px;
  text-transform: uppercase;
  color: #ed1c24;
}

.testimonials__list .testimonials__list__body .testimonial-item .testimonial__header .header__meta {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

.testimonials__list .testimonials__list__body .testimonial-item .testimonial__header .header__meta .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.testimonials__list .testimonials__list__body .testimonial-item .testimonial__header .header__meta .row .list-review {
  margin-right: 8px;
}

.testimonials__list .testimonials__list__body .testimonial-item .testimonial__header .header__meta .row .list-review img {
  max-width: 12px;
}

.testimonials__list .testimonials__list__body .testimonial-item .testimonial__header .header__meta .row span.date {
  margin-right: 6px;
}

.testimonials__list .testimonials__list__body .testimonial-item .testimonial__header .header__meta .row span.date,
.testimonials__list .testimonials__list__body .testimonial-item .testimonial__header .header__meta .row span.about {
  font-size: 12px;
  position: relative;
  top: 4px;
  color: #555;
}

.testimonials__list .testimonials__list__body .testimonial-item .testimonial__header .header__meta .row span.date a,
.testimonials__list .testimonials__list__body .testimonial-item .testimonial__header .header__meta .row span.about a {
  text-decoration: underline;
}

.testimonials__list .testimonials__list__body .testimonial-item .testimonial__header .header__meta .row span.date a:hover,
.testimonials__list .testimonials__list__body .testimonial-item .testimonial__header .header__meta .row span.date a:focus,
.testimonials__list .testimonials__list__body .testimonial-item .testimonial__header .header__meta .row span.about a:hover,
.testimonials__list .testimonials__list__body .testimonial-item .testimonial__header .header__meta .row span.about a:focus {
  color: #ed1c24;
}

.testimonials__list .testimonials__list__body .testimonial-item .testimonial__header .header__meta .row:first-child {
  margin-bottom: 2px;
}

.testimonials__list .testimonials__list__body .testimonial-item .testimonial__header .header__meta span.verified {
  margin-left: 4px;
  position: relative;
  bottom: 1px;
  font-size: 10px;
  font-weight: bold;
  background-color: #34d15b;
  color: white;
  padding: 3px 6px;
  border-radius: 4px;
}

.testimonials__list .testimonials__list__body .testimonial-item .testimonial__images {
  padding: 4px 0;
}

.testimonials__list .testimonials__list__body .testimonial-item .testimonial__images img {
  max-width: 100px;
  -webkit-transition: opacity 200ms;
  -o-transition: opacity 200ms;
  transition: opacity 200ms;
  border: 1px solid #e2e2e2;
  padding: 2px;
}

.testimonials__list .testimonials__list__body .testimonial-item .testimonial__images img:hover {
  opacity: 0.8;
}

.testimonials__list .testimonials__list__body .testimonial-item .testimonial__video {
  padding: 4px 0;
}

.testimonials__list .testimonials__list__body .testimonial-item .testimonial__video video {
  border: 1px solid #e2e2e2;
  padding: 2px;
}

.testimonials__list .testimonials__list__body .testimonial-item .testimonial__content {
  padding: 12px 0;
  font-size: 14px;
  width: 100%;
}

.testimonials__list .testimonials__list__body .testimonial-item .testimonial__content h6 {
  font-size: 16px;
  margin-bottom: 6px;
}

.testimonials__list .testimonials__list__body .testimonial-item .testimonial__content p {
  line-height: 20px;
}

.testimonials__list .testimonials__list__body .testimonial-item .testimonial__content .review-reply {
  background: #f8f4fa;
  padding: 4px 8px 4px 20px;
}

.testimonials__list .testimonials__list__body .testimonial-item .testimonial__content .review-reply strong {
  color: #ed1c24;
}

/* ------------------------------------------------------------ *	Slider
\* ------------------------------------------------------------ */
.slider {
  position: relative;
}

.slider .slides {
  width: 100%;
  -webkit-clip-path: polygon(0 100%, 30% 100%, 34% 95%, 67% 95%, 71% 100%, 100% 100%, 100% 0, 0 0);
  clip-path: polygon(0 100%, 30% 100%, 34% 95%, 67% 95%, 71% 100%, 100% 100%, 100% 0, 0 0);
}

@media (max-width: 1023px) {
  .slider .slides {
    -webkit-clip-path: none;
    clip-path: none;
  }

  .slider .slick-dots {
    display: none !important;
  }
}

.slick-slide {
  height: auto;
}

.slides,
.list-ingredients,
.list-prepare,
.steps,
.instafeed.slick-slider,
.list-goals,
.upsells {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}




.slides .slide,
.list-ingredients .slide,
.list-prepare .slide,
.steps .slide,
.instafeed.slick-slider .slide,
.list-goals .slide,
.upsells .slide {
  visibility: hidden;
}

.slides.slick-initialized,
.list-ingredients.slick-initialized,
.list-prepare.slick-initialized,
.steps.slick-initialized,
.instafeed.slick-slider.slick-initialized,
.list-goals.slick-initialized,
.upsells.slick-initialized {
  display: block;
}

.slides.slick-initialized:before,
.list-ingredients.slick-initialized:before,
.list-prepare.slick-initialized:before,
.steps.slick-initialized:before,
.instafeed.slick-slider.slick-initialized:before,
.list-goals.slick-initialized:before,
.upsells.slick-initialized:before {
  content: unset;
}

.slides.slick-initialized .slide,
.list-ingredients.slick-initialized .slide,
.list-prepare.slick-initialized .slide,
.steps.slick-initialized .slide,
.instafeed.slick-slider.slick-initialized .slide,
.list-goals.slick-initialized .slide,
.upsells.slick-initialized .slide {
  visibility: visible;
}

.slider-testimonials .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slider-testimonials .slide {
  background-color: #fff;
  padding: 30px;
  margin: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: none;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-right: 0px;
  height: auto;
}

.slider-testimonials .slide .slide__image {
  border-radius: 50%;
  border: 3px solid #521f70;
  overflow: hidden;
}

.slider-testimonials .slide .slide__content {
  max-width: 350px;
  width: 100%;
  margin: 0 30px;
}

.slider-testimonials .slide .slide__content p {
  color: #666666;
  font-size: 15px;
  line-height: 1.6;
}

.slider-testimonials .slide .slide__content strong {
  font-size: 18px;
  color: #333333;
  line-height: 1.6;
}

.slider-testimonials .slick-dots {
  bottom: -40px;
  margin-left: 7.5px;
}

.slider-testimonials .list-review {
  margin-bottom: 12px;
}

@media (max-width: 509px) {
  .slider-testimonials .list-review {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .slider-testimonials .slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    margin: 0;
  }

  .slider-testimonials .slide .slide__image {
    margin: 0 auto 10px;
  }

  .slider-testimonials .slide .slide__content {
    margin: 0;
  }

  .slider-testimonials .slide .slide__content {
    margin: auto;
  }

  .slider-testimonials .slick-dots {
    bottom: -40px;
    margin-left: 0;
  }
}

.slider-packages .slide:nth-child(1n) .package__head {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ecf2eb), to(#fff));
  background-image: -webkit-linear-gradient(#ecf2eb, #fff);
  background-image: -o-linear-gradient(#ecf2eb, #fff);
  background-image: linear-gradient(#ecf2eb, #fff);
  border-radius: 20px 20px 0 0;
  margin-bottom: 0;
  padding-bottom: 20px;
}

.slider-packages .slide:nth-child(1n) h4 span {
  color: #118f00;
}

.slider-packages .slide:nth-child(1n) .btn-big {
  background-color: #467e3b;
}

.slider-packages .slide:nth-child(1n) .list-details {
  min-height: 100px;
}

.slider-packages .slide:nth-child(1n) .list-details li {
  margin-top: 10px;
}

@media (max-width: 1200px) {
  .slider-packages .slide:nth-child(1n) .review {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.slider-packages .slide:nth-child(1n) .review .link-more {
  max-width: 170px;
}

@media (max-width: 1200px) {
  .slider-packages .slide:nth-child(1n) .review .link-more {
    margin: 0 auto;
    margin-top: 15px;
  }
}

.slider-packages .slide:nth-child(1n) .list-review+span {
  position: relative;
  top: 3px;
  font-size: 12px;
}

.slider-packages .slide .product-price {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 700;
  color: #467e3b;
}

.slider-packages .slide .product-price ins {
  text-decoration: none;
  margin-left: 8px;
}

.slider-packages button.slick-arrow {
  background: #510d78;
  border: 0;
  position: absolute;
  top: 20%;
  z-index: 50;
  width: 60px;
  height: 75px;
  font-size: 0;
  line-height: 0;
  text-indent: -4004px;
}

.slider-packages button.slick-disabled {
  cursor: none;
  pointer-events: none;
  display: none !important;
}

.slider-packages button.slick-prev {
  left: 10px;
  border-radius: 0 10px 10px 0;
}

.slider-packages button.slick-next {
  right: 10px;
  border-radius: 10px 0 0 10px;
}

.slider-packages button.slick-prev:before {
  content: '';
  background: url(css/images/icons/slider-arrow-left.png) 0 0 no-repeat;
  width: 16px;
  height: 32px;
  display: block;
  position: absolute;
  top: 50%;
  left: 45%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.slider-packages button.slick-next:after {
  content: '';
  background: url(css/images/icons/slider-arrow-right.png) 0 0 no-repeat;
  width: 16px;
  height: 32px;
  display: block;
  position: absolute;
  top: 50%;
  left: 55%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.slider-packages .single_add_to_cart_button {
  overflow: hidden;
}

.slider-packages .single_add_to_cart_button:before {
  border-radius: 0;
}

.slider-packages .single_add_to_cart_button:after {
  top: 41%;
}

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  font-size: 0;
  line-height: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 100;
}

.slick-dots li {
  margin: 2px;
}

.slick-dots button {
  width: 15px;
  height: 15px;
  padding: 3px;
  border-radius: 50%;
  background-color: transparent;
}

@media (max-width: 509px) {
  .slick-dots {
    bottom: -7px;
  }
}

.slider-gallery-main button.slick-prev {
  left: 0;
}

.slider-gallery-main button.slick-next {
  right: 0;
  background-position: right 0;
}

@media (max-width: 884px) {
  .slider-gallery-main button.slick-prev {
    left: 15px;
  }

  .slider-gallery-main button.slick-next {
    right: 15px;
    background-position: right 0;
  }
}

.slider-gallery-main .slide img {
  width: 100%;
  max-width: 465px;
  margin: 0 auto;
}

.slider-gallery-main .slide .iframe-container {
  margin: 0 40px;
}

.slider-gallery-nav {
  margin-top: 20px;
}

.slider-gallery-nav .slides {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 360px;
  width: 100%;
  margin: auto;
  overflow: hidden;
}

.slider-gallery-nav .slides.slick-initialized {
  overflow: visible;
}

.slider-gallery-nav .slide {
  width: 75px;
  margin: 4px;
  padding: 2px;
  border-radius: 2px;
  background: white;
  /* border: 1px solid #777; */
  -webkit-transition: opacity .2s, border-color .2s;
  -o-transition: opacity .2s, border-color .2s;
  transition: opacity .2s, border-color .2s;
}

.slider-gallery-nav .slide img {
  border-radius: 2px;
  width: 100%;
}

.slider-gallery-nav .slide.slick-current {
  /* border-color: #7b3e98; */
  opacity: 0.9;
}

.slider-gallery-nav .slide:hover {
  cursor: pointer;
  /* border-color: #7b3e98; */
  opacity: 0.9;
}

.slider-gallery-nav .video-slide .thumbnail {
  position: relative;
  width: 76px;
  height: 76px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slider-gallery-nav .video-slide .thumbnail:after {
  display: block;
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: url(css/images/icons/slider-play.png) no-repeat center center;
  background-size: cover;
  z-index: 999;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (max-width: 509px) {
  .slider-gallery-nav {
    padding-left: 17px;
    padding-right: 17px;
  }
}

.slider-gallery-nav button.slick-prev {
  left: -15px;
}

.slider-gallery-nav button.slick-next {
  right: -15px;
  background-position: right 0;
}

.slider-gallery-nav button.slick-prev,
.slider-gallery-nav button.slick-next,
.slider-gallery-main button.slick-prev,
.slider-gallery-main button.slick-next,
.slider.slider--1 button.slick-prev,
.slider.slider--1 button.slick-next,
.slider.slider--2 button.slick-prev,
.slider.slider--2 button.slick-next {
  background: url(css/images/temp/slider-arrow.png) no-repeat 0 0;
  border: 0;
  position: absolute;
  top: 50%;
  font-size: 0;
  line-height: 0;
  width: 8px;
  height: 13px;
  margin-top: -9px;
  z-index: 5000;
}

.slider-gallery-nav button.slick-next,
.slider-gallery-main button.slick-next,
.slider.slider--1 button.slick-next,
.slider.slider--2 button.slick-next {
  background-position: right 0;
}

.slider-gallery-nav button[aria-disabled="true"],
.slider-gallery-main button[aria-disabled="true"],
.slider.slider--1 button[aria-disabled="true"],
.slider.slider--2 button[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0;
}

.slider-gallery-nav button.slick-prev:before,
.slider-gallery-main button.slick-prev:before,
.slider.slider--1 button.slick-prev:before,
.slider.slider--2 button.slick-prev:before {
  content: '';
}

.slider-gallery-nav button.slick-next:after,
.slider-gallery-main button.slick-next:after,
.slider.slider--1 button.slick-next:after,
.slider.slider--2 button.slick-next:after {
  content: '';
}

.slider.slider--1 button.slick-prev,
.slider.slider--2 button.slick-prev {
  left: -20px;
}

@media (max-width: 884px) {

  .slider.slider--1 button.slick-prev,
  .slider.slider--2 button.slick-prev {
    left: 13px;
  }
}

.slider.slider--1 button.slick-next,
.slider.slider--2 button.slick-next {
  right: -20px;
  background-position: right 0;
}

@media (max-width: 884px) {

  .slider.slider--1 button.slick-next,
  .slider.slider--2 button.slick-next {
    right: 13px;
    background-position: right 0;
  }
}

@media (max-width: 884px) {

  .slider.slider--1,
  .slider.slider--2 {
    margin: 0 -30px;
  }
}

.slider-process .slides {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slider-process .slide {
  position: relative;
}

.slider-process .slide p {
  font-size: 17px;
  color: #000;
  font-family: "Gilroy", sans-serif, sans-serif;
  margin-bottom: 0;
  font-weight: 700;
}

.slider-process .slide p strong {
  font-size: 33px;
  color: #7b3e98;
}

.slider-process .slide .slide-content {
  position: absolute;
  top: 0;
  right: 0;
}

.slider-process .slide img {
  width: auto;
  max-height: 595px;
}

@media (max-width: 884px) {
  .slider-process .slide img {
    width: auto;
    max-height: 395px;
  }

  .slider-process .slide .slide-content {
    max-width: 150px;
  }

  .slider-process .slide p {
    font-size: 12px;
    color: #000;
    font-family: "Gilroy", sans-serif, sans-serif;
    margin-bottom: 0;
    font-weight: 700;
  }

  .slider-process .slide p strong {
    font-size: 20px;
    color: #7b3e98;
  }
}

.slider-process.slider-process--slimifit .slide[data-slick-index="0"] .slide-content {
  top: 50px;
}

@media (max-width: 884px) {
  .slider-process.slider-process--slimifit .slide[data-slick-index="0"] .slide-content {
    max-width: 120px;
  }
}

.slider-process.slider-process--slimifit .slide[data-slick-index="1"] .slide-content {
  top: 29%;
  text-align: right;
  left: 21%;
  max-width: 150px;
}

@media (max-width: 884px) {
  .slider-process.slider-process--slimifit .slide[data-slick-index="1"] .slide-content {
    left: 10%;
    max-width: 120px;
  }
}

.slider-process.slider-process--slimifit .slide[data-slick-index="2"] .slide-content {
  top: 50px;
  right: auto;
  left: 53px;
}

@media (max-width: 884px) {
  .slider-process.slider-process--slimifit .slide[data-slick-index="2"] .slide-content {
    max-width: 120px;
  }
}

.slider-process.slider-process--slimifit .slide[data-slick-index="3"] .slide-content {
  top: 50%;
  max-width: 200px;
}

@media (max-width: 884px) {
  .slider-process.slider-process--slimifit .slide[data-slick-index="3"] .slide-content {
    right: 0;
    max-width: 120px;
  }
}

.slider-process.slider-process--detox .slide p strong {
  color: #6c9249;
}

.slider-process.slider-process--detox .slide .slide-content {
  max-width: 150px;
}

.slider-process.slider-process--detox .slide[data-slick-index="0"] .slide-content {
  top: auto;
  bottom: 30%;
  right: auto;
  left: 25%;
  text-align: right;
}

@media (max-width: 884px) {
  .slider-process.slider-process--detox .slide[data-slick-index="0"] .slide-content {
    left: 15%;
  }
}

.slider-process.slider-process--detox .slide[data-slick-index="1"] .slide-content {
  top: 10%;
  right: 20px;
}

@media (max-width: 884px) {
  .slider-process.slider-process--detox .slide[data-slick-index="1"] .slide-content {
    right: auto;
    top: auto;
    bottom: 20px;
    left: 10%;
  }
}

.slider-process.slider-process--detox .slide[data-slick-index="2"] .slide-content {
  top: 62%;
  right: auto;
  left: -10%;
  text-align: right;
  max-width: 200px;
}

@media (max-width: 884px) {
  .slider-process.slider-process--detox .slide[data-slick-index="2"] .slide-content {
    right: auto;
    top: auto;
    bottom: 20px;
    left: 12%;
    text-align: left;
    max-width: 100px;
  }
}

.slider-process.slider-process--detox .slide[data-slick-index="3"] .slide-content {
  top: 30%;
  right: -2%;
  max-width: 200px;
}

@media (max-width: 884px) {
  .slider-process.slider-process--detox .slide[data-slick-index="3"] .slide-content {
    top: 10%;
    max-width: 100px;
    right: 10%;
  }
}

.slider-process.slider-process--workout .slide p strong {
  font-size: 26px;
}

.slider-process.slider-process--workout .slide p {
  font-size: 16px;
}

.slider-process.slider-process--workout .slide[data-slick-index="0"] .slide-content {
  top: 38%;
  right: 9%;
  max-width: 200px;
}

@media (max-width: 884px) {
  .slider-process.slider-process--workout .slide[data-slick-index="0"] .slide-content {
    max-width: 120px;
    right: 7%;
  }
}

.slider-process.slider-process--workout .slide[data-slick-index="1"] .slide-content {
  top: 22%;
  left: 48%;
  right: auto;
  max-width: 200px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 884px) {
  .slider-process.slider-process--workout .slide[data-slick-index="1"] .slide-content {
    max-width: 120px;
    left: 52%;
  }
}

.slider-process.slider-process--workout .slide[data-slick-index="2"] .slide-content {
  top: 26%;
  right: auto;
  left: 32%;
  text-align: right;
  max-width: 170px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 884px) {
  .slider-process.slider-process--workout .slide[data-slick-index="2"] .slide-content {
    max-width: 120px;
    left: 26%;
  }
}

.slider-process.slider-process--workout .slide[data-slick-index="3"] .slide-content {
  top: 60%;
  right: auto;
  left: 7%;
  max-width: 200px;
}

@media (max-width: 884px) {
  .slider-process.slider-process--workout .slide[data-slick-index="3"] .slide-content {
    max-width: 150px;
    left: 2%;
  }
}

@media (max-width: 509px) {
  .slider-process.slider-process--workout .slide[data-slick-index="3"] .slide-content {
    max-width: 100px;
    left: 10%;
  }
}

.slider-process button {
  border: 0;
  position: absolute;
  top: 0;
  z-index: 50;
  width: 50%;
  height: 100%;
  background: none;
  font-size: 0;
  line-height: 0;
  text-indent: -4004px;
}

.slider-process button[aria-disabled="true"] {
  cursor: none;
  pointer-events: none;
  opacity: 0;
}

.slider-process button.slick-prev {
  left: 0;
}

.slider-process button.slick-next {
  right: 0;
}

.upsells button {
  background: #1c1c1c;
  border: 0;
  position: absolute;
  top: 20%;
  z-index: 50;
  width: 60px;
  height: 75px;
  font-size: 0;
  line-height: 0;
  text-indent: -4004px;
}

.upsells button.slick-disabled {
  cursor: none;
  pointer-events: none;
  display: none !important;
}

.upsells button.slick-prev {
  left: 0;
  border-radius: 0 10px 10px 0;
}

.upsells button.slick-next {
  right: 0;
  border-radius: 10px 0 0 10px;
}

.upsells button.slick-prev:before {
  content: '';
  background: url(css/images/icons/slider-arrow-left.png) 0 0 no-repeat;
  width: 16px;
  height: 32px;
  display: block;
  position: absolute;
  top: 50%;
  left: 45%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.upsells button.slick-next:after {
  content: '';
  background: url(css/images/icons/slider-arrow-right.png) 0 0 no-repeat;
  width: 16px;
  height: 32px;
  display: block;
  position: absolute;
  top: 50%;
  left: 55%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* ------------------------------------------------------------ *	Magnific Popup
\* ------------------------------------------------------------ */
.mfp-bg {
  background: #000;
  opacity: 0.7;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: auto;
}

.mfp-close {
  top: 5px;
  right: 5px;
  width: 22px;
  height: 22px;
  line-height: 22px;
  opacity: 1;
  color: #fff;
}

.mfp-close:active {
  top: 5px;
}

.mfp-close-btn-in .mfp-close {
  color: #fff;
}

/* ------------------------------------------------------------ *	Popup
\* ------------------------------------------------------------ */
.popup {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  /*  Popup Medium  */
}

.popup .popup-head {
  padding: 28px;
  background: #000;
  text-align: center;
}

.popup .popup-title {
  line-height: 1.71;
  color: #fff;
}

.popup .popup-body {
  padding: 22px 25px;
}

.popup-medium {
  width: 640px;
}

.popup-medium img {
  max-width: 100%;
}

.popup-medium .package-large .package-image {
  margin-left: 0;
}

@media (max-width: 884px) {
  .popup-medium {
    width: 100%;
  }

  .popup .popup-head,
  .popup .popup-body {
    padding: 25px 10px;
  }
}

/* ------------------------------------------------------------ *	Bar
\* ------------------------------------------------------------ */
.bar {
  width: 100%;
  background-color: #549542;
  color: #fff;
  text-transform: uppercase;
  padding: 6px 0;
  font-weight: 500;
  line-height: 1;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4000;
  font-size: 14px;
}

.bar .shell {
  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;
}

.bar p {
  text-align: center;
}

.bar svg {
  width: 24px;
  height: 18px;
  fill: #fff;
  margin-right: 6px;
  vertical-align: bottom;
}

@media (max-width: 884px) {
  .bar {
    padding-top: 3px;
  }

  .bar svg {
    position: relative;
    top: 2px;
  }

  .bar p {
    font-size: 12px;
  }
}

/* ------------------------------------------------------------ *	Logo
\* ------------------------------------------------------------ */
.logo {
  min-width: 20%;
  text-align: center;
}

.logo img {
  padding-left: 20px;
  padding-right: 20px;
}

.logo+.nav {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-right: 50px;
  padding-left: 0;
  min-width: 42%;
  height: 76px;
  display: flex;
}

/* ------------------------------------------------------------ *	Section group
\* ------------------------------------------------------------ */
.section-group {
  background-position: center center;
  background-repeat: no-repeat;
}

.section-group.section-group--secondary {
  background-position: center -170px;
}

.section-group.section-group--secondary .section.section--product .section__content {
  max-width: 539px;
}

.section-group.section-group--secondary .feature .feature__content {
  max-width: 100%;
}

@media (max-width: 884px) {
  .section-group {
    background-position: center 700px;
    background-size: 300% auto;
  }
}

.section-group-secondary .section-reviews {
  position: relative;
}

.section-group-secondary .section-reviews .section__head {
  padding-bottom: 20px;
}

.section-group-secondary .section-faq {
  position: relative;
}

.section-group-secondary .section-faq .section__head {
  padding-bottom: 30px;
}

.section-group-secondary .section__actions {
  width: 100%;
}

.section-group-secondary .section__actions .btn {
  width: 100%;
}

/* ------------------------------------------------------------ *	Review
\* ------------------------------------------------------------ */
.review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-family: "Gilroy", sans-serif, sans-serif;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.review p {
  /* margin-left: 4px; */
  font-size: 17px;
  line-height: 1.2;
  position: relative;
  top: 10px;
}

.review span {
  margin-left: 10px;
}

.review .list-review {
  position: relative;
  top: 3px;
}

.review.review--seondary {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.review.review--seondary .review__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media (max-width: 884px) {
  .review.review--seondary {
    display: block;
    text-align: center;
  }

  .review.review--seondary .review__content {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.review .review__content {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

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


.review+p {
  margin-bottom: 5px;
}

@media (max-width: 1023px) {
  .review .list-review {
    position: relative;
    top: 0px;
  }
}

/* ------------------------------------------------------------ *	chart
\* ------------------------------------------------------------ */
.chart {
  background-color: #fff;
  border-radius: 20px;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 55px;
  padding-bottom: 20px;
  position: relative;
}

.chart span {
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 28px;
  font-size: 16px;
}

.chart>span {
  -webkit-transform: translate(-50%) rotate(-90deg);
  -ms-transform: translate(-50%) rotate(-90deg);
  transform: translate(-50%) rotate(-90deg);
  position: absolute;
  top: 50%;
  left: 28px;
  margin-top: -20px;
}

.chart .chart__image {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.chart .chart__image+p {
  color: #878787;
  font-size: 16px;
  text-align: center;
}

.chart.chart--primary .chart__image span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-115px, -29px) rotate(-31deg);
  -ms-transform: translate(-115px, -29px) rotate(-31deg);
  transform: translate(-115px, -29px) rotate(-31deg);
  font-size: 16px;
}

.chart.chart--primary .chart__image img {
  width: 100%;
}

.chart.chart--secondary .chart__image span {
  position: absolute;
  font-size: 16px;
}

.chart.chart--secondary .chart__image img+span {
  color: #4d9732;
  top: 34%;
  left: 18%;
  -webkit-transform: translate(-50%, -50%) rotate(-55deg);
  -ms-transform: translate(-50%, -50%) rotate(-55deg);
  transform: translate(-50%, -50%) rotate(-55deg);
  color: #d98a00;
}

.chart.chart--secondary .chart__image span+span {
  color: #b500bc;
  top: 58%;
  left: 24%;
  -webkit-transform: translate(-50%, -50%) rotate(-42deg);
  -ms-transform: translate(-50%, -50%) rotate(-42deg);
  transform: translate(-50%, -50%) rotate(-42deg);
  color: #a700ad;
}

@media (max-width: 1023px) {
  .chart {
    padding-top: 20px;
  }

  .chart.chart,
  .chart.chart.chart--secondary {
    max-width: 624px;
    margin: auto;
  }
}

@media (max-width: 884px) {
  .chart {
    padding: 20px 0;
    /*display: none;*/
  }

  .chart>span {
    display: none;
  }

  .chart .chart__image {
    margin-left: -20px;
  }
}

/* ------------------------------------------------------------ *	Features
\* ------------------------------------------------------------ */
.features {
  list-style: none;
}

/* ------------------------------------------------------------ *	Feature
\* ------------------------------------------------------------ */
.feature {
  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;
}

.feature .feature__image {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 70px;
  text-align: center;
  margin-right: 25px;
}

.feature .feature__image img {
  max-width: 100%;
}

.feature .feature__content {
  max-width: 353px;
  width: 100%;
}

.feature .feature__content h3 {
  margin-bottom: 5px;
  line-height: 1;
  text-transform: uppercase;
}

.feature .feature__content p {
  font-family: "Gilroy", sans-serif, sans-serif;
  line-height: 1.4;
  color: #380e50;
}

.feature+.feature {
  margin-top: 25px;
}

.feature:last-child {
  margin-bottom: 25px;
}

@media (max-width: 884px) {
  .feature {
    max-width: 100%;
    width: 100%;
  }

  .feature .feature__content {
    max-width: 100%;
  }
}

.features--secondary .feature__image {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 78px;
  text-align: right;
  -webkit-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  transform: translateX(-20px);
}

.features--secondary .feature__image img {
  max-width: 100%;
}

/* ------------------------------------------------------------ *	GMP
\* ------------------------------------------------------------ */
.gmp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 13px;
  line-height: 1.4;
  font-family: "Gilroy", sans-serif, sans-serif;
}

.gmp .gmp__image {
  min-width: 100px;
  margin-right: 18px;
}

@media (max-width: 884px) {
  .gmp {
    display: none;
  }
}

/* ------------------------------------------------------------ *	Insta feed
\* ------------------------------------------------------------ */
.instafeed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.instafeed .col {
  max-width: 25%;
  width: 100%;
  padding: 0 10px;
}

.instafeed .col.first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.instafeed .col.first .feed__image:nth-child(-n+4) {
  max-width: 47%;
  margin-bottom: 15px;
}

.instafeed .col.last {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.instafeed .col.last .feed__image:nth-child(n+2) {
  max-width: 47%;
  margin-top: 15px;
}

.instafeed .first+.feed__image {
  max-width: 47.7%;
}

.instafeed .feed__image a {
  display: block;
  background-size: cover;
  width: 100%;
}

.instafeed .feed__image img {
  opacity: 0;
}

@media (max-width: 884px) {
  .section--feed .shell>.instafeed {
    display: none;
  }

  .insta-clone {
    padding-bottom: 40px;
  }

  .insta-clone .feed__image img {
    width: 100%;
    height: auto;
  }

  .insta-clone .feed__image a {
    display: block;
  }
}

@media (max-width: 884px) and (max-width: 884px) {
  .insta-clone .feed__image a {
    width: 100vw;
  }
}

@media (max-width: 884px) {
  .insta-clone .slick-dots {
    bottom: -40px;
  }
}

/* ------------------------------------------------------------ *	package
\* ------------------------------------------------------------ */
.package {
  padding: 10px;
}

.package .package__head {
  padding: 40px 20px;
  margin-bottom: 10px;
}

.package .package__head h4 {
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 35px;
}

.package .package__head .review {
  margin-bottom: 35px;
}

.package .package__head .review p {
  width: 75%;
}

.package .package__head .review p span {
  margin-right: 30%;
}

.package .package .package__head h4 {
  margin-bottom: 23px;
}

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

.package .list-details {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 35px;
}

.package .link-more {
  color: #0aa1a7;
  text-decoration: underline;
  display: block;
  text-transform: uppercase;
  text-align: center;
  font-size: 14px;
}

.package .list-radios {
  margin-top: 35px;
}

.package .list-info {
  margin-bottom: 5px;
}

.package .form-variation .variations .label {
  display: none;
}

.package .form-variation .variations tr:last-child {
  background: none;
  margin-bottom: 0;
  padding-bottom: 10px;
}

.package .form-variation .single_variation_wrap .quantity {
  display: none !important;
}

.package .form-variation tr {
  padding-left: 0;
  padding-right: 0;
}

.package .form-variation button {
  font-size: 18px;
  padding: 20px;
  width: 100%;
  display: block;
  text-align: center;
  border-radius: 50px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  -webkit-transition: color .3s, background .3s;
  -o-transition: color .3s, background .3s;
  transition: color .3s, background .3s;
  background: #559542;
  cursor: pointer;
}

.package .form-variation button:hover {
  text-decoration: none;
  background-color: transparent !important;
}

@media (max-width: 884px) {
  .package {
    padding: 0;
  }

  .package .review span {
    top: -3px;
    position: relative;
  }

  .package .btn-big {
    width: 80%;
    margin: 20px auto;
  }
}

/* ------------------------------------------------------------ *	Socials
\* ------------------------------------------------------------ */
.socials ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

.socials ul li+li {
  margin-left: 15px;
}

.socials ul a {
  opacity: 1;
  -webkit-transition: opacity .5s;
  -o-transition: opacity .5s;
  transition: opacity .5s;
}

.socials ul a:hover {
  opacity: 0.5;
}

/* ------------------------------------------------------------ *	Main
\* ------------------------------------------------------------ */
.home .main,
.woocommerce-checkout .main {
  margin-top: 0;
}

.post-type-archive-product .main {
  margin-top: 60px;
}

@media (max-width: 884px) {
  .post-type-archive-product .main {
    margin-top: 0;
  }
}

.single-product .main {
  margin-top: 0px;
}

@media (max-width: 884px) {
  .single-product .main {
    margin-top: 0px;
  }
}

.main {
  min-height: 0px;
  position: relative;
  z-index: 50;
  background-repeat: no-repeat;
  background-position: center 860px;
  margin-top: 0px;
}

.main .nav-secondary {
  margin-top: -15px;
}

@media (max-width: 884px) {
  .main {
    background-position: center 30vh;
    margin-top: 0;
  }

  .main .nav-secondary {
    margin-top: 0;
  }

  .main .nav-secondary ul {
    padding-left: 20px;
    padding-right: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .main .nav-secondary ul li {
    padding: 10px;
  }

  .main .shell ul {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ------------------------------------------------------------ *	Products
\* ------------------------------------------------------------ */
.product-single {
  margin-bottom: 35px;
  margin-top: 120px;
}

.product-single .shell {
  max-width: 1077px;
}

.product-single .product__head h1 {
  font-size: 25px;
  color: #000;
  max-width: 80%;
  text-transform: uppercase;
}

.product-single .product__head p {
  letter-spacing: 1px;
}

.product-single .product__head .product__short-description {
  font-size: 20px;
  font-weight: 700;
  color: rgb(131, 131, 131);
  font-family: 'Roboto';
  width: 70%;
}

.product-single .product__head .product__short-description .panam-title-quote {
  font-weight: 100;
  color: rgb(131, 131, 131);
}

.product-single .product__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-single .product__group .product__aside {
  max-width: 515px;
  width: 100%;
}

.product-single .product__content {
  padding-top: 40px;
  padding-left: 40px;
  width: 100%;
}

.product-single .product__content .list-features-secondary {
  /* max-width: 391px;
  margin-top: 60px;
  padding-left: 60px;
  padding-top: 20px;
  margin-left: -100px; */
}

.product-single .product__actions {
  margin-bottom: 20px;
  margin-top: 40px;
}

.product-single .product__actions ins {
  text-decoration: none;
  color: #269100;
  margin-left: 6px;
  font-weight: bold;
}

.product-single .product__actions .product__actions__inner {
  background: #fff;
  border-radius: 50px;
  border: 1px solid #e2e2e2;
  min-height: 150px;
  margin-bottom: -45px;
  position: relative;
  z-index: 50;
}

.product-single .product__actions.product__actions--secondary {
  margin-bottom: 40px;
  margin-top: 20px;
}

.product-single .product__actions .single_add_to_cart_button {
  background: #F0C44F;
  font-size: 24px;
  color: #fff;
  width: 100%;
  border: 0;
  font-family: "Gilroy", sans-serif, sans-serif;
  font-weight: 700;
  padding: 10px 0;
  -webkit-transition: background .5s;
  -o-transition: background .5s;
  transition: background .5s;
  cursor: pointer;
}

.product__actions1 {
  background-color: red;
  text-align: center;
  height: 50px;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.second-buy-box-container-product-page .single_add_to_cart_button {
  background: #F0C44F;
  font-size: 24px;
  color: #fff;
  width: 100%;
  border: 0;
  font-family: "Gilroy", sans-serif, sans-serif;
  font-weight: 700;
  padding: 10px 0;
  -webkit-transition: background .5s;
  -o-transition: background .5s;
  transition: background .5s;
  cursor: pointer;
  position: relative;
  height: 100px;
  padding-left: 15px;
  margin-bottom: 10px;
  box-shadow: 0px 3px 11px -2px rgb(0 0 0 / 55%);
  -webkit-box-shadow: 0px 3px 11px -2px rgb(0 0 0 / 55%);
  -moz-box-shadow: 0px 3px 11px -2px rgba(0, 0, 0, 0.55);
  transition: all 0.3s ease-in;
  border-radius: 20px;
}

.second-buy-box-container-product-page {
  width: 55%;
  height: auto;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  margin-top: 5%;
  margin-bottom: 5%;
  position: relative;
  align-items: flex-start;
}

.bullets-list-second-bb {
  line-height: 1.7em;
  /*Kris Css - line-height: 2;*/
  margin: 10px 50px 0 10px;
}

.bullets-list-second-bb li {
  list-style: none;
  display: -webkit-box;
  /*Kris CSS*/
  padding-right: 35px;
  /*Kris CSS*/
}

.second-bb-description-wrapper {
  width: 100% !important;
  height: auto;
  display: flex;
  position: relative;
}

.second_bb_variations .product_variation_section .variation_row .swatches-select .check_container {
  width: 48%;
  margin: 1%;
  min-height: 97px;
  float: left;
}

@media only screen and (max-width: 600px) {

  .product-single .product__actions .single_add_to_cart_button {

    width: 100%;
    margin: 0 auto;

  }

  .second_bb_variations .product_variation_section .variation_row .swatches-select .check_container {
    width: 98%;
    margin: 1%;
    min-height: 97px;
    float: left;
  }

  .second-buy-box-container-product-page {
    width: 100%;
  }

  .second-buy-box-container-left-part {
    flex-direction: column;
  }

  .second_bb_variations .variations_form .single_variation_wrap .woocommerce-variation-add-to-cart {
    display: block !important;
  }

  .second_bb_variations .variations_form .single_variation_wrap .woocommerce-variation-add-to-cart .single_add_to_cart_button {
    margin: 0 5px;
  }
}


.product-single .product__actions .single_add_to_cart_button {
  display: block;
  position: relative;
}

.product-single .product__actions .single_add_to_cart_button:before {
  content: '';
  width: 100%;
  height: 100%;
  background: inherit;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 0 50px 50px;
  opacity: 0;
  -webkit-transition: opacity .4s;
  -o-transition: opacity .4s;
  transition: opacity .4s;
}

.product-single .product__actions .single_add_to_cart_button:after {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  -o-transition: transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}

.product-single .product__actions .single_add_to_cart_button.adding-to-cart,
.product-single .product__actions .single_add_to_cart_button.add-to-cart-failed,
.product-single .product__actions .single_add_to_cart_button.adding-to-cart {
  pointer-events: none;
}

.product-single .product__actions .single_add_to_cart_button.adding-to-cart:after {
  content: url(css/images/icons/loader.svg);
  vertical-align: top;
  font-weight: 400;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  margin-left: -25px;
  width: 50px;
  height: 50px;
  margin-top: -8px;
}

.product-single .product__actions .single_add_to_cart_button.adding-to-cart:before {
  content: '';
  opacity: 1;
}

.product-single .product__actions .single_add_to_cart_button.added-to-cart:after {
  content: url(css/images/icons/ico-check.png);
  vertical-align: top;
  font-weight: 400;
  position: absolute;
  top: 54%;
  left: 50%;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  margin-left: -10px;
  width: 20px;
  height: 20px;
}

.product-single .product__actions .single_add_to_cart_button.added-to-cart:before {
  content: '';
  opacity: 1;
  background: #287f0a;
}

.product-single .product__actions .single_add_to_cart_button.add-to-cart-failed:after {
  content: '\2716';
  font-weight: 700;
  font-size: 30px;
  vertical-align: top;
  font-weight: 400;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  margin-left: -10px;
  width: 20px;
  height: 20px;
}

.product-single .product__actions .single_add_to_cart_button.add-to-cart-failed:before {
  content: '';
  opacity: 1;
  background: #f53131;
}

.product-single .product__actions.simple-product .product__actions__inner {
  margin-bottom: 0;
  border-radius: 50px 50px 0 0;
  padding: 18px 0 18px 0;
}

.product-single .product__actions.simple-product .product__actions__inner .product__price {
  text-align: center;
}

.product-single .product__actions.simple-product .product__actions__inner .product__price .woocommerce-Price-amount {
  font-size: 18px;
}

.product-single .product__actions.simple-product .single_add_to_cart_button {
  padding-top: 20px;
}

.product-single .product__actions.simple-product .product__actions__inner {
  min-height: auto;
}

.product-single .product__nav {
  background: #fff;
  border-radius: 50px;
  padding: 40px 40px 30px;
}

.product-single .testimonial {
  padding-top: 20px;
}

.product-single .list-badges {
  max-width: 378px;
  margin: auto;
  padding-top: 40px;
}

.product-single .product__head .review {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.product-single .product__head--secondary {
  text-align: left;
  background: #fff;
  /* padding: 40px 40px 20px; */
}

.product-single .product__head--secondary .review {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

@media (max-width: 1023px) {
  .product-single .product__content {
    padding-top: 20px;
  }

  .product-single .product__nav {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 884px) {
  .product-single .shell {
    padding-left: 0;
    padding-right: 0;
  }

  .product-single .product__head .review {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
  }

  .product-single .product__head .review ul.list-review {
    margin-top: 6px;
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .product-single .product__group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .product-single .product__group .product__aside {
    width: 100%;
    max-width: 100%;
  }

  .product-single .product__group .product__aside .product__nav {
    display: none;
  }

  .product-single .product__group .product__content {
    padding-left: 20px;
    padding-right: 20px;
  }

  /*
  .product-single .product__group .product__content .product__head {
    display: none;
  } */

  .product-single .product__group .product__content .list-features {
    padding-left: 30px;
  }

  /* .product-single .product__group .product__actions {
    margin-left: -19px;
    margin-right: -19px;
  } */

  .product-single .product__group .product__actions .product__actions__inner {
    border-radius: 0 0 0 0;
  }

  .product-single .product__group .product__actions .list-fields {
    border-radius: 0;
  }

  /*
  .product-single .product__group .product__actions--secondary {
    margin-left: -32px;
    margin-right: -32px;
  } */

  .product-single .product__group .product__actions--secondary .product__actions__inner {
    border-radius: 0 0 60px 60px;
    margin-top: 40px;
  }

  .product-single .product__group .product__actions--secondary .list-fields {
    border-radius: 0;
  }

  .product-single .product__group .product__actions--secondary .list-bundle {
    border-radius: 0;
  }

  .product-single .product__nav {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .product-single .product__nav--secondary {
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 12px;
    margin-top: 22px;
    border-radius: 0 !important;
  }
}

.product-single+section {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-width: 1023px) {
  .product-single+section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.product-small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  color: #fff;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 100%;
  border-radius: 0 0 30px 30px;
}

.product-small .product__image {
  max-width: 150px;
  min-width: 100px;
  margin-right: 30px;
}

.product-small .product__content {
  -ms-flex-item-align: center;
  align-self: center;
}

.product-small .product__content p {
  font-size: 16px;
  line-height: 1.8;
  white-space: normal;
}

.product-small .list-features li {
  margin-bottom: 8px;
}

.product-small h5 {
  margin-bottom: 8px;
}

.product-small .product__actions {
  min-width: 170px;
  -ms-flex-item-align: center;
  align-self: center;
  margin-left: 15px;
}

.product-small .product__actions a {
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 15px 30px;
  font-size: 14px;
  width: 100%;
  text-align: center;
}

.product-small .product__actions a:hover {
  text-decoration: none;
}

.badge--best-offer {
  display: inline-block;
  margin-top: 6px;
  margin-bottom: 2px;
  border-radius: 8px;
  background-color: #269100;
  color: #fff;
  padding: 5px 12px;
  font-size: 14px;
}

.percentage-discount {
  color: #f53131;
  font-weight: bold;
}

.percentage-discount--in-checkbox {
  margin-left: 4px;
  font-size: 14px;
}

.product-price {
  font-size: 16px;
}

.product-price del {
  color: #000;
}

.product-price .percentage-discount {
  margin-bottom: 6px;
}

/* ------------------------------------------------------------ *	Upsells
\* ------------------------------------------------------------ */
.upsells {
  list-style: none;
}

.upsells .upsell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fbf7fd));
  background: -webkit-linear-gradient(#fff, #fbf7fd);
  background: -o-linear-gradient(#fff, #fbf7fd);
  background: linear-gradient(#fff, #fbf7fd);
  padding: 25px;
  margin: 0 18px;
  border-radius: 24px;
  width: 100%;
  min-width: calc(33.33% - 36px);
}

.upsells .upsell .upsell__head {
  padding: 0 40px;
}

.upsells .upsell .upsell__body {
  padding-bottom: 20px;
  font-size: 15px;
  padding: 0 40px 20px;
}

.upsells .upsell .upsell__image {
  text-align: center;
  padding-bottom: 20px;
}

.upsells .upsell .upsell__image img {
  display: inline-block;
}

.upsells .upsell .upsell__actions {
  -ms-flex-line-pack: end;
  align-content: flex-end;
}

.upsells .upsell .btn {
  /* padding: 15px 0; */
}

@media (max-width: 509px) {
  .upsells .upsell {
    margin-left: 0;
    margin-right: 0;
  }

  .upsells .upsell .upsell__head {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.upsells .review {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.upsells .review p {
  top: -2px;
}

@media (max-width: 884px) {
  .upsells .review p {
    top: -5px;
  }
}

/* ------------------------------------------------------------ *	Gallery
\* ------------------------------------------------------------ */
.gallery .gallery__content {
  text-align: center;
  margin-top: 9%;
}

.gallery .gallery__content img {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity .2s, -webkit-transform .2s;
  transition: opacity .2s, -webkit-transform .2s;
  -o-transition: opacity .2s, transform .2s;
  transition: opacity .2s, transform .2s;
  transition: opacity .2s, transform .2s, -webkit-transform .2s;
}

.gallery .gallery__content img.fade-out {
  opacity: 0;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

/* ------------------------------------------------------------ *	Cart mini
\* ------------------------------------------------------------ */
.cart-mini {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  max-width: 350px;
  background: #1c1c1c;
  z-index: 5550;
  color: rgb(255, 255, 255);
  -webkit-transition: right .4s;
  -o-transition: right .4s;
  transition: right .4s;
}

.cart-mini .actions a {
  text-decoration: none;
}

.cart-mini .actions .fa {
  font-size: 18px;
}

.cart-mini .actions .quantity-plus {
  margin-right: 4px;
}

.cart-mini .actions .quantity-minus {
  margin-left: 4px;
}

.cart-mini .actions input[name="change_quantity"] {
  position: relative;
  outline: none;
  border: unset;
  border-radius: 4px;
  height: 22px;
  max-width: 18px;
  font-size: 14px;
  bottom: 2px;
  text-align: center;
  background: none;
  color: #fff;
}

.cart-mini:after {
  content: '';
  border-left: none;
  position: absolute;
  top: 0;
  left: -4px;
  height: 100%;
  display: block;
}

.cart-mini .cart-mini__inner {
  position: relative;
  right: -40px;
  -webkit-transition: right .4s .3s, opacity .3s .3s;
  -o-transition: right .4s .3s, opacity .3s .3s;
  transition: right .4s .3s, opacity .3s .3s;
  opacity: 0;
  height: calc(100vh - 111px);
  margin: 50px 0;
  overflow: auto;
}

.cart-mini .cart-mini-close {
  position: fixed;
  top: 0;
  right: 0;
  width: 350px;
  padding: 15px 0;
  text-align: center;
  background-color: #310947;
  opacity: 0;
  visibility: hidden;
}

.cart-mini .cart-mini-close:hover {
  text-decoration: none;
}

.cart-mini .cart-mini-close:hover strong {
  text-decoration: none;
  color: #f53131;
}

.cart-mini .cart-mini-close strong {
  font-size: 30px;
  position: absolute;
  top: 7px;
  left: 20px;
}

.cart-mini .cart_list {
  list-style: none;
}

.cart-mini .cart_list li {
  position: relative;
  padding: 25px 35px 25px 102px;
  font-size: 14px;
  font-family: "Gilroy", sans-serif, sans-serif;
  min-height: 100px;
}

.cart-mini .cart_list li+li {
  margin-top: 10px;
}

.cart-mini .cart_list li:nth-child(even) {
  background: #2c2c2c;
}

.cart-mini .cart_list li a.remove_from_cart_button {
  position: absolute;
  top: 50%;
  right: 15px;
  font-size: 22px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.cart-mini .cart_list li a.remove_from_cart_button:hover {
  text-decoration: none;
}

.cart-mini .cart_list li a img {
  max-width: 100px;
  position: absolute;
  top: 50%;
  left: 0;
  padding: 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.cart-mini .cart_list li .quantity {
  font-size: 12px;
  display: block;
  margin-bottom: 6px;
}

.cart-mini .cart_list li .quantity ins {
  font-size: 14px;
}

.cart-mini .woocommerce-mini-cart__total.total {
  text-align: center;
  padding: 10px 20px;
  font-family: "Gilroy", sans-serif, sans-serif;
  margin-bottom: 0;
}

.cart-mini .woocommerce-mini-cart__buttons {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.cart-mini .woocommerce-mini-cart__buttons a {
  border: 1px solid #1c1c1c;
  width: 48%;
  text-align: center;
  padding: 8px;
  border-radius: 50px;
  font-size: 14px;
}

.cart-mini .woocommerce-mini-cart__buttons a:hover {
  border-color: #fff;
  text-decoration: none;
}

.cart-mini .checkout__before-and-after-image {
  max-width: 200px;
  margin-top: 0px;
}

.cart-mini .checkout__badges {
  margin: 20px 0 10px 0;
  padding: 3px;
}

.cart-mini .checkout__badges .badge .badge__image img {
  max-width: 50px;
  width: 45px;
  filter: drop-shadow(2px 1px 0px black);
}

.cart-mini .checkout__badges .badge .badge__text {
  font-size: 10px;
}

.cart-mini .checkout__badges .badge:nth-child(2) .badge__image img {
  max-width: 50px;
  width: 50px;
}

.cart-mini .checkout__payment-image {
  margin-bottom: 40px;
}

.cart-mini .checkout__payment-image img {
  max-width: 280px;
}

.cart-mini .checkout.wc-forward {
  opacity: 0;
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 350px;
  padding: 20px 10px;
  background-color: #F0C44F;
  color: white;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}

.cart-mini .checkout.wc-forward .fa {
  margin-right: 6px;
}

.cart-mini .checkout.wc-forward:hover {
  text-decoration: none;
  background: #f5313C;
}

.cart-mini .cart-mini-close {
  position: fixed;
  top: 0;
  right: 0;
  width: 350px;
  padding: 15px 0;
  text-align: center;
  background-color: #1c1c1c;
  opacity: 0;
  visibility: hidden;
}

.cart-mini .cart-mini-close:hover {
  text-decoration: none;
}

.cart-mini .cart-mini-close:hover strong {
  text-decoration: none;
  color: #b22cfb;
}

.cart-mini .cart-mini-close strong {
  font-size: 30px;
  position: absolute;
  top: 7px;
  left: 20px;
  color: #f53131;
}

.cart-mini .checkout__addons {
  padding-bottom: 40px;
  padding-top: 20px;
}

.cart-mini .checkout__addons h5 {
  background: #ed1c24;
  padding: 10px 0;
  text-align: center;
  margin-bottom: 0;
}

.cart-mini .checkout__addons .addons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #e9dfed;
}

.cart-mini .checkout__addons .addons .addon {
  position: relative;
  padding: 30px 85px 10px 65px;
  font-size: 14px;
  font-family: "Gilroy", sans-serif, sans-serif;
  min-height: 150px;
  border-bottom: 2px solid #310947;
}

.cart-mini .checkout__addons .addons .addon .addon_body {
  padding-bottom: 0;
}

.cart-mini .checkout__addons .addons .addon .addon_body ins {
  font-size: 14px;
}

.cart-mini .checkout__addons .addons .addon .addon_body del {
  font-size: 12px;
}

.cart-mini .checkout__addons .addons .addon_image {
  position: absolute;
  top: 30px;
  left: 0;
}

.cart-mini .checkout__addons .addons .addon_image img {
  width: 100%;
  max-width: 75px;
}

.cart-mini .checkout__addons .addons .add-to-cart {
  padding: 6px 10px;
  display: inline-block;
  background: #299a0b;
  margin-top: 5px;
}

.cart-mini .checkout__addons .addons .add-to-cart:hover {
  background: #1e7307;
  text-decoration: none;
}

.cart-mini .stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 6px 0 8px 0;
  display: none !important;
}

.cart-mini .stars img {
  max-width: 12px;
  margin: 0 1px;
}

.added_to_cart.wc-forward {
  display: none;
}

.woocommerce-mini-cart__empty-message {
  padding: 40px;
}

.addons .addon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
}

.addons .addon .addon_body {
  padding: 0 2px 0 10px;
}

.addons .addon .addon_body p {
  font-size: 14px;
  margin-bottom: 4px;
  font-weight: 700;
  color: #000;
}

.addons .addon .addon_body ins {
  text-decoration: none;
  font-weight: 700;
  color: #000;
}

.addons .addon .addon_body del {
  color: #666666;
}

.addons .addon .addon_actions {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.addons .addon .percentage-discount {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  padding: 6px 16px;
  background-color: #ffd800;
  color: #000;
  font-size: 12px;
  text-transform: uppercase;
  border-bottom-right-radius: 10px;
}

.addons .addon .addon_benefits {
  padding-left: 24px;
  margin-bottom: 6px;
}

.addons .addon .addon_benefits p {
  display: block;
  position: relative;
  font-weight: 300;
  font-size: 12px;
}

.addons .addon .addon_benefits p:before {
  content: url(css/images/icons/ico-tick.svg);
  width: 45px;
  height: 45px;
  display: inline-block;
  position: absolute;
  top: -15px;
  left: -35px;
  pointer-events: none;
}

body.cart-open .cart-mini {
  right: 0;
}

body.cart-open .cart-mini .cart-mini__inner {
  right: 0;
  opacity: 1;
}

body.cart-open .cart-mini+.wrapper {
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

body.cart-open .cart-mini+.wrapper:after {
  opacity: 1;
  visibility: visible;
}

body.cart-open .cart-mini .cart-mini-close {
  opacity: 1;
  visibility: visible;
  color: #fff;
}

body.cart-open .cart-mini .checkout.wc-forward {
  opacity: 1;
  display: inline-block;
}

body.cart-open .cart-mini+.wrapper:after {
  z-index: 5010;
}

/* ------------------------------------------------------------ *	Testimonials
\* ------------------------------------------------------------ */
.testimonial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  color: #666;
  padding: 0 20px;
}

.testimonial .list-review {
  margin-bottom: 10px;
}

.testimonial .testimonial__image {
  min-height: 120px;
  max-height: 120px;
  min-width: 120px;
  margin-right: 25px;
  overflow: hidden;
}

.testimonial .testimonial__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: center;
}

.testimonial .testimonial__actions a {
  text-decoration: underline;
}

.testimonial .testimonial__actions a:hover {
  color: #299a0b;
}

.testimonial .testimonial__content+p {
  font-size: 18px;
  margin-bottom: 4px;
}

.testimonial .testimonial__content+p strong {
  font-size: 12px;
  margin-left: 8px;
  color: #4e7d42;
}

@media (max-width: 509px) {
  .testimonial {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .testimonial .testimonial__image {
    max-width: 120px;
    height: 120px;
    margin: 0 auto 20px;
  }

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

  .testimonial .list-review {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/* ------------------------------------------------------------ *	Benefits
\* ------------------------------------------------------------ */
.benefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  list-style: none;
}

.benefits>li>h3 {
  text-transform: uppercase;
  margin-bottom: 30px;
}

.benefits>li {
  width: calc(50% - 10px);
}

.benefits>li:first-child {
  color: #6f319c;
}

.benefits>li:last-child {
  color: #4e7d42;
}

@media (max-width: 509px) {
  .benefits {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .benefits>li {
    width: 100%;
  }

  .benefits>li+li {
    margin-top: 40px;
  }

  .benefits>li>h3 {
    font-size: 40px;
  }
}

/* ------------------------------------------------------------ *	Tabs
\* ------------------------------------------------------------ */
.tabs-ingredients {
  max-width: 952px;
  margin: auto;
  margin-top: 30px;
  padding-bottom: 30px;
  border-radius: 30px;
  padding: 75px 77px 40px;
  border: 1px solid #d7d7d7;
  position: relative;
  background: #f6f6f6;
}

.tabs-ingredients .tab {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  -webkit-transition: opacity .5s, visibility .5s;
  -o-transition: opacity .5s, visibility .5s;
  transition: opacity .5s, visibility .5s;
}

.tabs-ingredients .tab.active {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.tabs-ingredients .tabs__nav {
  position: absolute;
  top: 0;
  left: 50%;
  max-width: 580px;
  width: 100%;
  background: #fff;
  -webkit-transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  border: 1px solid #d7d7d7;
  border-radius: 30px 30px 0 0;
  border-bottom: none;
  overflow: hidden;
}

.tabs-ingredients .tabs__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tabs-ingredients .tabs__nav ul li {
  width: 50%;
  text-align: center;
  font-size: 26px;
  color: #4e7d42;
  font-weight: 700;
  font-family: "Gilroy", sans-serif, sans-serif;
}

.tabs-ingredients .tabs__nav ul li.active a {
  background: #f6f6f6;
  color: #ed1c24;
}

.tabs-ingredients .tabs__nav ul a {
  line-height: 58px;
  display: block;
  width: 100%;
  color: #783ea1;
}

.tabs-ingredients .tabs__nav ul a:hover {
  text-decoration: none;
  background: #f6f6f6;
  color: #783ea1;
}

.tabs-ingredients .tabs__nav ul li.active:last-child a {
  background: #f6f6f6;
  color: #4e7d42;
}

.tabs-ingredients .tabs__nav ul li:last-child a {
  color: #4e7d42;
}

.tabs-ingredients .tabs__nav ul li:last-child a:hover {
  text-decoration: none;
  background: #f6f6f6;
  color: #4e7d42;
}

.tabs-ingredients .tabs__body h4 {
  color: #6f319c;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.tabs-ingredients .tabs__body p {
  font-size: 15px;
  line-height: 20px;
}

.tabs-ingredients .tabs__body .list-features {
  margin-left: 30px;
  font-size: 17px;
  color: #380e50;
  text-transform: uppercase;
  font-family: "Gilroy", sans-serif, sans-serif;
  font-weight: 700;
}

.tabs-ingredients .tabs__body .list-features li {
  margin-bottom: 15px;
}

.tabs-ingredients .list-ingredients {
  padding-bottom: 40px;
}

.tabs-ingredients .list-ingredients .slick-list {
  margin-bottom: 30px;
}

.tabs-ingredients .list-ingredients .slick-dots {
  bottom: 10px;
}

.tabs-ingredients .list-ingredients li {
  width: 16.67%;
  margin: 0 2px;
  background: none;
}

.tabs-ingredients .list-ingredients li img {
  width: auto;
  max-height: 100px;
  min-height: 100px;
}

.tabs-ingredients .list-ingredients li p {
  font-size: 14px;
  padding-top: 10px;
}

@media (max-width: 1023px) {
  .tabs-ingredients .tabs__body .list-features {
    padding-left: 0;
  }
}

@media (max-width: 884px) {
  .tabs-ingredients .list-ingredients {
    margin-top: 0;
    padding-bottom: 30px;
  }

  .tabs-ingredients .list-ingredients .slick-dots {
    bottom: 0;
  }
}

@media (max-width: 509px) {
  .tabs-ingredients {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 100px;
  }

  .tabs-ingredients .tabs__nav ul a {
    font-size: 16px;
  }

  .tabs-ingredients .tabs__nav {
    top: 29px;
  }
}

/* ------------------------------------------------------------ *	Steps
\* ------------------------------------------------------------ */
.steps {
  list-style: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 -15px;
}

.steps .step {
  text-align: center;
  width: 50%;
  margin: 0 15px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f8eeff), to(transparent));
  background: -webkit-linear-gradient(#f8eeff, transparent);
  background: -o-linear-gradient(#f8eeff, transparent);
  background: linear-gradient(#f8eeff, transparent);
  border-radius: 20px;
}

.steps .step:last-child {
  background: -webkit-gradient(linear, left top, left bottom, from(#f4fff4), to(transparent));
  background: -webkit-linear-gradient(#f4fff4, transparent);
  background: -o-linear-gradient(#f4fff4, transparent);
  background: linear-gradient(#f4fff4, transparent);
}

.steps .step:last-child .step__content h3 {
  color: #4e7d42;
}

.steps .step:last-child .step__content b {
  background: #4e7d42;
}

.steps .step img {
  display: inline-block;
}

.steps .step .step__content {
  padding: 30px 20px 36px;
  max-width: 340px;
  margin: auto;
}

.steps .step .step__content h3 {
  color: #6f319c;
  margin-bottom: 6px;
}

.steps .step .step__content p {
  font-size: 16px;
  color: #000;
}

.steps .step .step__content p b {
  background: #6f319c;
  line-height: 40px;
  display: inline-block;
  color: #fff;
  padding: 0 30px;
}

.steps .step .step__content p small {
  color: #000;
  font-family: "Gilroy", sans-serif, sans-serif;
  font-weight: 700;
  font-size: 17px;
}

.steps .step .step__content p+h3 {
  margin-top: -7px;
}

.steps button {
  background: #510d78;
  border: 0;
  position: absolute;
  top: 50%;
  z-index: 50;
  width: 60px;
  height: 75px;
  font-size: 0;
  line-height: 0;
  text-indent: -4004px;
}

.steps button.slick-disabled {
  cursor: none;
  pointer-events: none;
  display: none !important;
}

.steps button.slick-prev {
  left: 0;
  border-radius: 0 10px 10px 0;
}

.steps button.slick-next {
  right: 0;
  border-radius: 10px 0 0 10px;
}

.steps button.slick-prev:before {
  content: '';
  background: url(css/images/icons/slider-arrow-left.png) 0 0 no-repeat;
  width: 16px;
  height: 32px;
  display: block;
  position: absolute;
  top: 50%;
  left: 45%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.steps button.slick-next:after {
  content: '';
  background: url(css/images/icons/slider-arrow-right.png) 0 0 no-repeat;
  width: 16px;
  height: 32px;
  display: block;
  position: absolute;
  top: 50%;
  left: 55%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (max-width: 884px) {
  .steps {
    display: block;
  }
}

/* ------------------------------------------------------------ *	Faq
\* ------------------------------------------------------------ */
.faq-items {
  min-height: 500px;
}

.faq-items .faq-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.faq-items .faq-item .faq-item__head {
  width: 100%;
  max-width: 385px;
  padding-left: 35px;
  text-align: left;
}

.faq-items .faq-item .faq-item__head h5 {
  text-transform: uppercase;
  color: #ed1c24;
  max-width: 250px;
}

.faq-items .faq-item .faq-item__body {
  width: 100%;
  text-align: left;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.faq-items .faq-item+.faq-item {
  margin-top: 60px;
}

.faq-items .list-accordion a {
  -webkit-transition: background .4s;
  -o-transition: background .4s;
  transition: background .4s;
}

.faq-items .list-accordion a+.list__content {
  -webkit-transition: background 0.8s;
  -o-transition: background 0.8s;
  transition: background 0.8s;
}

.faq-items .list-accordion a:hover {
  background: #eeeeee;
}

.faq-items .list-accordion a.active {
  background: #eee;
}

.faq-items .list-accordion a.active+.list__content {
  background: #eee;
}

.faq-items .list-accordion .list__content {
  position: relative;
}

@media (max-width: 884px) {
  .faq-items .faq-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .faq-items .faq-item .faq-item__head {
    width: 100%;
    max-width: 100%;
    padding-left: 23px;
    padding-bottom: 20px;
  }
}

/* ------------------------------------------------------------ *	Callout
\* ------------------------------------------------------------ */
.callout {
  position: fixed;
  bottom: 0;
  opacity: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 500;
  -webkit-box-shadow: 0 0 13px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  -webkit-transition: bottom .4s, opacity .4s;
  -o-transition: bottom .4s, opacity .4s;
  transition: bottom .4s, opacity .4s;
  z-index: 5000;
}

.callout.js-shown {
  bottom: 0;
  opacity: 1;
}

.callout h6 {
  margin: 0;
  padding-top: 2px;
  margin-bottom: -4px;
}

.callout .shell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.callout .callout__image {
  max-width: 40px;
  margin-right: 20px;
}

.callout .callout__content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.callout .callout__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
  align-self: center;
}

.callout .callout__actions p {
  margin-bottom: 0;
  line-height: 44px;
  color: #287f0a;
}

.callout .callout__actions p+p {
  margin-left: 20px;
}

.callout .callout__actions a.btn-small {
  color: #fff;
  padding-left: 17px;
  padding-right: 17px;
  text-align: center;
}

.callout .callout__actions a.btn-small:hover {
  background: #fff;
  border: 1px solid #6f319c;
  color: #6f319c;
}

@media (max-width: 884px) {
  .callout .callout__actions p:first-child {
    display: none;
  }
}

.callout .callout__actions ins {
  margin-left: 6px;
  color: #467e3b;
}

.callout .callout__actions del {
  color: #000;
}

.callout .review {
  margin: 0;
}

@media (max-width: 1023px) {
  .callout .review {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.callout #callout_btn {
  display: block;
  position: relative;
}

.callout #callout_btn:before {
  content: '';
  width: 100%;
  height: 100%;
  background: inherit;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 30px;
  opacity: 0;
  -webkit-transition: opacity .4s;
  -o-transition: opacity .4s;
  transition: opacity .4s;
}

.callout #callout_btn:after {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  -o-transition: transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}

.callout #callout_btn.adding-to-cart {
  pointer-events: none;
}

.callout #callout_btn.adding-to-cart:after {
  content: url(css/images/icons/loader.svg);
  vertical-align: top;
  font-weight: 400;
  position: absolute;
  top: 10%;
  left: 50%;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  margin-left: -25px;
  width: 50px;
  height: 50px;
  margin-top: -8px;
}

.callout #callout_btn.adding-to-cart:before {
  content: '';
  opacity: 1;
}

.paging {
  padding: 25px 0 25px 0;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.paging a:hover,
.paging a:focus {
  color: #540e7b;
  text-decoration: none;
}

.paging .paging-prev {
  margin-right: 25px;
}

.paging .paging-next {
  margin-left: 25px;
}

.paging ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.paging ul li:not(:last-child) {
  margin-right: 14px;
}

.paging ul li.current {
  color: #540e7b;
  font-weight: 800;
}

.list-features-secondary li {
  position: relative;
  padding: 15px;
}

@media (max-width: 509px) {
  .list-features-secondary li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 12px;
    text-align: left;
  }
}

.list-features-secondary li i.open-popover {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 14px;
}

.list-features-secondary li i.open-popover:hover {
  cursor: pointer;
}

.list-features-secondary li span.popover {
  display: none;
  width: 270px;
  position: absolute;
  top: -5px;
  left: -105px;
  background-color: #fff;
  color: #000;
  border: 1px solid rgba(82, 31, 112, 0.2);
  padding: 14px 14px 10px 14px;
  border-radius: 8px;
  z-index: 999;
  font-size: 12px;
  text-transform: none;
}

.list-features-secondary li span.popover span.close {
  display: block;
  width: 100%;
  text-align: right;
  margin-bottom: 10px;
}

.list-features-secondary li span.popover span.close:hover {
  cursor: pointer;
}

@media (max-width: 509px) {
  .list-features-secondary li span.popover {
    position: unset;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    background: unset;
    color: #380e50;
    font-weight: bold;
    padding: 0;
    text-align: center;
    margin-top: 8px;
    border: unset;
  }

  .list-features-secondary li span.popover span.close {
    display: none;
  }
}

@media (min-width: 509px) and (max-width: 884px) {
  .list-features-secondary li span.popover {
    width: 225px;
    top: -5px;
    left: -60px;
  }
}

.list-features-secondary li span.popover.show {
  display: block;
}

/* New style */
.slider-packages .slide:nth-child(1n) .list-details li {
  margin-top: 6px;
}

.package .package__head h4 {
  min-height: 60px;
}

.product-single .checkbox {
  padding-left: 127px;
}

.product-single .checkbox label img {
  width: 50px;
  position: absolute;
  top: 0;
  left: 67px;
}

.product-single .product-price {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.product-single .product-price .percentage-discount {
  padding-right: 20px;
}

.product-single .product__actions ins {
  margin-left: 0;
}

.product-single .product__actions del+ins {
  margin-left: 6px;
}

.nav li.current-menu-item:not(.btn-shop) a,
.nav li.current_page_item:not(.btn-shop) a {
  background: transparent;
}

.list-features-secondary li span.popover span.close {
  position: absolute;
  top: 4px;
  right: 4px;
}

.section-thankyou *,
.section-checkout *,
.section-cart .cart_totals .wc-proceed-to-checkout a,
.section-cart .woocommerce-cart-form tbody .actions button,
.section-cart .cart_totals #shipping_method li,
.section-cart p,
.section-cart .cart_totals table th,
.section-cart .cart_totals h2,
.section-cart {
  font-family: "Gilroy", sans-serif, sans-serif;
}

.section-checkout textarea {
  height: 160px;
}

.section-checkout .woocommerce-shipping-fields h3.js-shown:after {
  content: url(css/images/icons/ico-tick.svg);
  width: 80px;
  height: 80px;
  display: inline-block;
  position: absolute;
  top: -17px;
  left: -18px;
  pointer-events: none;
}

.woocommerce-checkout-payment label.checkbox {
  padding-left: 0;
  padding-top: 20px;
  display: block;
}

.woocommerce-checkout-payment label.checkbox input {
  position: static;
  opacity: 1;
  visibility: visible;
}

.woocommerce-error {
  padding: 20px !important;
  border: 1px solid #ccc;
  color: red;
  list-style: none;
  font-size: 14px;
}

.woocommerce-error li+li {
  padding-top: 10px;
}

.woocommerce-invalid label {
  color: red;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper p {
  margin-bottom: 15px;
}

.form-variation .single_add_to_cart_button.adding-to-cart:after {
  top: 25%;
}

.package .form-variation .single_add_to_cart_button.added-to-cart:after {
  top: 38%;
}

.package .package__head h4 {
  font-size: 20px;
}

.package .package__image img {
  display: inline-block !important;
  max-width: 232px;
}

.section--about a {
  text-decoration: underline;
  font-weight: 700;
}

.section-about-primary {
  max-width: 960px;
  margin: auto;
  padding-bottom: 50px;
}

.section-about-primary h1 {
  text-transform: uppercase;
  color: #ed1c24;
}

@media (max-width: 884px) {

  .product-single .product__head--secondary .review .list-review,
  .section-group .review .list-review {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .section-reviews .section__head-inner p,
  .product-single .product__head--secondary .review p,
  .section-group .review p {
    margin-left: 0;
  }

  .section-reviews .section__head-inner span,
  .product-single .product__head--secondary .review span,
  .section-group .review span {
    margin: 0 5px;
  }

  .section--product .list-badges {
    margin-bottom: 10px;
  }

  .slider-packages .package {
    margin-left: 10px;
    margin-right: 10px;
  }

  .section.section--about {
    padding-bottom: 0px !important;
  }

  .package .package__head h4 {
    min-height: auto;
    margin-bottom: 15px;
  }

  .slider-packages .slide:nth-child(1n) .list-details {
    min-height: 1px;
  }

  .section-goals .section__head {
    margin-bottom: 20px;
  }

  .section-group-secondary .section__head h2 {
    margin-bottom: 10px;
  }

  .section-process .section__head,
  .section-group-secondary .section-reviews .section__head,
  .section-group-secondary .section-faq .section__head {
    padding-bottom: 20px;
  }

  .slider-packages .slide:nth-child(1n) .list-details {
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }

  .list-ingredients {
    margin-top: 20px;
  }

  .intro .intro__head p .btn-small {
    max-width: 300px;
  }

  .section.section--about {
    padding-top: 35px;
  }

  .section-tips .section__content {
    margin-left: 0;
  }
}

@media (max-width: 509px) {
  .testimonial .testimonial__actions {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .section-checkout .woocommerce-checkout-payment .wc_payment_method img {
    max-width: 90px;
  }
}

.product .woocommerce-notices-wrapper {
  padding-top: 50px;
  margin-bottom: 20px;
  display: none;
}

.woocommerce-notices-wrapper .woocommerce-message {
  background: #f5f5f5;
  border-top: 1px solid #e2e2e2;
  border-radius: 50px;
  padding: 20px 50px;
}

.form-variation .variations tr:last-child {
  background: none;
  margin-bottom: 10px;
  padding-top: 0;
  padding-bottom: 5px;
}

.product-single .product__actions .price {
  text-align: left;
  padding-left: 80px;
  padding-top: 20px;
  font-size: 22px;
  font-weight: 200;
  color: #00A651;
}

.product-single .product__actions .price del {
  font-weight: 200;
  color: #383838;
  /*Kris CSS*/
}


.product-single .product__actions .single_variation_wrap {
  margin-top: 10px;
  background: #ffffff;
  border-radius: 50px 50px 50px 50px;
}

.product-single .product__actions .single_variation_wrap .woocommerce-variation {
  padding: 20px 50px 20px 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-single .product__actions .woocommerce-variation-price ins {
  text-decoration: none;
  color: #269100;
  margin-left: 6px;
  font-weight: bold;
}

.product-single .product__actions .woocommerce-variation-price .price {
  padding-left: 0;
}

.product-single .product__actions .quantity {
  padding-left: 180px;
  padding-bottom: 20px;
}

.product-single .product__actions .woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-enabled .quantity {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  padding-right: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-single .product__actions .quantity label {
  font-size: 12px;
  padding-right: 10px;
}

.product-single .product__actions .quantity input {
  width: auto;
  border: 1px solid #dadada;
  padding: 12px 30px;
  border-radius: 20px;
  font-size: 15px;
  color: #380e50;
}

.product-single.product-type-simple .product__actions .price {
  padding-left: 0px;
  /*Kris css*/
  padding-right: 40px;
  padding-top: 0px;
  /*Kris css*/
  font-size: 21px !important;
  /*Kris css*/
}

.product-single.product-type-simple .product__actions .quantity {
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 1024px) {
  .product-single .product__actions .quantity input {
    width: 100%;
  }

  .product-single .product__actions .woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-enabled .quantity {
    padding-right: 30px;
  }

  .product-single .product__actions .single_variation_wrap .woocommerce-variation {
    padding-left: 30px;
  }

  .product-single .product__actions .quantity {
    padding-left: 30px;
  }

  .product-single .product__actions .quantity label {
    min-width: 150px;
  }
}

@media (max-width: 768px) {
  .product-single .product__actions .quantity label {
    min-width: 120px;
  }
}

.woocommerce-variation-add-to-cart,
.form-variation form.cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.woocommerce-variation-add-to-cart .quantity,
.form-variation form.cart .quantity {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.woocommerce-variation-add-to-cart #wc_braintree_paypal_container,
.form-variation form.cart #wc_braintree_paypal_container {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  margin-bottom: 0 !important;
}

.woocommerce-variation-add-to-cart button,
.form-variation form.cart button {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.woocommerce-variation-add-to-cart .paypal-button,
.form-variation form.cart .paypal-button {
  border-radius: 0 !important;
}

.form-variation .single_variation_wrap .quantity {
  display: none !important;
}

.woocommerce-variation-add-to-cart.woocommerce-variation-add-to-cart-disabled #wc_braintree_paypal_container {
  display: none !important;
}

.checkout__before-and-after-image {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  margin-bottom: 15px;
  background-color: #ededed;
  border-radius: 6px;
  overflow: hidden;
}

.checkout__before-and-after-image .before-and-after-image__head img {
  display: block;
  width: 100%;
  height: auto;
}

/*
.checkout__before-and-after-image .before-and-after-image__content {
  padding: 20px;
  font-size: 14px;
  text-align: center;
  color: #1c1c1c;
}

.checkout__before-and-after-image .before-and-after-image__content span {
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
*/

.checkout__badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.checkout__badges .badge {
  width: 33.33%;
  padding: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.checkout__badges .badge .badge__image {
  margin-bottom: 12px;
}

.checkout__badges .badge .badge__image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 40px;
  margin: 0 auto;
}

.checkout__badges .badge .badge__text {
  font-size: 12px;
  text-align: center;
}

.checkout__payment-image {
  width: 100%;
  display: none;
}

.checkout__payment-image img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
}

/* .line {
  display: block;
  width: 60px;
  margin: 0 auto;
  border-bottom: 2px solid #559542;
  margin-bottom: 20px; } */
/* @media (max-width: 884px) {
    .line {
      display: none;
      margin: unset;
      margin-bottom: 10px; } } */

.footer .line {
  border-width: 1px;
  margin: unset;
  margin-bottom: 10px;
  width: 40px;
}

.iframe-container {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}

.iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

body.cart-countdown-hidden .checkout__timer {
  display: none;
}

.checkout__timer {
  margin: 0 auto;
  margin-bottom: 30px;
  margin-top: 30px;
}

.checkout__timer .timer__header {
  font-size: 14px;
  font-weight: bold;
  color: #444;
  margin-bottom: 8px;
}

.checkout__timer #countdown {
  font-size: 14px;
  font-weight: bold;
  background: #fbf7fd;
  color: #f53131;
  border-radius: 5px;
  border: 1px solid #e5e5e5;
  padding: 14px 10px;
}

.checkout__timer #clockdiv>div {
  padding: 10px;
  border-radius: 3px;
  background: #00BF96;
  display: inline-block;
}

.checkout__timer #clockdiv div>span {
  padding: 15px;
  border-radius: 3px;
  background: #00816A;
  display: inline-block;
}

.checkout__timer .smalltext {
  padding-top: 5px;
  font-size: 16px;
}

.cart-mini .checkout__timer {
  margin: 20px 15px 0 15px;
}

.cart-mini .checkout__timer #countdown {
  padding: 6px 10px;
  text-align: center;
  border-radius: 4px;
  background: #ffd800;
  border: none;
}

.cart-mini .checkout__timer #countdown .time span {
  color: #f53131 !important;
}

.cart-mini .checkout__timer #countdown span {
  font-size: 11px;
  color: #000;
}

.products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.products .product {
  width: 100%;
  max-width: 25%;
  padding: 0 15px 0 15px;
  margin: 40px 0;
}

@media (max-width: 1200px) {
  .products .product {
    max-width: 50%;
  }
}

@media (max-width: 509px) {
  .products .product {
    /* max-width: 100%; */
  }

  .products .product .product__title {
    font-size: 15px !important;
    margin-bottom: 0;
    text-align: left !important;
  }

  /* .products .product .product__wrapper {
    padding: 0!important;
  } */
  .products .product .product__actions {
    position: absolute;
    /* left: 11px!important;
    bottom: 9px!important; */
    width: calc(100% - 20px) !important;
  }

  .products .product .product__price {
    padding: 0 0 39px 0 !important;
  }

  .products .product .product__actions a {
    padding: 10px 20px !important;
  }

  .products .product {
    padding: 0 !important;
  }
}

.products .product .product__wrapper {
  height: 100%;
  border-radius: 10px;
  padding: 10px 5px;
  position: relative;
}

.products .product .product__wrapper .product__image {
  margin-bottom: 20px;
}

.products .product .product__title {
  font-size: 19px;
  margin-bottom: 10px;
  text-align: center;
  font-family: 'OpenSans';
  font-weight: 500;
}

.products .product .product__image img {
  width: 100%;
}

.products .product .product__image img {
  -webkit-transition: opacity 200ms;
  -o-transition: opacity 200ms;
  transition: opacity 200ms;
}

.products .product .product__image:hover img {
  opacity: 0.8;
}

.products .product .product__meta {
  padding: 0 0 20px 10px;
  /*border-left: 2px solid #ed1c24;*/
  display: flex;
  flex-direction: column;
  align-items: flex-start;

}

.what-you-get .product__meta {
  padding: 0 0 20px 10px;
  border-left: 2px solid #ed1c24;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.products .product .product__reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
}

.products .product .product__reviews ul {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 6px;
}

.products .product .product__reviews ul li img {
  max-width: 12px;
}

.products .product .product__reviews>p {
  position: relative;
  font-size: 12px;
  top: 6px;
}

.products .product .product__benefits {
  /* display: none !important; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.products .product .product__benefits>a {
  text-align: center;
  color: #727272;
  font-weight: 700;
  font-size: 16px;
}

.products .product .product__benefits>a img {
  position: relative;
  bottom: 1px;
  max-width: 8px;
  margin-left: 8px;
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.products .product .product__benefits>a img.close {
  -webkit-animation-name: rotate-arrow-down;
  animation-name: rotate-arrow-down;
  -webkit-animation-duration: 400ms;
  animation-duration: 400ms;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
}

.products .product .product__benefits>a img.open {
  -webkit-animation-name: rotate-arrow-up;
  animation-name: rotate-arrow-up;
  -webkit-animation-duration: 400ms;
  animation-duration: 400ms;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
}

.products .product .product__benefits ul {
  list-style: none;
  max-width: 180px;
  margin: 0 auto;
  padding: 10px 0 0 0;
  text-align: left;
  /*display: none;*/
}

.products .product .product__benefits ul li {
  position: relative;
  margin-bottom: 6px;
  font-size: 14px;
}

/* .products .product .product__benefits ul li span:before {
  content: url(css/images/icons/ico-tick.svg);
  width: 45px;
  height: 45px;
  display: inline-block;
  position: absolute;
  top: -15px;
  left: -40px;
  pointer-events: none;
} */

.products .product .product__price {
  text-align: center;
  font-size: 25px;
  color: #15a557;
  /* margin-top: 15px; */
  font-weight: bold;
  display: flex;
  height: 100%;
  align-items: self-end;
  padding: 0 0 10px 0;
}

.products .product .product__price del {
  color: #a9a7a7;
  margin-bottom: 6px;
  margin-right: 4px;
  font-size: 16px;
  font-weight: normal !important;
}

.products .product .product__price ins {
  color: #15a557;
}

.products .product .product__price .percentage-discount {
  font-size: 14px;
  text-align: center;
  color: #f5313f;
  border-radius: 6px;
  margin-bottom: 4px;
  padding: 10px;
}

.products .product .product__actions a {
  font-size: 19px;
  padding: 20px;
  width: 100%;
  display: block;
  text-align: center;
  border-radius: 0px;
  text-transform: uppercase;
  font-weight: 500;
  -webkit-transition: background .3s;
  -o-transition: background .3s;
  transition: background .3s;
  font-weight: 700;
  /* background: #ed1c24 !important; */
  background: #F0C44F;
  color: #2c2c2c;
  border-radius: 7px;
}

.products .product .product__actions a:hover {
  text-decoration: none;
  background: #e3ba4d !important;
  color: #2c2c2c;
}

@-webkit-keyframes rotate-arrow-up {
  from {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }

  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

@keyframes rotate-arrow-up {
  from {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }

  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

@-webkit-keyframes rotate-arrow-down {
  from {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  to {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}

@keyframes rotate-arrow-down {
  from {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  to {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}

#cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffd800;
  z-index: 5000;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
}

#cookie-notice .cookie-notice__inner {
  color: #333;
  position: relative;
  padding: 15px;
}

@media (max-width: 509px) {
  #cookie-notice .cookie-notice__inner {
    padding-right: 30px;
  }
}

#cookie-notice .cookie-notice__inner p {
  font-size: 14px;
  margin: 0;
  text-align: center;
  font-weight: bold;
}

#cookie-notice .cookie-notice__inner p .fa-cookie-bite {
  margin-right: 6px;
  font-size: 18px;
  position: relative;
  top: 3px;
}

#cookie-notice .cookie-notice__inner .close {
  font-size: 20px;
  -webkit-transition: opacity .25s;
  -o-transition: opacity .25s;
  transition: opacity .25s;
  margin-left: 15px;
  position: relative;
  top: 3px;
}

@media (max-width: 509px) {
  #cookie-notice .cookie-notice__inner .close {
    position: absolute;
    top: 5px;
    right: 5px;
  }
}

#cookie-notice .cookie-notice__inner .close:hover,
#cookie-notice .cookie-notice__inner .close:focus {
  opacity: 0.8;
}

.open {
  -webkit-animation-name: open-cookie-bar;
  animation-name: open-cookie-bar;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
}

.closed {
  -webkit-animation-name: close-cookie-bar;
  animation-name: close-cookie-bar;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes open-cookie-bar {
  from {
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes open-cookie-bar {
  from {
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes close-cookie-bar {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
    display: block;
  }
}

@keyframes close-cookie-bar {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
    display: block;
  }
}


/* New Variations CSS */

.product-single .product__actions .quantity input {
  display: none;
}

.product-single .product__actions .product__actions__inner {
  border: none;
}

.woocommerce-variation-add-to-cart .variations_button .woocommerce-variation-add-to-cart-enabled .quantity {
  display: none;
}

.main_title_wrap {
  position: relative;
  height: 100px;
  padding-left: 15px;
  margin-bottom: 10px;
  box-shadow: 0px 3px 11px -2px rgba(0, 0, 0, 0.55);
  -webkit-box-shadow: 0px 3px 11px -2px rgba(0, 0, 0, 0.55);
  -moz-box-shadow: 0px 3px 11px -2px rgba(0, 0, 0, 0.55);
  transition: all 0.3s ease-in;
  border-radius: 20px;
}

.main_title_wrap .var_txt {
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
}

.main_title_wrap .price {
  padding-left: 25px !important;

}

@media only screen and (max-width: 600px) {
  .main_title_wrap .price {
    padding-left: 22px !important;
  }
}

.main_title_wrap .var_txt>span[class^="price old_price"] {
  color: #ccc;
  text-decoration: line-through;
  font-size: 18px;
}

.main_title_wrap input {
  position: absolute;
  top: 27px;
}

.variable_img {
  max-width: 70%;
  width: 16%;
  float: right;
  margin-top: 10px;
  margin-right: 10px;
}

.variation_title {
  margin-left: 24px !important;
  font-size: 16px;
  font-weight: 700;
}

.product-single .product__actions .price {
  font-weight: 700;
}

.product-single .product__actions .single_variation_wrap .woocommerce-variation {
  height: 40px;
  padding: 12px 50px 20px 160px;
}

.form-variation:first-child>.price {
  display: none;
}

.main_title_wrap .var_txt>span[class^="free_delivery"] {
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
  margin: 0 auto;
  left: 0;
  top: -25px;
  position: absolute;
  border-radius: 60px 15px 75px 3px;
  padding: 0 18px;
  background: green;
}


.plans-description {
  margin-bottom: 30px;
}

.variations_form .cart>.single_add_to_cart_button button .alt {
  border-radius: none !important;
}

.variatonclicked {
  background-color: red;
}

.swatches-select .variation_sub .check_container .has_variations .active>.main_title_wrap {
  background: #00816A;
}

/*   .checkmark input[type="radio"] {
      display: none;
    }

    .checkmark{
      top: 31px;
      left: 5px;
      width: 19px;
      height: 19px;
      border-radius: 100%;
      position: absolute;
      border: 1px solid #6F319C;
}


    .checkmark::before {
       content: "";
        width: 1rem;
        height: 1rem;
        border-radius: 50%;
        border-color: red;
        z-index: 100;
    } */


.home-gallery-heading {
  margin: 20px;
  text-align: center;
  color: #380e50;
  text-transform: uppercase;
  font-size: 34px;
}

.home-customers-gallery {
  margin-top: 20px;
}

.home-gallery {
  margin-top: 50px;
}

.section .section--feed>.section__head {
  display: none;
}

/* Slick arrows */
.slick-arrow {
  width: 13px;
  height: 13px;
  border-color: #000;
  position: absolute;
  top: 55%;
  margin-top: -31px;
}

.slick-prev {
  background-color: #fff;
  left: -4px;
  background-color: #fff;
  border-width: 1px 0 0px 1px;
  border-style: solid;
  border-color: #1c1c1c;
  transform: rotate(-45deg);
  color: transparent;
}

.slick-next {
  right: -25px;
  background-color: transparent;
  border-width: 0px 1px 1px 0px;
  border-style: solid;
  border-color: #1c1c1c;
  transform: rotate(-45deg);
  color: transparent;

}




/* Mobile Version */

@media only screen and (max-width: 600px) {

  .main_title_wrap {
    max-width: 100%;
    /* margin: 20px auto; */
  }

  .variable_img {
    max-width: 70%;
    width: 25%;
    float: right;
    margin-top: 4px;
    margin-right: 4px;
  }

  /* Reorder buy box on mobile only yo */

  .form-variation {
    display: flex;
    flex-flow: column wrap;
  }

  .fancy_button {
    order: 1;
    margin-top: 30px;
  }

  .opinons-wrapper-thermos {
    margin: 0 auto;
    width: 90% !important;
    margin-bottom: 15%;
    margin-bottom: 35% !important;
  }

  .second-buy-box-wrapper {
    padding: 15px;
  }

  .bullets-list-second-bb {
    margin: 30px 0;
    font-size: 14px;
    word-break: break-word;
  }


  .cart-mini .checkout__badges {
    margin: 20px 0 10px 0;
    padding: 3px;
  }

  .cart-mini .checkout__badges .badge .badge__image img {
    max-width: 50px;
    width: 45px;
    filter: drop-shadow(2px 1px 0px black);
  }

  .cart-mini .checkout__badges .badge .badge__text p {
    font-size: 10px;
  }

  .cart-mini .checkout__badges .badge:nth-child(2) .badge__image img {
    max-width: 50px;
    width: 50px;
  }

  .checkout__badges .badge {
    width: 33.33%;
    padding: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .list-features-secondary li {
    padding: 0;
  }

  /* .panam_quality_badges_mobile {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    margin: 0 auto;
  }
  .panam_quality_badges_mobile img{
    width: 20%;
    height: auto;
  } */

  /* Reorder buy box on mobile only yo end */

  .woocommerce-variation-price>span[class^="price"] {
    display: flex;
  }

  .main_title_wrap .var_txt>span[class^="price old_price"] {
    font-size: 17px;
  }

  .product-single {
    margin-bottom: 35px;
    margin-top: 0px;
  }

  .power-border {
    border-left: 2px solid #6195c8;
    padding-left: 20px;
    position: relative;
    margin-top: 100px;
    font-size: 15px !important;
    font-weight: bold;
    width: 90%;
    margin-left: 20px;
  }

  .power-border::before {
    content: "";
    height: 65px;
    width: 65px;
    background: url(https://thefitbody.eu/public_html/wp-content/themes/fitbody-theme/css/images/power-quote.svg) no-repeat;
    background-size: 51px;
    top: -60px;
    left: -1px;
    position: absolute;
    display: inline-block;
  }

  .slim-border {
    border-left: 2px solid #ed1c24;
    padding-left: 20px;
    position: relative;
    margin-top: 100px;
    font-size: 15px !important;
    font-weight: bold;
    width: 90%;
    margin-left: 20px;
  }

  .slim-border::before {
    content: "";
    height: 65px;
    width: 65px;
    background: url(https://thefitbody.eu/public_html/wp-content/themes/fitbody-theme/css/images/slimtea/SVG/quotes-slim-tea.svg) no-repeat;
    background-size: 51px;
    top: -60px;
    left: -1px;
    position: absolute;
    display: inline-block;
  }

  .detox-border {
    border-left: 2px solid #00A651;
    padding-left: 20px;
    position: relative;
    margin-top: 100px;
    font-size: 15px !important;
    font-weight: bold;
    width: 90%;
    margin-left: 20px;
  }

  .detox-border::before {
    content: "";
    height: 65px;
    width: 65px;
    background: url(https://thefitbody.eu/public_html/wp-content/themes/fitbody-theme/css/images/detoxtea/SVG/quotes-detox-tea.svg) no-repeat;
    background-size: 51px;
    top: -60px;
    left: -1px;
    position: absolute;
    display: inline-block;
  }

  .active-border {
    border-left: 2px solid #ff7c0e;
    padding-left: 20px;
    position: relative;
    margin-top: 100px;
    font-size: 15px !important;
    font-weight: bold;
    width: 90%;
    margin-left: 20px;
  }

  .active-border::before {
    content: "";
    height: 65px;
    width: 65px;
    background: url(https://thefitbody.eu/public_html/wp-content/themes/fitbody-theme/css/images/activetea/SVG/quotes-active-tea.svg) no-repeat;
    background-size: 51px;
    top: -60px;
    left: -1px;
    position: absolute;
    display: inline-block;
  }

  .detox-border {
    border-left: 2px solid #00A651;
    padding-left: 20px;
    position: relative;
    margin-top: 100px;
    font-size: 15px !important;
    font-weight: bold;
    width: 90%;
    margin-left: 20px;
  }

  .detox-border::before {
    content: "";
    height: 65px;
    width: 65px;
    background: url(https://thefitbody.eu/public_html/wp-content/themes/fitbody-theme/css/images/detoxtea/SVG/quotes-detox-tea.svg) no-repeat;
    background-size: 51px;
    top: -60px;
    left: -1px;
    position: absolute;
    display: inline-block;
  }

  .thermos-g-border {
    border-left: 2px solid #70cd9d;
    padding-left: 20px;
    position: relative;
    margin-top: 100px;
    font-size: 15px !important;
    font-weight: bold;
    width: 90%;
    margin-left: 20px;
  }

  .thermos-g-border::before {
    content: "";
    height: 65px;
    width: 65px;
    background: url(https://thefitbody.eu/public_html/wp-content/themes/fitbody-theme/css/images/drinkware/green/quotes-green-thermos.svg) no-repeat;
    background-size: 51px;
    top: -60px;
    left: -1px;
    position: absolute;
    display: inline-block;
  }

  .thermos-o-border {
    border-left: 2px solid #ffb577;
    padding-left: 20px;
    position: relative;
    margin-top: 100px;
    font-size: 15px !important;
    font-weight: bold;
    width: 90%;
    margin-left: 20px;
  }

  .thermos-o-border::before {
    content: "";
    height: 65px;
    width: 65px;
    background: url(https://thefitbody.eu/public_html/wp-content/themes/fitbody-theme/css/images/drinkware/orange/quotes-orange-thermos.svg) no-repeat;
    background-size: 51px;
    top: -60px;
    left: -1px;
    position: absolute;
    display: inline-block;
  }

  .bottle-border {
    border-left: 2px solid #f57f84;
    padding-left: 20px;
    position: relative;
    margin-top: 100px;
    font-size: 15px !important;
    font-weight: bold;
    width: 90%;
    margin-left: 20px;
  }

  .bottle-border::before {
    content: "";
    height: 65px;
    width: 65px;
    background: url(https://thefitbody.eu/public_html/wp-content/themes/fitbody-theme/css/images/drinkware/bottle/quotes-glass-bottle.svg) no-repeat;
    background-size: 51px;
    top: -60px;
    left: -1px;
    position: absolute;
    display: inline-block;
  }

  .product-single .product__head h1 {
    font-size: 30px;
    color: #000;
    text-transform: uppercase;
  }

  .buy-box-product-heading {
    font-size: 30px;
    color: #380e50;
    text-transform: uppercase;
  }

  .product-single .product__actions .single_variation_wrap .woocommerce-variation {
    padding: 0px 0px 0px 110px;
    margin-top: -13px;
  }

  .product-single .product__actions .price {
    font-size: 19px;
  }

  .product-single .product__actions .price del {
    color: #ccc;
  }

  .product-single .product__actions {
    margin-top: -30px;
  }

  .main_title_wrap .var_txt>span[class^="free_delivery"] {
    /* position: absolute;
    bottom: 11px;
    left: 28px; */
    left: -16px;
    top: -20px;
    border-radius: 60px 15px 75px 3px;
  }

  .plans-description {
    margin-bottom: 24px;
  }

  .main_title_wrap input {
    top: 23px;
  }

  .home-gallery-heading {
    margin: 20px;
    text-align: center;
    color: #380e50;
    text-transform: uppercase;
    font-size: 27px;
  }

  .slick-arrow {
    width: 10px;
    height: 10px;
  }

  .slick-prev {
    left: 4px;
  }

  .slick-next {
    right: 4px;
  }

  .list-features-secondary {
    flex-wrap: wrap;
  }

  /* .list-features-secondary span {
    position: absolute !important;
    top: -7px;
    left: 135px;
  } */

  .list-features-secondary li {
    margin-bottom: 20px;
  }

  #term-31 .products .product {
    width: 100%;
    max-width: 49% !important;

    margin: 30px 25px;
    position: relative;
  }

  .salestrip {
    position: absolute;
    left: -10px !important;
    width: 50px !important;
    max-width: 100px;
    z-index: 89;
    color: white;
    height: 50px !important;
    text-align: center;
    border-radius: 50%;
    line-height: 3.2;
    font-family: 'Roboto';
    font-weight: bold;
    transform: rotate(338deg);
    font-size: 16px !important;
    top: -9px !important;
    background: #000000;
  }

  .category-heading {
    text-align: center;
    color: #fff;
    padding: 15px;
    margin-bottom: 50px;
  }

  #category-66 h1 {
    font-size: 7vw !important;
  }

  /* #category-66 h1::before {
  content: 'Slim Програми';
  font-size: 21px!important;
  color: white;
  text-align: center;
  font-weight: 100;
  display: block;
} */

  #category-65 h1 {
    font-size: 7vw !important;
  }

  /* #category-65 h1::before {
  content: 'Detox Програми';
  font-size: 21px!important;
  color: white;
  text-align: center;
  font-weight: 100;
  display: block;
} */

  #category-67 h1 {
    font-size: 7vw !important;
  }

  /* #category-67 h1::before {
  content: 'Active Програми';
  font-size: 21px!important;
  color: white;
  text-align: center;
  font-weight: 100;
  display: block;
} */
  #category-68 h1 {
    font-size: 7vw !important;
  }

  /* #category-68 h1::before {
  content: 'Power Програми';
  font-size: 21px!important;
  color: white;
  text-align: center;
  font-weight: 100;
  display: block;
} */
}

/** product page price styling**/

.panam_price {
  display: flex;
  align-items: end;
  margin-top: 10px;
}

.panam_regular_price {

  font-size: 20px;
  margin-top: 10px !important;
  margin-right: 10px !important;
  color: #7c7c7c;
  text-decoration: line-through;
}

.panam_saleprice {
  font-size: 30px;
  margin-top: 10px !important;
  color: #ed1c24;
  font-weight: bold;
  margin-right: 5px;
}

.panam_regular_price_no_sale {
  font-size: 30px;
  margin-top: 10px !important;
  color: #ed1c24;
  font-weight: bold;
  margin-right: 5px;
}

/**Variations on click bgn color**/

.active .main_title_wrap {
  background: rgba(0, 166, 81, 0.2);
  /*Kris css*/
  border: 2px solid #00A651;
}

.main_title_wrap {

  border: 2px solid #ffffff00;
}

/**Cart upsell styling**/

.add_img img {
  width: 75px !important;
  margin: 0 auto;
  /* float: left;
      margin-right: 15px;
      margin-left: 20px; */
}

.additional_products {
  margin: 40px 0;
  /*padding: 10px 25px;*/
  padding: 0;
}

@media only screen and (max-width: 600px) {
  .additional_products {
    margin: 40px -10px;
    padding: 0;
  }

  .gallery .gallery__content {
    text-align: center;
    margin-top: 20%;
  }
}

.panam_addbtn {
  text-align: center;
  margin: 0 auto;
  border-radius: 0px;
  display: block;
  padding: 7px;
  background-color: #ED1C24;
  color: white;
  margin-top: 35px;
  margin-bottom: 15px;
  font-size: 25px;
}

.add_title {
  font-size: 20px;
  font-weight: 600;
  margin-left: 10px;
}

.prod_content .price {
  font-size: 20px;
  color: #ED1C24;
  font-weight: 600;
  margin-left: 10px;
}

.prod_content .price span {
  color: #ff7575;
  font-size: 14px
}

.ribbon_cont {
  position: relative;
  text-align: center;
  margin: 0 10px;

}

@media only screen and (min-width: 600px) {
  .ribbon_cont {
    position: relative;
    width: 30%;
    display: inline-block;
    margin: 0 10px;

  }
}

.ribbon_cont .ribbon {
  pointer-events: none;
  position: absolute;
  right: 0;
  text-align: center;
  font-size: 15px !important;
  background: #980006;
  -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 1px;
  -moz-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 1px;
  box-shadow: rgba(0, 0, 0, 0.3) 0 1px 1px;
  text-align: center;
  bottom: 23px;
  height: 25px;
  width: 100%;
  color: white;
  border-radius: 0px;

}



.add_product {
  padding: 34px 0;
}

/**Styling variations radio buttons**/
.variation_row .variation_sub .check_container .main_content .main_title_wrap .var_txt .checkmark {
  display: none;
}

.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}



#term-65 .meta {
  display: none;
}

#term-66 .meta {
  display: none;
}

#term-67 .meta {
  display: none;
}

#term-68 .meta {
  display: none;
}

.panam_upsellbutton {
  font-size: 20px;
  padding: 7px;
  width: 100%;
  display: block;
  text-align: center;
  border-radius: 50px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid #ffa801;
  -webkit-transition: color .3s, background .3s;
  -o-transition: color .3s, background .3s;
  transition: color .3s, background .3s;
  background: #ffa801;
  cursor: pointer;
}

.panam_upsellbutton:hover {

  color: #ffffff;
  -webkit-transition: color .3s, background .3s;
  -o-transition: color .3s, background .3s;
  transition: color .3s, background .3s;
  background: #d88e03;
  cursor: pointer;
}

/**
    .btn-shop .current-menu-item {
      background-color: #ffa801;
    }
    @media (max-width: 1023px) {
      .current-menu-item {
      background-color: #ffa801;
    }} **/
.btn-shop {
  background-color: #ed1c24;
  border: 1px solid #ed1c24;
  height: 100%;
}


/**checkout styling**/

.panam_checkout_thumb {
  width: 100px;
}

@media only screen and (max-width:600px) {
  .panam_checkout_thumb img {
    max-width: 70px;
  }
}

.qty {
  width: 45px;
  border: none;
  outline: none;
  cursor: pointer;
  color: #848484;
  padding: 5px 10px;
  text-align: center;
  /* background-color: #f7f7f7; */
  -webkit-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

@media only screen and (max-width:600px) {
  .qty {
    width: 50px;
    margin: 20px;
  }

  .woocommerce-cart-form__cart-item .product-name {
    position: relative;
  }

  .woocommerce-cart-form__cart-item .product-name {
    font-size: 15px;
  }

  .woocommerce-cart-form__cart-item .cart_item .product-name {
    min-width: 165px;
  }
}

.cart_total_row div {
  border-bottom: 1px solid rgb(204, 203, 203);
}

.woocommerce a.remove {
  display: block;
  font-size: 1.5em;
  height: 1em;
  width: 1em;
  text-align: center;
  line-height: 1;
  border-radius: 100%;
  color: red !important;
  text-decoration: none;
  font-weight: 700;
  border: 0;
}

.panam_prodtable {
  width: 110%;
}

.panam_prodsum_container {
  display: flex;
  margin-bottom: 25px;
}

@media only screen and (max-width:600px) {
  .panam_prodsum_container {
    display: block;
    margin: 25px 0;
  }
}

.cart_total_row {

  padding: 10px 10px 10px 10px;
  border-left: 2px solid #f6f1f8;
  background-color: #ffffff;
  min-width: 400px;
}

@media only screen and (max-width:600px) {
  .cart_total_row {
    min-width: 320px;
  }

  .single_row {
    font-size: 15px !important;
  }
}

.panam_prices_right {
  float: right !important;
}

.single_row {
  margin: 20px 0;
}


/*.single_row:first-child,
.single_row:second-child,
.single_row:last-child {
	font-weight: 600;
}*/


.single_row:first-child {
  font-weight: 600;
}

.single_row:last-child {
  font-weight: 600;
}

.total_discounts {
  font-weight: 600;
}


.single_row>.dt {
  padding-right: 70px;
}

.selectize-input {
  /* width: 98%; */
  margin: 0 auto;
  display: block;
  height: 43px;
}

.radio_wrap {

  display: inline-block;
}

.carrier .woocommerce-input-wrapper .radio_wrap input[type="radio"]:checked+label {
  border: 2px solid #6dab3c;
}

.woocommerce-checkout form.woocommerce-checkout .carrier .woocommerce-input-wrapper {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: none !important;
}

.woocommerce-checkout form.woocommerce-checkout .carrier .woocommerce-input-wrapper .radio_wrap {
  margin: 10px;
  padding: 0px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-family: "Gothic", sans-serif;
}



@media (max-width: 768px) {
  .woocommerce-checkout form.woocommerce-checkout .carrier .woocommerce-input-wrapper .radio_wrap {
    width: auto;
  }
}

.woocommerce-checkout form.woocommerce-checkout .carrier .woocommerce-input-wrapper .radio_wrap input {
  display: none !important;
}

.woocommerce-checkout form.woocommerce-checkout .carrier .woocommerce-input-wrapper .radio_wrap label {
  width: 100%;
  height: 100%;
  padding: 16px;
  font-size: 14px;
  font-weight: 900;
  border-radius: 5px;
  background: #fff;
  border: 2px solid #b4b4b4;
}

.woocommerce-checkout form.woocommerce-checkout .carrier .woocommerce-input-wrapper .radio_wrap label.radio {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 768px) {
  .woocommerce-checkout form.woocommerce-checkout .carrier .woocommerce-input-wrapper .radio_wrap label.radio {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.woocommerce-checkout form.woocommerce-checkout .carrier .woocommerce-input-wrapper .radio_wrap label.radio img {
  margin-left: 10px;
  width: 131px;
  height: 41px;
  -o-object-fit: contain;
  object-fit: contain;
}

.woocommerce-checkout form.woocommerce-checkout .carrier .woocommerce-input-wrapper .radio_wrap label.radio[for="carrier_To door delivery"]:after,
.woocommerce-checkout form.woocommerce-checkout .carrier .woocommerce-input-wrapper .radio_wrap label.radio[for="carrier_Speedy address"]:after,
.woocommerce-checkout form.woocommerce-checkout .carrier .woocommerce-input-wrapper .radio_wrap label.radio[for="carrier_Econt office"]:after {
  content: "";
  width: 95px;
  height: 29px;
  margin-left: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}

@media (min-width: 768px) {

  .woocommerce-checkout form.woocommerce-checkout .carrier .woocommerce-input-wrapper .radio_wrap label.radio[for="carrier_To door delivery"]:after,
  .woocommerce-checkout form.woocommerce-checkout .carrier .woocommerce-input-wrapper .radio_wrap label.radio[for="carrier_Speedy address"]:after,
  .woocommerce-checkout form.woocommerce-checkout .carrier .woocommerce-input-wrapper .radio_wrap label.radio[for="carrier_Econt office"]:after {
    width: 131px;
    height: 41px;
  }
}

.woocommerce-checkout form.woocommerce-checkout .carrier .woocommerce-input-wrapper .radio_wrap label.radio[for="carrier_To door delivery"]:after,
.woocommerce-checkout form.woocommerce-checkout .carrier .woocommerce-input-wrapper .radio_wrap label.radio[for="carrier_Speedy address"]:after {
  background-image: url("https://img.flaticon.com/icons/png/512/25/25694.png?size=1200x630f&pad=10,10,10,10&ext=png&bg=FFFFFFFF");
}

.woocommerce-checkout form.woocommerce-checkout .carrier .woocommerce-input-wrapper .radio_wrap label.radio[for="carrier_Econt office"]:after {
  background-image: url("https://wowtea.eu/wp-content/themes/wowtea/assets/images/checkout/logo-econt.png");
}

.woocommerce-checkout form.woocommerce-checkout .carrier .woocommerce-input-wrapper .radio_wrap input[type="radio"]:checked+label {
  border: 2px solid #6dab3c;
}

.shipping_select_methoods {
  background-color: #f6f1f8;
  padding-bottom: 10px;
}

#econt_offices>div {
  background-color: rgb(246, 241, 248);
}

.woocommerce-cart-form__cart-item .product-price .old_price {
  color: #ababab;
  text-decoration: line-through;
}

.progress_wrap {
  position: relative;
  text-align: center;
  background-color: #f7f7f7;
  padding: 20px 5px 20px 5px;
  border-radius: 10px;

}

.progress_bar {
  height: 10px;
  background-color: #c1c1c1;
  margin-top: 55px;
  border-radius: 8px;
}

.progress_title {
  font-weight: 700;
  font-size: 20px;
}

.free_stuff {
  color: #1c1c1c;
  font-weight: 700;
}

.fill {
  height: 10px;
  position: relative !important;
  left: 0;
  top: 0;
  width: 50%;
  background: #00A651;
  border-radius: 8px;
  -webkit-transition: 0.5s width;
  -o-transition: 0.5s width;
  transition: 0.5s width;
}

.fill:before {
  content: "";
  width: 70px;
  height: 31px;
  background: url(http://thefitbody.eu/public_html/wp-content/uploads/delivery_icon_car.svg) no-repeat center center/contain;
  position: absolute;
  top: -40px;
  right: -20px;
}

@media only screen and (max-width:600px) {
  .free_stuff {
    position: absolute;
    width: 90%;
    bottom: 75px;
    left: 19px;
  }

  .progress_bar {
    margin-top: 95px;
  }

  .progress_title {
    font-size: 23px;
  }
}

/* Index Free Plans Section  */

.free_plan_box {
  max-width: 320px;
  position: relative;
  min-height: 120px;
  margin: 50px 0 80px 0;
}

.free_plan_box h4 {
  color: #000;
  text-transform: lowercase;
}

.free_plan_box small {
  color: rgb(129, 129, 129);
}

.free_plan_box strong {
  text-transform: uppercase;
}

.elementor-widget-container .row {
  display: flex;
  margin-top: -90px;
  margin-bottom: -90px;
  min-width: 1290px;
}

@media only screen and (max-width:600px) {
  .elementor-widget-container .row {
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .free_plan_box {
    margin: 40px 0 0px 0;
    text-align: center;
  }

  .box-3 {
    margin-bottom: 50px;
  }
}

.img_wrap img {
  width: 150px;
  position: absolute;
  left: -42px;
  top: -10px;

}

.icon_title strong {
  font-size: 20px;
}

.icon_title small {
  font-size: 13px;
  font-size: 13px;
  position: absolute;
  width: 100%;
  bottom: 20px;
  left: 30px;
}

.first-small {
  margin-left: -26px;
}

.free_plan_box .content .icon_title {
  font-size: 15px;
  display: flex;
  flex-direction: column;
  margin-top: 25px;
}

.free_plan_box .content {


  flex-basis: calc(100% - 130px);
  text-align: center;
}

.box-1 {
  box-shadow: 7px 6px 5px -3px rgba(123, 63, 151, 1);
  -webkit-box-shadow: 7px 6px 5px -3px rgba(123, 63, 151, 1);
  -moz-box-shadow: 7px 6px 5px -3px rgba(123, 63, 151, 1);
}

.box-1 strong {
  color: #ed1c24;
}

.box-2 {
  box-shadow: 7px 6px 5px -3px rgba(236, 156, 8, 1);
  -webkit-box-shadow: 7px 6px 5px -3px rgba(236, 156, 8, 1);
  -moz-box-shadow: 7px 6px 5px -3px rgba(236, 156, 8, 1);
}

.box-2 strong {
  color: #ec9c08;
}

.box-3 {
  box-shadow: 7px 6px 5px -3px rgba(84, 149, 66, 1);
  -webkit-box-shadow: 7px 6px 5px -3px rgba(84, 149, 66, 1);
  -moz-box-shadow: 7px 6px 5px -3px rgba(84, 149, 66, 1);
}

.box-3 strong {
  color: #549542;
}

#panam_plans_section:nth-last-child() {
  display: none !important;
}

#panam_plans_section {
  min-width: 1100px;
  margin-bottom: 80px;
  margin-top: -80px;
}

@media only screen and (max-width:700px) {
  #panam_plans_section {
    margin-top: -80px;
  }
}

/* .product-single .product__nav {
  margin-bottom: -100px;
} */

#dd-detox-tea .product-small {
  background: #539641 !important;
}

#dd-detox-tea .product-small .btn-small:hover {
  background: #487c39 !important;
}

.elementor-widget:not(:last-child) {
  margin-top: 58px !important;
}

@media only screen and (max-width:600px) {
  .elementor-widget:not(:last-child) {
    margin-top: 7px !important;
  }
}

.order-review__table {
  display: none;
}


/* HU */

/** Shop badge discount styling **/

/* .salestrip {
  position: absolute;
  left: -36px;
  width: auto;
  max-width: 220px;
  z-index: 89;
  color: white;
  height: 40px;
  line-height: 40px;
  padding: 0px 5px;
  font-size: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  top: 34px;
  background: #549542;
  box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.2);
}

.salestrip:after {
  content: '';
  width: 0px;
  height: 0px;
  background: transparent;
  position: absolute;
  top: 40px;
  left: 0px;
  border-right: 20px solid #346a25;
  border-bottom: 10px solid transparent;
  filter: brightness(0.8);
}

.salestrip:hover {
  filter: brightness(1.2);
} */


.salestrip {
  position: absolute;
  left: -36px;
  width: 80px;
  max-width: 100px;
  z-index: 89;
  color: white;
  height: 80px;
  text-align: center;
  border-radius: 50%;
  line-height: 1.2;
  font-family: 'Roboto';
  font-weight: bold;
  transform: rotate(338deg);
  font-size: 25px;
  top: 34px;
  background: #000000;
  padding-top: 8px;
}

.additional_products_title {
  text-align: center;
  color: #212121;
}

/**Hidding shipping address**/

.section-thankyou .shell .woocommerce .woocommerce-order .woocommerce-customer-details .woocommerce-columns .woocommerce-column--shipping-address {
  display: none;
}

/**cart plans fix**/

.cart-mini .cart_list li img {
  max-width: 100px;
  position: absolute;
  top: 50%;
  left: 0;
  padding: 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/**Bundles heading in product page**/

.bundels-title {
  text-align: center;
  margin-bottom: 60px !important;
  color: #380e50;
}

.panam-product-section {
  margin-left: -130px;
  margin-top: -21px;
}

@media only screen and (max-width: 600px) {
  .panam-product-section {
    margin-left: 15px;
  }
}

.panam-top-margin {
  margin-top: 200px;
}

.red-left-border-footer {
  border-left: 2px solid #ed1c24;
  height: 40px;
  padding-left: 10px;
}

/**DROPSOWN MENU**/

.menu li.has-children>a:after {
  color: #fff;
  content: ' ▼';
  font-size: 10px;
  vertical-align: 1px;
}

.menu li li.has-children>a:after {
  color: #222;
  content: ' ►';
  font-size: 10px;
  vertical-align: 1px;
}

/**DESKTOP**/

@media only screen and (min-width:720px) {
  .main-menu-drop .sub-menu {
    display: none;
    position: absolute;
    background-color: #1c1c1c;
    width: 0px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 77px;
    margin-left: 70px;
  }

  .drop-tab {
    background-color: #1c1c1c;
  }

  .main-menu-drop:hover .sub-menu {
    display: flex;
    flex-direction: column;
  }

  .main-menu-drop ul li {
    color: white;
    text-decoration: none;
    display: block;
    width: 140px;
    height: 60px;
  }

  .detox-tea:hover {
    background-color: #00a651;
  }

  .slim-tea:hover {
    background-color: #ed1c24;
  }

  .active-tea:hover {
    background-color: #ff7c0e;
  }

  .power-tea:hover {
    background-color: #0069aa;
  }

  .sub-menu a {
    padding: 20px !important;
  }

  .category-heading {
    text-align: center;
    color: #fff;
    margin-top: -75px;
    padding: 50px 25%;
    margin-bottom: 50px;
  }

  .shop_section {
    margin-top: 150px;
  }

  .product__head {
    position: relative;
  }

  .product__head_freeship img {
    width: 20%;
    height: auto;
    position: absolute;
    top: 0;
    right: 45px;
  }

  .product__head_power img {
    width: 20%;
    height: auto;
    position: absolute;
    top: 0;
    right: 0px;
  }

  .product__head_active img {
    width: 20%;
    height: auto;
    position: absolute;
    top: 0;
    right: 0px;
  }

  .product__head_detox img {
    width: 20%;
    height: auto;
    position: absolute;
    top: 0;
    right: 13px;
  }

  .product__head_slim img {
    width: 20%;
    height: auto;
    position: absolute;
    top: 3%;
    right: 10px;
  }

}

/**MOBILE STYLING**/
@media only screen and (max-width:700px) {

  .product__head_power img {
    width: 15%;
    height: auto;
    position: absolute;
    top: 15px;
    right: 25px;
  }

  .product__head_active img {
    width: 15%;
    height: auto;
    position: absolute;
    top: 15px;
    right: 25px;
  }

  .product__head_detox img {
    width: 15%;
    height: auto;
    position: absolute;
    top: 15px;
    right: 25px;
  }

  .product__head_slim img {
    width: 15%;
    height: auto;
    position: absolute;
    top: 50px;
    right: 5px;
  }


  .product__head_elexir img {
    width: 15%;
    height: auto;
    position: absolute;
    top: 100px;
    right: 0px;
  }


  .nav a {
    padding: 20px !important;
  }

  .sub-menu a {
    padding: 20px !important;
  }

  .sub-menu {
    background-color: #2a2a2a;
    -webkit-box-shadow: 0px 12px 13px -5px rgba(0, 0, 0, 0.6) inset;
    -moz-box-shadow: 0px 12px 13px -5px rgba(0, 0, 0, 0.6) inset;
    box-shadow: 0px 12px 13px -5px rgba(0, 0, 0, 0.6) inset;
  }

  /**Add some fancy icons **/
  .detox-tea,
  .slim-tea,
  .active-tea,
  .power-tea {
    position: relative;
  }

  .panam_product_carousel {
    margin: 20% 0 !important;
  }


  .detox-tea a:after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    -moz-border-radius: 7.5px !important;
    -webkit-border-radius: 7.5px !important;
    border-radius: 50% !important;
    background-color: #00a651;
    position: absolute;
    right: 20px;
    top: 23px;
  }

  .slim-tea a:after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    -moz-border-radius: 7.5px !important;
    -webkit-border-radius: 7.5px !important;
    border-radius: 50% !important;
    background-color: #ed1c24;
    position: absolute;
    right: 20px;
    top: 23px;

  }

  .active-tea a:after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    -moz-border-radius: 7.5px !important;
    -webkit-border-radius: 7.5px !important;
    border-radius: 50% !important;
    background-color: #ff7c0e;
    position: absolute;
    right: 20px;
    top: 23px;
  }

  .power-tea a:after {
    content: '';
    display: inline-block;
    width: 15px !important;
    height: 15px !important;
    -moz-border-radius: 7.5px !important;
    -webkit-border-radius: 7.5px !important;
    border-radius: 50% !important;
    background-color: #0069aa !important;
    position: absolute !important;
    right: 20px !important;
    top: 23px !important;
  }

  .opinons-wrapper {
    width: 100% !important;
    margin-bottom: 35% !important;
    /* margin-top: -105px; */
  }

  .category-heading {
    text-align: center;
    color: #fff;
    padding: 15px;
    margin-bottom: 50px;
  }

  .product__content {
    position: relative;
  }

  .product__content::after {
    content: url(https://thefitbody.eu/public_html/wp-content/themes/fitbody-theme/css/images/explosive-power-and-sustained-endurance.svg);
    width: 15%;
    height: auto;
    position: absolute;
    top: 15px;
    right: 26px;
  }
}

/**-----------------------**/

/**TESTTIMONIALS INDEX**/

.single-slide {

  display: flex !important;
  flex-direction: column;
  align-items: end;
  margin: 20px;
}

.opinion-verified-client {
  color: #42bd7e;
}

.single-slide .opinion-comment {
  margin: 20px;
  border-left: 1px solid #00a651;
  padding: 20px;
  font-size: 14px;
  position: relative;
}

.single-slide .opinion-comment::before {
  content: "";
  height: 65px;
  width: 65px;
  background: url(https://thefitbody.eu/public_html/wp-content/themes/fitbody-theme/css/images/testimonials/quotes-index-all.svg) no-repeat;
  background-size: 51px;
  top: -60px;
  left: -1px;
  position: absolute;
  display: inline-block;

}

.single-slide-image img {
  width: 150px;

}

.single-slide-image {
  margin-bottom: -29px;
  z-index: 999;
}

.single-slide-text {
  border: 1px solid #d6d6d6;
  padding: 20px 10px;
  min-height: 290px;
  height: 430px;
  margin-bottom: 30px;
}

.opinion-client {
  font-size: 20px;
}

.opinion-verified-client {
  font-size: 13px;
}

.opinion-stars {
  font-size: 17px;
  color: gold;
}

.opinion-name {
  padding: 0px 20px;
}

.opinons-wrapper {
  margin: 0 auto;
  width: 70%;
  margin-bottom: 15%;
  margin-top: 100px;
}

.opinons-wrapper-thermos {
  margin: 0 auto;
  width: 70%;
  margin-bottom: 15%;
  /* margin-top: -100px; */
}


/**CATEGORY STYLING**/

.woocommerce-ordering {
  display: none !important;
}

/* .shop_section {
  margin-top: 150px;
}  */
.price {
  font-size: 20px;
}

.add_to_cart_button {
  background-color: red;
  font-size: 20px;
}

.shop-section .products .product_box a {}

.term-description {
  font-size: 20px;
}

/* .category-heading { moved to desktop styling
  text-align: center;
  color: #fff;
  margin-top: -75px;
  padding: 50px 25%;
  margin-bottom: 50px;
} */

/**Detox cat**/

#category-65 {
  background-color: #00A651;
}

/**Slim cat**/

#category-66 {
  background-color: #ed1c24;
}

#category-66 h1 {
  font-size: 2vw;
}

/* #category-66 h1::before {
  content: 'Slim Програми';
  font-size: 50px;
  color: white;
  text-align: center;
  font-weight: 100;
  display: block;
} */

#category-65 h1 {
  font-size: 2.6vw;
}

/* #category-65 h1::before {
  content: 'Detox Програми';
  font-size: 50px;
  color: white;
  text-align: center;
  font-weight: 100;
  display: block;
} */

#category-67 h1 {
  font-size: 2.5vw;
}

/* #category-67 h1::before {
  content: 'Active Програми';
  font-size: 50px;
  color: white;
  text-align: center;
  font-weight: 100;
  display: block;
} */

#category-68 h1 {
  font-size: 2.5vw;
}

/* #category-68 h1::before {
  content: 'Power Програми';
  font-size: 50px;
  color: white;
  text-align: center;
  font-weight: 100;
  display: block;
} */


/**Active cat**/

#category-67 {
  background-color: #ff7c0e;
}

/**Power cat**/

#category-68 {
  background-color: #0069aa;
}

#category-65 .woocommerce-result-count {
  display: none;
}

#category-66 .woocommerce-result-count {
  display: none;
}

#category-67 .woocommerce-result-count {
  display: none;
}

#category-68 .woocommerce-result-count {
  display: none;
}

.cart_total_row {
  font-size: 15px;
}

.woocommerce-cart-form__cart-item .quantity {
  font-size: 20px;
}

.woocommerce-cart-form__cart-item .product-name {
  font-size: 15px;
}

.panam-slides-upsell .add_product .prod_content {
  text-align: left;
  border-left: 1px solid #ED1C24;
}

/**SLICK STYLE**/

.slick-dots li {
  margin: 0 !important;
}

.slick-dots li button {
  background: #b3b3b3 !important;
  width: 10px !important;
  height: 10px !important;
  margin: 0 5px;
}

.slick-dots .slick-active button {
  background: #1c1c1c !important;
}

.slick-dots li:hover button {
  background: #ed1c24 !important;
}

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

.jdgm-rev__rating {
  margin-left: 10px;
  color: gold;
  font-size: 10px;
}


/* BUNDLES STYLING */
/*

#term-31 .products .product {
  width: 100%;
  max-width: 25%;
  padding: 0 15px 0 15px; 
  margin: 30px 25px;
  border: 1px solid #ed1c24;
  position: relative;
}
#term-120 .products .product {
  width: 100%;
  max-width: 25%;
  padding: 0 15px 0 15px;
  margin: 30px 25px;
  border: 2px solid #ed1c24;
  position: relative;
}

.products .product .product__actions {
  position: absolute;
  left: 13px;
  bottom: -40px;
  width: calc(100% - 40px);
}


#term-31 .products .product .product__meta {
  border-left: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: calc(41% - 10px);
}

#term-31 .products .product .product__benefits ul {
  margin: 0 auto;
  padding: 10px 0 0 0;
  text-align: center;
  list-style: none;
}

#term-31 .products .product .product__price {
  text-align: center;
  font-size: 27px;
  color: #ed1c24!important;
  font-weight: bold;
  height: 100%;
  align-items: self-end;
  padding: 0 0 10px 0;
}

#term-31 .products .product .product__price del {
  margin-bottom: 0px;
  margin-right: 13px;
  font-size: 19px;
  font-weight: normal !important;
}

.top-seller-bar {
  content: '';
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  font-size: 24px;
  width: 100%;
  text-align: center;
  line-height: 1.4;
  height: 40px;
  margin: 0;
  left: 0;
  top: 0;
  padding: 0;
  position: absolute;
  background-color: #ed1c24;
}

#term-31 .products .product .product__wrapper .product__image {
  margin-bottom: 20px;
  margin-top: 25px;
}

#term-31 .products .product .product__actions a {
  font-size: 15px;
  padding: 15px;
  width: 100%;
  display: block;
  text-align: center;
  border-radius: 0px;
  text-transform: uppercase;
  font-weight: 500;
  -webkit-transition: color .3s, background .3s;
  -o-transition: color .3s, background .3s;
  transition: color .3s, background .3s;
  color: #ffffff;
  font-weight: 700;
  background: #00a651 !important;
}

#term-31 .products .product .product__price ins {
  color: #ed1c24;
  font-weight: bold;
}

#term-31 .products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
} */

/*

#term-120 .products .product .product__meta {
  border-left: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: calc(41% - 10px);
}

#term-120 .products .product .product__benefits ul {
  margin: 0 auto;
  padding: 10px 0 0 0;
  text-align: center;
  list-style: none;
}

#term-120 .products .product .product__price {
  text-align: center;
  font-size: 27px;
  color: #ed1c24!important;
  font-weight: bold;
  height: 100%;
  align-items: self-end;
  padding: 0 0 10px 0;
}

#term-120 .products .product .product__price del {
  margin-bottom: 0px;
  margin-right: 13px;
  font-size: 19px;
  font-weight: normal !important;
}

.top-seller-bar{
  content: '';
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  font-size: 24px;
  width: 100%;
  text-align: center;
  line-height: 1.4;
  height: 40px;
  margin: 0;
  left: 0;
  top: 0;
  padding: 0;
  position: absolute;
  background-color: #ed1c24;
}

#term-120 .products .product .product__wrapper .product__image {
  margin-bottom: 20px;
  margin-top: 25px;
}
 #term-120 .products .product .product__actions a {
  font-size: 15px;
  padding: 15px;
  width: 100%;
  display: block;
  text-align: center;
  border-radius: 0px;
  text-transform: uppercase;
  font-weight: 500;
  -webkit-transition: color .3s, background .3s;
  -o-transition: color .3s, background .3s;
  transition: color .3s, background .3s;
  color: #ffffff;
  font-weight: 700;
  background: #00a651 !important;
} 

#term-120 .products .product .product__price ins {
  color: #ed1c24;
  font-weight: bold;
}

#term-120 .products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
*/
/**PRODUCTS BOX**/

.panam_slide {
  min-width: 320px;
  border: 1px solid #a1a1a1;
  margin: 10px;
  background-color: #f3f3f3;
}


.panam_slide img {
  max-width: 250px;
  margin: 0 auto;
}

.main_carousel_wrapper {
  margin: 0 auto;
  max-width: 1200px;
}

.panam_list-review {
  display: flex;
  list-style-type: none;
  padding: 0 !important;
  justify-content: center;
}

/* .panam_list-review li{
  margin:0 5px;
} */

.panam_product__benefits {
  padding: 20px;
  font-size: 15px;
  text-align: center;
  /* font-weight: 600; */
  min-height: 160px;
}

.panam_product__title {
  margin-top: 20px;
  text-align: center;
  font-size: 25px;
  font-weight: 100;
  min-height: 63px;
}

.product__price {
  text-align: center;
  font-size: 25px;
}

.panam_product__actions {
  text-align: center;
  color: #fff;
  background-color: #00a651;
  margin: 20px 45px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-transform: uppercase;
}

.panam_product__actions:hover {
  background-color: #58cd91;
}

.panam_product__price {
  text-align: center;
  font-size: 20px;
}

.panam_saleprice-amount {
  font-size: 25px;
  color: #ed1c24;
  font-weight: 600;
}

.panam_quality_badges {
  display: flex;
  justify-content: space-evenly;
  width: 90%;
  /* margin-top: 20px;
  margin-bottom: 70px; */
  margin: 0 auto;
}

.panam_quality_badges img {
  margin-top: 40px;
  width: 20%;
  height: auto;
}

.power-border {
  border-left: 2px solid #6195c8;
  padding-left: 20px;
  position: relative;
  margin-top: 100px;
  font-size: 20px;
  font-weight: bold;
}

.power-border::before {
  content: "";
  height: 65px;
  width: 65px;
  background: url(https://thefitbody.eu/public_html/wp-content/themes/fitbody-theme/css/images/power-quote.svg) no-repeat;
  background-size: 51px;
  top: -60px;
  left: -1px;
  position: absolute;
  display: inline-block;
}

.slim-border {
  border-left: 2px solid #ed1c24;
  padding-left: 20px;
  position: relative;
  margin-top: 100px;
  font-size: 20px;
  font-weight: bold;
}

.slim-border::before {
  content: "";
  height: 65px;
  width: 65px;
  background: url(https://thefitbody.eu/public_html/wp-content/themes/fitbody-theme/css/images/slimtea/SVG/quotes-slim-tea.svg) no-repeat;
  background-size: 51px;
  top: -60px;
  left: -1px;
  position: absolute;
  display: inline-block;
}

.detox-border {
  border-left: 2px solid #00A651;
  padding-left: 20px;
  position: relative;
  margin-top: 100px;
  font-size: 20px;
  font-weight: bold;
}

.detox-border::before {
  content: "";
  height: 65px;
  width: 65px;
  background: url(https://thefitbody.eu/public_html/wp-content/themes/fitbody-theme/css/images/detoxtea/SVG/quotes-detox-tea.svg) no-repeat;
  background-size: 51px;
  top: -60px;
  left: -1px;
  position: absolute;
  display: inline-block;
}

.active-border {
  border-left: 2px solid #ff7c0e;
  padding-left: 20px;
  position: relative;
  margin-top: 100px;
  font-size: 20px;
  font-weight: bold;
}

.active-border::before {
  content: "";
  height: 65px;
  width: 65px;
  background: url(https://thefitbody.eu/public_html/wp-content/themes/fitbody-theme/css/images/activetea/SVG/quotes-active-tea.svg) no-repeat;
  background-size: 51px;
  top: -60px;
  left: -1px;
  position: absolute;
  display: inline-block;
}

.thermos-g-border {
  border-left: 2px solid #70cd9d;
  padding-left: 20px;
  position: relative;
  margin-top: 100px;
  font-size: 20px;
  font-weight: bold;
}

.thermos-g-border::before {
  content: "";
  height: 65px;
  width: 65px;
  background: url(https://thefitbody.eu/public_html/wp-content/themes/fitbody-theme/css/images/drinkware/green/quotes-green-thermos.svg) no-repeat;
  background-size: 51px;
  top: -60px;
  left: -1px;
  position: absolute;
  display: inline-block;
}

.thermos-o-border {
  border-left: 2px solid #ffb577;
  padding-left: 20px;
  position: relative;
  margin-top: 100px;
  font-size: 20px;
  font-weight: bold;
}

.thermos-o-border::before {
  content: "";
  height: 65px;
  width: 65px;
  background: url(https://thefitbody.eu/public_html/wp-content/themes/fitbody-theme/css/images/drinkware/orange/quotes-orange-thermos.svg) no-repeat;
  background-size: 51px;
  top: -60px;
  left: -1px;
  position: absolute;
  display: inline-block;
}

.bottle-border {
  border-left: 2px solid #f57f84;
  padding-left: 20px;
  position: relative;
  margin-top: 100px;
  font-size: 20px;
  font-weight: bold;
}

.bottle-border::before {
  content: "";
  height: 65px;
  width: 65px;
  background: url(https://thefitbody.eu/public_html/wp-content/themes/fitbody-theme/css/images/drinkware/bottle/quotes-glass-bottle.svg) no-repeat;
  background-size: 51px;
  top: -60px;
  left: -1px;
  position: absolute;
  display: inline-block;
}

.main {
  margin-top: 120px;
}

.home .main {
  margin-top: 0px;
}

#klaviyo_ariaid_2 {
  display: none !important;
}

.go407003410 {
  display: none !important;
}

.weight {
  margin: 20px 0;
  color: #838383;
  position: relative;
  /* top: -10px; */
}

.product__wrapper {
  position: relative;
}

.panam_product_carousel {
  margin: 5% 0;
}

.salestrip2 {
  position: absolute;
  left: 140px;
  width: 70px;
  max-width: 100px;
  z-index: 89;
  color: white;
  height: 70px;
  text-align: center;
  border-radius: 50%;
  line-height: 3.4;
  font-family: 'Roboto';
  font-weight: bold;
  transform: rotate(338deg);
  font-size: 20px;
  top: -60px;
  background: #000000;
}

.carousel-slide-product {
  min-width: 320px;
  border: 1px solid #a1a1a1;
  margin: 40px 10px;
  background-color: #f3f3f3;
}

.what-you-get {
  min-width: 320px;
  margin: 40px 10px;
}

.actions-wrapper {
  position: relative;
}

.panam_product__actions2 {
  text-align: center;
  color: #fff;
  background-color: #F0C44F;
  font-weight: bold;
  margin: -20px 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-transform: uppercase;
}

.panam_product__price2 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 30px;
}

.product__image2 {
  width: 300px;
  margin: 20px auto;
}

.salestrip3 {
  position: absolute;
  left: -11px;
  width: 80px;
  max-width: 100px;
  z-index: 89;
  color: white;
  height: 80px;
  text-align: center;
  border-radius: 50%;
  line-height: 3.2;
  font-family: 'Roboto';
  font-weight: bold;
  transform: rotate(338deg);
  font-size: 25px;
  top: 35px;
  background: #000000;
}

.top-seller-head {
  height: 45px;
  background-color: #ed1c24;
  color: white;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}

.carousel-slide-product2 {
  min-width: 320px;
  border: 1px solid #ed1c24;
  margin: 40px 70px;
  background-color: #fff;
}

.what-you-get {
  min-width: 320px;
  margin: -50px 0px 50px 10px;
  /*Kris CSS - MARGIN: 40px 10px*/
}

.panam_product__actions3 {
  text-align: center;
  color: #fff;
  font-weight: bold;
  background-color: #F0C44F;
  margin: -20px 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-transform: uppercase;
}

.opinion-stars2 {
  font-size: 17px;
  color: gold;
  text-align: center;
}

/**Product pages text coloring**/

.powertea .colored {
  color: #0069aa !important;
}

.activetea .colored {
  color: #ff7c0e !important;
}

.detoxtea .colored {
  color: #00a651 !important;
}

.slimtea .colored {
  color: #ed1c24 !important;
}

.product__reviews_bundle {
  padding: 5px 0px 15px 0px;
}

.panam_product_carousel_bundle {
  margin: 0;
}

.preparation_bundle {
  background-color: #f2f2f2;
}

.elexir .colored {
  color: #00a651 !important;
}


/**
 * Hide Price on Product Single page 
 * Added on: 27.01.2021
 */
.single_variation_wrap .woocommerce-Price-amount.amount,
.second_bb_variations .woocommerce-Price-amount.amount {
  visibility: hidden;
  margin-top: 0;
}

.woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-enabled .single_add_to_cart_button.button.alt {
  margin: -20px 5px;
}

@media only screen and (max-width: 600px) {
  .woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-enabled .single_add_to_cart_button.button.alt {
    margin: 0;
  }
}

/**
 * Additional Price on Single Product Page
 * Added on: 28.01.2021
 */
.form-variation.form-variation--secondary .panam_price {
  display: none;
}

/**
 * Couriers Images 
 * Added on: 28.01.2021
 */
div.fancy_button {
  display: flex;
  flex-direction: column !important;
  flex-flow: row wrap;
  background-color: #f2f2f2;
  margin: 30px 0;
  padding: 15px;
}

.second_bb_variations .fancy_button {
  display: none !important;
}

/**
 * AJAX Popup 
 * Added on: 28.01.2021
 */
.xoo-cp-atcn {
  margin: 15px 0 0 !important;
  background: #f2f2f2 !important;
}

.xoo-cp-atcn .xoo-cp-success {
  color: inherit !important;
  background: #f2f2f2 !important;
  border: none !important;
  font-size: 14px !important;
}

.xoo-cp-success i {
  background: #00a651;
  border: #00a651 1px solid;
  color: white;
  font-size: 14px;
  margin-bottom: 15px;
}

.xcp-chng {
  border: none !important;
  background: #f2f2f2;
}

.xoo-cp-qtybox {
  border-style: none !important;
}

.xoo-cp-ptotal {
  font-size: 14px !important;
  border-top: none !important;
  border-bottom: none !important;
}

.xoo-cp-ptotal .woocommerce-Price-amount.amount {
  font-size: 14px !important;
}

.xoo-cp-btns {
  margin: -20px auto !important;
}

.xoo-cp-modal .before-modal {
  margin-top: -40%;
  color: #fff;
  text-shadow: 0 0 10px #000;
}

.before-modal h2 {
  font-size: 3em;
  color: #fff;
}

.before-modal h4 {
  font-size: 1.5em;
  color: #fff;
}

.before-upsells {
  color: #1c1c1c;
  text-align: left;
  width: 95%;
  margin: 30px auto;
}

.before-upsells div.border {
  border-left: 2px solid red;
  padding-left: 15px;
}

.before-upsells div.border h2 {
  font-size: 2em;
  margin-top: 5rem;
}

@media only screen and (max-width: 680px) {
  .xoo-cp-modal .before-modal {
    margin-top: -190%;
  }

  .xoo-cp-container .panam_addbtn {
    margin-right: 18rem;
  }

  .before-modal h2 {
    font-size: 2em;
  }

  .before-modal h4 {
    font-size: 1em;
  }

  .before-upsells div.border h2 {
    font-size: 1.5em;
  }

  .add_title {
    font-size: 16px;
  }
}

input[type="number"].xoo-cp-qty {
  background: #fff;
}

/**
 * Nav Menu - Shop
 * Added on: 28.01.2021
 */
.btn-shop a {
  padding: 27px 0;
}

/**
 * Home Page Top Banners
 * Added on: 28.01.2021
 */
@media only screen and (max-width: 980px) {
  .shop-by-goal-container .programs {
    margin: 11% 4%;
    text-align: -moz-right;
    text-align: -webkit-right;
    height: fit-content;
  }

  .fitbody-tea-img-container img,
  .fitbody-tea-img-container-left img {
    margin: 30px 0;
  }
}

.add-to-cart-link {
  font-size: 12px;
  color: #ED1C24;
}

@media only screen and (max-width: 680px) {
  .prod_content a.btn.panam_addbtn.btn-color-primary {
    display: none;
  }
}

@media only screen and (min-width: 681px) {
  .prod_content .add_title .add-to-cart-link {
    display: none;
  }
}

/**
 * Minor Fixes
 * Added on: 31.01.2021
 */

/* Percentages */
.shop_section .salestrip {
  padding-top: 10px;
}

.salestrip {
  padding-top: 23px;
}

/* Single Product - space between prices */
.panam_saleprice-amount {
  margin-left: 15px;
}

#term-41 .products .product .product__wrapper,
#term-44 .products .product .product__wrapper,
#term-69 .products .product .product__wrapper,
#term-120 .products .product .product__wrapper {
  height: 85%
}

@media only screen and (max-width: 680px) {

  /* Subscription Form button */
  button.needsclick.go332817621.kl-private-reset-css-Xuajs1 {
    line-height: 2.7 !important;
  }

  /* Percentages */
  .salestrip {
    padding-top: 15px;
  }

  /* Bundles */
  #term-31 .products .product {
    margin: 30px 5px;
    width: 100%;
    max-width: 45% !important;
  }

  #term-120 .products .product {
    margin: 30px 5px;
    width: 100%;
    max-width: 45% !important;
  }

  .product__wrapper .salestrip {
    top: 30px !important;
  }

  .product__wrapper h5.product__under_title {
    font-size: 14px;
  }

  #term-31 .products .product .product__price {
    font-size: 18px !important;
  }

  #term-120 .products .product .product__price {
    font-size: 18px !important;
  }

  .products .product .product__price {
    text-align: center;
    display: block;
  }

  #term-41 .products .product .product__wrapper,
  #term-44 .products .product .product__wrapper,
  #term-69 .products .product .product__wrapper,
  #term-120 .products .product .product__wrapper {
    height: 90%
  }


  .carousel-slide-product2 {
    margin: 40px 23px;
  }
}

/**
 * Minor Fixes
 * Added on: 18.02.2022
 */

/* Product Prices for PopUp */
.prod_content .price {
  font-size: 16px;
}

/* Add To Cart for PopUp */
.add-to-cart-link {
  font-size: 12px;
  padding: 5px;
  border: 1px solid #ED1C24;
  ;
  background: #ED1C24;
  ;
  color: white;
  display: block;
  text-align: center;
  width: 100px;
}

.accent-orange {
  border-left: 2px solid orange;
  padding-left: 20px;
}

.accent-green {
  border-left: 2px solid green;
  padding-left: 20px;
}

.woocommerce-form-coupon-toggle .woocommerce-info {
  background: #0069aa;
  padding: 10px;
  color: white;
}

.section-checkout form.checkout_coupon p:first-child {
  margin-bottom: 8px;
  color: white;
  font-size: 14px;
}

.section-checkout form.checkout_coupon {
  margin-bottom: 30px;
  background-color: #0069aa;
  padding: 10px;
}

.section-checkout form.checkout_coupon .button {
  text-transform: uppercase;
  background-color: white;
  color: #1c1c1c;
  border: 1px solid #1c1c1c;
  border-radius: 5px;
  padding: 15px;
  line-height: 1;
  -webkit-transition: color .3s, background .3s;
  -o-transition: color .3s, background .3s;
  transition: color .3s, background .3s;
  font-size: 12px;
  font-weight: bold;
}

.section-checkout form .checkout__main {
  width: 100%;
  padding-right: 0;
}


/* new upsale design */
@media(max-width:550px) {
  .main_title_wrap .var_txt {
    position: absolute;
    top: 17px;
    left: 16px;
    width: 195px;
    font-size: 10px;
  }

  .plans-description {
    margin-bottom: 42px;
  }

  .main_title_wrap .var_txt>span[class^="price old_price"] {
    font-size: 14px;
  }

  .product-single .product__actions .price {
    font-size: 14px;
  }

  .variable_img {
    position: absolute;
    max-width: 70%;
    width: 23%;
    right: 0;
    margin-right: 4px;
    top: 0px;
  }

  .variation_title {
    margin-left: 0 !important;
    font-size: 14px;
    font-weight: 700;
  }

  .main_title_wrap .price {
    padding-left: 0px !important;
  }
}

.form-row-wide,
.form-row-first,
.form-row-last {
  clear: both !important;
  float: none !important;
  width: 100% !important;
  margin-right: 0 !important;
}

@media (min-width: 768px) {
  .form-row-first {
    width: 47% !important;
    float: left !important;
    margin-right: 5.8% !important;
    clear: both !important;
  }

  .form-row-last {
    width: 47% !important;
    float: right !important;
    margin-right: 0 !important;
    clear: none !important;
  }
}