/**
 Theme Name:   Responsive Child Theme
 description: >-
   A child theme of the Responsive theme
 Author:       Sagar
 Template:     responsive
 Version:      1.0.0
*/

/* ====================================== */

/* Style Guide Variables */
:root {
  /* -- FONTS -- */
  --font-family-primary: "Open Sans", sans-serif;

  /* Weights (Assuming Standard Numerical Values) */
  --font-weight-regular: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Letter Spacing */
  --letter-spacing-normal: 0%;

  /* PW 10/Regular */
  --pw10-regular-font-size: 10px;
  --pw10-regular-line-height: 16px;
  --pw10-regular-font-weight: var(--font-weight-regular);

  /* PW 12/Regular */
  --pw12-regular-font-size: 12px;
  --pw12-regular-line-height: 16px;
  --pw12-regular-font-weight: var(--font-weight-regular);

  /* PW 12/SemiBold */
  --pw12-semibold-font-size: 12px;
  --pw12-semibold-line-height: 16px;
  --pw12-semibold-font-weight: var(--font-weight-semibold);

  /* PW 14/Regular */
  --pw14-regular-font-size: 14px;
  --pw14-regular-line-height: 20px;
  --pw14-regular-font-weight: var(--font-weight-regular);

  /* PW 14/SemiBold */
  --pw14-semibold-font-size: 14px;
  --pw14-semibold-line-height: 20px;
  --pw14-semibold-font-weight: var(--font-weight-semibold);

  /* PW 16/Regular */
  --pw16-regular-font-size: 16px;
  --pw16-regular-line-height: 24px;
  --pw16-regular-font-weight: var(--font-weight-regular);

  /* PW 16/SemiBold */
  --pw16-semibold-font-size: 16px;
  --pw16-semibold-line-height: 24px;
  --pw16-semibold-font-weight: var(--font-weight-semibold);

  /* PW 16/Bold */
  --pw16-bold-font-size: 16px;
  --pw16-bold-line-height: 24px;
  --pw16-bold-font-weight: var(--font-weight-bold);

  /* PW 18/SemiBold */
  --pw18-semibold-font-size: 18px;
  --pw18-semibold-line-height: 28px;
  --pw18-semibold-font-weight: var(--font-weight-semibold);

  /* PW 18/Bold */
  --pw18-bold-font-size: 18px;
  --pw18-bold-line-height: 28px;
  --pw18-bold-font-weight: var(--font-weight-bold);

  /* PW 24/Bold */
  --pw24-bold-font-size: 24px;
  --pw24-bold-line-height: normal; /* 'Automatic' typically means let the browser decide */
  --pw24-bold-font-weight: var(--font-weight-bold);

  /* PW 32/Bold */
  --pw32-bold-font-size: 32px;
  --pw32-bold-line-height: 44px;
  --pw32-bold-font-weight: var(--font-weight-bold);

  /* -- COLORS -- */
  /* Primary */
  --color-primary-cta: #c9321a;

  /* Neutral (Tailwind Naming Convention) */
  --color-neutral-50: #fafafa;
  --color-neutral-100: #f5f5f5;
  --color-neutral-200: #e5e5e5;
  --color-neutral-300: #d4d4d4;
  --color-neutral-400: #a3a3a3;
  --color-neutral-500: #737373;
  --color-neutral-600: #525252;
  --color-neutral-700: #404040;
  --color-neutral-800: #262626;
  --color-neutral-900: #171717;
  --color-white: #ffffff;
  --color-black: #000000;

  /* Amber (Tailwind Naming Convention) */
  --color-amber-50: #fffbeb;
  --color-amber-100: #fef3c7;
  --color-amber-200: #fde68a;
  --color-amber-300: #fcd34d;
  --color-amber-400: #fbbf24;
  --color-amber-500: #f59e0b;
  --color-amber-600: #d97706;
  --color-amber-700: #b45309;
  --color-amber-800: #92400e;
  --color-amber-900: #78350f;

  /* Green (Tailwind Naming Convention) */
  --color-green-50: #f0fdf4;
  --color-green-100: #dcfce7;
  --color-green-200: #bbf7d0;
  --color-green-300: #86efac;
  --color-green-400: #4ade80;
  --color-green-500: #22c55e;
  --color-green-600: #16a34a;
  --color-green-700: #15803d;
  --color-green-800: #166534;
  --color-green-900: #14532d;

  /* -- SEMANTIC COLOR MAPPINGS (Examples - Adjust based on actual usage) -- */
  --color-text-body: var(--color-neutral-700);
  --color-text-heading: var(--color-neutral-900);
  --color-text-subtle: var(--color-neutral-500);
  --color-text-link: var(--color-primary-cta);
  --color-text-link-hover: var(--color-amber-800); /* Example hover */
  --color-text-on-primary: var(--color-white);
  --color-text-error: var(--color-primary-cta);
  --color-text-success: var(--color-green-700);

  --color-background-body: var(--color-neutral-100);
  --color-background-card: var(--color-white);
  --color-background-subtle: var(--color-neutral-50);
  --color-background-info: var(--color-amber-50);
  --color-background-success: var(--color-green-50);

  --color-border-default: var(--color-neutral-300);
  --color-border-subtle: var(--color-neutral-200);
  --color-border-input: var(--color-neutral-400);
  --color-border-error: var(--color-primary-cta);

  --color-button-primary-bg: var(--color-primary-cta);
  --color-button-primary-text: var(--color-white);
  --color-button-primary-hover-bg: var(--color-amber-800); /* Example */

  --color-button-secondary-bg: var(--color-white);
  --color-button-secondary-text: var(--color-neutral-800);
  --color-button-secondary-border: var(--color-neutral-800);
  --color-button-secondary-hover-bg: var(--color-neutral-100); /* Example */

  --color-button-accent-bg: var(--color-amber-400); /* Example: Yellow button */
  --color-button-accent-text: var(--color-neutral-900);
  --color-button-accent-hover-bg: var(--color-amber-500);
}

  body {
    font-family: "Open Sans", sans-serif;
  }

  .woocommerce-order-received {
    display: flex;
    flex-direction: column;
  }

  /*Widget page css*/
  .commisson-box-widget {
    margin-top: 2%;
  }
  /*Widget page css*/
  #topHead {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    background-color: #000000;
    height: 30px;
    width: 100%;
    line-height: 30px;
    color: #ffffff;
  }
  .black-top-header-links a,
  .black-top-header-links span {
    font-size: 14px;
    color: #ffffff;
    padding: 0 0 0 20px;
  }
  .black-top-header-links a:hover {
    text-decoration: none;
    color: #ffffff;
  }
  .error_msg {
    font-size: 14px;
    color: #e50000;
    margin-left: 20px;
    font-weight: bold;
  }
  .div-inline > a {
    border-right: 1px solid rgba(255, 255, 255, 0.6);
    height: 2px;
    padding: 0 10px;
  }

  .div-inline > span {
    border-right: 1px solid rgba(255, 255, 255, 0.6);
    height: 2px;
    padding: 0 10px;
  }

  /*Order received page referral link */
  .xlarge-6.xlarge-centered.large-8.large-centered.columns.referral-link {
    float: left;
  }
  .xlarge-6.xlarge-centered.large-8.large-centered.columns.woo-order-deatails {
    float: left;
  }
  .referral-link-head {
    padding-top: 80px;
  }
  .xlarge-6.xlarge-centered.large-8.large-centered.columns.referral-link.text-left
    > input {
    float: left;
    width: 80% !important;
  }
  .xlarge-6.xlarge-centered.large-8.large-centered.columns.referral-link.text-left
    > strong
    > input {
    float: left;
    width: 80% !important;
  }
  .xlarge-6.xlarge-centered.large-8.large-centered.columns.woo-order-deatails
    > header
    h2 {
    padding-top: 30px;
  }

  /* End-Order received page referral link */
  .div-inline > a:last-child {
    border: medium none;
  }
  /*css for submit deal page*/
  #submit_deal {
    /*margin-top:25px;
	 margin-bottom:25px;*/
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0px 1px 10px #999;
  }
  .submit_deal_heading {
    margin: 24px auto;
    text-align: center;
    width: 400px;
    padding: 10px 0;
    font-size: 18px;
    font-family: oswald;
    border-bottom: 1px dashed #000;
    color: #c14343;
  }
  .submit_thanx {
    margin: 24px auto;
    text-align: center;
    width: 600px;
    padding: 10px 0;
    color: #000;
  }
  .submit_text {
    margin: 24px auto;
    text-align: center;
    width: 600px;
    padding: 10px 0;
    color: #000;
  }
  .submit_div {
    padding: 12px;
    margin-right: 100px;
  }
  img.hover,
  img.other {
    width: 436px;
  }

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

  /* ------------------  All deals Category Navigation ----------------------- */

  .topsp {
    margin-top: 10px;
  }
  h1.main-category-title {
    padding: 60px;
    font-size: 32px;
    font-family: "Montserrat", sans-serif;
    color: #000;
  }
  #category_pills {
    clear: both;
  }
  .cat-item a {
    background-color: transparent;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    color: #000;
    font-size: 16px;
    padding: 8px 15px;
  }

  .cat-item a:hover,
  .cat-item a:active {
    background-color: #000;
    border-radius: 4px;
    color: #fff;
    padding: 8px 15px;
  }

  .current a:active {
    background-color: #000 !important;
    border-radius: 4px;
    color: #fff;
    padding: 8px 15px;
  }
  /* DatePicker Container */
  .ui-datepicker {
    width: 216px;
    height: auto;
    margin: 5px auto 0;
    font: 9pt Arial, sans-serif;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  }
  .ui-datepicker a {
    text-decoration: none;
  }
  /* DatePicker Table */
  .ui-datepicker table {
    width: 100%;
  }
  .ui-datepicker-header {
    background: url("images/dark_leather.png") repeat 0 0 #000;
    color: #e0e0e0;
    font-weight: bold;
    -webkit-box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, 2);
    -moz-box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, 0.2);
    box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, 0.2);
    text-shadow: 1px -1px 0px #000;
    filter: dropshadow(color=#000, offx=1, offy=-1);
    line-height: 30px;
    border-width: 1px 0 0 0;
    border-style: solid;
    border-color: #111;
  }
  .ui-datepicker-title {
    text-align: center;
  }
  .ui-datepicker-prev,
  .ui-datepicker-next {
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    cursor: pointer;
    background-image: url("images/arrow.png");
    background-repeat: no-repeat;
    line-height: 600%;
    overflow: hidden;
  }
  .ui-datepicker-prev {
    float: left;
    background-position: center -30px;
  }
  .ui-datepicker-next {
    float: right;
    background-position: center 0px;
  }
  .ui-datepicker thead {
    background-color: #f7f7f7;
    background-image: -moz-linear-gradient(top, #f7f7f7 0%, #f1f1f1 100%);
    background-image: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(0%, #f7f7f7),
      color-stop(100%, #f1f1f1)
    );
    background-image: -webkit-linear-gradient(top, #f7f7f7 0%, #f1f1f1 100%);
    background-image: -o-linear-gradient(top, #f7f7f7 0%, #f1f1f1 100%);
    background-image: -ms-linear-gradient(top, #f7f7f7 0%, #f1f1f1 100%);
    background-image: linear-gradient(top, #f7f7f7 0%, #f1f1f1 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#f1f1f1',GradientType=0 );
    border-bottom: 1px solid #bbb;
  }
  .ui-datepicker th {
    text-transform: uppercase;
    font-size: 6pt;
    padding: 5px 0;
    color: #666666;
    text-shadow: 1px 0px 0px #fff;
    filter: dropshadow(color=#fff, offx=1, offy=0);
  }
  .ui-datepicker tbody td {
    padding: 0;
    border-right: 1px solid #bbb;
  }
  .ui-datepicker tbody td:last-child {
    border-right: 0px;
  }
  .ui-datepicker tbody tr {
    border-bottom: 1px solid #bbb;
  }
  .ui-datepicker tbody tr:last-child {
    border-bottom: 0px;
  }
  .ui-datepicker td span,
  .ui-datepicker td a {
    display: inline-block;
    font-weight: bold;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #666666;
    text-shadow: 1px 1px 0px #fff;
    filter: dropshadow(color=#fff, offx=1, offy=1);
  }
  .ui-datepicker-calendar .ui-state-default {
    background: #ededed;
    background: -moz-linear-gradient(top, #ededed 0%, #dedede 100%);
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(0%, #ededed),
      color-stop(100%, #dedede)
    );
    background: -webkit-linear-gradient(top, #ededed 0%, #dedede 100%);
    background: -o-linear-gradient(top, #ededed 0%, #dedede 100%);
    background: -ms-linear-gradient(top, #ededed 0%, #dedede 100%);
    background: linear-gradient(top, #ededed 0%, #dedede 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#dedede',GradientType=0 );
    -webkit-box-shadow: inset 1px 1px 0px 0px rgba(250, 250, 250, 0.5);
    -moz-box-shadow: inset 1px 1px 0px 0px rgba(250, 250, 250, 0.5);
    box-shadow: inset 1px 1px 0px 0px rgba(250, 250, 250, 0.5);
  }
  .ui-datepicker-calendar .ui-state-hover {
    background: #f7f7f7;
  }
  .ui-datepicker-calendar .ui-state-active {
    background: #6eafbf;
    -webkit-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    color: #e0e0e0;
    text-shadow: 0px 1px 0px #4d7a85;
    filter: dropshadow(color=#4d7a85, offx=0, offy=1);
    border: 1px solid #55838f;
    position: relative;
    margin: -1px;
  }
  .ui-datepicker-unselectable .ui-state-default {
    background: #f4f4f4;
    color: #b4b3b3;
  }
  .ui-datepicker-calendar td:first-child .ui-state-active {
    width: 29px;
    margin-left: 0;
  }
  .ui-datepicker-calendar td:last-child .ui-state-active {
    width: 29px;
    margin-right: 0;
  }
  .ui-datepicker-calendar tr:last-child .ui-state-active {
    height: 29px;
    margin-bottom: 0;
  }
  /**Checkout - order page Design **/

  .limittime {
    padding: 0% 0 1% 5%;
    color: #333333;
    font-weight: normal;
    font-size: 22px;
  }
  .dealchecktitle {
    padding: 0 5% 1% 5%;
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
    color: #1c8c94;
  }

  .checktxt {
    padding: 0 5% 1% 5%;
    font-size: 17px;
    line-height: 24px;
    font-weight: normal;
  }
  .coupon {
    padding: 0 5% 1% 5%;
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
    color: #cb3c18;
    font-weight: bold;
  }

  .imgheight {
    margin-top: 10%;
    -ms-transform: rotate(-5deg); /* IE 9 */
    -webkit-transform: rotate(-5deg); /* Safari */
    transform: rotate(-5deg);
    border: 5px solid #fff;
    box-shadow: 0px 1px 7px #999;
  }

  .offer .imgheight {
    margin-left: 6%;
  }
  #btn-buy-check {
    background-color: #c9321a;
    height: 49px;
    line-height: 29px;
    text-align: center;
    border-radius: 4px;
    border: 0;
    padding: 10px 10px;
    color: white;
    font-size: 18px;
    font-family: "NotoSans", Sans-serif;
  }
  .buynowbutton-check {
    margin: 6% 25%;
  }
  .numbers {
    border-style: solid; /* options are none, dotted, dashed, solid, double, groove, ridge, inset, outset */
    border-width: 0.5px;
    border-color: #cccccc; /* change the border color using the hexadecimal color codes for HTML */
    background: #ffffff; /* change the background color using the hexadecimal color codes for HTML */
    padding: 4px 0px;
    width: 55px;
    text-align: center;
    font-family: Arial;
    font-size: 16px;
    font-weight: bold; /* options are normal, bold, bolder, lighter */
    font-style: normal; /* options are normal or italic */
    color: #000; /* change color using the hexadecimal color codes for HTML */
  }
  .hrtitle {
    /* the styles below will affect the title under the numbers, i.e., “Days”, “Hours”, etc. */
    border: none;
    padding: 0px;
    width: 55px;
    text-align: center;
    font-family: Arial;
    font-size: 10px;
    font-weight: normal; /* options are normal, bold, bolder, lighter */
    color: #000000; /* change color using the hexadecimal color codes for HTML */
    background: transparent; /* change the background color using the hexadecimal color codes for HTML */
  }
  #table {
    border: 1px solid #000; /* options are none, dotted, dashed, solid, double, groove, ridge, inset, outset */
    margin: 30% auto 0 auto;
    position: relative; /* leave as "relative" to keep timer centered on your page, or change to "absolute" then change the values of the "top" and "left" properties to position the timer */
    top: 0px; /* change to position the timer */
    left: 0px; /* change to position the timer; delete this property and it's value to keep timer centered on page */
    width: 130px;
    max-height: 45px;
    padding: 10px;
  }
  #timer_hide > p {
    font-size: 16px;
  }
  #expire_msg {
    color: black;
    font-weight: bold;
    text-align: center;
  }
  .thankyoumsg {
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    font-family: "Courgette", cursive;
    color: #cb3c18;
    font-weight: normal;
  }
  .space {
    margin-bottom: 40px;
  }
  #timer_expire > p {
    font-size: 16px;
  }
  /****Halloween Page ****/

  .bg-halloween {
    background: #001c2d url(images/landing-page.gif) no-repeat;
    background-position: top center;
    background-size: cover;
    min-height: 800px;
  }
  .spect {
    margin: 0px;
  }
  p.credits {
    color: #ffffff;
    font-size: 23px;
    margin-top: -6px;
  }
  p.credits_loggedout {
    color: #ffffff;
    font-size: 20px;
  }

  .top_padding {
    padding: 90px 10px 20px;
  }
  .nano .content {
    overflow: hidden;
  }
  .edit_button_class {
    position: relative;
    bottom: 3px;
    margin-left: 0;
    margin-top: 12px;
  }
  /**** 404 Page *****/

  .bg-404 {
    background: #000;
    background: url(images/404-Design-Page.jpg) no-repeat;
    width: 100%;
  }
  .error-404 h1.page-title {
    font-size: 25px;
    margin-bottom: 10px;
    margin-top: 32%;
    color: #bfc0c9;
  }
  .error-404-text,
  .no-results-text {
    font-size: 1.5rem;
    color: #bfc0c9;
  }

  /***** Refer a Friend ******/
  .upper-padding {
    margin-top: 70px;
  }
  .background-img {
    background-color: #000000;
    background-image: url(images/refer-a-friend-page-bg.jpg);
    height: auto;
    padding: 30px 0;
  }
  .sum-deal-background {
    background-color: #f4f4f4;
    height: auto;
    padding: 30px 0;
  }
  .refer-title {
    color: #ffffff;
    text-align: center;
    font-family: "Open Sans", sans-serif;
  }
  .invite {
    color: #ffffff;
    font-family: "Open Sans", sans-serif;
    text-align: center;
    font-size: 18px;
  }
  .invite-link {
    font-size: 18px;
    color: #ffffff;
    font-family: "Open Sans", sans-serif;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 0;
  }
  .sp_col {
    margin-top: 15px;
  }
  .space-refer {
    padding: 35px 40px;
  }
  input[type="text"].invitelinktext {
    width: 50%;
    margin: 0 auto;
    font-weight: normal;
  }
  .label-link {
    color: #ffffff;
    float: right;
  }
  .invitelinktext {
    font-weight: normal;
    font-size: 16px;
    float: left;
  }
  .rf-txt {
    font-size: 18px;
    text-align: center;
    font-family: "Open Sans", sans-serif;
  }
  .sm-invite {
    padding-top: 25px;
  }

  .account-affiliate-corner {
    color: #222222;
    margin-bottom: 22px;
    border-bottom: 1px solid;
    border-bottom-color: rgba(34, 34, 34, 0.15);
  }
  .thankyoupage-download-detail-info {
    padding: 1%;
    border: 1.5px dashed #cbcbcb;
    margin-top: 2%;
    border-color: black;
    text-align: left;
    font-weight: initial;
  }
  .purchase-download.download-icon {
    margin-bottom: 1.5%;
  }
  .purchase-download.download-icon a {
    margin-bottom: 1.1%;
  }
  .coupon {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 24px 0;
  }

  #coupon-error-notice {
    margin-top: 0.5rem !important;
  }

  .page.woocommerce-cart .woocommerce .coupon button.button:hover {
    background-color: #972615 !important;
  }
  .woocommerce-add-payment-method .woocommerce {
    width: 75%;
    margin: auto;
  }
  .woocommerce-add-payment-method .woocommerce #payment #place_order,
  .woocommerce-page #payment #place_order {
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .class-materials-container-heading {
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    font-family: Open Sans;
    margin-bottom: 20px;
  }

  .masterclass-sticky-add-to-cart .sticky-cart-left {
    display: flex;
    width: 66%;
  }
  .masterclass-sticky-add-to-cart .sticky-cart-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 20px;
    width: 38%;
  }
  .single-product .masterclass-sticky-add-to-cart .add_to_cart_button {
    font-size: 18px !important;
    font-weight: 600;
    line-height: 1.5em;
    align-items: center;
    padding: 7px 20px !important;
    display: inline-flex;
    border-radius: 4px !important;
  }
  .masterclass-sticky-add-to-cart .cta-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1140px;
    align-items: center;
    padding-bottom: 32px;
  }
  .masterclass-below-sticky-add-to-cart {
    padding-bottom: 0px;
  }

  /*New masterclass changes- start*/
  .pw-sticky-cart-product-title {
    max-width: 95%;
  }
  p.comment-form-email {
    margin-top: 20px !important;
  }
  .g-recaptcha {
    margin: 30px 0;
  }
  .product_cat-new-masterclass .comment-form-rating {
    display: flex;
    column-gap: 10px;
  }
  button.cart-discount-btn {
    padding: 5px 12px !important;
    font-size: 14px !important;
    line-height: 20px !important;
    font-weight: 600 !important;
    background-color: #c9321a !important;
    color: #fff !important;
    border-radius: 0 6px 6px 0 !important;
    height: 2.25rem;
  }
  #coupon_code::placeholder {
    color: #52525b;
    font-size: 14px;
    line-height: 16px;
  }
  .woocommerce table.cart .product-thumbnail img {
    border-radius: 6px;
  }
  .woocommerce .cart-buttons a.button.alt,
  .woocommerce .continue_shop_btn a.button {
    padding: 12px !important;
  }
  .woocommerce-cart table.shop_table,
  .cart_right_wrapper {
    border-color: #dbdbdb !important;
  }
  /* .woocommerce-message::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background-image: url("https://www.photowhoa.com/wp-content/themes/responsive-child/images/checkmark.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-right: 8px;
  vertical-align: middle;
} */

  .woocommerce-message::before {
    display: none !important;
    content: none !important;
  }
  .woocommerce-message {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .woocommerce table.shop_table .cart_item img {
    border-radius: 6px;
  }
  td.product-thumbnail {
    padding: 24px 20px 24px 24px !important;
  }
  .woocommerce-checkout .woocommerce table.shop_table td {
    /* padding-left: 0px; */
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .woocommerce-orders-table--subscriptions thead th {
    width: 17%;
  }

  .woocommerce-checkout .pw-plus-banner-image {
    border-radius: 6px;
  }
  .woocommerce-order-details a.download-btn {
    padding: 4px 20px;
    border: 1px solid #c9321a;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
  }
  .woocommerce-order-details .download-btn:hover {
    border-color: #972615;
  }
  /* New masterclass changes -end*/

  .woocommerce .product_cat-new-masterclass #review_form #respond textarea {
    width: 100% !important;
    border-radius: 6px;
  }
  .product_cat-new-masterclass input#author,
  .product_cat-new-masterclass input#email {
    border-radius: 6px;
    margin-top: 8px;
  }
  .single-product .product_cat-new-masterclass .comment-form-email,
  .single-product .product_cat-new-masterclass .comment-form-author {
    width: 48.4% !important;
    margin-top: 0 !important;
  }
  .product_cat-new-masterclass .comment-form-rating {
    margin-top: 0.5em;
  }
  /*START MEDIA QUERY*/

  /********Media Query 780px ***********/

  @media screen and (min-width: 760px) and (max-width: 980px) {
    .class-materials-container-heading {
      font-size: 26px;
      line-height: 40px;
    }
    #gift_text_field {
      background-color: #000000;
      background: url(images/gift-bg-img-blk-tablet.jpg) no-repeat;
      background-position: center top;
      padding: 0;
      color: #fff;
      margin-top: 0;
    }
    #table {
      border: 1px solid #000;
      left: 0;
      margin: 10% auto 0;
      max-height: 45px;
      padding: 10px;
      position: relative;
      top: 0;
      width: 130px;
    }
    #btn-buy-check {
      font-size: 21px;
      padding: 13px 14px;
    }
    .buynowbutton-check {
      margin: 6% 35% 0 40%;
    }
    .imgheight {
      border: 5px solid #fff;
      box-shadow: 0 1px 7px #999;
      margin: 10% 10% 0 30%;
      transform: rotate(-5deg);
    }
    .site-tools ul li:nth-child(-n + 2) {
      cursor: auto;
      display: none;
    }
    .label-link {
      width: 100%;
      text-align: center;
    }
    .invitelinktext {
      width: 100%;
      text-align: center;
    }
    input[type="text"].invitelinktext {
      width: 100%;
      text-align: center;
      margin: 0 auto;
      font-weight: normal;
    }
    .woocommerce-cart .coupon_code_wrapper .update_and_checkout .update_cart {
      float: right !important;
      margin-top: -4.5em !important;
      width: 55% !important;
    }
    .woocommerce-cart
      .cart_left_wrapper
      .coupon_code_wrapper
      .update_and_checkout {
      float: right !important;
    }
    .woocommerce-cart .coupon_code_wrapper .apply_coupon {
      float: none !important;
      /* width: 26% !important; */
    }
  }
}

/********Media Query 640px ***********/

@media screen and (max-width: 640px) {
  .bg-404 {
    background: url(images/404-Design-Page-mobile-640.jpg);
    width: 100%;
    color: #000;
  }
  .content-area {
    padding: 0 0 0 0;
  }
  .error-404 h1.page-title {
    font-size: 22px;
    margin-bottom: 10px;
    margin-top: 40%;
    color: #bfc0c9;
    line-height: 30px;
  }
  .error-404-text,
  .no-results-text {
    font-size: 18px;
    color: #bfc0c9;
  }
  .label-link {
    width: 100%;
    text-align: center;
  }
  .invitelinktext {
    width: 100%;
    text-align: center;
  }
  input[type="text"].invitelinktext {
    width: 100%;
    margin: 0 auto;
    font-weight: normal;
  }
}
/********Media Query 480px ***********/

@media screen and (max-width: 480px) {
  /* .woocommerce-page ul.products.columns-4 li.product, .woocommerce ul.products.columns-4 li.product{
		height: auto;
	} */
  .bg-404 {
    background: url(images/404-Design-Page-mobile-4.jpg);
    width: 100%;
    color: #000;
  }
  .content-area {
    padding: 0 0 0 0;
  }
  .error-404 h1.page-title {
    font-size: 22px;
    margin-bottom: 10px;
    margin-top: 66%;
    color: #bfc0c9;
    line-height: 30px;
  }
  .error-404-text,
  .no-results-text {
    font-size: 18px;
    color: #bfc0c9;
  }
  .label-link {
    width: 100%;
    text-align: center;
  }
  .invitelinktext {
    width: 100%;
    text-align: center;
  }
  input[type="text"].invitelinktext {
    width: 100%;
    margin: 0 auto;
    font-weight: normal;
  }
  #pw-custom-container-right form label {
    display: block;
  }
  #pw-add-cart-right {
    margin-top: 16%;
  }
  .instructor-details-container {
    flex-wrap: wrap;
  }
  .instructor-info {
    max-width: 100% !important;
  }
  .instructor-details-container {
    justify-content: center;
  }
  .instructor-above-heading {
    text-align: center;
  }
  .instrucotr-name {
    text-align: center;
  }
  .product_cat-new-masterclass form#commentform {
    width: 90% !important;
  }
  .industry-icons-section .e-con-inner,
  .real-skills-section .e-con-inner {
    width: 90% !important;
  }
  .single-courses .tutor-mt-40 {
    margin-top: 0;
  }
  .single-courses .tutor-mb-44 {
    margin-bottom: 0;
  }
  .single-courses .tutor-mt-32 {
    margin-top: 0;
  }
  .single-courses .tutor-mt-24 {
    margin-top: 0;
  }
  .single-courses .tutor-wrap {
    padding-top: 20px;
  }
}
/********Media Query 414px ***********/

@media screen and (max-width: 414px) {
  .black-top-header-links a,
  .black-top-header-links span {
    color: #ffffff;
    font-size: 14px;
  }
  .site-tools ul li:nth-child(-n + 2) {
    cursor: auto;
    display: none;
  }
  .bg-404 {
    background: url(images/404-Design-Page-mobile-414.jpg) #373737 no-repeat;
    width: 100%;
    color: #000;
  }
  .content-area {
    padding: 0 0 0 0;
  }
  .error-404 h1.page-title {
    font-size: 25px;
    margin-bottom: 10px;
    margin-top: 66%;
    color: #bfc0c9;
  }
  .error-404-text,
  .no-results-text {
    font-size: 1.5rem;
    color: #bfc0c9;
  }
  .label-link {
    width: 100%;
    text-align: center;
  }
  .invitelinktext {
    width: 100%;
    text-align: center;
  }
  input[type="text"].invitelinktext {
    width: 100%;
    margin: 0 auto;
    font-weight: normal;
  }
}
/********Media Query 375px ***********/

@media screen and (max-width: 375px) {
  .black-top-header-links a,
  .black-top-header-links span {
    color: #ffffff;
    font-size: 14px;
  }
  .site-tools ul li:nth-child(-n + 2) {
    cursor: auto;
    display: none;
  }
  .bg-404 {
    background: url(images/404-Design-Page-mobile-360.jpg);
    width: 100%;
    color: #000;
  }
  .content-area {
    padding: 0 0 0 0;
  }
  .error-404 h1.page-title {
    font-size: 25px;
    margin-bottom: 10px;
    margin-top: 66%;
    color: #bfc0c9;
  }
  .error-404-text,
  .no-results-text {
    font-size: 1.5rem;
    color: #bfc0c9;
  }
  .label-link {
    width: 100%;
    text-align: center;
  }
  .invitelinktext {
    width: 100%;
    text-align: center;
  }
  input[type="text"].invitelinktext {
    width: 100%;
    margin: 0 auto;
    font-weight: normal;
  }
}
/********Media Query 360px ***********/

@media screen and (max-width: 360px) {
  .black-top-header-links a,
  .black-top-header-links span {
    color: #ffffff;
    font-size: 14px;
  }
  .site-tools ul li:nth-child(-n + 2) {
    cursor: auto;
    display: none;
  }
  .bg-404 {
    background: url(images/404-Design-Page-mobile-360.jpg);
    width: 100%;
    color: #000;
  }
  .content-area {
    padding: 0 0 0 0;
  }
  .error-404 h1.page-title {
    font-size: 25px;
    margin-bottom: 10px;
    margin-top: 66%;
    color: #bfc0c9;
  }
  .error-404-text,
  .no-results-text {
    font-size: 1.5rem;
    color: #bfc0c9;
  }
  .label-link {
    width: 100%;
    text-align: center;
  }
  .invitelinktext {
    width: 100%;
    text-align: center;
  }
  input[type="text"].invitelinktext {
    width: 100%;
    margin: 0 auto;
    font-weight: normal;
  }
}
/********Media Query 320px ***********/

@media screen and (max-width: 320px) {
  .black-header-links {
  }
  .black-top-header-links a,
  .black-top-header-links span {
    font-size: 7px;
    color: #ffffff;
  }
  .site-tools ul li:nth-child(-n + 2) {
    cursor: auto;
    display: none;
  }
  #btn-buy-check {
    font-size: 17px;
    padding: 10px 10px;
  }
  .bg-404 {
    background: url(images/404-Design-Page-mobile-320.jpg);
    width: 100%;
    color: #000;
  }
  .content-area {
    padding: 0 0 0 0;
  }
  .error-404 h1.page-title {
    font-size: 22px;
    margin-bottom: 10px;
    margin-top: 66%;
    color: #bfc0c9;
    line-height: 30px;
  }
  .error-404-text,
  .no-results-text {
    font-size: 18px;
    color: #bfc0c9;
  }
  .label-link {
    width: 100%;
    text-align: center;
  }
  .invitelinktext {
    width: 100%;
    text-align: center;
  }
  input[type="text"].invitelinktext {
    width: 100%;
    margin: 0 auto;
    font-weight: normal;
  }
}

/* Added by Prasada - 20 Feb 2019*/
#subscribeform label {
  display: none;
}
#newsletter_email {
  width: 285px;
}

#subscribeform #newsletter_subscribe {
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 10px !important;
  position: relative;
  top: 0;
  min-width: 150px !important;
}

#subscribeform div {
  float: left;
  width: 60%;
  position: relative;
  left: 20%;
}

#subscribeform {
  position: relative;
  top: 10px;
}
.hidden {
  opacity: 0;
}

#subscribeform .woocommerce_message {
  text-align: center;
  padding-top: 0 !important;
}
@media only screen and (min-width: 56.3125em) {
  woocommerce .view-order .shop_table.order_details tfoot th {
    padding-left: 1.4%;
  }
}
#topbutton {
  position: fixed;
  display: none;
  height: 45px;
  width: 45px;
  line-height: 59px;
  right: 15px;
  bottom: 35px;
  z-index: 1;
  background: #000000;
  border-radius: 2px;
  text-decoration: none;
  color: #fff;
  text-align: center;
}
#topbutton .fa-2x {
  font-size: 2.6em !important;
  font-weight: bold;
}
#site-footer a#topbutton {
  color: #fff;
}
#topbutton:after {
  content: "";
}
/* Submit deal */
.requiredfield {
  color: #ff0000;
  margin-right: 2px;
}
section#submit-deal div {
  margin-top: 20px;
}
.show_error_msg {
  border: 1px solid red !important;
}
@media screen and (max-width: 760px) {
  .label-link {
    text-align: center;
    width: 100%;
  }
    input[type="text"].invitelinktext {
    text-align: center;
    width: 100%;
  }
}

.pwclub-price {
  margin-bottom: 32px;
  font-weight: bold;
  /*color: #c9321a;*/
}
.pwclub-price-text {
  font-size: 17px;
  margin-bottom: 17px;
  margin-top: 17px;
  font-weight: bold !important;
}

.create-account label {
  cursor: default;
}
.woocommerce-page #content div.product p.price del {
  margin-right: 7px;
}
.woocommerce-checkout .woocommerce form .form-row.woocommerce-invalid label {
  color: #222222;
}
.plus-div {
  margin-bottom: 40px;
  font-size: 18px;
  color: #222;
  margin-top: 40px;
}
.pluslink {
  //font-size: 20px; }
  .ptitle {
    font-size: 2.2em;
  }
  .woocommerce .products em.wcpv-sold-by-loop a {
    display: inline-block;
  }

  /*------------------------------------------------------------------
[Table of contents]

	General
	Forms
	My Account - Login / Register
	My Account - Lost Password
	My Account - Logged-in
		My Account - Edit Account
		My Account - Billing Address / Shipping Address
		My Account - View Order
	Order Tracking
	Shop Catalog
		Catalog - Top Bar
		Catalog - Header
		Catalog - Categories List
		Catalog - Products
		Catalog - Sale / Out of Stock Badges
		Catalog - Pagination
		Catalog - Off-canvas Filters
	Product Single
		Single Product - Social Sharing
		Single Product - Meta
		Single Product - Related Products
		Single Product - Grouped Product
		Single Product - Navigation
	Cart
		Cart - Buttons
		Empty Cart / Wishlist
	Minicart
	Checkout
		Checkout - Your Order
		Checkout - Thank you
	Wishlist
	Widgets
	WooCommerce Messages

[/Table of contents]
-------------------------------------------------------------------*/

  /**********************************************************************************/
  /* General ************************************************************************/
  /**********************************************************************************/

  /**********************************************************************************/
  /* Forms  *************************************************************************/
  /**********************************************************************************/

  .woocommerce form .form-row,
  .woocommerce-page form .form-row {
    padding: 5px 0;
    margin: 0;
  }

  .woocommerce form .form-row-first,
  .woocommerce-page form .form-row-first,
  .woocommerce form .form-row-last,
  .woocommerce-page form .form-row-last {
    width: 100%;
  }

  /**********************************************************************************/
  /* My Account Login / Register *****************************************************/
  /**********************************************************************************/

  .login-register-container {
    margin-top: 20px;
    text-align: center;
  }

  .account-forms-container {
    display: inline-block;
    max-width: 100%;
    width: 472px;
    text-align: left;
    height: auto;
    padding-left: 0px;
  }

  .login-register-container .page-title {
    margin-bottom: 18px;
  }

  .site-content .account-tab-list,
  .account-tab-list {
    list-style: none;
    margin: 0;
    position: relative;
  }

  .account-tab-list:after {
    content: "";
    display: block;
    clear: both;
  }

  .account-tab-item {
    float: left;
    margin-right: 20px;
    line-height: 42px;
  }

  .account-tab-item.last {
    margin-right: 0;
  }

  .account-tab-link-mobile {
    font-size: 0.875rem;
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    padding: 20px 30px 20px 35px;
    width: 100%;
    min-width: 122px;
    border: 2px solid;
    line-height: 1;
    opacity: 1;
    z-index: 100;

    transition: opacity 0.3s ease 0.3s;
    -webkit-transition: opacity 0.3s ease 0.3s;
  }

  .account-tab-link.current {
    z-index: 99;
    opacity: 0;

    transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
  }

  .account-tab-link.registration_disabled {
    display: none;
  }

  .account-tab-link.registration_disabled:hover {
    color: #333;
  }

  .option-register {
    display: inline-block;
    font-size: 0.875em;
  }

  .login-register-container .form-row {
    padding: 10px 0 !important;
  }

  .login-register-container .form-row.without-padding {
    padding: 0 !important;
  }

  .woocommerce form .form-row.remember-me-row,
  .woocommerce-page form .form-row.remember-me-row {
    padding: 7px 0 0;
  }

  .woocommerce form .form-row.remember-me-row label {
    font-size: 1.125rem;
  }

  .lost-pass-link {
    font-size: 1.125rem;
    float: right;
    line-height: 1.5em;
    padding-bottom: 3px;
    white-space: nowrap;
  }

  .login-register-container input[type="submit"] {
    margin-top: 0px !important;
    width: 100%;
  }

  .register-form {
    display: none;
  }

  .login-form .login_footer_separator {
    margin-top: -19px;
  }

  .register-form .login_footer_separator {
    margin-top: -5px;
  }

  .login_footer {
    display: none;
  }

  .login_footer_separator {
    width: 100%;
    text-align: center;
    position: relative;
    padding: 25px 0;
  }

  .login_footer_separator:before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #ddd;

    position: absolute;
    top: 50%;
    margin-top: -1px;
  }

  .login_footer_separator_title {
    display: inline-block;
    font-size: 1rem;
    font-weight: bold;
    padding: 10px 15px;
    color: #888;
    position: relative;
    z-index: 3;

    background: #fff;
  }

  .go_home {
    display: none;
    color: #fff;
    border-bottom: 1px solid;
    padding-bottom: 3px;
    margin-top: 10px;
    font-size: 0.8125em;
    font-weight: bold;
    position: relative;
    line-height: 1em;
    outline: none;
    text-transform: uppercase;
  }

  /**********************************************************************************/
  /* My Account Lost Password *******************************************************/
  /**********************************************************************************/

  .lost-reset-pass-text {
    font-size: 1.312em;
    line-height: 2rem;
    margin: 0 -40px 32px;
    text-align: center;
  }

  .lost-reset-pass-text:before {
    content: "\f1cd";
    font-size: 24px;
    margin-top: 3px;
    margin-right: 10px;

    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /**********************************************************************************/
  /* My Account Logged-in ***********************************************************/
  /**********************************************************************************/

  .woocommerce-account table a {
    font-weight: 700;
  }

  .woocommerce-account .content-area ul,
  .woocommerce-account .content-area ol,
  .woocommerce-account .content-area dl,
  .my_address_wrapper dl {
    font-size: 1rem;
    line-height: 1.5em;
  }

  .woocommerce-account .content-area table tr td {
    font-size: 1rem;
  }

  .woocommerce-account h2 {
    margin-top: 51px;
    margin-bottom: 12px;
    color: #222;
  }

  .my_address_title {
    border-bottom-color: rgba(34, 34, 34, 0.15);
  }

  .woocommerce-account h2.my_address_title {
    margin-bottom: 22px;
  }

  .my_address_title {
    border-bottom-width: 1px;
    border-bottom-style: solid;

    padding-bottom: 25px;
    margin-bottom: 22px;
    margin-top: 51px;
  }

  .myaccount_user_inner {
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    margin: 0 auto;
  }

  .myaccount_user_inner a {
    font-weight: normal;
  }

  .myaccount_form_headers {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 60px;
    margin-top: 2px;
  }

  .woocommerce .myaccount_form_headers {
    font-size: 1.25rem;
  }

  .account_button {
    margin-top: 21px !important;
  }

  .woocommerce ul.digital-downloads,
  .woocommerce-page ul.digital-downloads {
    margin-bottom: 58px;
  }

  .woocommerce ul.digital-downloads li:before,
  .woocommerce-page ul.digital-downloads li:before {
    display: none;
  }

  .woocommerce ul.digital-downloads:before,
  .woocommerce-page ul.digital-downloads:before,
  .woocommerce ul.digital-downloads li:after,
  .woocommerce-page ul.digital-downloads li:after {
    content: "";
    display: block;
    width: auto;
    height: 0px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    margin: 19px 0;
    border-color: rgba(34, 34, 34, 0.15);
  }

  .woocommerce ul.digital-downloads:before,
  .woocommerce-page ul.digital-downloads:before {
    margin: 28px 0 18px;
  }

  .woocommerce ul.digital-downloads li a:before,
  .woocommerce-page ul.digital-downloads li a:before {
    content: "\f019";
    display: inline-block;
    margin-right: 10px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: 4px;
    left: 0;
  }

  .woocommerce ul.digital-downloads li a,
  .woocommerce-page ul.digital-downloads li a {
    padding-left: 22px;
    width: 100%;
  }

  .woocommerce ul.digital-downloads li .count,
  .woocommerce-page
    ul.digital-downloads
    li
    .count
    .woocommerce
    ul.digital-downloads
    li
    a,
  .woocommerce-page ul.digital-downloads li a {
    display: block;
    position: relative;
    /*text-align: center;*/
  }

  .woocommerce ul.digital-downloads li .count,
  .woocommerce-page ul.digital-downloads li .count {
    float: none;
    padding-left: 22px;
  }

  .woocommerce table.my_account_orders,
  .woocommerce-page table.my_account_orders {
    font-size: 1em;
  }

  .woocommerce .my_account_container table.shop_table td,
  .woocommerce-page .my_account_container table.shop_table td {
    padding: 13px 0;
  }

  .woocommerce .my_account_container table.shop_table td .amount,
  .woocommerce-page .my_account_container table.shop_table td .amount {
    display: block;
    font-weight: bold;
  }

  .woocommerce .my_account_container table.shop_table td.order-number,
  .woocommerce-page .my_account_container table.shop_table td.order-number {
    font-size: 1.125em;
  }

  td.order-number a {
    color: #313131;
  }
  .woocommerce-orders-table__row .subscription-plan,
  .woocommerce-orders-table__row .subscription-status,
  .woocommerce-orders-table__row .subscription-next-payment,
  .woocommerce-orders-table__row .subscription-total {
    font-weight: 400 !important;
  }
  .woocommerce-orders-table__row .subscription-id,
  .woocommerce-orders-table__row .subscription-plan,
  .woocommerce-orders-table__row .subscription-status,
  .woocommerce-orders-table__row .subscription-next-payment,
  .woocommerce-orders-table__row .subscription-total,
  .woocommerce-orders-table__row .subscription-actions {
    border-bottom: 1px solid #dbdbdb !important;
  }

  .woocommerce .my_account_container table.shop_table .order-status,
  .woocommerce .my_account_container table.shop_table .order-date {
    padding-left: 20px;
    padding-right: 20px;
  }

  .woocommerce .my_account_container table.shop_table .order-total {
    padding-left: 0px;
    padding-right: 0px;
    width: 90px;
  }

  .woocommerce .my_account_container table.shop_table .order-total,
  .woocommerce .my_account_container table.shop_table .order-date {
  }

  .woocommerce .my_account_container table.shop_table .order-date,
  .woocommerce .my_account_container table.shop_table .order-actions {
    display: none;
  }

  .account_view_link {
    font-size: 0.875rem;
    text-transform: uppercase;
  }

  /* Edit Account */

  .woocommerce form .form-row-first.first-name-row,
  .woocommerce-page form .form-row-last.last-name-row,
  .woocommerce form .form-row-first.password-row,
  .woocommerce-page form .form-row-last.repeat-password-row {
    width: 100%;
  }

  /*Start: Changes made by Akshay My Accounts --> My Profile : Every title starts with curser pointer */

  .form-edit-account label {
    cursor: auto;
  }

  /*End: Changes made by Akshay My Accounts --> My Profile : Every title starts with curser pointer */

  .form-edit-account fieldset {
    margin: 0;
    padding: 0;
    border: 0;
  }

  .form-edit-account legend {
    font-size: 1.3125rem;
    font-weight: 900;
    text-transform: uppercase;
    padding: 50px 0 13px;
    margin: 0;
  }

  .form-edit-account .button {
    margin-top: 20px !important;
    background-color: #c9321a !important;
  }
  .form_edit_address .account_button {
    background-color: #c9321a !important;
  }

  /* Billing Address/Shipping Address */

  .chosen-container {
    font-size: 1.125rem;
    font-weight: 700;
    width: 100% !important;
  }

  .billing_shipping_address_title {
    margin-bottom: 13px;
    margin-top: 40px;
  }

  .billing_shipping_address_title .edit-link {
    display: block;
    position: relative;
    margin-top: 5px;
  }

  .my_address_description {
    font-size: 1rem;
  }

  .customer_details:after {
    content: "";
    clear: both;
    display: block;
  }

  .customer_details dt {
    clear: both;
    margin-right: 5px;
  }

  #shipping_address_2_field,
  #billing_address_2_field {
    padding-top: 0;
    margin-top: 20px;
  }

  .shipping_billing_wrapper .edit-link {
    display: block;
    margin: 15px 0;
  }

  .edit-link .fa {
    margin-right: 5px;
  }

  /* View Order */

  .order-info {
    text-align: center;
    margin: 14px -30px 8px;
    padding: 32px 30px;
    position: relative;
  }

  .order-info:before {
    content: "";
    display: block;
    height: 10px;
    width: 100%;
    background: url("../../images/horizontal-grey-pattern.png");

    position: absolute;
    top: -10px;
    left: 0;
  }

  .order-info mark {
    background: none;
    padding: 0;
    margin: 0;
    font-weight: bold;
  }

  .order-info .order-status {
    margin-right: 0;
  }

  .shop_table tr td {
    font-size: 1rem;
  }

  .shop_table.order_details a {
    font-weight: bold;
  }

  .shop_table.order_details .product-total {
    padding-left: 30px !important;
  }

  .woocommerce .shop_table.order_details tbody tr:last-child td,
  .woocommerce-page .shop_table.order_details tbody tr:last-child td {
    border-bottom-width: 1px;
    border-bottom-style: solid;
  }

  .shop_table.order_details {
    margin-bottom: 0 !important;
  }

  .woocommerce .shop_table.order_details td,
  .woocommerce-page .shop_table.order_details td {
    padding: 15px 0;
  }

  .woocommerce .shop_table.order_details td .amount,
  .woocommerce-page .shop_table.order_details td .amount {
    font-weight: normal;
  }

  .woocommerce .shop_table.order_details td .variation,
  .woocommerce-page .shop_table.order_details td .variation,
  .woocommerce-page .shop_table.order_details td .variation p,
  .woocommerce-page .shop_table.order_details small {
    font-size: 0.875rem;
    line-height: 1em;
  }

  .woocommerce-page .shop_table.order_details td .variation dt {
    text-transform: uppercase;
  }

  .woocommerce-page .shop_table.order_details td .variation p {
    font-size: 1em;
    line-height: 1em;
  }

  .woocommerce-page .shop_table.order_details td .variation dd {
    margin-bottom: 2px;
  }

  .shop_table.order_details tfoot tr {
    border: none;
  }

  .woocommerce .shop_table.order_details tfoot th,
  .woocommerce-page .shop_table.order_details tfoot th,
  .woocommerce .shop_table.order_details tfoot td,
  .woocommerce-page .shop_table.order_details tfoot td {
    font-size: 1rem;
    font-weight: normal;
    border: none;
    padding: 0;
    padding-top: 12px;
  }

  .woocommerce table.shop_table tbody th,
  .woocommerce table.shop_table tfoot td,
  .woocommerce table.shop_table tfoot th {
    font-weight: 700;
    border-top: 0;
  }

  .woocommerce .shop_table.order_details tfoot th,
  .woocommerce-page .shop_table.order_details tfoot th {
    padding-left: 0%;
    background-color: #ffffff;
    color: #333333;
  }

  .woocommerce .shop_table.order_details tfoot td,
  .woocommerce-page .shop_table.order_details tfoot td {
    padding-left: 30px;
  }

  .woocommerce .shop_table.order_details tfoot td .amount,
  .woocommerce-page .shop_table.order_details tfoot td .amount {
    font-weight: normal;
  }

  .woocommerce .shop_table.order_details tfoot tr:first-child td,
  .woocommerce-page .shop_table.order_details tfoot tr:first-child td,
  .woocommerce .shop_table.order_details tfoot tr:first-child th,
  .woocommerce-page .shop_table.order_details tfoot tr:first-child th {
    padding-top: 27px;
    color: #333333 !important;
  }

  .woocommerce-page
    .shop_table.order_details
    tfoot
    tr:last-child
    td:last-child
    .amount {
    font-size: 1.5rem;
    font-weight: 700;
  }

  #shipping_method {
    font-size: 16px;
  }

  .woocommerce ul#shipping_method li,
  .woocommerce-page ul#shipping_method li {
    padding: 0.2em 0;
    text-indent: -30px;
  }

  #shipping_method .check_label_radio {
    display: block;
    text-transform: capitalize;
    font-weight: 500;
    margin-left: -29px;
  }

  #shipping_method li .amount {
    display: block;
    font-weight: 700;
    margin-top: 3px;
  }

  .woocommerce .shop_table.customer_details {
    margin: 0 0 20px;
  }

  .woocommerce .shop_table.customer_details tr {
    border: none;
  }

  /*.woocommerce .shop_table.customer_details th
{
	display: none;
}*/

  .woocommerce .shop_table.customer_details th,
  .woocommerce .shop_table.customer_details td {
    border: none;
    padding: 5px 0;
    line-height: 1.5em;
  }

  .woocommerce .shop_table.customer_details td:before {
    /*content: attr(data-title) ": ";
    font-weight: 700;
	display: block !important;
	font-size: 0.8125em;
	font-weight: bold !important;
	margin-bottom: -2px;
	text-transform: uppercase;*/
  }

  .woocommerce .shop_table.customer_details tr:nth-child(2n) td {
    background: none;
  }

  .shipping_billing_wrapper h3 {
    margin-top: 3px;
  }

  /**********************************************************************************/
  /* Order Tracking *****************************************************************/
  /**********************************************************************************/

  .track-order-description {
    width: 718px;
    max-width: 100%;
    margin: 0 auto 57px;
    text-align: center;
  }

  .track_order_form {
    padding: 43px 30px 45px;
    margin: 0 -30px -58px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }

  .track_order_form.custom_border:after {
    display: none;
  }

  .custom_border {
    position: relative;
  }

  .custom_border:before,
  .custom_border:after {
    content: "";
    display: block;
    height: 10px;
    width: 100%;

    background-color: transparent;
    background-size: 20px 20px;
    background-position: 0 10px, 40px 40px;
  }

  .custom_border:before {
    position: absolute;
    top: -10px;
    left: 0;
  }

  .custom_border:after {
    position: absolute;
    bottom: -10px;
    left: 0;

    transform: rotate(180deg);
    -ms-transform: rotate(180deg); /* IE 9 */
    -webkit-transform: rotate(180deg); /* Opera, Chrome, and Safari */
  }

  .input_box {
    margin-bottom: 12px;
  }

  .input_box.last {
    margin-bottom: 16px;
  }

  .input_box .input-text {
    font-weight: normal;
    background: #fff;
  }

  .track_order_form input[type="submit"] {
    width: 100%;
  }

  /**********************************************************************************/
  /* Shop Catalog *******************************************************************/
  /**********************************************************************************/

  /* Catalog Top Bar */

  .tob_bar_shop .woocommerce-breadcrumb {
    text-align: left;
  }

  .woocommerce .woocommerce-breadcrumb,
  .woocommerce-page .woocommerce-breadcrumb {
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
    line-height: 24px;
    padding: 8px 0;
    text-align: left;
  }

  .woocommerce .woocommerce-breadcrumb .delimiter,
  .woocommerce-page .woocommerce-breadcrumb .delimiter {
    font-size: 0;
  }

  .woocommerce .woocommerce-breadcrumb .delimiter:after,
  .woocommerce-page .woocommerce-breadcrumb .delimiter:after {
    content: "\f105";
    display: inline-block;
    font-size: 14px;
    padding: 0 10px 0 11px;
    position: relative;

    font-family: FontAwesome;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .woocommerce-breadcrumb br {
    display: none;
  }

  /* Catalog Header */

  .shop_header {
    text-align: left;
    margin-bottom: 22px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }

  .shop_header.with_featured_img {
    padding-top: 135px;
    padding-bottom: 170px;
    margin-top: -85px;
    margin-bottom: 40px;
  }

  .shop_header_bkg {
    width: 100%;
    height: 100%;

    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    position: absolute;
    top: 0;
    left: 0;
  }

  .shop_header_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: none;
  }

  .shop_header.with_featured_img .shop_header_overlay {
    display: block;
  }

  .woocommerce_category_header_image {
    display: none;
  }

  .shop_header.with_featured_img .term-description {
    color: #fff;
  }

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

  .term-description {
    text-align: center;
    margin-top: -10px;
  }
  .tax-product_cat .term-description {
    margin-top: 25px;
  }

  .catalog-ordering:after {
    content: "";
    display: block;
    clear: both;
  }

  .woocommerce .woocommerce-result-count,
  .woocommerce-page .woocommerce-result-count {
    display: none;
    float: right;
    font-size: 0.875rem;
    line-height: 1;
    margin: 0 15px 0 0;
    padding: 11px 0 0;
  }

  /* Catalog Categories List */

  .list_shop_categories {
    margin: 0px 0 3px;
  }

  .shop_header.with_featured_img .page-title.on-shop {
    color: #fff;
  }

  .shop_header.with_featured_img .list_shop_categories a {
    color: #fff;
    border-bottom: 1px solid #fff;
  }

  .shop_header.with_featured_img .list_shop_categories a:hover {
    border-bottom: 1px solid transparent;
  }

  /* Catalog Products */

  .catalog_top {
    padding: 0px 0px 20px;
  }

  .woocommerce .products a {
    display: block;
  }

  .products a.button,
  .woocommerce .products .added_to_cart.wc-forward,
  .woocommerce-page .products .added_to_cart.wc-forward {
    cursor: pointer;
    line-height: normal;
    margin: 0 !important;
    min-width: inherit;
    position: relative;
    text-decoration: none;
    text-align: left;

    display: inline-block;
    font-size: 0.8125rem !important;
    text-transform: capitalize;
    font-weight: 900;

    background: none;
    border-color: none !important;

    -webkit-appearance: none;
    border: none;

    -webkit-transition: color 300ms ease !important;
    -moz-transition: color 300ms ease !important;
    transition: color 300ms ease !important;
  }

  .products a.button {
    padding: 0.2em 0 0em 1.2em !important;
  }

  .woocommerce .products .added_to_cart.wc-forward,
  .woocommerce-page .products .added_to_cart.wc-forward {
    padding: 0.2em 0 0em 1.315em !important;
  }

  .products a.button.added {
    display: none;
  }

  .products a.button:before {
    position: absolute;
    height: 1em;
    width: 1em;
    top: 5px;
    right: auto;
    left: 0;
    text-indent: 0;
    font: normal normal normal 14px/1 FontAwesome;
    content: "\f067";
  }

  .products .product_added_to_cart a.button:before {
    top: 5px;
  }

  .products a.button:hover,
  .woocommerce .products .added_to_cart.wc-forward:hover,
  .woocommerce-page .products .added_to_cart.wc-forward:hover {
    background: none !important;
  }

  .woocommerce .products a.button.loading:before {
    content: "\f067" !important;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    position: absolute;
    height: 1em;
    width: 1em;
    top: 5px;
    right: auto;
    left: 0;
    text-indent: 0;
    background: none;
  }

  .woocommerce .products a.button.loading:after {
    content: "";
    display: inline-block;
    width: 50px;
    height: 8px;

    background: url("images/preloader-white-bg-32.gif") center no-repeat
      rgba(255, 255, 255, 0.65);
    vertical-align: top;

    position: relative;
    top: 5px;
    left: auto;
    right: auto;

    animation: none;
    -webkit-animation: none;
  }

  .woocommerce .products ul h3,
  .woocommerce ul.products h3,
  .woocommerce-page .products ul h3,
  .woocommerce-page ul.products h3 {
    font-size: 0.9375rem;
    font-weight: normal;
    line-height: 1.12857;
    padding: 17px 35px 0 0;
    margin: 0;
    display: inline-block;
    text-transform: none;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }

  .products .added_to_cart.wc-forward:before {
    content: "\f00c";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;

    height: 16px;
    width: 16px;

    position: absolute;
    top: 5px;
    right: auto;
    left: 0;
    text-indent: 0;
  }

  .woocommerce a.button:active,
  .woocommerce button.button:active,
  .woocommerce input.button:active,
  .woocommerce #respond input#submit:active,
  .woocommerce #content input.button:active,
  .woocommerce-page a.button:active,
  .woocommerce-page button.button:active,
  .woocommerce-page input.button:active,
  .woocommerce-page #respond input#submit:active,
  .woocommerce-page #content input.button:active {
    top: 0;
  }

  .woocommerce .products a.button.loading {
    opacity: 1;
  }

  .woocommerce a.button.loading:before,
  .woocommerce button.button.loading:before,
  .woocommerce input.button.loading:before,
  .woocommerce #respond input#submit.loading:before,
  .woocommerce #content input.button.loading:before,
  .woocommerce-page a.button.loading:before,
  .woocommerce-page button.button.loading:before,
  .woocommerce-page input.button.loading:before,
  .woocommerce-page #respond input#submit.loading:before,
  .woocommerce-page #content input.button.loading:before {
    content: "";
    position: absolute;
    top: 9px;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: transparent;
    /*background:url(../images/ajax-loader.gif) center no-repeat rgba(255,255,255,0.65)*/
  }

  /* Catalog Sale / Out of Stock Badges */

  .product-link {
    display: block;
    position: relative;
  }

  /* Catalog Pagination */

  .woocommerce-pagination {
    margin: 0px 0 47px;
  }

  .woocommerce #content nav.woocommerce-pagination,
  .woocommerce nav.woocommerce-pagination,
  .woocommerce-page #content nav.woocommerce-pagination,
  .woocommerce-page nav.woocommerce-pagination {
    text-align: center;
  }

  .woocommerce #content nav.woocommerce-pagination ul,
  .woocommerce nav.woocommerce-pagination ul,
  .woocommerce-page #content nav.woocommerce-pagination ul,
  .woocommerce-page nav.woocommerce-pagination ul {
    border: none;
  }

  .woocommerce #content nav.woocommerce-pagination ul li,
  .woocommerce nav.woocommerce-pagination ul li,
  .woocommerce-page #content nav.woocommerce-pagination ul li,
  .woocommerce-page nav.woocommerce-pagination ul li {
    border: none;
    background: none;
  }

  .woocommerce nav.woocommerce-pagination ul li a,
  .woocommerce nav.woocommerce-pagination ul li span,
  .woocommerce #content nav.woocommerce-pagination ul li a,
  .woocommerce #content nav.woocommerce-pagination ul li span,
  .woocommerce-page nav.woocommerce-pagination ul li a,
  .woocommerce-page nav.woocommerce-pagination ul li span,
  .woocommerce-page #content nav.woocommerce-pagination ul li a,
  .woocommerce-page #content nav.woocommerce-pagination ul li span {
    font-weight: 700;
    background: none;
    font-size: 1rem;
    text-align: center;
    margin: 0;
    padding: 0.2em 1.1em;
    line-height: 2em;
    min-width: 0;
  }

  .page-numbers li:first-child span,
  .page-numbers li:first-child a {
    padding-left: 0 !important;
  }

  .woocommerce-pagination .fa {
    font-size: 0.444em;
    display: block;
    margin-top: 15px;
  }

  .woocommerce nav.woocommerce-pagination ul li span.current,
  .woocommerce nav.woocommerce-pagination ul li a:hover,
  .woocommerce nav.woocommerce-pagination ul li a:focus,
  .woocommerce #content nav.woocommerce-pagination ul li span.current,
  .woocommerce #content nav.woocommerce-pagination ul li a:hover,
  .woocommerce #content nav.woocommerce-pagination ul li a:focus,
  .woocommerce-page nav.woocommerce-pagination ul li span.current,
  .woocommerce-page nav.woocommerce-pagination ul li a:hover,
  .woocommerce-page nav.woocommerce-pagination ul li a:focus,
  .woocommerce-page #content nav.woocommerce-pagination ul li span.current,
  .woocommerce-page #content nav.woocommerce-pagination ul li a:hover,
  .woocommerce-page #content nav.woocommerce-pagination ul li a:focus {
    background: none;
  }

  /* Off-canvas Filters */

  .woocommerce .widget_price_filter .ui-slider .ui-slider-range,
  .woocommerce-page .widget_price_filter .ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: 0.7em;
    display: block;
    border: 0;
    box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0) !important;
    -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0) !important;
    -webkit-border-radius: 0 !important;
    border-radius: 0 !important;
  }

  .woocommerce .widget_price_filter .ui-slider-horizontal,
  .woocommerce-page .widget_price_filter .ui-slider-horizontal {
    height: 6px;
    border-radius: 6px;
  }

  .woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content,
  .woocommerce-page
    .widget_price_filter
    .price_slider_wrapper
    .ui-widget-content {
    background: #ddd;
    position: relative;
    margin-right: 15px;
    margin-bottom: 11px;
    box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0) !important;
    -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0) !important;
    -webkit-border-radius: 0 !important;
    border-radius: 0 !important;
    border-top-left-radius: 6px !important;
    border-bottom-left-radius: 6px !important;
  }

  .woocommerce
    .widget_price_filter
    .price_slider_wrapper
    .ui-widget-content:after,
  .woocommerce-page
    .widget_price_filter
    .price_slider_wrapper
    .ui-widget-content:after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    right: -15px;
    width: 15px;
    height: 6px;
    background: #ddd;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
  }

  .header-summary .widget_price_filter .price_slider_wrapper .ui-widget-content,
  .header-summary .widget_price_filter .price_slider_wrapper .ui-widget-content,
  .header-summary
    .widget_price_filter
    .price_slider_wrapper
    .ui-widget-content:after,
  .header-summary
    .widget_price_filter
    .price_slider_wrapper
    .ui-widget-content:after {
    background: #ddd;
  }

  .woocommerce .widget_price_filter .ui-slider .ui-slider-handle,
  .woocommerce-page .widget_price_filter .ui-slider .ui-slider-handle {
    background: #fff;
    border-width: 3px;
    border-style: solid;
    width: 15px;
    height: 15px;
    top: -5px;
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0), inset 0 0 0 0 rgba(0, 0, 0, 0) !important;
    -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0), inset 0 0 0 0 rgba(0, 0, 0, 0) !important;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0), inset 0 0 0 0 rgba(0, 0, 0, 0) !important;
  }

  .woocommerce .widget_price_filter .ui-slider .ui-slider-handle:last-child,
  .woocommerce-page
    .widget_price_filter
    .ui-slider
    .ui-slider-handle:last-child {
    margin-left: 0;
  }

  .woocommerce .widget_price_filter .price_slider_amount .button,
  .woocommerce-page .widget_price_filter .price_slider_amount .button {
    float: right;
    min-width: 0;
  }

  .woocommerce .widget_price_filter .price_slider_amount,
  .woocommerce-page .widget_price_filter .price_slider_amount {
    text-align: left;
    font-size: 0.8125em;
    font-weight: 500;
  }

  .woocommerce .widget_price_filter .price_slider_amount #min_price,
  .woocommerce-page .widget_price_filter .price_slider_amount #min_price,
  .woocommerce .widget_price_filter .price_slider_amount #max_price,
  .woocommerce-page .widget_price_filter .price_slider_amount #max_price {
    display: none;
  }

  .widget.widget_price_filter .price_slider_amount .button {
    padding: 0 !important;
    margin: 0 !important;
    line-height: inherit !important;
    height: auto !important;
    background: none !important;
    text-align: right;
    width: 100px;
    box-shadow: none;

    transition: color 0.3s;
    -webkit-transition: color 0.3s;
  }

  .widget.widget_price_filter .price_slider_amount .button:hover {
    background: none !important;
    color: #000 !important;
  }

  /**********************************************************************************/
  /* Product Single *****************************************************************/
  /**********************************************************************************/

  div.product .tob_bar_shop {
    display: none;
    margin: -75px 0 0px;
    position: relative;
  }

  div.product .tob_bar_shop_left_column {
    padding: 0 80px 0 20px;
  }

  div.product .tob_bar_shop_right_column {
    width: 70px;
    position: absolute;
    top: 0;
    right: 17px;
  }

  .product_content_wrapper {
    padding-top: 0px;
    padding-bottom: 58px;
    margin-top: -85px;
  }

  .product_images .owl-theme .owl-controls {
    margin-top: -32px;
    margin-bottom: 43px;
    position: relative;
  }

  .product-images-wrapper {
    position: relative;
    margin: 0 -30px;
  }

  .woocommerce .product_summary_top .star-rating,
  .woocommerce-page .product_summary_top .star-rating {
    font-size: 10px;
    top: 1px;
    margin-right: 12px;
  }

  .add_to_wishlist {
    text-transform: uppercase;
    color: #adadad;

    transition: color 0.3s;
    -webkit-transition: color 0.3s;
  }

  .woocommerce div.product div.images .owl-carousel,
  .woocommerce-page div.product div.images .owl-carousel,
  .woocommerce #content div.product div.images .owl-carousel,
  .woocommerce-page #content div.product div.images .owl-carousel {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100%;
  }

  .woocommerce div.product div.images img,
  .woocommerce-page div.product div.images img,
  .woocommerce #content div.product div.images img,
  .woocommerce-page #content div.product div.images img {
    display: block;
    max-width: 100%;
    height: auto;
    box-shadow: none;
    -webkit-box-shadow: none;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
  }

  .easyzoom-notice {
    width: 76px;
    height: 30px;
    margin: -15px 0 0 -38px;

    background-color: #fff;
    background-image: url("images/preloader-white-bg-32.gif");
    background-position: center;
    background-repeat: no-repeat;
  }

  .woocommerce #content div.product form.cart .variations,
  .woocommerce div.product form.cart .variations,
  .woocommerce-page #content div.product form.cart .variations,
  .woocommerce-page div.product form.cart .variations {
    margin-top: -22px;
  }

  .woocommerce div.product form.cart .variations select,
  .woocommerce #content div.product form.cart .variations select,
  .woocommerce-page div.product form.cart .variations select,
  .woocommerce-page #content div.product form.cart .variations select {
    float: none;
  }

  .woocommerce div.product form.cart,
  .woocommerce-page div.product form.cart,
  .woocommerce #content div.product form.cart,
  .woocommerce-page #content div.product form.cart {
    margin: 0 0 9px 0;
  }

  .woocommerce #content div.product form.cart table,
  .woocommerce div.product form.cart table,
  .woocommerce-page #content div.product form.cart table,
  .woocommerce-page div.product form.cart table {
    border: none;
  }

  .woocommerce div.product form.cart tr:last-child,
  .woocommerce-page div.product form.cart tr:last-child,
  .woocommerce #content div.product form.cart tr:last-child,
  .woocommerce-page #content div.product form.cart tr:last-child {
    border: 0;
  }

  .woocommerce div.product form.cart table td,
  .woocommerce-page div.product form.cart table td,
  .woocommerce #content div.product form.cart table td,
  .woocommerce-page #content div.product form.cart table td {
    padding: 0;
  }

  .woocommerce div.product form.cart td.label,
  .woocommerce-page div.product form.cart td.label,
  .woocommerce #content div.product form.cart td.label,
  .woocommerce-page #content div.product form.cart td.label {
    padding-right: 1em;
    background: none;
    cursor: pointer;
  }

  .woocommerce div.product form.cart div.label,
  .woocommerce-page div.product form.cart div.label,
  .woocommerce #content div.product form.cart div.label,
  .woocommerce-page #content div.product form.cart div.label {
    padding: 0 0 0 0;
    background: none;
    text-transform: uppercase;
    color: #7d7d7d;
    font-size: 13px;
    cursor: pointer;
  }

  .woocommerce div.product form.cart div.label label,
  .woocommerce-page div.product form.cart div.label label,
  .woocommerce #content div.product form.cart div.label label,
  .woocommerce-page #content div.product form.cart div.label label {
    color: #7d7d7d;
    font-size: 13px;
    cursor: default;
  }
  /*target only ff*/
  @-moz-document url-prefix() {
    .woocommerce .quantity .qty {
      /*padding-left: 16px;
	padding-right: 16px;*/
    }
  }

  .woocommerce .quantity .qty:hover {
    -moz-appearance: number-input;
  }

  /* target IE10+ */
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .woocommerce .quantity .qty {
      padding-left: 0px;
    }
  }

  .woocommerce .related,
  .woocommerce-page .related,
  .woocommerce .upsells.products,
  .woocommerce-page .upsells.products {
    margin: 0 0 60px 0;
  }

  .woocommerce .single_product_summary_upsell .upsells.products,
  .woocommerce-page .single_product_summary_upsell .upsells.products {
    margin: 0 0 -22px 0;
  }

  .woocommerce #review_form #respond p .comment-form-author,
  .woocommerce-page #review_form #respond p.comment-form-author {
    margin-bottom: 0;
  }

  .woocommerce #review_form #respond p .comment-form-email,
  .woocommerce-page #review_form #respond p.comment-form-email {
    margin-bottom: 15px;
  }

  .woocommerce #review_form #respond p .comment-form-comment,
  .woocommerce-page #review_form #respond p.comment-form-comment {
    margin-top: -30px;
  }

  .woocommerce #reviews #comment,
  .woocommerce-page #reviews #comment {
    height: 140px;
  }

  .woocommerce-noreviews {
    margin-bottom: 9px;
  }

  /* Single Product - Social Sharing */

  .product_socials_wrapper {
    border-top-width: 1px;
    border-top-style: solid;
    text-align: center;
    padding: 40px 0 23px;
  }

  .product_socials_wrapper_inner {
    margin-top: -20px;
  }

  .product_socials_wrapper .social_media {
    display: inline-block;
    font-size: 24px;
    margin: 0 15px 15px;
  }

  .share-product-text {
    text-transform: uppercase;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    opacity: 0;
  }

  .product_socials_wrapper.show-share-text-on-mobiles
    .product_socials_wrapper_inner {
    margin-top: 15px;
  }

  .product_socials_wrapper.show-share-text-on-mobiles .share-product-text {
    opacity: 1;
  }

  .product_infos .group_table tr:first-child td {
    padding-top: 5px !important;
  }

  .product_infos .group_table tr:last-child td {
    border-bottom: none;
  }

  .product_infos .group_table tr td:first-child {
    width: 78px;
  }

  .product_infos .group_table .quantity {
    margin-bottom: 0 !important;
  }

  .product_infos .group_table td.label {
    display: table-cell;
    cursor: default !important;
  }

  .product_infos .group_table td.label label {
    margin-top: -5px;
    cursor: default !important;
  }

  .woocommerce .product_infos .group_table td.label .price,
  .woocommerce-page .product_infos .group_table td.label .price {
    color: #333;
  }

  .woocommerce .product_infos .group_table td.price,
  .woocommerce-page .product_infos .group_table td.price {
    width: 30%;
    display: none;
  }

  .product_infos .group_table label a {
    font-size: 1rem;
    line-height: 1.3125rem;
    font-weight: 700;
    white-space: normal;
    text-transform: capitalize;
  }

  .product_infos .group_table del .amount {
    margin-right: 5px;
  }

  /**********************************************************************************/
  /* Cart ***************************************************************************/
  /**********************************************************************************/

  .cart_form {
    margin-bottom: 0px;
  }

  .cart_form .custom_border:after {
    display: none;
  }

  .cart_left_wrapper {
    padding-right: 0px;
    margin-bottom: 30px;
    margin-top: 0 !important;
  }

  .woocommerce table.shop_table,
  .woocommerce-page table.shop_table {
    margin: 12px 0 0 0;
    -webkit-border-radius: 0px;
    border-radius: 0px;
  }

  .woocommerce table.shop_table th,
  .woocommerce-page table.shop_table th {
    font-weight: 700; /*done by ujjawal from 600 to 700*/
    line-height: 1.5em;
    padding: 12px 0;
    font-size: 16px;
  }

  .product-price-thead,
  .product-name-thead {
    display: none;
  }

  .woocommerce table.cart .product-subtotal,
  .woocommerce #content table.cart .product-subtotal,
  .woocommerce-page table.cart .product-subtotal,
  .woocommerce-page #content table.cart .product-subtotal {
    font-weight: 700;
    padding-right: 20px;
    /*Changes added by Divya on Feb 2 -Start*/
    border-top-right-radius: 5px;
    /*Changes added by Divya on Feb 2 -end*/
  }

  .woocommerce td.product-quantity,
  .woocommerce-page td.product-quantity {
    min-width: 0;
  }

  .woocommerce table.cart td.product-remove {
    text-align: center !important;
    width: 10px;
    max-width: 14px;
    padding-right: 1.5em !important;
  }

  .woocommerce-cart #content .quantity .plus,
  .woocommerce-cart #content .quantity .minus {
    display: none;
  }

  .woocommerce-cart.woocommerce-page #content .quantity input.qty {
    font-size: 1rem;

    width: 50px !important;

    border-bottom-width: 2px;
    border-bottom-style: solid;
  }

  .cart_container {
    margin-bottom: 0px;
  }

  .cart_right_wrapper {
    margin: 0 0 !important;
    padding-right: 0 !important;
    border: 1px solid #ebebeb;
    border-radius: 5px;
  }

  .woocommerce .cart-collaterals,
  .woocommerce-page .cart-collaterals {
    width: 100%;
    background: none !important;
  }

  .cart-collaterals {
    max-width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }

  .woocommerce .cart-collaterals table.shop_table td,
  .woocommerce-page .cart-collaterals table.shop_table td {
    border-top: 0;
    padding: 10px 0;
  }

  .woocommerce table.cart input,
  .woocommerce #content table.cart input,
  .woocommerce-page table.cart input,
  .woocommerce-page #content table.cart input {
    line-height: normal;
  }

  .cart-collaterals table tr th,
  .cart-collaterals table tr td {
    padding: 0.6em !important;
    font-size: 1rem;
  }

  .woocommerce .cart-collaterals .cart_totals table th,
  .woocommerce-page .cart-collaterals .cart_totals table th {
    padding: 9px 20px 5px 0;
    width: 50%;
    line-height: 1.2rem;
  }

  .woocommerce .cart-collaterals .cart_totals table td,
  .woocommerce .cart-collaterals .cart_totals table th,
  .woocommerce-page .cart-collaterals .cart_totals table td,
  .woocommerce-page .cart-collaterals .cart_totals table th {
    vertical-align: top;
    text-align: left;
  }

  .woocommerce .cart-collaterals .cart_totals tr.shipping td,
  .woocommerce .cart-collaterals .cart_totals tr.shipping th,
  .woocommerce-page .cart-collaterals .cart_totals tr.shipping td,
  .woocommerce-page .cart-collaterals .cart_totals tr.shipping th {
    padding-bottom: 35px;
  }

  .woocommerce .cart-collaterals .cart_totals tr.order-total td,
  .woocommerce .cart-collaterals .cart_totals tr.order-total th,
  .woocommerce-page .cart-collaterals .cart_totals tr.order-total td,
  .woocommerce-page .cart-collaterals .cart_totals tr.order-total th {
    line-height: 1;
    padding-top: 25px;
    padding-bottom: 23px;
    vertical-align: middle;
    font-size: 18px;
  }
  .woocommerce-page .cart-collaterals span.woocommerce-Price-amount.amount {
    font-size: 18px;
  }
  .woocommerce .cart-collaterals .cart_totals tr.order-total td strong,
  .woocommerce-page .cart-collaterals .cart_totals tr.order-total td strong {
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    vertical-align: top;
  }

  .woocommerce .cart-collaterals .cart-totals-wrapper h2,
  .woocommerce-page .cart-collaterals .cart-totals-wrapper h2,
  .woocommerce .shipping-calculator-button-wrapper,
  .woocommerce-page .shipping-calculator-button-wrapper {
    text-transform: uppercase;
    text-align: left;
    font-size: 0.8125rem;
    font-weight: 700;
  }

  .woocommerce .cart-collaterals .cart_totals h2,
  .woocommerce-page .cart-collaterals .cart_totals h2 {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    font-size: 16px !important;
    text-transform: capitalize !important;
    background-color: #060a0d !important;
    padding: 12px 24px !important;
    margin: 0 -1px 0px -1px !important;
    color: #ffffff !important;
  }

  .shipping-calculator-form {
    padding-top: 18px;
    padding-bottom: 8px;
  }

  .woocommerce .shipping-calculator-button-wrapper,
  .woocommerce-page .shipping-calculator-button-wrapper {
    margin: 0;
  }

  .woocommerce .cart-collaterals .shipping-calculator-button,
  .woocommerce-page .cart-collaterals .shipping-calculator-button {
    display: inline-block;
    margin: 16px 0 0px;
  }

  .shipping-calculator-form .button {
    margin: 5px 0 0 0 !important;
    min-width: 0 !important;
    width: 100%;
  }

  .woocommerce .cart-collaterals .cart_totals,
  .woocommerce-page .cart-collaterals .cart_totals {
    width: 100% !important;
    float: none;
  }

  .woocommerce .cart-collaterals .cart_totals tr td,
  .woocommerce .cart-collaterals .cart_totals tr th,
  .woocommerce-page .cart-collaterals .cart_totals tr td,
  .woocommerce-page .cart-collaterals .cart_totals tr th {
    border: none;
  }

  .woocommerce .cart-collaterals .cart_totals .order-total td,
  .woocommerce .cart-collaterals .cart_totals .order-total th,
  .woocommerce-page .cart-collaterals .cart_totals .order-total td,
  .woocommerce-page .cart-collaterals .cart_totals .order-total th {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-top-width: 1px;
    border-top-style: solid;
  }

  .woocommerce .cart-collaterals .cart_totals .cart-subtotal,
  .woocommerce-page .cart-collaterals .cart_totals .cart-subtotal {
    border-bottom: none;
  }

  .woocommerce .cart-collaterals .cart_totals th:first-child,
  .woocommerce-page .cart-collaterals .cart_totals th:first-child,
  .woocommerce .cart-collaterals .cart_totals td:first-child,
  .woocommerce-page .cart-collaterals .cart_totals td:first-child {
    padding-right: 40px;
  }

  .woocommerce .cart-collaterals .cart_totals .shipping td:first-child,
  .woocommerce-page .cart-collaterals .cart_totals .shipping td:first-child {
    padding-top: 11px;
  }

  .woocommerce .cart-collaterals .shipping_calculator,
  .woocommerce-page .cart-collaterals .shipping_calculator {
    width: 100% !important;
  }

  .woocommerce .cart-collaterals .related,
  .woocommerce-page .cart-collaterals .related {
    width: 100%;
  }

  .woocommerce .cross-sells,
  .woocommerce-page .cross-sells {
  }

  .woocommerce .cross-sells ul.products li,
  .woocommerce-page .cross-sells ul.products li {
    width: 100% !important;
  }

  .woocommerce .cross-sells h2,
  .woocommerce-page .cross-sells h2 {
    font-size: 1.3125rem;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: center;
  }

  /* Cart - Buttons */

  .cart-buttons .update_cart,
  .cart-buttons .checkout-button {
    width: 100%;
    padding-top: 22px !important;
    padding-bottom: 21px !important;
  }

  .woocommerce-page #content .update_and_checkout .update_cart {
    margin-top: 9px;
    margin-bottom: 10px;
  }

  .coupon_code_wrapper {
    text-align: left !important;
    border: 1px solid #ebebeb !important;
    margin: 0 0px 51px !important;
    border-top: none !important;
    padding: 24px 24px !important;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
  }

  .coupon_code_wrapper_inner {
    display: inline-block;
  }

  .coupon_code_wrapper_inner:after {
    content: "";
    display: block;
    clear: both;
  }

  .coupon_code_text {
    font-size: 0.8125rem;
    font-weight: 700;
    margin-bottom: 26px;
    text-transform: uppercase;
  }

  .coupon_code_wrapper #coupon_code {
    width: 100%;
    height: 48px;
    border-width: 1px;
    border-style: solid;
    font-weight: bold;
    padding: 12px 15px 12px 15px;
    margin: 0 0px 15px 0;
    outline: 0 !important;
    line-height: normal;
    float: left;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;

    box-shadow: none !important;
    -webkit-box-shadow: none !important;
  }

  .coupon_code_wrapper .apply_coupon {
    min-width: 0;
    height: 48px;
  }

  .woocommerce #cross-sell-products-carousel.related,
  .woocommerce-page #cross-sell-products-carousel.related,
  .woocommerce #cross-sell-products-carousel.upsells.products,
  .woocommerce-page #cross-sell-products-carousel.upsells.products {
    margin: 0;
  }

  /* Empty Cart / Wishlist */

  .cart-wishlist-empty-banner {
    margin-top: -20px;
    text-align: center;
  }

  .cart-wishlist-empty-banner img {
    max-width: 120px;
  }

  .cart-wishlist-empty {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.33333em;
    margin-bottom: 0px;
  }

  .cart-empty {
    margin: 18px 0 22px;
  }

  .return-to-shop {
    margin-bottom: 60px;
  }

  .wc-backward {
    font-size: 0.8125em;
    font-weight: 700;
    padding-bottom: 5px;
    border-bottom: 1px solid;
    text-transform: uppercase;
  }

  .wc-backward a:before,
  .wc-backward:before {
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f112";
    font-size: 1.1em;
  }

  .wishlist-empty-banner.cart-wishlist-empty-banner {
    margin-bottom: 23px;
  }

  /**********************************************************************************/
  /* Minicart ***********************************************************************/
  /**********************************************************************************/

  ul.cart_list li,
  .woocommerce-page ul.cart_list li,
  .woocommerce ul.product_list_widget li,
  .woocommerce-page ul.product_list_widget li {
    padding: 0 0 30px 90px;
    position: relative;
  }

  ul.cart_list li:last-child,
  .woocommerce-page ul.cart_list li:last-child,
  .woocommerce ul.product_list_widget li:last-child,
  .woocommerce-page ul.product_list_widget li:last-child {
    padding-bottom: 0;
  }

  ul.cart_list li.empty,
  .woocommerce-page ul.cart_list li.empty,
  .woocommerce ul.product_list_widget li.empty,
  .woocommerce-page ul.product_list_widget li.empty {
    padding: 0 0 25px 0;
  }

  ul.cart_list li img,
  .woocommerce-page ul.cart_list li img,
  .woocommerce ul.product_list_widget li img,
  .woocommerce-page ul.product_list_widget li img {
    float: left;
    margin: 0;
    width: 70px;
    height: auto;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    margin-left: -90px;
  }

  /**********************************************************************************/
  /* Checkout ************************************************************************/
  /**********************************************************************************/
  .woocommerce-checkout form .form-row input.input-text {
    padding: 5px !important;
  }
  .woocommerce-checkout .order-receive-page-download-steps {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
  }
  .woocommerce-checkout
    .order-receive-page-download-steps
    .download-steps-title {
    background-color: #333333;
    font-weight: 700;
    font-size: 18px !important;
    color: #ffffff;
    float: left;
    text-transform: none;
    padding: 17px 0 17px 20px;
    margin-top: 34px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
  .woocommerce-checkout
    .order-receive-page-download-steps
    .download-steps-content {
    border: 1px solid #eaeaea;
    font-size: 16px;
    color: #333333;
    font-weight: normal;
    padding: 10px 10px 10px 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .order-receive-page-download-steps .download-steps-content li {
    line-height: 1.8;
  }
  .woocommerce-checkout .content-area .thank_you_bank_details h2 {
    margin-top: 28px;
    margin-bottom: 25px;
  }

  .woocommerce-checkout .content-area .thank_you_bank_details h3 {
    text-align: left;
    font-size: 1.125rem;
    padding-bottom: 15px;
    margin-top: 0;
    font-weight: normal;
    text-transform: capitalize;
    border-bottom: 1px solid #ddd;
  }

  .checkout_left_wrapper {
    margin-top: 30px;
    margin-bottom: 85px;
  }

  .checkout_right_wrapper {
    margin: 0 -30px -18px;
  }

  .checkout_right_wrapper .custom_border:after {
    display: none;
  }

  .woocommerce .col2-set .col-1,
  .woocommerce-page .col2-set .col-1 {
    float: none;
    width: 100%;
  }

  .woocommerce .col2-set .col-2,
  .woocommerce-page .col2-set .col-2 {
    float: none;
    width: auto;
    margin-top: 48px;
  }

  .woocommerce .checkout .col-2 h3,
  .woocommerce-page .checkout .col-2 h3 {
    margin-bottom: 12px;
  }

  #ship-to-different-address {
    margin-bottom: 38px;
  }

  .chosen-container-single .chosen-single {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0 0 0 0.5rem;
    height: 38px !important;
    border-width: 1px;
    border-style: solid;
    border-radius: 0;
    background: #fff;
    background-clip: padding-box;
    box-shadow: 0 0 0 #fff inset, 0 0 0 rgba(0, 0, 0, 0);
    color: rgba(0, 0, 0, 0.75);
    text-decoration: none;
    white-space: nowrap;
    line-height: 38px !important;
    font-size: 1rem;
  }

  .woocommerce-checkout
    .form-row
    .chosen-container-single
    .chosen-single
    div
    b {
    background-position: 0px 10px !important;
  }

  .chosen-container-single .chosen-single div b {
    background-position: 0px 8px;
  }

  .chosen-container-active.chosen-with-drop .chosen-single div b {
    background-position: -18px 8px;
  }

  #order_comments_field textarea {
    min-height: 100px;
    height: 100px;
  }

  .woocommerce #payment,
  .woocommerce-page #payment {
    background: none;
  }

  .woocommerce #payment div.payment_box,
  .woocommerce-page #payment div.payment_box {
    background: none;
    border: none;
    box-shadow: none;
  }

  .woocommerce #payment div.payment_box:after,
  .woocommerce-page #payment div.payment_box:after {
    display: none;
    box-shadow: none;
  }

  .woocommerce #payment ul.payment_methods,
  .woocommerce-page #payment ul.payment_methods {
    border: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .woocommerce #payment ul.payment_methods li,
  .woocommerce-page #payment ul.payment_methods li {
    margin: 0;
    padding-bottom: 12px;
  }

  .woocommerce-checkout .woocommerce #payment ul.payment_methods li,
  .woocommerce-page #payment ul.payment_methods li {
    padding: 0;
  }

  .woocommerce #payment ul.payment_methods li:last-child,
  .woocommerce-page #payment ul.payment_methods li:last-child {
    border-bottom: 0 !important;
  }

  .payment_methods input[type="radio"] + label.check_label_radio {
    font-size: 1.125rem;
    margin: 1px 0 12px;
    text-transform: capitalize;
  }

  .payment_methods .payment_method_bacs .check_label_radio:before,
  .payment_methods .payment_method_cheque .check_label_radio:before {
    top: 5px;
  }

  .payment_methods .payment_method_paypal .check_label_radio:before {
    top: 19px;
  }

  .woocommerce #payment div.payment_box,
  .woocommerce-page #payment div.payment_box {
    font-size: 0.8125em;
    line-height: 1.538em;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .woocommerce #payment div.payment_box p,
  .woocommerce-page #payment div.payment_box p {
    font-size: 14px;
    line-height: 1.4285em;
    padding: 0 0 18px 32px;
    margin: 0px 0 13px;
    text-shadow: none;
  }

  .woocommerce #payment ul.payment_methods li img,
  .woocommerce-page #payment ul.payment_methods li img {
    margin: -2px 10px 0 6px;
  }

  .woocommerce #payment .payment_method_paypal .about_paypal,
  .woocommerce-page #payment .payment_method_paypal .about_paypal {
    display: inline-block;
    float: none;
  }

  .woocommerce #payment div.form-row.place-order,
  .woocommerce-page #payment div.form-row.place-order {
    padding: 19px 0 5px;
    border: medium none;
  }
  .woocommerce-checkout .woocommerce #payment div.form-row.place-order {
    padding: 0;
  }
  .woocommerce #payment .terms,
  .woocommerce-page #payment .terms {
    text-align: left;
    padding-top: 0;
    padding-left: 0;
    margin-bottom: 17px;
  }

  .woocommerce-page #payment .terms label {
    font-size: 14px;
  }

  .woocommerce-page #payment .terms label a {
    font-weight: 700;
    text-transform: capitalize;
  }

  /* Checkout - Your Order */

  .order_review_wrapper {
    padding: 25px 30px 32px;
    margin-top: -25px;
  }

  .woocommerce form .form-row.create-account,
  .woocommerce-page form .form-row.create-account {
    padding: 15px 0;
  }

  .woocommerce .shop_table.woocommerce-checkout-review-order-table {
    margin-bottom: 25px;
  }

  .woocommerce .shop_table.woocommerce-checkout-review-order-table tfoot tr,
  .woocommerce-page
    .shop_table.woocommerce-checkout-review-order-table
    tfoot
    tr {
    border: none;
  }

  .woocommerce .shop_table.woocommerce-checkout-review-order-table tfoot th,
  .woocommerce-page
    .shop_table.woocommerce-checkout-review-order-table
    tfoot
    th,
  .woocommerce .shop_table.woocommerce-checkout-review-order-table tfoot td,
  .woocommerce-page
    .shop_table.woocommerce-checkout-review-order-table
    tfoot
    td {
    padding-top: 7px;
    vertical-align: top;
    border: none;
  }

  .woocommerce
    .shop_table.woocommerce-checkout-review-order-table
    .shipping
    td:first-child {
    padding-top: 17px;
    padding-right: 15px;
    line-height: 24px;
  }

  .woocommerce
    .shop_table.woocommerce-checkout-review-order-table
    tfoot
    tr:first-child
    td,
  .woocommerce-page
    .shop_table.woocommerce-checkout-review-order-table
    tfoot
    tr:first-child
    td,
  .woocommerce
    .shop_table.woocommerce-checkout-review-order-table
    tfoot
    tr:first-child
    th,
  .woocommerce-page
    .shop_table.woocommerce-checkout-review-order-table
    tfoot
    tr:first-child
    th {
    padding-top: 20px;
  }

  .woocommerce-page
    .shop_table.woocommerce-checkout-review-order-table
    tfoot
    .order-total
    .amount {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
  }

  .woocommerce
    .shop_table.woocommerce-checkout-review-order-table
    tr
    th:last-child,
  .woocommerce-page
    .shop_table.woocommerce-checkout-review-order-table
    tr
    th:last-child,
  .woocommerce
    .shop_table.woocommerce-checkout-review-order-table
    tr
    td:last-child,
  .woocommerce-page
    .shop_table.woocommerce-checkout-review-order-table
    tr
    td:last-child {
    width: 60%;
    padding-right: 0;
  }

  .woocommerce .order_review_wrapper table.shop_table .product-name {
    font-weight: 700;
    width: 60%;
    padding-left: 2%;
  }
  .woocommerce
    .shop_table.woocommerce-checkout-review-order-table
    tr
    td.product-remove {
    width: 10% !important;
  }
  .woocommerce
    .order_review_wrapper
    table.shop_table
    .product-name
    .product-quantity {
    font-weight: normal;
  }
  .woocommerce .order_review_wrapper table.shop_table .product-thumbnail {
    width: 10%;
  }

  .woocommerce .order_review_wrapper table.shop_table tfoot tr:first-child td,
  .woocommerce-page
    .order_review_wrapper
    table.shop_table
    tfoot
    tr:first-child
    td,
  .woocommerce .order_review_wrapper table.shop_table tfoot tr:first-child th,
  .woocommerce-page
    .order_review_wrapper
    table.shop_table
    tfoot
    tr:first-child
    th {
    border-top: 1px solid #ddd;
  }

  .woocommerce .order_review_wrapper table.shop_table tfoot td,
  .woocommerce .order_review_wrapper table.shop_table tfoot th,
  .woocommerce-page .order_review_wrapper table.shop_table tfoot td,
  .woocommerce-page .order_review_wrapper table.shop_table tfoot th {
    border-top: none;
    font-weight: normal;
    padding: 8px 0;
    font-size: 1rem !important;
  }

  .woocommerce table.shop_table tfoot td,
  .woocommerce-page table.shop_table tfoot td {
    padding: 0px;
  }

  .woocommerce #payment #place_order,
  .woocommerce-page #payment #place_order {
    width: 100%;
    float: none;
    padding-top: 22px !important;
    padding-bottom: 21px !important;
  }

  /* Checkout - Thank you */

  .thank_you_header_text {
    margin: 10px -500px 0;
    padding: 20px 500px 17px;
    background: #8cbd8c;
    position: relative;
  }

  .thank_you_header p {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
  }

  .thank_you_header p:before {
    content: "\f00c";
    display: inline-block;
    margin-right: 10px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .thank_you_header_text:after {
    content: "";
    display: block;
    height: 10px;
    width: 100%;

    background: url("../../images/horizontal-grey-pattern.png") repeat scroll 0
      0 rgba(0, 0, 0, 0);
    background-repeat: repeat-x;
    background-position: -10px 0;
    z-index: 100;
  }

  .thank_you_header_text:after {
    position: absolute;
    bottom: 0px;
    left: 0;
  }

  .thank_you_header .order_details {
    text-align: left;
    margin-bottom: 0;
    padding-top: 30px;
    padding-bottom: 7px;
    display: block;
  }

  .thank_you_header .order_details li {
    width: 40%;
    padding: 0;
    margin: 0;
    margin-bottom: 24px;
    border: none;
  }

  .thank_you_header .order_details li.method {
    margin-right: 0;
  }

  .woocommerce .thank_you_header .order_details li .title,
  .woocommerce-page .thank_you_header .order_details li .title {
    font-size: 0.8125rem;
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
  }

  .woocommerce .thank_you_header .order_details li strong,
  .woocommerce-page .thank_you_header .order_details li strong {
    font-size: 1.125rem;
    font-weight: normal;
  }

  .woocommerce-checkout .order_details.bacs_details li.total,
  .thank_you_header .order_details li.total {
    clear: left;
  }
  .woocommerce-checkout th.total_title_cls {
    width: 24% !important;
    padding-left: 12px !important;
  }

  .thank_you_header .order_details li.order,
  .thank_you_header .order_details li.total {
    width: 40%;
  }

  .thank_you_header .order_details li.date,
  .thank_you_header .order_details li.method {
    margin-right: 0;
    padding-right: 0;
    width: 60%;
  }

  .thank_you_bank_details {
    margin-bottom: 25px;
    margin-top: 50px;
  }

  .order_details.bacs_details {
    margin-bottom: 0;
  }

  .order_details.bacs_details li {
    font-size: 0.8125rem;
    font-weight: 700;
    margin-bottom: 24px;
    clear: left;
    border: none;
  }

  .order_details.bacs_details li strong {
    font-weight: normal;
    font-size: 1rem;
    display: block;
    margin-top: 5px;
  }

  .woocommerce-checkout .content-area .billing_shipping_address_title {
    margin-top: 22px;
  }

  .woocommerce-checkout .shipping_billing_wrapper .columns:last-of-type {
    margin-top: 15px;
  }

  /**********************************************************************************/
  /* Wishlist ***********************************************************************/
  /**********************************************************************************/

  .yith-wcwl-add-to-wishlist {
    margin: 0;
  }

  #yith-wcwl-popup-message {
    display: none !important;
  }

  .yith-wcwl-add-button,
  .yith-wcwl-wishlistaddedbrowse,
  .yith-wcwl-wishlistexistsbrowse {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 2px 0 2px 22px;
    cursor: pointer;
  }

  .yith-wcwl-wishlistaddedbrowse,
  .yith-wcwl-wishlistexistsbrowse {
    cursor: default;
  }

  .yith-wcwl-wishlistaddedbrowse .feedback,
  .yith-wcwl-wishlistexistsbrowse .feedback {
    text-transform: none;
    font-weight: normal;
  }

  .product_infos .yith-wcwl-wishlistexistsbrowse.show a {
    margin-left: 8px;
  }

  .add_to_wishlist:before,
  .product_infos .yith-wcwl-wishlistaddedbrowse:before,
  .product_infos .yith-wcwl-wishlistexistsbrowse:before,
  .products .yith-wcwl-wishlistaddedbrowse a:before,
  .products .yith-wcwl-wishlistexistsbrowse a:before {
    font-size: 16px;
    width: 18px;
    text-align: center;
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .product_infos .add_to_wishlist:before,
  .product_infos .yith-wcwl-wishlistaddedbrowse:before,
  .product_infos .yith-wcwl-wishlistexistsbrowse:before {
    position: absolute;
    left: 0;
    top: 1px;
  }

  .product_infos .yith-wcwl-wishlistaddedbrowse:before,
  .product_infos .yith-wcwl-wishlistexistsbrowse:before,
  .products .yith-wcwl-wishlistaddedbrowse a:before,
  .products .yith-wcwl-wishlistexistsbrowse a:before {
    content: "\f004";
    line-height: 18px;
  }

  .add_to_wishlist:before {
    content: "\f08a";
    line-height: 18px;
  }

  .products .yith-wcwl-add-to-wishlist {
    height: 0;
    overflow: hidden;
  }

  .products li a.add_to_wishlist,
  .products .yith-wcwl-add-button,
  .products .yith-wcwl-wishlistexistsbrowse,
  .products .yith-wcwl-wishlistaddedbrowse {
    font-size: 0;
    line-height: 0;
    padding: 0;
    position: static;
  }

  .products .add_to_wishlist:before,
  .products .yith-wcwl-wishlistaddedbrowse a:before,
  .products .yith-wcwl-wishlistexistsbrowse a:before {
    position: absolute;
    bottom: -36px;
    right: 0;
  }

  .woocommerce .products .star-rating,
  .woocommerce-page .products .star-rating {
    font-size: 10px;
    margin: 0 0 6px;
    top: 2px;
  }

  .yith-wcwl-add-to-wishlist .ajax-loading {
    display: none !important;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
  }

  .products .add_to_wishlist:before {
    transition: color 0.3s;
    -webkit-transition: color 0.3s;
  }

  .yith-wcwl-add-button:after {
    content: "";
    display: inline-block;

    background: rgba(255, 255, 255, 0.9);

    opacity: 0;

    transition: opacity 0.3s, width 3s ease 30s, height 0s ease 30s;
    -webkit-transition: opacity 0.3s, width 0s ease 30s, height 0s ease 30s;
  }

  .products .yith-wcwl-add-button:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 0px;
    height: 0px;
  }

  .yith-wcwl-add-button.show_overlay:after {
    opacity: 1;

    transition: opacity 0.3s, width 0s ease 0s, height 0s ease 0s;
    -webkit-transition: opacity 0.3s, width 0s ease 0s, height 0s ease 0s;
  }

  .product_infos .yith-wcwl-add-button.show_overlay:after {
    width: 48px;
    height: 10px;
  }

  .products .yith-wcwl-add-button.show_overlay:after {
    position: absolute;
    width: 100%;
    height: 100.1%;
  }

  .products .yith-wcwl-add-button.show_overlay.hide:after {
    width: 0px;
    height: 0px;

    opacity: 1;

    transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
  }

  .out_of_stock_button_wrapper .button,
  .out_of_stock_button_wrapper .button:hover {
    background: #ddd !important;
    cursor: default !important;
    box-shadow: none !important;
  }

  .product_list_widget .wishlist-in-stock {
    color: #fff;
    border: 2px solid #fff;
    padding: 2px 9px;
  }

  .product_list_widget .wishlist-out-of-stock {
    color: #98a1c0;
    border: 2px solid #98a1c0;
  }

  #yith-wcwl-form {
    width: 100%;
    margin: 0 auto;
  }

  .woocommerce-wishlist h1.page-title:after {
    display: none;
  }

  .wishlist-title {
    display: none;
  }

  .wishlist_table thead {
    display: none;
  }

  .wishlist_table tr td,
  .wishlist_table tr th {
    text-align: left;
    padding-left: 0 !important;
  }

  .woocommerce #content .shop_table.cart.wishlist_table td,
  .woocommerce .shop_table.cart.wishlist_table td {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .woocommerce #content .shop_table.cart.wishlist_table tr:first-child td,
  .woocommerce .shop_table.cart.wishlist_table tr:first-child td {
    border-top: none !important;
  }

  .woocommerce table.cart.wishlist_table td.product-remove {
    width: 25px;
    min-width: 25px;
    max-width: none;
    text-align: left;
  }

  .woocommerce #content table.cart.wishlist_table a.remove,
  .woocommerce table.cart.wishlist_table a.remove,
  .woocommerce-page #content table.cart.wishlist_table a.remove,
  .woocommerce-page table.cart.wishlist_table a.remove {
    font-size: 0;
    float: none;

    width: auto;
    height: 18px;

    line-height: 18px;

    position: relative;
    top: 1px;
  }

  .wishlist_table .remove:before {
    content: "\f00d";
    display: inline-block;
    font: normal normal normal 18px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .woocommerce-page table.cart.wishlist_table .product-name,
  .woocommerce-page #content table.cart.wishlist_table .product-name {
    vertical-align: middle;
    padding-right: 15px;
    width: auto;
  }

  .woocommerce-page table.cart.wishlist_table .product-name a,
  .woocommerce-page #content table.cart.wishlist_table .product-name a {
    margin-top: 0;
  }

  .woocommerce-page table.cart.wishlist_table .product-subtotal,
  .woocommerce-page #content table.cart.wishlist_table .product-subtotal,
  .woocommerce-page table.cart.wishlist_table .product-stock-status,
  .woocommerce-page #content table.cart.wishlist_table .product-stock-status {
    text-align: left;
  }

  .woocommerce-page table.cart.wishlist_table .product-subtotal,
  .woocommerce-page #content table.cart.wishlist_table .product-subtotal {
    width: 80px;
  }

  .woocommerce-page table.cart.wishlist_table .product-stock-status,
  .woocommerce-page #content table.cart.wishlist_table .product-stock-status {
    display: none;
    padding-left: 30px;
  }

  .wishlist_table tr td.product-stock-status span.wishlist-out-of-stock,
  .wishlist_table tr td.product-stock-status span.wishlist-in-stock,
  .wishlist-in-stock,
  .wishlist-out-of-stock {
    font-size: 0.6875em;
    padding: 3px 5px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 1px;
  }

  .wishlist_table tr td.product-stock-status span.wishlist-in-stock {
    color: #000;
    border: 2px solid;
  }

  .wishlist_table tr td.product-stock-status span.wishlist-out-of-stock {
    color: #b3b3b3;
    border: 2px solid;
  }

  .woocommerce table.cart.wishlist_table .product-price,
  .woocommerce #content table.cart.wishlist_table .product-price {
    display: table-cell;
    font-weight: 700;
    padding-right: 15px;
  }

  .woocommerce-page table.cart.wishlist_table .product-add-to-cart,
  .woocommerce-page #content table.cart.wishlist_table .product-add-to-cart {
    width: 48px;
    padding-right: 0 !important;
  }

  .wishlist_table .button {
    min-width: 157px;
  }

  .product-add-to-cart .button,
  .woocommerce .product-add-to-cart a.alt.button {
    font-size: 0 !important;
    width: 48px;
    height: 48px;
    padding-right: 24px !important;
    padding-left: 24px !important;
    min-width: 0;

    position: relative;
    top: -2px;
  }

  .product-add-to-cart .button:before,
  .woocommerce .product-add-to-cart a.alt.button:before {
    content: "\f07a";
    display: inline-block;
    font: normal normal normal 18px/1 FontAwesome;
    speak: none;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: 15px;
    left: 15px;
  }

  .woocommerce .wishlist_table a.button.loading:after {
    position: absolute;
    top: 17px;
    right: 10px;
  }

  .shop_table.wishlist_table .wc-forward.added_to_cart_button {
    display: none;
  }

  .shop_table.wishlist_table .blockUI.blockOverlay {
    background-color: #fff !important;
  }

  .shop_table.wishlist_table .blockUI.blockOverlay:before {
    color: rgba(0, 0, 0, 0.75) !important;
  }

  input[type="number"]::-webkit-inner-spin-button,
  input[type="number"]::-webkit-outer-spin-button {
    opacity: 1;
  }
  /**********************************************************************************/
  /* Widgets ************************************************************************/
  /**********************************************************************************/

  .woocommerce ul.cart_list li dl dt,
  .woocommerce-page ul.cart_list li dl dt,
  .woocommerce ul.product_list_widget li dl dt,
  .woocommerce-page ul.product_list_widget li dl dt {
    clear: none;
  }

  .woocommerce ul.cart_list li dl,
  .woocommerce-page ul.cart_list li dl,
  .woocommerce ul.product_list_widget li dl,
  .woocommerce-page ul.product_list_widget li dl {
    margin: 10px 0 0 0;
    padding: 0;
    border: 0;
    color: #a1a1a1;
  }

  .woocommerce ul.cart_list li dl dt,
  .woocommerce-page ul.cart_list li dl dt,
  .woocommerce ul.product_list_widget li dl dt,
  .woocommerce-page ul.product_list_widget li dl dt {
    font-weight: normal;
    text-transform: uppercase;
  }

  /**********************************************************************************/
  /* WooCommerce Message ************************************************************/
  /**********************************************************************************/

  /*Start: Changes made by Akshay My Accounts --> My Profile : Primary button needs hover effect  */

  .woocommerce .button:hover {
    background-color: #972615 !important;
    color: #fff !important;
  }

  /*End: Changes made by Akshay My Accounts --> My Profile : Primary button needs hover effect  */

  .myaccount_user .woocommerce-message {
    margin-bottom: 20px !important;
  }

  .woocommerce-error,
  .woocommerce .woocommerce-error,
  .woocommerce-page .woocommerce-error {
    color: #d16d72;
    background: none;
    border: 3px solid #d16d72;
    text-align: left;
  }

  .woocommerce-error:before,
  .woocommerce .woocommerce-error:before,
  .woocommerce-page .woocommerce-error:before {
    color: #b81c23;
    font-size: 17px;
  }
  .woocommerce-NoticeGroup-checkout {
    font-size: 1em;
    margin-bottom: 2em;
  }

  .woocommerce .woocommerce-error .button:focus,
  .woocommerce .woocommerce-info .button:focus,
  .woocommerce .woocommerce-message .button:focus {
    background: none !important;
  }

  .wc-forward a:after,
  .wc-forward:after {
    display: none;
  }

  .checkout_login {
    //margin-top: -22px;
    margin-bottom: 0px;
  }

  .checkout_login form.login {
    margin: 0;
    padding: 0 0 14px;
    border: none;
  }

  .woocommerce form.login p:first-child,
  .woocommerce-page form.login p:first-child {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: center;
    margin: 0px 0px 14px;
  }

  .woocommerce .checkout_login form.login .form-row-first,
  .woocommerce-page .checkout_login form.login .form-row-first,
  .woocommerce .checkout_login form.login .form-row-last,
  .woocommerce-page .checkout_login form.login .form-row-last,
  .checkout_login form.login input[type="submit"] {
    width: 40%;
  }

  .checkout_login form.login input[type="submit"] {
    margin-top: 10px !important;
  }

  .woocommerce form.login .inline {
    display: inline-block !important;
    text-transform: none;
    font-weight: normal;
    font-size: 1rem;
    margin-top: 6px;
  }

  .woocommerce form.login .lost_password a {
    padding-bottom: 4px;
    border-bottom: 1px solid;
  }

  .woocommerce-checkout .woocommerce > .woocommerce-error {
    margin-bottom: 30px !important;
  }

  .woocommerce-checkout .woocommerce > .woocommerce-error a {
    color: #d16d72;
    border-bottom: 1px solid;
  }

  .woocommerce-checkout .woocommerce > .woocommerce-message {
    margin-bottom: 7px !important;
  }

  .woocommerce-checkout .checkout_coupon_box .woocommerce-message {
    margin-top: 15px !important;
    margin-bottom: 40px !important;
    text-align: left !important;
  }

  .notice-border-container {
    height: 3px;
    width: 100px;
    background: #333;
    margin: 2px auto -1px;
  }

  .woocommerce-checkout .showcoupon,
  .woocommerce-checkout .showlogin {
    font-weight: normal;
    margin-left: 8px;
  }

  .woocommerce form.register,
  .woocommerce-page form.register {
    border: none;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
  }

  .woocommerce form.checkout_coupon,
  .woocommerce-page form.checkout_coupon {
    border-top-width: 2px;
    border-top-style: dashed;
    border-bottom-width: 2px;
    border-bottom-style: dashed;
    border-left: none;
    border-right: none;
    padding: 30px;
    margin: 18px -30px 30px;
    border-radius: 0;
    text-align: center;
  }

  .checkout_coupon_inner {
    display: block;
  }

  form.checkout_coupon #coupon_code {
    width: 100%;
    height: 49px;
    display: block;
    margin-bottom: 15px;
    background: none;
  }

  form.checkout_coupon input[type="submit"] {
    min-width: 160px;
  }

  .woocommerce-checkout.woocommerce .checkout_coupon_box .woocommerce-error,
  .woocommerce-checkout.woocommerce-page
    .checkout_coupon_box
    .woocommerce-error {
    margin-top: 18px !important;
    margin-bottom: 45px !important;
  }

  .woocommerce-checkout.woocommerce form.checkout .woocommerce-error,
  .woocommerce-checkout.woocommerce-page form.checkout .woocommerce-error {
    margin-top: 30px !important;
    margin-bottom: 0px !important;
  }

  .woocommerce-account .woocommerce-error {
    margin-top: 66px !important;
  }

  .woocommerce-checkout.woocommerce
    .checkout_coupon_box
    .woocommerce-error:before,
  .woocommerce-checkout.woocommerce-page
    .checkout_coupon_box
    .woocommerce-error:before,
  .woocommerce-checkout.woocommerce form.checkout .woocommerce-error:before,
  .woocommerce-checkout.woocommerce-page
    form.checkout
    .woocommerce-error:before {
    top: 21px;
    left: 13px;
  }

  .woocommerce-checkout .wc-backward {
    color: #b81c23;
  }

  .woocommerce .no-products-info .woocommerce-info,
  .woocommerce-page .no-products-info .woocommerce-info {
    background: none;
    color: #222222;
    text-align: center;
    border: none;
    font-size: 1.5rem;
    line-height: 1.3em;
    padding: 0 !important;
    margin: -10px 0 60px !important;
  }

  .woocommerce .shop-has-sidebar .no-products-info .woocommerce-info,
  .woocommerce-page .shop-has-sidebar .no-products-info .woocommerce-info {
    text-align: left;
  }

  .woocommerce .shop-has-sidebar .no-products-info .woocommerce-info:before,
  .woocommerce-page
    .shop-has-sidebar
    .no-products-info
    .woocommerce-info:before {
    content: "\f071";
    font-size: 24px;
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    position: relative;
    left: 0;
    top: 1px;
  }

  .notice-border-container {
    overflow: hidden;
  }

  .notice-border-container img {
    max-width: none;
  }
  .woocommerce form .form-row .select2-container {
    width: 100% !important;
  }
  /* View Orders page */
  .woocommerce-page .view-order table.shop_table th {
    padding-left: 9px;
  }
  .woocommerce .view-order table.shop_table thead {
    background: rgba(34, 34, 34, 0.05);
  }
  .woocommerce-page .view-order table.shop_table td.amount,
  .woocommerce-page .view-order table.shop_table .product-total {
    text-align: center;
  }
  .woocommerce .view-order .shop_table.order_details td {
    padding-top: 20px;
    padding-right: 40px;
    padding-bottom: 20px;
  }
  .woocommerce .view-order .order_item .shop_table.order_details tr {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .view-order .shop_table.order_details tfoot tr {
    padding-bottom: 27px;
  }
  .woocommerce .view-order .shop_table.order_details td .product-name,
  .woocommerce-page .view-order .shop_table.order_details td .product-name {
    padding-left: 1.4%;
  }
  .woocommerce .view-order .shop_table.order_details tfoot th {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .woocommerce .view-order .shop_table td.product-name {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 1.4%;
  }
  .woocommerce-page
    .view-order
    .shop_table.order_details
    tfoot
    tr:last-child
    td:last-child
    .amount {
    font-weight: normal;
    font-size: 1rem;
  }
  .woocommerce .view-order table.shop_table .total {
    background: rgba(34, 34, 34, 0.05);
  }
  @media screen and (min-width: 760px) and (max-width: 980px) {
    .woocommerce-cart .quantity {
      width: 100% !important;
    }
    #pw-add-cart-container #pw-add-cart-right .button {
      position: relative;
      bottom: 2.8em;
      margin-left: 1em;
      padding: 0.6em !important;
    }
  }

  .recur-price {
    font-size: 1.2rem;
    font-weight: bold;
  }
  .woocommerce .checkout_login form.login .lost_password {
    margin-top: 10px;
    float: left;
  }
  woocommerce-checkout .woocommerce-notices-wrapper {
    margin-bottom: 20px;
  }
  .woocommerce-checkout .woocommerce-info {
    text-align: left;
    font-weight: 600;
    font-size: 85%;
    border-top: none !important;
    padding: 1em 1.3em !important;
  }
  .coupon-row-outer {
    float: left;
  }
  .woocommerce-checkout .woocommerce form.login p:first-child,
  .woocommerce-page form.login p:first-child {
    text-align: left;
    padding-bottom: 4px;
  }

  .woocommerce-checkout .woocommerce form .clear {
    clear: none;
  }
  .woocommerce-checkout .woocommerce form .form-row-last {
    float: left;
  }
  .woocommerce-checkout .woocommerce .checkout_login form.login .lost_password {
    margin-left: 11px;
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
  }
  .notice-border-container {
    background: none;
  }

  .woocommerce-checkout .woocommerce form.checkout_coupon {
    border: none;
  }
  .woocommerce-checkout .woocommerce form.checkout_coupon,
  .woocommerce-page form.checkout_coupon {
    padding: 0;
  }
  .woocommerce-checkout .coupon-inner {
    float: left !important;
    width: 100%;
  }
  .woocommerce-checkout .woocommerce form.checkout_coupon,
  .woocommerce-page form.checkout_coupon {
    text-align: left;
  }
  .woocommerce-checkout .coupon-row-outer {
    width: 100%;
  }
  .woocommerce-checkout .woocommerce form.checkout_coupon,
  .woocommerce-page form.checkout_coupon {
    float: left;
    width: 100%;
    background-color: #f2f2f2;
    padding: 20px 20px;
    margin-left: 0;
  }
  .checkout_coupon_inner {
    margin-left: 34px;
  }
  .woocommerce-checkout form.checkout_coupon #coupon-button {
    width: 190px;
    background-color: #222 !important;
    color: #fff;
  }
  .woocommerce-checkout form.checkout_coupon #coupon_code {
    background: #fff;
  }
  .woocommerce-checkout .woocommerce-error {
    margin-bottom: 20px !important;
  }
  .woocommerce-checkout .woocommerce form.login .lost_password a {
    border: none;
  }

  ul li ul,
  ul li ol,
  ul,
  ol,
  dl {
    font-family: inherit;
    /*font-size: 1.125rem;*/
    line-height: 1.5;
    list-style-position: outside;
  }

  table {
    table-layout: auto;
  }

  table tr.even,
  table tr.alt,
  table thead tr th,
  table tfoot tr th,
  table tbody tr td,
  table tr td,
  table tfoot tr td {
    line-height: 1.8rem;
  }

  table tr td {
    font-size: 1.125rem;
  }

  .bypostauthor {
  }

  .clear {
    clear: both;
  }

  .owl-carousel {
    width: auto;
    margin-left: -10px !important;
    margin-right: -10px !important;
  }

  .owl-theme .owl-controls {
    margin-top: 0;
  }

  .owl-theme .owl-controls .owl-page span {
    width: 6px;
    height: 6px;
    margin: 5px 3px;
  }

  .fr-thumbnail-loading-background,
  .fr-loading-background {
    opacity: 1;
    background: #fff;
  }

  .fr-thumbnail-loading-background,
  .fr-loading-background,
  .yith-wcwl-add-button:after,
  .owl-item.loading {
    background-image: url("images/preloader-white-bg-32.gif") !important;
    background-position: center;
    background-repeat: no-repeat;
  }

  .dropcap {
    float: left;
    font-size: 75px;
    font-weight: 900;
    line-height: 60px;
    padding: 8px 18px 5px 0px;
  }

  .blog .dropcap {
    float: none;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    padding: inherit;
  }

  /**********************************************************************************/
  /* Forms  *************************************************************************/
  /**********************************************************************************/

  input {
    background: none;
  }

  #coupon_code {
    background-color: #fff;
    border-width: 1px;
    border-style: solid;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    font-size: 14px;
    line-height: 16px;
    color: #313131 !important;
    border-radius: 6px 0 0 6px;
    border-color: #d4d4d8;
  }
  input#coupon_code:focus {
    background-color: #fff !important;
    border-color: #8d8d8d !important;
  }

  .chosen-container .chosen-results li {
    font-size: 1rem;
    color: #444;
    background-color: #fff;
    padding: 11px 12px;
    outline: none;
    font-weight: 900;
    margin: 0;
  }

  input[type="text"]:focus,
  input[type="password"]:focus,
  input[type="date"]:focus,
  input[type="datetime"]:focus,
  input[type="datetime-local"]:focus,
  input[type="month"]:focus,
  input[type="week"]:focus,
  input[type="email"]:focus,
  input[type="number"]:focus,
  input[type="search"]:focus,
  input[type="tel"]:focus,
  input[type="time"]:focus,
  input[type="url"]:focus,
  textarea:focus,
  select:focus,
  #coupon_code:focus,
  .chosen-container-single .chosen-single:focus {
    color: #444;
    background-color: #fafafa;
  }

  .product_cat-new-masterclass textarea:focus {
    background-color: #fff;
  }

  .comments_section textarea,
  .comments_section input[type="text"],
  .comments_section input[type="password"],
  .comments_section input[type="date"],
  .comments_section input[type="datetime"],
  .comments_section input[type="datetime-local"],
  .comments_section input[type="month"],
  .comments_section input[type="week"],
  .comments_section input[type="email"],
  .comments_section input[type="number"],
  .comments_section input[type="search"],
  .comments_section input[type="tel"],
  .comments_section input[type="time"],
  .comments_section input[type="url"] {
    background-color: #fff;
    border-color: #ddd;
  }
  .product_cat-new-masterclass textarea,
  .product_cat-new-masterclass input[type="text"],
  .product_cat-new-masterclass input[type="email"] {
    border: 1px solid #c1c1c1;
  }

  .product_cat-new-masterclass textarea:focus,
  .product_cat-new-masterclass input[type="text"]:focus,
  .product_cat-new-masterclass input[type="email"]:focus {
    background-color: #fff;
    border: 1px solid #8d8d8d;
  }

  .product_cat-new-masterclass textarea:focus-visible,
  .product_cat-new-masterclass input[type="text"]:focus-visible,
  .product_cat-new-masterclass input[type="email"]:focus-visible {
    outline: none;
  }

  ::-webkit-input-placeholder {
    font-weight: normal;
    color: #a1a1a1;
  }
  ::-moz-placeholder {
    font-weight: normal;
    color: #a1a1a1;
    opacity: 1;
  } /* firefox 19+ */
  :-ms-input-placeholder {
    font-weight: normal;
    color: #a1a1a1;
  } /* ie */
  input:-moz-placeholder {
    font-weight: normal;
    color: #a1a1a1;
  }

  /*button*/

  button,
  .button {
    text-transform: capitalize;
    /*color:#fff !important;*/
    font-size: 13px;
  }
  .woocommerce-cart button,
  .woocommerce-cart .button {
    text-transform: capitalize;
  }

  .mejs-container button,
  .mejs-container .button,
  .mejs-container input[type="button"],
  .mejs-container input[type="reset"],
  .mejs-container input[type="submit"] {
    background-color: transparent !important;
    padding: 0 !important;
    min-width: 15px !important;
    width: auto !important;
  }

  button:hover,
  .button:hover,
  input[type="button"]:hover,
  input[type="reset"]:hover,
  input[type="submit"]:hover {
    color: #fff;
  }

  label {
    font-size: 0.8125rem;
    font-weight: bold;
    margin-top: 8px;
    margin-bottom: 1px;
    line-height: 2em;
  }

  input[type="checkbox"] + label,
  input[type="radio"] + label {
    margin-left: 0;
    margin-right: 0;
  }

  .check_box_radio,
  .check_box {
    left: -9999px;
    position: absolute;
  }

  .woocommerce form .form-row label.check_label_radio,
  .woocommerce-page form .form-row label.check_label,
  .check_label_radio,
  .check_label {
    display: inline-block;
    line-height: 1.1em;
    cursor: pointer;
    vertical-align: middle;
    padding-left: 32px;
    position: relative;
    text-indent: 0;
  }

  .check_label_radio {
    font-size: 1rem;
    line-height: 1.3em;
    padding-top: 1px;
    text-transform: uppercase;
  }

  .check_label_radio:before {
    content: "";
    display: block;
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 3px;

    background-image: url("../responsive-child/images/radio.png");
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: 16px 40px;
    background-position: 0 0;

    border-radius: 16px;
    -moz-border-radius: 16px;
    -webkit-border-radius: 16px;
    overflow: hidden;
  }

  .check_label {
    font-weight: normal;
    font-size: 0.875em;
    padding-top: 0px;
    text-transform: none;
    margin: 0 0 15px;
    line-height: 20px !important;
  }

  .check_label:before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    left: 0;
    top: 0px;
    background-image: url("images/checkbox.png");
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: 20px 40px;
    background-position: 0 0;
  }

  .check_box_radio:checked + .check_label_radio:before {
    background-position: 0px -24px;
  }

  .check_box:checked + .check_label:before {
    background-position: 0px -20px;
  }

  /* select2 */

  .big-select:hover {
    background-color: transparent;
  }

  .big-select:focus {
    outline: none;
  }

  .select2-container,
  .big-select,
  .select.big-select {
    font-size: 1.5rem !important;
    border: none;
    background-color: transparent;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 0;
    margin: 0;
    width: auto !important;
    font-weight: normal;
    opacity: 1;
    width: auto;
    line-height: 1;
    height: 40px;
  }

  select.big-select {
    /*border: 1px solid #EEEEEE;*/
    font-size: 13px !important;
    font-weight: bold;
    padding: 9px 11px 11px;
    text-transform: uppercase;
    width: 100% !important;
    max-width: 320px;
  }

  .variations select.big-select {
    font-size: 1.5rem !important;
    text-transform: none;
    padding: 0 20px 0 0;
    width: auto !important;
  }

  .select2-dropdown-open.select2-drop-above .select2-choice,
  .select2-dropdown-open.select2-drop-above .select2-choices,
  .select2-container .select2-choice {
    background: none;
    border: none;
    filter: none;
    font-weight: 900;
    padding: 0;
    padding-right: 26px;
    box-shadow: none;
    height: auto;
    line-height: 1;
  }

  .select2-container .select2-choice > .select2-chosen {
    margin: 0;
  }

  .select2-container .select2-choice .select2-arrow {
    background: none;
    background-image: none;
    filter: none;
    border: none;
    border-radius: 0;
    font-size: 0.692em;
    line-height: 1em;
    box-shadow: none;
  }

  .select2-container .select2-choice .select2-arrow:before {
    content: "\f107";
    display: block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .select2-search {
    padding-top: 5px;
  }

  .select2-search input {
    padding: 6px 8px 7px !important;
  }

  .select2-results {
    font-size: 14px;
    margin: 0;
    padding: 5px 0;
  }

  .select2-drop {
    min-width: 250px !important;
    border: none;
    margin-top: 9px;
    margin-left: -15px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 0;
  }

  .select2-drop.select2-drop-above {
    margin-bottom: 6px;
  }

  .select2-drop.select2-drop-above.select2-drop-active {
    border: 0;
    border-radius: 0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  }

  .select2-results .select2-result-label {
    padding: 3px 16px 4px;
  }

  .select2-offscreen,
  .select2-offscreen:focus {
    border: 0 none !important;
    clip: rect(0px, 0px, 0px, 0px) !important;
    height: 26px !important;
    left: 0 !important;
    margin: 0 !important;
    outline: 0 none !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    top: 0 !important;
    width: 1px !important;
  }

  .woocommerce-ordering select.big-select {
    max-width: none;
    padding: 12px 0px 12px 0;
    height: 40px;
  }

  .catalog-ordering .big-select,
  .select2-container.topbar-language-switcher,
  .select2-container.wcml_currency_switcher {
    font-size: 0.8125rem !important;
    font-weight: bold;
    text-transform: uppercase;
  }

  .select2-container.topbar-language-switcher,
  .select2-container.wcml_currency_switcher {
    margin-right: 23px;
  }

  .catalog-ordering .select2-container {
    padding-top: 12px;
    line-height: 40px;
    height: 40px;
  }

  .select2-container.topbar-language-switcher,
  .select2-container.wcml_currency_switcher {
    height: 43px;
    line-height: 43px;
    padding-top: 15px;
  }

  .catalog-ordering .select2-container .select2-choice {
    font-weight: bold;
  }

  .catalog-ordering .select2-container .select2-choice .select2-arrow {
    font-size: 18px;
    line-height: 24px;
  }

  .select2-container.topbar-language-switcher .select2-choice .select2-arrow,
  .select2-container.wcml_currency_switcher .select2-choice .select2-arrow {
    font-size: 13px;
    line-height: 1em;
  }

  .catalog-ordering .select2-container .select2-choice .select2-arrow:before {
    display: block;
    line-height: 13px;
  }

  .woocommerce.archive .select2-drop,
  .woocommerce-page.archive .select2-drop {
    margin-top: 1px;
  }

  .variations .select2-container {
    padding-top: 9px;
  }

  .variations .select2-container .select2-choice > .select2-chosen {
    line-height: 20px;
  }

  .variations .select2-container .select2-choice .select2-arrow:before {
    line-height: 23px;
  }

  .cart-collaterals select {
    color: rgba(0, 0, 0, 0.75);
    font-weight: bold;
  }

  .select2-search input.select2-active {
    background: none;
  }

  .select2-container.select2-container-disabled,
  .select2-container.select2-container-disabled .select2-choice,
  .select2-container.select2-container-disabled .select2-choice .select2-arrow {
    background: none;
    border: none;
  }

  /*Select2 on Checkout and MyAccount*/

  .country_select.select2-container,
  .state_select.select2-container {
    display: block;

    border-style: solid;
    border-width: 1px;
    background: none repeat scroll 0 0 #fff;

    width: 100% !important;
    height: auto;
  }

  .country_select.select2-container .select2-choice > .select2-chosen,
  .state_select.select2-container .select2-choice > .select2-chosen {
    font-size: 1rem;
    font-weight: bold;
    line-height: 20px;
    color: #444;
    padding: 0.5rem;
    height: 38px;
  }

  .woocommerce-account .select2-drop,
  .woocommerce-checkout .select2-drop {
    margin: 0px;
  }

  .woocommerce-account .select2-drop.select2-drop-above,
  .woocommerce-checkout .select2-drop.select2-drop-above {
    margin-top: -36px;
  }

  .country_select.select2-container .select2-choice .select2-arrow,
  .state_select.select2-container .select2-choice .select2-arrow {
    color: #444;
    top: 11px;
  }

  /**********************************************************************************/
  /* Footer *************************************************************************/
  /**********************************************************************************/

  .site-footer-widget-area {
    display: none;
    margin-top: -2px;
    margin-bottom: 40px;
  }

  .site-footer-widget-area > .row {
    border-bottom: 1px solid #ddd;
  }

  .trigger-footer-widget-area {
    text-align: center;
    margin: -55px 30px 40px;
    border-bottom: 1px solid #ddd;
  }

  #site-footer .copyright_text {
    margin-top: -5px;
    margin-bottom: 26px;
  }

  #site-footer .copyright_text a {
    display: inline-block;
    line-height: 1.1;
    border-bottom: 1px solid;
  }

  .trigger-footer-widget-icon {
    display: inline-block !important;
    padding: 9px 20px;
    margin-bottom: 1px;
  }

  .trigger-footer-widget-icon:before {
    content: "\f141";
    display: inline-block;
    font-size: 24px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 30px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .trigger-footer-widget-icon:hover {
    cursor: pointer;
  }

  .trigger-footer-widget-icon.active:hover {
    cursor: default;
  }

  #site-footer .widget li:last-child {
    padding-bottom: 0;
  }

  #site-footer .button.checkout.wc-forward {
    margin-bottom: 0;
  }

  .footer_socials_wrapper {
    text-align: center;
    margin-bottom: 21px;
    margin-left: 0;
  }

  .footer_socials_wrapper li {
    display: inline-block;
    font-size: 24px;
    margin: 0 15px 15px;
  }

  .footer-navigation-wrapper {
    text-align: center;
  }

  .footer-navigation-wrapper ul {
    list-style: none;
    display: inline-block;
    text-align: center;
    line-height: 14px;
    margin-bottom: 19px;
    margin-top: -2px;
    margin-left: 0;
  }

  .footer-navigation-wrapper ul:after {
    content: "";
    display: block;
    clear: both;
  }

  .footer-navigation-wrapper ul li {
    display: block;
    margin: 0px 0px 15px 0;
  }

  .footer-navigation-wrapper ul li:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }

  .footer-navigation-wrapper ul li a {
    font-size: 15px;
    line-height: 1;
  }

  /**********************************************************************************/
  /* Blog ***************************************************************************/
  /**********************************************************************************/

  /* General */

  .top-page-excerpt,
  .top-page-excerpt p {
    text-align: center;
    font-size: 0.875rem;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
  }

  .content-area {
    position: relative;
  }

  #page_wrapper.transparent_header .page-title-hidden .content-area,
  #page_wrapper.transparent_header .content-area.blog-single,
  #page_wrapper.transparent_header .content-area.shop-page {
    /*padding:0 !important;*/
    margin: 0 !important;
  }

  .entry-content:after {
    content: "";
    display: block;
    clear: both;
  }

  .entry-header-page {
    margin-bottom: 45px;
  }

  .edit-link {
    font-size: 0.8125rem;
    text-transform: uppercase;
    font-weight: 900;
  }

  /* Post Meta */

  .post_meta_archive,
  .post_meta {
    font-size: 0.825rem;
    line-height: 1.5em;
  }

  .post_meta {
    text-align: center;
    margin: 0;
    margin-bottom: 80px;
  }

  .post_meta_archive a,
  .post_meta a {
    margin-right: 16px;
    margin-left: 4px;
    text-transform: uppercase;
    font-weight: 900;
  }

  .post_meta a {
    display: inline-block;
    padding-bottom: 4px;
    margin-bottom: 8px;
    border-bottom: 1px solid #ddd;

    transition: color 0.3s, border-color 0.3s;
    -webkit-transition: color 0.3s, border-color 0.3s;
  }

  .post_meta a:hover {
    border-bottom: 1px solid transparent;
  }

  .post_meta_archive a:last-child,
  .post_meta a:last-child {
    margin-right: 0;
  }

  .post_meta_archive a {
    font-weight: bold;
  }

  .post_meta_archive a[rel^="category"],
  .post_meta a[rel^="category"] {
    margin-right: 0;
  }

  .post_meta:before {
    content: "";
    display: block;
    background: none repeat scroll 0 0 #000;
    height: 3px;
    margin: 24px auto 28px;
    width: 100px;
  }

  .entry-meta .post_meta {
    font-size: 13px;
    margin-top: 20px;
    margin-bottom: 54px;
  }

  .entry-meta .post_meta:before {
    display: none;
    margin-bottom: 31px;
  }

  /* Tags */

  .post_tags {
    text-align: center;
  }

  .post_tags a {
    display: inline-block;
    font-size: 12px;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 10px;
    margin-left: 10px;
    padding: 6px 13px 4px;
    border-width: 1px;
    border-style: solid;
    border-radius: 13px;
    text-transform: uppercase;
    word-wrap: break-word;

    transition: all 0.3s;
    -webkit-transition: all 0.3s;
  }

  .post_tags a:first-child {
    margin-left: 0;
  }

  .post_tags a:hover {
    border: 1px solid;
    color: #fff;
  }

  /* Blog Listing */

  .blog-isotop-container #filters {
    display: none;
  }

  .blog-isotope {
    position: relative;
  }

  .blog-isotope .wpb_row,
  .blog-isotope .wpb_content_element,
  .blog-isotope ul.wpb_thumbnails-fluid > li,
  .blog-isotope .last_toggle_el_margin,
  .blog-isotope .wpb_button {
    margin-bottom: 0;
  }

  .blog-isotope:after {
    content: "";
    display: block;
    clear: both;
  }

  .blog-post,
  .grid-sizer {
    width: 100%;
    float: left;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    opacity: 1;
    transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
  }

  .blog-post.hidden {
    opacity: 0;
    transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
  }

  .blog-post-inner {
    position: relative;
  }

  .page-title-desc,
  .page-type {
    text-align: center;
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    line-height: 1.5;
  }

  .entry-title-archive {
    font-size: 1.875rem;
    line-height: 1.1333em;
    margin-bottom: 17px;
    font-weight: 900;
  }

  h1.entry-title-archive {
    margin-top: 0;
  }

  .thumbnail_archive {
    display: block;
    margin-top: 8px;

    transition: color 0.35s;
    -webkit-transition: color 0.35s;
  }

  div.blog-post:first-of-type {
    margin-top: -100px;
  }

  .entry-title-archive a {
    color: #000;
  }

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

  .blog-isotop-container {
    padding: 0;
    margin-left: -30px;
    margin-right: -30px;
  }

  .blog-post {
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
  }

  .blog-post .blog-post-inner {
    padding-bottom: 37px;
  }

  .post_meta_archive,
  .entry-title-archive span,
  .gallery-title,
  .entry-content-archive {
    margin-left: 30px;
    margin-right: 30px;
  }

  .entry-title-archive span {
    display: block;
  }

  .thumbnail_archive_container {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 24px;
  }

  .thumbnail_archive_container:before {
    content: "";
    display: block;

    /*background: #000;*/
    opacity: 0;

    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;

    transition: opacity 0.35s;
    -webkit-transition: opacity 0.35s;
  }

  .entry-title-archive .thumbnail_archive_container {
    margin-left: 0;
    margin-right: 0;
  }

  .thumbnail_archive img {
    width: -webkit-calc(100% + 50px);
    width: calc(100% + 50px);
    max-width: none;

    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;

    -webkit-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0);
  }

  .thumbnail_archive:hover .thumbnail_archive_container:before {
    opacity: 0.6;
  }

  .thumbnail_archive:hover img {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }

  .post_meta_archive {
    text-align: left;
    margin-bottom: 13px;
  }

  .more-link {
    font-weight: bold;
    font-size: 0.8125rem;
    text-transform: uppercase;
    margin-top: 13px;
    display: block;

    transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
  }

  .more-link:hover {
    opacity: 0.8;
  }

  .blog-isotope .entry-content-archive h1,
  .blog-isotope .entry-content-archive h2,
  .blog-isotope .entry-content-archive h3,
  .blog-isotope .entry-content-archive h4,
  .blog-isotope .entry-content-archive h5 {
    font-size: 1rem;
    line-height: 1.625em;
    margin-bottom: 10px;
  }

  .blog-isotope .entry-content-archive h6 {
    display: none;
  }

  .blog-isotope .entry-content-archive,
  .blog-isotope .entry-content-archive p,
  .blog-isotope .entry-content-archive ul,
  .blog-isotope .entry-content-archive ol,
  .blog-isotope .entry-content-archive dl {
    font-size: 1rem;
    line-height: 1.5em;
    margin-bottom: 10px;
  }

  .blog-isotope .larger {
    text-align: left !important;
  }

  .blog-isotope .gallery-caption {
    display: none;
  }

  .entry-content-archive .gallery {
    display: none;
  }

  .blog-post .video-container {
    padding-bottom: 32px;
    margin-top: 23px;
  }

  .blog-post.audio iframe {
    margin-top: 15px;
  }

  .blog-post .wp-caption {
    display: inline-block;
    height: auto !important;
  }

  /* Standard Post Format */

  .single-post-header.with-thumb {
    margin-top: -85px;
    margin-bottom: 50px;
    position: relative;
  }

  .single-post-header.with-thumb .title {
    padding: 125px 0 55px 0;
  }

  .single-post-header-bkg {
    width: 100%;
    height: 100%;

    opacity: 0;
    background-size: cover;
    background-position: center 0px;

    position: absolute;
    left: 0;
    top: 0;

    transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
  }

  .single-post-header-bkg.loaded {
    opacity: 1;
  }

  .single-post-header-overlay {
    content: "";
    display: block;

    width: 100%;
    height: 100%;

    background: #000;
    opacity: 0.3;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
  }

  .single-post-header.with-thumb .entry-title,
  .single-post-header.with-thumb .post_meta,
  .single-post-header.with-thumb .post_meta a {
    color: #fff;
  }

  .single-post-header.with-thumb .post_meta a:hover {
    color: #fff !important;
  }

  .single-post-header.with-thumb .post_meta:before {
    background: #fff;
  }

  .entry-title a {
    color: #000;
  }

  .entry-title a:hover {
    color: #777777;
  }

  .entry-content h6 img {
    margin: 15px 0 20px;
  }

  .entry-thumbnail {
    margin: 0 -30px 22px;
  }

  .blog-single .drop-cap:first-letter {
    float: left;
    font-size: 6.25em;
    margin-right: 0.17em;
    line-height: 80%;
    font-weight: bold;
  }

  .wp-caption {
    position: relative;
  }

  .wp-caption-text,
  .blog-isotope .entry-content-archive p.wp-caption-text {
    padding: 15px 0 0;
    margin: 0;
  }

  .wp-caption.alignnone {
    margin-bottom: 20px;
  }

  .wp-caption.alignright,
  img.alignright,
  .wp-caption.alignleft,
  img.alignleft {
    margin-bottom: 10px;
  }

  .wp-caption.alignleft {
    margin-right: 0.9375em;
  }

  .wp-caption.aligncenter {
    margin-bottom: 16px;
  }

  blockquote {
    position: relative;
  }

  blockquote:before {
    content: "\f10d";
    left: -2px;
    top: 4px;
  }

  blockquote p {
    font-size: 1.875rem;
    line-height: 1.333em;
    padding-left: 30px;
    position: relative;
    margin-bottom: 0;
  }

  .nav-next-title:after,
  .nav-previous-title:before,
  blockquote:before {
    display: inline-block;
    position: absolute;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .keystroke,
  kbd {
    background-color: #f5f5f5;
    border-color: #dddddd;
    padding: 2px 6px 3px;
  }

  .post_footer_date {
    margin: 80px 0 50px 0;
  }

  .content_hr {
    margin: 50px 0 100px 0;
    border-color: #eee;
  }

  .video-container {
    padding-bottom: 65px;
    margin-top: 25px;
    text-align: center;
  }

  .video-container iframe {
    margin: 0 auto !important;
  }

  .mejs-container {
    margin: 20px 0;
  }

  .mejs-container .mejs-controls > div:last-of-type {
    position: relative;
    clear: both;
    float: right;
    top: -26px;
  }

  /**********************************************************************************/
  /* Parallax Container *************************************************************/
  /**********************************************************************************/

  .parallax-container {
    color: #ffffff;
    width: 100%;
    overflow: hidden;
    padding: 0;
    background-size: cover !important;
    position: relative;
    margin: -120px 0 73px;
    text-align: left;
    background-attachment: scroll;
    background-repeat: repeat-y;
    background-position: 50% 0;
  }

  .parallax-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.2) repeat scroll;
  }

  .parallax-content {
    padding-bottom: 130px;
  }

  .parallax-container .entry-title {
    font-size: 3.125em;
    color: #fff;
    margin: 0;
    padding: 130px 0 39px;
  }

  .parallax-container p {
    font-size: 1.125em;
    line-height: 1.666em;
  }

  /* Error 404 */
  /* No Search Results */

  .error-404,
  .no-results {
    text-align: center;
    margin-top: -30px;
  }

  .error-404 h1.page-title,
  .no-results h1.page-title {
    line-height: 1;
    font-weight: 900;
  }

  .error-404 h1.page-title {
    margin-bottom: 23px;
  }

  .no-results h1.page-title {
    margin-top: 100px;
    margin-bottom: 30px;
  }

  .error-404 h1.page-title:after,
  .no-results h1.page-title:after {
    display: none;
  }

  .error-banner {
    padding: 5px 0 30px;
  }

  .error-banner img {
    max-width: 120px;
  }

  .error-404 .page-header,
  .no-results .page-header {
    margin-bottom: 0;
  }

  .error-404-text {
    margin-bottom: 35px;
  }

  .no-results-text {
    margin-bottom: 42px;
  }

  .no-results-text:before {
    content: "\f071";
    display: inline-block;
    margin-right: 10px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .error-404 .search-form,
  .no-results .search-form {
    display: block;
    padding-bottom: 47px;
  }

  .error-404 .search-form:after,
  .no-results .search-form:after {
    content: "";
    display: block;
    clear: both;
  }

  .error-404 .search-form label,
  .no-results .search-form label {
    display: none;
  }

  .error-404 input[type="text"],
  .error-404 input[type="search"],
  .error-404 input[type="submit"],
  .no-results input[type="text"],
  .no-results input[type="search"],
  .no-results input[type="submit"] {
    float: left;
    height: 50px;
  }

  .error-404 input[type="text"],
  .error-404 input[type="search"],
  .no-results input[type="text"],
  .no-results input[type="search"] {
    margin-bottom: 20px;
  }

  /* Categories List */

  .site-content .list-centered,
  .list-centered {
    margin-left: 0;
    margin-bottom: 5px;
    text-align: center;
    list-style: none;
  }

  .list-centered li {
    display: inline-block;
  }

  .list-centered li a {
    font-size: 13px;
    font-weight: bold;
    margin-left: 2px;
    margin-bottom: 10px;
    margin: 0 12px 5px;
    padding: 5px 0px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    background: none;
    text-transform: uppercase;
    display: inline-block;

    transition: color 0.3s, border-color 0.2s;
    -webkit-transition: color 0.3s, border-color 0.3s;
  }

  .list-centered li a:hover {
    border-bottom: 1px solid transparent;
  }

  /* Password Protected Post */

  .post-password-form input {
    margin-bottom: 10px;
  }

  /* Navigation */
  .paging-navigation,
  .post-navigation {
    background: #fafafa;
    position: relative;
    height: 70px;
    margin-top: 50px;
  }

  .portfolio_content_nav .post-navigation {
    margin-top: 0;
  }

  .nav-previous {
    margin-left: -30px;
    margin-right: -10px;
    font-size: 0;
  }

  .nav-next {
    margin-left: -9px;
    margin-right: -30px;
    font-size: 0;
  }

  .nav-next a,
  .nav-previous a {
    font-size: 0.875em;
    font-weight: 900;
    display: block;
    background: #f5f5f5;
    height: 70px;
    text-align: center;
    padding-top: 20px;
    position: relative;
    z-index: 2;
  }

  .nav-next .nav-next-title,
  .nav-previous .nav-previous-title,
  .nav-next a span,
  .nav-previous a span {
    display: none;
  }

  .nav-previous.disabled {
    background: #d7d7d7;
  }

  .paging-navigation:before,
  .paging-navigation:after,
  .post-navigation:before,
  .post-navigation:after,
  .nav-next a:before,
  .nav-previous a:before {
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 30px;
  }

  .paging-navigation:before,
  .post-navigation:before,
  .nav-previous a:before {
    content: "\f104";
  }

  .paging-navigation:after,
  .post-navigation:after,
  .nav-next a:before {
    content: "\f105";
  }

  .paging-navigation:before,
  .paging-navigation:after,
  .post-navigation:before,
  .post-navigation:after {
    position: absolute;
    top: 50%;
    margin-top: -15px;
    color: #ccc;
  }

  .paging-navigation:before,
  .post-navigation:before {
    left: 25%;
    margin-left: -5px;
  }

  .paging-navigation:after,
  .post-navigation:after {
    left: 75%;
    margin-left: -5px;
  }

  .nav-next-title,
  .nav-previous-title {
    position: relative;
  }

  .nav-previous-title {
    padding-left: 15px;
  }

  .nav-next-title {
    padding-right: 15px;
  }

  .nav-previous .meta-nav {
    display: inline-block;
    margin-right: 5px;
  }

  .nav-next .meta-nav {
    display: inline-block;
    margin-left: 5px;
  }

  .nav-previous-title:before,
  .nav-next-title:after {
    font-size: 8px;
  }

  .nav-previous-title:before {
    content: "\f053";
    left: 0;
    top: 10px;
  }

  .nav-next-title:after {
    content: "\f054";
    right: 0;
    top: 10px;
  }

  /* Paging Navigation */

  #nav-below.paging-navigation {
    text-transform: capitalize;
    margin-bottom: 0px;
  }

  .paging-navigation .fa {
    font-size: 0.38em;
    display: none;
    vertical-align: middle;
    padding-bottom: 3px;
  }

  .paging-navigation .nav-previous,
  .paging-navigation .nav-next {
    display: block;
  }

  /* Comments */

  .comments_section {
    border-top-width: 1px;
    border-top-style: solid;
  }

  .with-sidebar .comments_section {
    background: none;
  }

  .comment-author {
    margin-bottom: 0px;
    font-weight: 900;
  }

  .comment-metadata {
    margin-top: -5px;
    margin-bottom: 17px;
  }

  .comment-reply {
    display: inline-block;

    transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
  }

  .comment-reply i,
  .comment-edit-link i {
    margin-right: 5px;
  }

  .comment-reply-link {
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
  }

  #respond {
    margin-top: 20px;
  }

  #commentform p {
    margin: 0;
    padding: 5px 0;
  }

  #commentform .comment-notes {
    padding: 0 0 16px;
  }

  #commentform .form-submit {
    text-align: left;
    margin-top: 10px;
  }

  .comment-edit-link {
    font-size: 0.8125rem;
    text-transform: uppercase;
    font-weight: 900;

    transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
  }

  .comment-edit-link:hover,
  .comment-reply:hover {
    opacity: 0.8;
  }

  /* Pingbacks And Trackbacks */

  .comment-list .pingback {
    padding-bottom: 29px;
    margin-bottom: 29px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
  }

  .comment-list .pingback:last-of-type {
    border-bottom: none;
  }

  .comment-list .pingback .url {
    display: block;
    font-weight: 900;
    line-height: 1.5;
    margin: 5px 0;
  }

  /**********************************************************************************/
  /* Shop Catalog *******************************************************************/
  /**********************************************************************************/

  .filters_button {
    font-size: 1.15em;
    padding: 0 1em 1px 1.3em;
    vertical-align: text-bottom;
    position: relative;
    display: inline-block;
  }

  .filters_button:before {
    width: 16px;
    height: 16px;
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    display: block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    content: "\f0c9";
    font-size: 0.75em;
  }

  .product_after_shop_loop {
    height: 33px;
    overflow: hidden;
    margin-top: -0.3em;
  }

  .product_after_shop_loop_switcher {
    height: 66px;
    overflow: hidden;
    -webkit-transition: -webkit-transform 0.3s ease;
    -moz-transition: -moz-transform 0.3s ease;
    -o-transition: -o-transform 0.3s ease;
    -ms-transition: -ms-transform 0.3s ease;
    transition: transform 0.3s ease;
    -moz-transform: rotate(0);
    -webkit-transform: translateZ(0);
  }

  .products li:not(.catalog_mode):hover .product_after_shop_loop_switcher {
    transform: translateY(-33px);
    -ms-transform: translateY(-33px);
    -webkit-transform: translateY(-33px);
  }

  .products li.product_added_to_cart .product_after_shop_loop_switcher {
    transform: translateY(-33px);
    -ms-transform: translateY(-33px);
    -webkit-transform: translateY(-33px);

    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    -ms-transition: none;
    transition: none;
  }

  .product_after_shop_loop .price,
  .product_after_shop_loop .price ins {
    font-size: 0.875rem;
    line-height: 16px;
  }

  .product_after_shop_loop .price ins {
    background: none;
    padding: 0;
    padding-left: 4px;
  }

  .product_after_shop_loop_price {
    height: 33px;
    overflow: hidden;
  }

  .product_after_shop_loop_buttons {
    height: 33px;
    overflow: hidden;
  }

  .product_thumbnail_wrapper {
    position: relative;
  }

  .product_thumbnail.with_second_image {
    position: relative;
  }

  .product_thumbnail_background {
    width: 100%;
    height: 100%;
    opacity: 0;
    display: block;
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;

    -webkit-transition: opacity 0ms ease 0.3s !important;
    -moz-transition: opacity 0ms ease 0.3s !important;
    transition: opacity 0ms ease 0.3s !important;
  }

  .product_thumbnail.with_second_image:hover .product_thumbnail_background {
    opacity: 1;

    -webkit-transition: opacity 0ms ease 0s !important;
    -moz-transition: opacity 0ms ease 0s !important;
    transition: opacity 0ms ease 0s !important;
  }

  .product_thumbnail.with_second_image.second_image_loaded img {
    opacity: 1 !important;

    transform: translateZ(0) rotate(0);
    -webkit-transform: translateZ(0) rotate(0);

    -webkit-transition: opacity 300ms ease 0s !important;
    -moz-transition: opacity 300ms ease 0s !important;
    transition: opacity 300ms ease 0s !important;
  }

  .product_thumbnail.with_second_image.second_image_loaded:hover img {
    opacity: 0 !important;

    -webkit-transition: opacity 300ms ease 0.05s !important;
    -moz-transition: opacity 300ms ease 0.05s !important;
    transition: opacity 300ms ease 0.05s !important;
  }

  .active_filters {
    margin: 0 0 15px 0;
  }

  .active_filters .widget {
    margin: 0;
    padding: 0;
  }

  /**********************************************************************************/
  /* Categories Grid ****************************************************************/
  /**********************************************************************************/

  .categories_grid {
    /*margin:30px 0 0px 0;*/
  }

  article .categories_grid {
    margin-bottom: 0px;
  }

  .categories_grid:before,
  .categories_grid:after {
    content: " ";
    display: table;
  }

  .categories_grid .category_grid_box,
  .category_list .category_grid_box {
    overflow: hidden;
    position: relative;
    display: block;

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .categories_grid .category_item,
  .category_list .category_item {
    display: table !important;
    width: 100%;
    color: #fff;
    position: relative;
    border-spacing: 0;
  }

  .category_item_bkg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;

    display: block;

    background-color: #333;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    width: -webkit-calc(100% + 50px);
    width: calc(100% + 50px);
    max-width: none;
    min-height: 100.6%;

    position: absolute;

    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;

    -webkit-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0);
  }

  .categories_grid .category_grid_box:hover .category_item_bkg,
  .category_list .category_grid_box:hover .category_item_bkg {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .categories_grid .category_name,
  .category_list .category_name {
    width: 100%;
    display: table-cell;
    vertical-align: middle;

    line-height: 1.333em;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0 20px;
    background: rgba(0, 0, 0, 0);
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    transition: all 0.35s ease;
    position: relative;
    z-index: 2;
  }

  .categories_grid .category_name,
  .category_list .category_name {
    font-size: 1.3125rem;
  }

  .categories_grid .category_name:hover,
  .category_list .category_name:hover {
    width: 100%;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
  }

  /**********************************************************************************/
  /* Product Single *****************************************************************/
  /**********************************************************************************/

  .product_image_zoom_button {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #fff;
    overflow: hidden;
    bottom: 0;
    right: 0;
    padding: 17px 0 0 19px;
    color: #000;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: normal;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
  }

  .product_image_zoom_button:hover {
    color: #fff;
    background: #000;
  }

  .product_summary_thumbnails_wrapper {
    display: none;
  }

  .product_infos {
    z-index: 1;
    transition: margin-top 0.6s;
    -webkit-transition: margin-top 0.6s;
  }

  .product-image-link {
    display: block;
  }

  .product-image-link:hover {
    cursor: grab;
    cursor: -webkit-grab;
    cursor: -moz-grab;
  }

  .product_thumbnails .product_thumbnails_swiper_container {
    width: 100%;
    -webkit-transition: opacity 300ms ease;
    -moz-transition: opacity 300ms ease;
    transition: opacity 300ms ease;
    max-height: 635px;
    /*padding-top:100px;*/
  }

  .product_thumbnails .swiper-slide {
    padding-bottom: 20px;
    opacity: 0.2;
    -webkit-transition: opacity 300ms ease;
    -moz-transition: opacity 300ms ease;
    transition: opacity 300ms ease;
    cursor: pointer;
  }

  .product_thumbnails .swiper-slide:last-child {
    padding-bottom: 0;
  }

  .product_thumbnails .swiper-slide-active {
    opacity: 1;
    -webkit-transition: opacity 300ms ease;
    -moz-transition: opacity 300ms ease;
    transition: opacity 300ms ease;
    cursor: default;
  }

  .product_thumbnails img {
    width: 100%;
    height: auto;
  }

  .product_images .product_thumbnails_swiper_container {
    width: 100%;
    /*height:708px;*/
  }

  .product_images ul,
  .product_images ol {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .product_images .flex-control-nav {
    bottom: 0px;
    position: relative;
    margin-top: 50px;
    z-index: 100;
  }

  .product_images .flexslider {
    margin: 0 !important;
    overflow: hidden;
  }

  .product_images .flexslider .slides {
    padding: 0 !important;
    -webkit-transition: height 300ms ease;
    -moz-transition: height 300ms ease;
    transition: height 300ms ease;
  }

  .recently_viewed_in_single h2 {
    font-size: 0.8em;
    margin: 0 0 15px 0;
    -ms-word-wrap: normal;
    word-wrap: normal;
  }

  .recently_viewed_in_single ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .recently_viewed_in_single li {
    padding: 0;
    margin: 0 0 20px 0;
  }

  .woocommerce #content div.product p.cart {
    margin-bottom: 19px;
  }

  /**********************************************************************************/
  /* Widgets ************************************************************************/
  /**********************************************************************************/

  .wpb_widgetised_column {
    margin-bottom: 150px;
    padding-right: 30px;
  }

  #secondary.wpb_widgetised_column {
    padding-right: 0;
  }

  .wpb_widgetised_column .widget {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    margin-bottom: 0;
    padding-top: 25px;
    padding-bottom: 43px;
  }

  .widget:first-child {
    padding-top: 0;
  }

  .widget:last-child {
    border-bottom: none;
  }

  .wpb_widgetised_column table tr td,
  .wpb_widgetised_column .widget_layered_nav ul li a,
  .wpb_widgetised_column .widget_layered_nav ul li span,
  .wpb_widgetised_column .widget_layered_nav_filters ul li a,
  .wpb_widgetised_column .widget_layered_nav_filters ul li span,
  .wpb_widgetised_column .widget_calendar,
  .wpb_widgetised_column .widget_calendar caption {
    color: inherit !important;
  }

  .widget h3,
  .wpb_wrapper .widget h3 {
    font-size: 14px !important;
    font-weight: bold;

    margin: 0px 0 15px;
    padding: 0;

    position: relative;
    text-transform: uppercase;
  }

  .widget form > div {
    padding-top: 18px;
  }

  .widget button,
  .widget .button,
  .widget input[type="button"],
  .widget input[type="reset"],
  .widget input[type="submit"] {
    width: 100%;
    min-width: inherit;
  }

  .widget > ul,
  .woocommerce .widget_layered_nav > ul,
  .widget > form {
    margin: 0;
  }

  .widget:first-child ul,
  .widget:first-child form {
    display: block;
  }

  .woocommerce .widget_layered_nav ul li,
  .widget ul li {
    margin-bottom: 10px;
    padding-bottom: 0;
  }

  .widget ul li:last-child,
  .woocommerce-page .widget_layered_nav ul li:last-child {
    margin-bottom: 0px;
  }

  .widget > ul > li:first-child,
  .woocommerce .widget_layered_nav > ul > li:first-child {
    padding-top: 7px;
  }

  .widget ul .children,
  .widget ul .sub-menu,
  .widget ol .children,
  .widget ol .sub-menu {
    border: none;
  }

  .widget.widget_layered_nav,
  .widget.widget_layered_nav_filters {
    padding-bottom: 38px;
  }

  .woocommerce .widget_layered_nav ul li.chosen,
  .woocommerce-page .widget_layered_nav ul li.chosen,
  .woocommerce .widget_layered_nav_filters ul li,
  .woocommerce-page .widget_layered_nav_filters ul li {
    color: #fff;
  }

  .woocommerce .widget_layered_nav_filters ul li,
  .woocommerce-page .widget_layered_nav_filters ul li {
    float: none;
    display: inline-block;
    padding-left: 0;
    padding-bottom: 0;
    margin: 0 5px 5px 0;
  }

  .widget ul li a,
  .woocommerce .widget_layered_nav ul li a,
  .woocommerce .widget_layered_nav ul li span,
  .woocommerce-page .widget_layered_nav ul li a,
  .woocommerce-page .widget_layered_nav ul li span {
    text-transform: capitalize;
    line-height: 1.5em;
  }

  .woocommerce .widget_layered_nav ul li a,
  .woocommerce .widget_layered_nav ul li span,
  .woocommerce-page .widget_layered_nav ul li a,
  .woocommerce-page .widget_layered_nav ul li span {
    float: none;
    padding: 0;
  }

  .woocommerce .widget_layered_nav ul li.chosen a,
  .woocommerce-page .widget_layered_nav ul li.chosen a,
  .woocommerce .widget_layered_nav_filters ul li a,
  .woocommerce-page .widget_layered_nav_filters ul li a {
    padding: 7px 13px 8px 13px;
    border: none;
    line-height: 1;
    border-radius: 20px;
    text-transform: uppercase;
    font-size: 13px;
    display: inline-block;
    font-weight: bold !important;
  }

  .woocommerce .widget_layered_nav ul li.chosen a:before,
  .woocommerce-page .widget_layered_nav ul li.chosen a:before,
  .woocommerce .widget_layered_nav_filters ul li a:before,
  .woocommerce-page .widget_layered_nav_filters ul li a:before {
    content: "\f00d";
    display: inline-block;
    color: inherit;
    float: left;
    font: normal normal normal 13px/1 FontAwesome;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0 5px 0 0;
    opacity: 0.5;

    transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
  }

  .woocommerce .widget_layered_nav ul li.chosen a:hover,
  .woocommerce-page .widget_layered_nav ul li.chosen a:hover,
  .woocommerce .widget_layered_nav_filters ul li a:hover,
  .woocommerce-page .widget_layered_nav_filters ul li a:hover {
    opacity: 1;
  }

  .woocommerce .widget_layered_nav ul li.chosen a:hover:before,
  .woocommerce-page .widget_layered_nav ul li.chosen a:hover:before,
  .woocommerce .widget_layered_nav_filters ul li a:hover:before,
  .woocommerce-page .widget_layered_nav_filters ul li a:hover:before {
    color: #fff;
    opacity: 0.9;
  }

  .widget_layered_nav_filters .amount {
    color: #fff;
    margin-top: 0;
    margin-left: 3px;
  }

  .woocommerce .widget_layered_nav ul small.count,
  .woocommerce-page .widget_layered_nav ul small.count {
    display: none;
  }

  /* Text Widget */

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

  /* Search */

  .site-search {
    display: table;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);

    position: fixed;
    top: 0;
    left: 0;

    z-index: -1;
    opacity: 0;

    transition: opacity 0.5s ease 0.25s, z-index 0s ease 0.75s;
    -webkit-transition: opacity 0.5s ease 0.25s, z-index 0s ease 0.75s;
  }

  .site-search.open {
    z-index: 9999;
    opacity: 1;

    transition: opacity 0.5s, z-index 0s;
    -webkit-transition: opacity 0.5s, z-index 0s;
  }

  .site-search .woocommerce-product-search,
  .site-search .widget_search .search-form {
    border: none;

    width: 50%;
    margin-top: 300px;

    position: fixed;
    top: 50%;
    margin-top: 300px;
    left: 50%;
  }

  .site-search .woocommerce-product-search,
  .site-search .widget_search .search-form,
  .submit_icon {
    opacity: 0;

    transition: margin-top 0.5s, opacity 0.5s;
    -webkit-transition: margin-top 0.5s, opacity 0.5s;
  }

  .site-search.open .woocommerce-product-search,
  .site-search.open .widget_search .search-form {
    margin-top: -25px;
  }

  .site-search.open .woocommerce-product-search,
  .site-search.open .widget_search .search-form,
  .site-search.open .submit_icon {
    opacity: 1;

    transition: margin-top 0.5s, opacity 0.5s;
    -webkit-transition: margin-top 0.5s, opacity 0.5s;
  }

  .site-search .woocommerce-product-search,
  .site-search .search-form div {
    padding-top: 0;
  }

  .site-search .widget_search .search-form:after,
  .site-search .woocommerce-product-search:after {
    display: none;
  }

  .site-search .widget_product_search .search-field,
  .site-search .widget_search .search-field {
    color: #000;
    background: none;
    border: none;
    border-bottom: 1px solid #ddd;
    font-size: 30px;
    font-weight: 900;
    padding: 6px 15px;
    height: auto;
  }

  .search-form .search-field::-webkit-input-placeholder {
    opacity: 0;
  }
  .search-form .search-field::-moz-placeholder {
    opacity: 0;
  } /* firefox 19+ */
  .search-form .search-field:-ms-input-placeholder {
    opacity: 0;
  } /* ie */
  .search-form .search-field:-moz-placeholder {
    opacity: 0;
  }

  .widget_product_search .search-field::-webkit-input-placeholder {
    opacity: 0;
  }
  .widget_product_search .search-field::-moz-placeholder {
    opacity: 0;
  } /* firefox 19+ */
  .widget_product_search .search-field:-ms-input-placeholder {
    opacity: 0;
  } /* ie */
  .widget_product_search .search-field:-moz-placeholder {
    opacity: 0;
  }

  .site-search .search-form .search-field::-webkit-input-placeholder {
    font-weight: 900;
    color: #a1a1a1;
    opacity: 1;
  }
  .site-search .search-form .search-field::-moz-placeholder {
    font-weight: 900;
    color: #a1a1a1;
    opacity: 1;
  } /* firefox 19+ */
  .site-search .search-form .search-field:-ms-input-placeholder {
    font-weight: 900;
    color: #a1a1a1;
    opacity: 1;
  } /* ie */
  .site-search .search-form .search-field:-moz-placeholder {
    font-weight: 900;
    color: #a1a1a1;
    opacity: 1;
  }

  .site-search .widget_product_search .search-field::-webkit-input-placeholder {
    font-weight: 900;
    color: #a1a1a1;
    opacity: 1;
  }
  .site-search .widget_product_search .search-field::-moz-placeholder {
    font-weight: 900;
    color: #a1a1a1;
    opacity: 1;
  } /* firefox 19+ */
  .site-search .widget_product_search .search-field:-ms-input-placeholder {
    font-weight: 900;
    color: #a1a1a1;
    opacity: 1;
  } /* ie */
  .site-search .widget_product_search .search-field:-moz-placeholder {
    font-weight: 900;
    color: #a1a1a1;
    opacity: 1;
  }

  .widget_product_search .search-field:focus,
  .site-search .search-field:focus {
    background: none !important;
  }

  .woocommerce-product-search {
    position: relative;
  }

  .widget_search .search-form {
    border-width: 1px;
    border-style: solid;
    position: relative;
  }

  .widget_search .search-form:after,
  .woocommerce-product-search:after {
    content: "\f002";
    display: inline-block;
    vertical-align: middle;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .widget_search .search-form:after,
  .woocommerce-product-search:after,
  .submit_icon,
  .widget_product_search input[type="submit"],
  .widget_search #searchsubmit,
  .widget_product_search .search-submit,
  .widget_search .search-submit {
    position: absolute;
    top: 0px;
    right: 0px;
    font-weight: normal;
    text-transform: uppercase;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    z-index: 2;
    overflow: hidden;
    font-size: 16px;
    cursor: pointer;
    color: #000;
  }

  .widget_search .search-field {
    background: #fff;
    border: none;
  }

  .widget_search .search-field:focus {
    background: #fff;
  }

  .site-search .widget_product_search input[type="submit"],
  .site-search .widget_product_search .search-submit,
  .site-search .widget_search .search-submit,
  .submit_icon {
    top: 10px;
    right: 15px;
    padding-top: 0 !important;
  }

  .widget_search input[type="submit"].search-submit {
    width: 40px;
  }

  .submit_icon {
    font-size: 24px;
  }

  .widget_product_search input[type="submit"],
  .widget_product_search input[type="submit"]:hover,
  .widget_search #searchsubmit,
  .widget_search .search-submit,
  .widget_search #searchsubmit:hover,
  .widget_search .search-submit:hover {
    background: none !important;
    font-size: 0;
    min-width: 0;
    padding: 0 !important;
    z-index: 4;
  }

  #site-footer .widget_search .search-field {
    border: none;
  }

  #site-footer a,
  .widget a,
  .woocommerce .widget_layered_nav ul li a,
  .social_media {
    opacity: 1;

    transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
  }

  #site-footer a:hover,
  .widget a:hover,
  .social_media:hover {
    opacity: 0.7;
  }

  .widget a.ui-slider-handle:hover,
  .widget .tagcloud a:hover,
  #site-footer .widget a.ui-slider-handle:hover,
  #site-footer .widget .tagcloud a:hover {
    opacity: 1;
  }

  .widget_shopping_cart .buttons a:hover {
    opacity: 1;
  }

  /**********************************************************************************/
  /* Off-canvas Left *****************************************************************/
  /**********************************************************************************/

  .offcanvas_content_left {
    background: #fff;
    padding: 30px;
    min-height: 100%;
  }

  .offcanvas_content_left.wpb_widgetised_column {
    margin-bottom: 0;
  }

  #button_offcanvas_sidebar_left {
    width: 5px;
    height: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999999;
  }

  /* IE10+ CSS styles */
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    #button_offcanvas_sidebar_left {
      z-index: 0;
      width: 0;
    }

    #button_offcanvas_sidebar_left i {
      left: 0px !important;
    }
  }

  /* IE9 CSS styles */
  .ie9 #button_offcanvas_sidebar_left {
    z-index: 0;
    width: 0;
  }

  .ie9 #button_offcanvas_sidebar_left i {
    left: 0px !important;
  }

  #button_offcanvas_sidebar_left i {
    display: block;
    max-width: 17px;
    position: fixed;
    top: 250px;
    left: 5px;
    padding: 10px 8px 10px 5px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
  }

  .st-menu-open #button_offcanvas_sidebar_left {
    display: none;
  }

  /**********************************************************************************/
  /* Off-canvas Right *****************************************************************/
  /**********************************************************************************/

  .offcanvas_content_right li.open-offcanvas {
    display: none;
  }

  /**********************************************************************************/
  /* Portfolio **********************************************************************/
  /**********************************************************************************/

  .portfolio-container .content-area {
    min-height: 0;
  }

  .portfolio-isotope {
    position: relative;
  }

  .portfolio-isotope:after {
    content: "";
    display: block;
    clear: both;
  }

  .portfolio-box,
  .portfolio_related_item {
    width: 100%;
    float: left;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    opacity: 1;
    transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;

    /*overflow: hidden;*/

    padding-bottom: 100%;
  }

  .portfolio-grid-sizer,
  .portfolio-box.width2 {
    width: 100%;
  }

  .portfolio-box.width2.height2 {
    width: 100%;
  }

  .portfolio-box.hidden {
    opacity: 0;
    transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
  }

  .portfolio-box-inner {
    position: relative;
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
  }

  /* Portfolio Filters */

  .portfolio-filters .filters-group.list-centered {
    margin-bottom: 90px;
  }

  .filters-group li {
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    margin-left: 2px;
    margin-bottom: 10px;
    margin: 0 12px 5px;
    padding: 5px 0px;
    border-bottom: 1px solid #ddd;
    text-transform: uppercase;
    display: inline-block;
    cursor: pointer;

    transition: color 0.3s, border-color 0.2s;
    -webkit-transition: color 0.3s, border-color 0.3s;
  }

  .filters-group li:hover {
    border-bottom: 1px solid transparent;
  }

  /* Portfolio Hover Effect */

  .hover-effect-link {
    display: block;
    overflow: hidden;
    margin: 0;
    background: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
    height: 100%;

    position: absolute;
    z-index: 1;
  }

  .hover-effect-link .hover-effect-thumb {
    display: block;
    opacity: 1;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    width: -webkit-calc(100% + 60px);
    width: calc(100% + 60px);
    max-width: none;
    min-height: 100.6%;

    position: absolute;

    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;

    -webkit-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0);
  }

  /* filter Safari ( from 5+ till 6.1)  from Chrome: */
  @media screen and (-webkit-min-device-pixel-ratio: 0) {
    /* Safari only override */
    ::i-block-chrome,
    .hover-effect-link .hover-effect-thumb,
    .thumbnail_archive img {
      width: 110%;

      -webkit-transform: translate3d(-5%, 0, 0);
      transform: translate3d(-5%, 0, 0);
    }

    ::i-block-chrome,
    .hover-effect-content:hover .hover-effect-thumb,
    .thumbnail_archive:hover img {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }

    ::i-block-chrome,
    .main-navigation ul ul {
      -webkit-animation: none !important;
      -moz-animation: none !important;
      -o-animation: none !important;
      -ms-animation: none !important;
      animation: none !important;
    }
  }

  .hover-effect-content .hover-effect-title,
  .hover-effect-content .hover-effect-text {
    margin: 0;
  }

  .hover-effect-content .hover-effect-title,
  .wpb_wrapper h2.hover-effect-title {
    color: #fff !important;
    font-size: 1.375rem;
    line-height: 1.2em;
    font-weight: 900;

    position: absolute;
    bottom: 28px;
    left: 0px;
    padding: 40px 40px 5px;
    transform: none !important;
    text-align: left;

    transition: all 0.3s !important;
    -webkit-transition: all 0.3s !important;
  }

  .hover-effect-content .hover-effect-text,
  .wpb_wrapper .hover-effect-text {
    color: #fff !important;
    opacity: 0;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;

    position: absolute;
    bottom: 0;

    padding: 0px 40px 33px;
    text-align: left;

    transition: all 0.45s !important;
    -webkit-transition: all 0.45s !important;
  }

  .hover-effect-content:hover .hover-effect-thumb {
    opacity: 0.15;

    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .hover-effect-content:hover .hover-effect-text {
    opacity: 1;

    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
  }

  /* Portfolio Boxed */

  .boxed-page .hover-effect-content .hover-effect-title,
  .boxed-page .wpb_wrapper h2.hover-effect-title {
    font-size: 1.375rem;
  }

  .boxed-page .wpb_wrapper .portfolio-isotope-container {
    margin: 0;
  }

  /* Portfolio Single */

  .portfolio-single-featured-img {
    height: 760px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }

  .portfolio_single_list_cat {
    display: block;
    text-align: center;
  }

  .portfolio_single_list_cat a {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 900;
    padding-bottom: 10px;
    text-transform: uppercase;
  }

  .portfolio_content_nav .nav-next .nav-next-title,
  .portfolio_content_nav .nav-previous .nav-previous-title {
    display: none;
  }

  /* Portfolio Related Items */

  .portfolio-related-container {
    background: #f5f5f5;
    overflow: hidden;
  }

  .portfolio-related-container:after {
    content: "";
    display: block;
    clear: both;
  }

  .portfolio_related_item {
    position: relative;
  }

  .portfolio_related_item.empty {
    display: none;
  }

  .portfolio_related_item.empty .hover-effect-link {
    background: none;
    cursor: default;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }

  /**********************************************************************************/
  /* Shortcodes *********************************************************************/
  /**********************************************************************************/

  /* Social Media Profiles */

  .site-social-icons-shortcode {
    vertical-align: middle;
    clear: both;
    margin: 5px -15px 15px -15px;
    display: block;
  }

  .site-social-icons-shortcode ul {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1em;
    font-size: 24px !important;
  }

  .site-social-icons-shortcode ul.left {
    text-align: left;
  }

  .site-social-icons-shortcode ul.center {
    text-align: center;
  }

  .site-social-icons-shortcode ul.right {
    text-align: right;
  }

  .site-social-icons-shortcode:before,
  .site-social-icons-shortcode:after,
  .site-social-icons-shortcode ul:before,
  .site-social-icons-shortcode ul:after {
    content: " ";
    display: table;
    clear: both;
  }

  .site-social-icons-shortcode ul li {
    padding: 5px 15px;
    /*float:left;*/
    display: inline-block;
  }

  .site-social-icons-shortcode ul li a {
    color: #222;
  }

  .site-social-icons-shortcode ul li a i {
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -ms-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }

  .site-social-icons-shortcode ul li a:hover i {
    opacity: 0.7;
  }

  .site-social-icons-shortcode ul li span {
    display: none;
  }

  /* Blog Posts */

  .from-the-blog-wrapper {
    margin: 30px 0px 0px 0px;
  }

  .from_the_blog_item {
    padding: 0 15px;
  }

  .from_the_blog_link,
  .from-the-blog-wrapper .post_meta_archive,
  .from-the-blog-wrapper .post_meta_archive a,
  .from_the_blog_title {
    color: inherit;
  }

  .from_the_blog_title {
    display: block;
    font-weight: 900;
    text-align: center;
    font-size: 1.875rem;
    line-height: 1.1333em;
    margin: 0 0 15px;

    transition: color 0.35s;
    -webkit-transition: color 0.35s;
  }

  .from-the-blog-wrapper .post_meta_archive {
    text-align: center;
  }

  .from-the-blog-wrapper .post_meta_archive,
  .from-the-blog-wrapper .post_meta_archive a {
    color: inherit;

    transition: color 0.35s;
    -webkit-transition: color 0.35s;
  }

  .from-the-blog-wrapper .post_meta_archive span {
    opacity: 0.55;
  }

  .from_the_blog_item.gallery {
    margin: 0 !important;
  }

  .from_the_blog_overlay {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;

    opacity: 0;

    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    -ms-transition: all 0.35s ease;
  }

  .from_the_blog_link:hover .from_the_blog_overlay {
    opacity: 0.6;
  }

  .from_the_blog_img_container {
    display: block;
    overflow: hidden;
    position: relative;
    height: 245px;
    width: 100%;
    margin-bottom: 22px;

    -webkit-mask-image: -webkit-radial-gradient(white, black);
  }

  .from_the_blog_img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;

    width: -webkit-calc(100% + 50px);
    width: calc(100% + 50px);
    max-width: none;

    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;

    -webkit-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0);

    /*
	backface-visibility:hidden;
	-webkit-backface-visibility: hidden;

	-webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d; */
  }

  .from_the_blog_link:hover .from_the_blog_img {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
    -ms-transform: none;
  }

  .grabbing .from_the_blog_item:hover .from_the_blog_img {
    transform: none;
    -moz-transform: none;
    -webkit-transform: none;
    -ms-transform: none;
  }

  .with_thumb_icon {
    position: absolute;
    width: 50px;
    height: 50px;
    display: block;
    top: 0;
    left: 0;
    text-align: center;
    color: #fff;
    line-height: 50px;
    z-index: 3;
  }

  .no_thumb_icon {
    line-height: 245px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    z-index: 3;
  }

  .no_thumb_icon:before,
  .with_thumb_icon:before {
    display: inline-block;
    vertical-align: middle;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    z-index: 3;
  }

  .with_thumb_icon:before {
    font-size: 18px;
  }

  .no_thumb_icon:before {
    font-size: 78px;
  }

  .from_the_blog_item.standard .with_thumb_icon {
    display: none;
  }

  .no-thumb.standard .no_thumb_icon:before {
    content: "\f15c";
  }

  .no_thumb.status .no_thumb_icon:before,
  .from_the_blog_item.status .with_thumb_icon:before {
    content: "\f075";
  }

  .no_thumb.link .no_thumb_icon:before,
  .from_the_blog_item.link .with_thumb_icon:before {
    content: "\f0c1";
  }

  .no_thumb.video .no_thumb_icon:before,
  .from_the_blog_item.video .with_thumb_icon:before {
    content: "\f16a";
  }

  .no_thumb.audio .no_thumb_icon:before,
  .from_the_blog_item.audio .with_thumb_icon:before {
    content: "\f001";
  }

  .no_thumb.aside .no_thumb_icon:before,
  .from_the_blog_item.aside .with_thumb_icon:before {
    content: "\f15b";
  }

  .no_thumb.quote .no_thumb_icon:before,
  .from_the_blog_item.quote .with_thumb_icon:before {
    content: "\f10d";
  }

  .no_thumb.image .no_thumb_icon:before,
  .from_the_blog_item.image .with_thumb_icon:before {
    content: "\f03e";
  }

  .no_thumb.gallery .no_thumb_icon:before,
  .from_the_blog_item.gallery .with_thumb_icon:before {
    content: "\f00a";
  }

  .no_thumb .from_the_blog_img {
    line-height: 245px;
  }

  .from_the_blog_noimg {
    background: #f5f5f5;
    height: 245px;
    width: 100%;
    display: block;
  }

  /* Gallery */

  .gallery {
    margin: 0 0 30px 0 !important;
    overflow: hidden;
  }

  .gallery br {
    display: none;
  }

  .gallery br:last-of-type {
    display: block;
  }

  .gallery dl,
  .gallery dt {
    margin: 0 !important;
  }

  .gallery .gallery-item {
    width: 50% !important;
    padding-bottom: 50%;
    overflow: hidden;
  }

  .gallery-columns-1 .gallery-item {
    width: 100% !important;
  }

  .gallery-item {
    margin: 0 !important;
    opacity: 1;
    position: relative;
  }

  .gallery-item:hover {
    cursor: pointer;
  }

  .gallery-item:hover img {
    transform: scale(1);
  }

  .gallery-icon {
    width: 100.6%;
    min-height: 100.6%;

    padding: 0 !important;

    position: absolute !important;
    left: 0;
    top: 0;
    z-index: 2;
  }

  .gallery-item:last-of-type .gallery-icon {
    width: 100%;
  }

  .gallery-icon a {
    display: block;

    width: 100%;
    height: 100%;

    position: absolute;
    left: 0;
    top: 0;
  }

  .gallery-icon img {
    border: 0 !important;

    width: 100%;
    max-width: none;
    min-height: 100.6%;

    position: absolute;
    left: 0;
    top: 0;
  }

  .gallery-item .gallery-caption,
  .gallery-caption-trigger {
    display: none;
  }

  /* Banner */

  .shortcode_banner_simple_height {
    cursor: pointer;
    margin-bottom: 30px;
    clear: both;

    position: relative;
  }

  .shortcode_banner_simple_height_inner {
    padding: 15px;

    overflow: hidden;
    position: relative;

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .shortcode_banner_simple_height_inner:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    z-index: 3;
  }

  .shortcode_banner_simple_height_inner:hover:before {
    background: rgba(0, 0, 0, 0.3);
  }

  .shortcode_banner_simple_height_bkg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;

    display: block;

    background-color: #f5f5f5;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    transition: all 1s ease;

    z-index: 2;
  }

  .shortcode_banner_simple_height:hover .shortcode_banner_simple_height_bkg {
    transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
  }

  .shortcode_banner_simple_height:hover {
    background-size: 115%;
  }

  .shortcode_banner_simple_height_inside {
    padding: 20px;
    text-align: center;
    border: 2px solid #fff;
    transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    display: table;
    width: 100%;
    box-sizing: border-box;

    position: relative;
    z-index: 5;
  }

  .shortcode_banner_simple_height_content {
    display: table-cell;
    vertical-align: middle;
    text-align: center;

    position: relative;
    z-index: 999;
  }

  .shortcode_banner_simple_height_inside h3 {
    padding: 0;
    margin: 0;
    font-weight: 900;
    font-size: 1.4375rem;
    line-height: 1.391em;
  }

  .shortcode_banner_simple_height_inside h3 strong {
    font-size: 28px;
  }

  .shortcode_banner_simple_height_inside h3 a {
    text-decoration: underline;
  }

  .shortcode_banner_simple_height_inside h4 {
    padding: 0;
    margin: 0;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5em;
  }

  .shortcode_banner_simple_height_inside h4 a {
    text-decoration: underline;
  }

  .shortcode_banner_simple_height_sep {
    width: 20%;
    height: 2px;
    background: #fff;
    margin: 5px auto;
  }

  .shortcode_banner_simple_height_bullet {
    width: 180px;
    height: 180px;
    background: #000;

    border-radius: 50%;
    text-align: center;
    display: none;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.3em;

    position: absolute;
    top: 50%;
    margin-top: -90px;
    right: 30px;
    z-index: 999;
  }

  .shortcode_banner_simple_height_bullet strong {
    font-size: 18px;
    line-height: 1.5em;
  }

  .shortcode_banner_simple_height_bullet span {
    display: table-cell;
    vertical-align: middle;
    padding: 20px;
  }

  /* Icon Box */

  .shortcode_icon_box {
    position: relative;
    padding-bottom: 35px;
    cursor: default;
  }

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

  .shortcode_icon_box.icon_position_left {
    padding-left: 50px;
  }

  .shortcode_icon_box.icon_position_right {
    padding-right: 73px;
  }

  .icon_box_title {
    font-size: 1.4375rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 11px;
  }

  .icon_box_content {
    margin-top: 3px;
    margin-bottom: -7px;
  }

  .icon_position_top.icon_style_normal .icon_wrapper {
    margin-bottom: 20px;
  }

  .with_separator .icon_box_title:after {
    content: "";
    display: block;
    width: 50px;
    height: 0px;
    border-bottom: 2px solid;
    margin: 22px 0 19px;
  }

  .with_separator.icon_position_top .icon_box_title:after {
    margin: 22px auto 19px;
  }

  .shortcode_icon_box .icon_wrapper {
    overflow: hidden;
    -webkit-border-radius: 200px;
    -moz-border-radius: 200px;
    border-radius: 200px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
  }

  .icon_position_top.icon_style_outlined .icon_wrapper,
  .icon_position_top.icon_style_bg_color .icon_wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    padding-top: 33px;
  }

  .shortcode_icon_box.icon_position_left .icon_wrapper {
    width: 50px;
    height: 50px;
    padding-top: 14px;
    position: absolute;
    top: 0px;
    left: 0;
  }

  .shortcode_icon_box.icon_position_right .icon_wrapper {
    width: 50px;
    height: 50px;
    padding-top: 14px;
    position: absolute;
    top: 6px;
    right: 0px;
  }

  .icon_position_right.icon_style_normal .icon_wrapper {
    padding-top: 0;
  }

  .shortcode_icon_box.icon_position_top .icon {
    font-size: 72px;
    line-height: 72px;
  }

  .shortcode_icon_box.icon_position_left .icon {
    font-size: 22px;
    line-height: 22px;
  }

  .shortcode_icon_box.icon_position_left .icon_box_content,
  .shortcode_icon_box.icon_position_left .icon_box_title {
    padding-left: 20px;
  }

  .shortcode_icon_box.icon_position_left .icon_box_read_more {
    margin-left: 20px;
  }

  .shortcode_icon_box.icon_position_right .icon {
    font-size: 22px;
    line-height: 22px;
  }

  .shortcode_icon_box.icon_style_normal .icon_wrapper,
  .shortcode_icon_box.icon_style_outlined .icon_wrapper {
    background: none !important;
  }

  .shortcode_icon_box.icon_style_outlined .icon_wrapper {
    border-width: 2px;
    border-style: solid;
  }

  .shortcode_icon_box.icon_position_top.icon_style_bg_color .icon_wrapper,
  .shortcode_icon_box.icon_position_top.icon_style_outlined .icon_wrapper {
    margin: 0 auto 32px auto;
  }

  .shortcode_icon_box .icon_box_read_more {
    display: inline-block;
    color: inherit;
    padding: 5px 0px;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 13px;
    border-bottom: 2px solid transparent;

    transition: border-color 0.3s;
    -webkit-transition: border-color 0.3s;
  }

  .shortcode_icon_box .icon_box_read_more:hover {
    border-bottom: 2px solid;
    border-color: inherit;
  }

  /* Add to Cart Button */

  .wpb_wrapper .add_to_cart_inline {
    border: none !important;
    padding: 0 0 35px !important;
    margin: 0;
  }

  .wpb_wrapper .add_to_cart_inline:after {
    content: "";
    display: block;
    clear: both;
  }

  .wpb_wrapper .add_to_cart_inline .amount {
    display: inline-block;
    font-size: 1.875rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 23px;

    position: relative;
  }

  .wpb_wrapper .add_to_cart_inline del .amount {
    color: inherit;
    font-size: 1.3125rem;
    display: inline;
  }

  .wpb_wrapper .add_to_cart_inline ins {
    background-color: transparent;
  }

  .wpb_wrapper .add_to_cart_inline .add_to_cart_separator {
    content: "";
    display: block;
    clear: both;
  }

  .wpb_wrapper .product.woocommerce .add_to_cart_button:before,
  .wpb_wrapper .product.woocommerce .added_to_cart_button:before {
    display: inline-block;
    margin-right: 6px;
    font: normal normal normal 13px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    position: relative;
    top: 0px;
  }

  .wpb_wrapper .product.woocommerce .add_to_cart_button:before {
    content: "\f067";
  }

  .wpb_wrapper .product.woocommerce .added_to_cart_button:before {
    content: "\f00c";
  }

  .add_to_cart_inline .add_to_cart_button.vc_btn_rounded.loading,
  .add_to_cart_inline .add_to_cart_button.vc_btn_square.loading {
    opacity: 0.8;
  }

  .add_to_cart_inline .add_to_cart_button.loading span,
  .add_to_cart_inline .add_to_cart_button.loading:before {
    opacity: 0;
  }

  .add_to_cart_inline .add_to_cart_button:after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 14px;
    border-radius: 7px;
    opacity: 0;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;

    background: url("images/preloader-white-bg-32.gif") center no-repeat
      rgba(255, 255, 255, 1);

    transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
  }

  .add_to_cart_inline .add_to_cart_button.loading:after {
    opacity: 1;
  }

  .wpb_wrapper .product.woocommerce .add_to_cart_button.added:first-of-type {
    display: none;
  }

  .wpb_wrapper .product.woocommerce .add_to_cart_button.added:before {
    content: "\f00c";
    display: inline-block;

    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    position: relative !important;
    right: auto !important;
    left: auto !important;
  }

  .shortcode_single_product li {
    width: 100% !important;
  }

  /**********************************************************************************/
  /* Visual Composer Shortcodes  ****************************************************/
  /**********************************************************************************/

  /* General */

  .wpb_wrapper #products-grid {
    margin-top: 5px;
  }

  .full-width-page .wpb_wrapper .gallery,
  .full-width-page .wpb_alert.wpb_content_element,
  .full-width-page .wpb_wrapper .wpb_gmaps_widget,
  .full-width-page .wpb_wrapper #map_container,
  .full-width-page .wpb_wrapper .wpb_revslider_element,
  .full-width-page .wpb_wrapper .portfolio-isotope-container {
    margin-left: -30px !important;
    margin-right: -30px !important;
  }

  .full-width-page .boxed-row .wpb_wrapper .gallery,
  .full-width-page .boxed-row .wpb_alert.wpb_content_element,
  .full-width-page .boxed-row .wpb_wrapper .wpb_gmaps_widget,
  .full-width-page .boxed-row .wpb_wrapper #map_container,
  .full-width-page .boxed-row .wpb_wrapper .wpb_revslider_element,
  .full-width-page .boxed-row .wpb_wrapper .portfolio-isotope-container {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .wpb_wrapper .owl-wrapper-outer .gallery {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .wpb_tabs.wpb_content_element .wpb_alert.wpb_content_element,
  .wpb_tour.wpb_content_element .wpb_alert.wpb_content_element,
  .wpb_accordion.wpb_content_element .wpb_alert.wpb_content_element {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .wpb_wrapper .wpb_content_element .gallery {
    margin-bottom: -35px !important;
  }

  .wpb_revslider_element.wpb_content_element {
    margin-bottom: 0;
  }

  .wpb_gmaps_widget.wpb_content_element {
    margin-bottom: 0;
  }

  .wpb_wrapper .site-social-icons-shortcode ul li a {
    color: inherit;
  }

  /* Visual Composer Rows */

  .vc_row-fluid.parallax {
    /*background-size: cover*/
    background-position: center center;
    background-repeat: no-repeat;
  }

  .full-width-page .row-fluid {
    margin: 0 -15px;
  }

  .full-width-page .row {
    max-width: none;
    background-repeat: no-repeat;
    background-position: center top;
  }

  .full-width-page .boxed-row {
    max-width: 1300px;
    margin: 0 auto;
  }

  .full-width-page .row {
    padding: 0;
  }

  .full-width-page .row .boxed-row .row,
  #tab-description .boxed-row .row {
    margin-left: 0;
    margin-right: 0;
  }

  .boxed-row .vc_row-fluid .vc_row-fluid,
  #tab-description .boxed-row .vc_row-fluid .vc_row-fluid {
    margin-left: -10px;
    margin-right: -10px;
  }

  .page-title-hidden .content-area {
    padding: 0;
  }

  /* Adjust Columns Height */

  .adjust_cols_height > div > .column_container {
    background-size: 0 !important;
    min-height: 200px;
  }

  .adjust_cols_height.height_adjusted .column_container {
    background-size: no-repeat;
  }

  /* Separators */

  .wpb_wrapper .vc_separator h2,
  .wpb_wrapper .vc_separator div {
    padding: 0;
    white-space: normal;
    font-weight: 900;
  }

  .wpb_wrapper .vc_separator .vc_sep_holder {
    display: none;
  }

  .vc_separator_align_center {
    text-align: center;
  }

  .vc_separator_align_right {
    text-align: right;
  }

  .vc_separator_align_left {
    text-align: left;
  }

  .vc_sep_subtitle {
    display: block;
    text-align: center;
    margin-top: -35px;
    margin-bottom: 35px;
  }

  .vc_sep_no_border .vc_sep_holder .vc_sep_line {
    border-top-style: none !important;
  }

  /* Tabs & Tour Sections */

  .wpb_tabs.wpb_content_element #products-grid {
    margin-top: 0;
  }

  .wpb_tabs.wpb_content_element .wpb_tabs_nav {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    text-align: center;
    background: none;
  }

  .wpb_tour.wpb_content_element .wpb_tabs_nav {
    width: 100%;
  }

  .wpb_tour.wpb_content_element .wpb_tabs_nav li,
  .wpb_tabs.wpb_content_element .wpb_tabs_nav li {
    display: block;
    float: none;
    background: none;
    padding: 0;
    margin: 0;
    position: relative;
  }

  .wpb_tour.wpb_content_element .wpb_tabs_nav li:after,
  .wpb_tabs.wpb_content_element .wpb_tabs_nav li:after {
    content: "";
    display: block !important;
    width: 100%;
    height: 1px;
    background: #eee;

    position: absolute;
    bottom: 0;
  }

  .wpb_tabs.wpb_content_element .wpb_tabs_nav li:first-child {
    margin-left: 0;
  }

  .wpb_tour.wpb_content_element .wpb_tabs_nav li:hover,
  .wpb_tabs.wpb_content_element .wpb_tabs_nav li:hover {
    background: none;
  }

  .wpb_tour.wpb_content_element .wpb_tabs_nav li.ui-tabs-active,
  .wpb_tabs.wpb_content_element .wpb_tabs_nav li.ui-tabs-active {
    background: none;
  }

  .wpb_tour.wpb_content_element .wpb_tabs_nav li a,
  .wpb_tabs.wpb_content_element .wpb_tabs_nav li a {
    display: inline-block;
    font-size: 0.9375rem;
    padding: 14px 0 11px;
    font-weight: 900;
    color: #a1a1a1;
    text-shadow: none;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    text-transform: uppercase;

    position: relative;
    z-index: 2;
  }

  .wpb_tabs.wpb_content_element .wpb_tabs_nav li a {
    white-space: normal;
  }

  .wpb_tour.wpb_content_element .wpb_tabs_nav li a {
    font-size: 0.8125rem;
    font-weight: bold;
    text-transform: uppercase;
  }

  .wpb_tour.wpb_content_element .wpb_tabs_nav li a:hover,
  .wpb_tabs.wpb_content_element .wpb_tabs_nav li a:hover {
    color: #777;
  }

  .wpb_tour.wpb_content_element .wpb_tabs_nav li.ui-tabs-active a,
  .wpb_tabs.wpb_content_element .wpb_tabs_nav li.ui-tabs-active a {
    color: #000;
    background: none;
    border-bottom: 3px solid;
  }

  .wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tab {
    width: 100%;
    padding: 21px 0 30px 0;
  }

  .wpb_tour.wpb_content_element .wpb_tour_next_prev_nav {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .wpb_tour.wpb_content_element .wpb_tour_next_prev_nav span {
    padding-top: 20px;
    border-top: 1px solid #ddd;
    width: 50%;
  }

  .wpb_tour.wpb_content_element .wpb_tour_next_prev_nav span a {
    font-size: 0.875rem;
    border-bottom: none;
  }

  .wpb_tour.wpb_content_element .wpb_tour_next_prev_nav span a:before,
  .wpb_tour.wpb_content_element .wpb_tour_next_prev_nav span a:after {
    display: inline-block;
    font-size: 16px;
    font-style: normal;
    font-weight: bold;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
  }

  .wpb_tour.wpb_content_element
    .wpb_tour_next_prev_nav
    .wpb_prev_slide
    a:before {
    content: "\2190";
    margin-right: 8px;
  }

  .wpb_tour.wpb_content_element
    .wpb_tour_next_prev_nav
    .wpb_next_slide
    a:after {
    content: "\2192";
    margin-left: 8px;
  }

  .wpb_tabs.wpb_content_element .wpb_accordion_wrapper .wpb_accordion_header,
  .wpb_tabs.wpb_content_element.wpb_tabs .wpb_tour_tabs_wrapper .wpb_tab {
    background: none;
    border: 0;
    padding: 20px 0;
    margin: 0;

    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.7s;
    -moz-animation-duration: 0.7s;
    -ms-animation-duration: 0.7s;
    -o-animation-duration: 0.7s;
    animation-duration: 0.7s;

    /*-webkit-animation-name: flipY;
    -moz-animation-name: flipY;
    -o-animation-name: flipY;
    animation-name: flipY;*/

    -webkit-animation-name: fadeInUp;
    -moz-animation-name: fadeInUp;
    -o-animation-name: fadeInUp;
    animation-name: fadeInUp;
  }

  /* Tabs/Accordions/Toggles/Tour fix - jQuery ui */

  .wpb_tabs .ui-widget-content,
  .wpb_accordion .ui-widget-content,
  .wpb_tour .ui-widget-content {
    border: none;
  }

  .wpb_tabs .ui-widget-header,
  .wpb_accordion .ui-widget-header,
  .wpb_tour .ui-widget-header {
    border: none;
    background: none;
  }

  .wpb_tabs .ui-state-default,
  .wpb_tabs .ui-widget-content .ui-state-default,
  .wpb_tabs .ui-widget-header .ui-state-default,
  .wpb_accordion .ui-state-default,
  .wpb_accordion .ui-widget-content .ui-state-default,
  .wpb_accordion .ui-widget-header .ui-state-default {
    border: none;
  }

  .wpb_accordion .ui-accordion .ui-accordion-header .ui-icon {
    font-size: 1rem;
    line-height: 1;
    left: auto;
    margin-top: 0;
    text-indent: 0;
    overflow: visible;
  }

  .wpb_tabs .ui-corner-all,
  .wpb_accordion .ui-corner-all {
    border-radius: 0;
  }

  .wpb_tabs .wpb_tabs_nav:after {
    visibility: visible;
  }

  .wpb_tabs .ui-tabs .ui-tabs-nav li {
    top: 0;
  }

  .wpb_tabs .ui-tabs .ui-tabs-nav li a {
    float: none;
  }

  .wpb_tour .ui-helper-reset,
  .wpb_tabs .ui-helper-reset,
  .wpb_accordion .ui-helper-reset {
    line-height: 1.714em;
  }

  .wpb_tour.wpb_content_element .wpb_tabs_nav li,
  .wpb_tabs.wpb_content_element .wpb_tabs_nav li {
    border: none;
  }

  /* Message Boxes */

  .wpb_alert.wpb_content_element {
    border-radius: 0;
  }

  .wpb_alert.wpb_content_element.wpb_alert-info,
  .wpb_alert.wpb_content_element.wpb_alert-warning,
  .wpb_alert.wpb_content_element.wpb_alert-success,
  .wpb_alert.wpb_content_element.wpb_alert-danger {
    border: none;
    padding: 22px 30px;
    text-shadow: none;
  }

  .wpb_alert.wpb_content_element.wpb_alert-info {
    color: #1e85be;
    border-top: 2px solid #1e85be;
    background: #f4f9fc;
  }

  .wpb_alert.wpb_content_element.wpb_alert-warning {
    color: #fca103;
    border-top: 2px solid #fca103;
    background: #fffaf2;
  }

  .wpb_alert.wpb_content_element.wpb_alert-success {
    color: #8fae1b;
    border-top: 2px solid #8fae1b;
    background: #f9fbf3;
  }

  .wpb_alert.wpb_content_element.wpb_alert-danger {
    color: #b81c23;
    border-top: 2px solid #b81c23;
    background: #fdf8f8;
  }

  .wpb_alert.wpb_content_element .messagebox_text {
    padding-left: 27px;
    position: relative;
    background: none;
  }

  .wpb_alert.wpb_content_element .messagebox_text:before {
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    left: 4px;
    top: 2px;
  }

  .wpb_alert.wpb_content_element.wpb_alert-info .messagebox_text:before {
    content: "\f129";
  }

  .wpb_alert.wpb_content_element.wpb_alert-warning .messagebox_text:before {
    content: "\f12a";
  }

  .wpb_alert.wpb_content_element.wpb_alert-success .messagebox_text:before {
    content: "\f00c";
    left: 0px;
  }

  .wpb_alert.wpb_content_element.wpb_alert-danger .messagebox_text:before {
    content: "\f00d";
    left: 1px;
  }

  /* Buttons */

  .vc_btn.vc_btn_xs,
  .vc_btn.vc_btn_sm,
  .vc_btn.vc_btn_md,
  .vc_btn.vc_btn_lg {
    border-radius: 0;
    font-size: 0.8125rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    /*background: #314381;*/
    border: none;
    min-width: 170px;
    width: auto;
    position: relative;

    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;

    transition: padding 0.3s, min-width 0.3s, opacity 0.3s;
    -webkit-transition: padding 0.3s, min-width 0.3s, opacity 0.3s;
  }

  .vc_btn.vc_btn_xs {
    min-width: 100px;
  }

  .vc_btn.vc_btn_xs:hover {
    min-width: 120px;
  }

  .vc_btn.vc_btn_sm:hover,
  .vc_btn.vc_btn_md:hover,
  .vc_btn.vc_btn_lg:hover {
    min-width: 190px;
  }

  .button_text {
    position: relative;
    z-index: 5;
  }

  .vc_btn.vc_btn_rounded:before,
  .vc_btn.vc_btn_rounded_outlined:before,
  .vc_btn.vc_btn_rounded_outlined .outlined_background,
  .vc_btn.vc_btn_xs.vc_btn_rounded,
  .vc_btn.vc_btn_sm.vc_btn_rounded,
  .vc_btn.vc_btn_md.vc_btn_rounded,
  .vc_btn.vc_btn_lg.vc_btn_rounded,
  .vc_btn.vc_btn_xs.vc_btn_rounded_outlined,
  .vc_btn.vc_btn_sm.vc_btn_rounded_outlined,
  .vc_btn.vc_btn_md.vc_btn_rounded_outlined,
  .vc_btn.vc_btn_lg.vc_btn_rounded_outlined {
    border-radius: 100px;
    -webkit-border-radius: 100px;
    border: 0;
  }

  .vc_btn.vc_btn_xs {
    padding: 8px 16px 7px;
  }

  .vc_btn.vc_btn_xs:hover {
    padding: 8px 26px 7px;
  }

  .vc_btn.vc_btn_sm {
    padding: 15px 24px 13px;
  }

  .vc_btn.vc_btn_sm:hover {
    padding: 15px 34px 13px;
  }

  .vc_btn.vc_btn_md {
    padding: 22px 36px 19px;
  }

  .vc_btn.vc_btn_md:hover {
    padding: 22px 46px 19px;
  }

  .vc_btn.vc_btn_lg {
    padding: 30px 48px 27px;
  }

  .vc_btn.vc_btn_lg:hover {
    padding: 30px 58px 27px;
  }

  .vc_btn.vc_btn_xs.vc_btn_square_outlined,
  .vc_btn.vc_btn_xs.vc_btn_rounded_outlined {
    padding: 8px 15px 7px;
  }

  .vc_btn.vc_btn_xs.vc_btn_square_outlined:hover,
  .vc_btn.vc_btn_xs.vc_btn_rounded_outlined:hover {
    padding: 8px 25px 7px;
  }

  .vc_btn.vc_btn_sm.vc_btn_square_outlined,
  .vc_btn.vc_btn_sm.vc_btn_rounded_outlined {
    padding: 13px 22px 11px;
  }

  .vc_btn.vc_btn_sm.vc_btn_square_outlined:hover,
  .vc_btn.vc_btn_sm.vc_btn_rounded_outlined:hover {
    padding: 13px 32px 11px;
  }

  .vc_btn.vc_btn_md.vc_btn_square_outlined,
  .vc_btn.vc_btn_md.vc_btn_rounded_outlined {
    padding: 20px 34px 17px;
  }

  .vc_btn.vc_btn_md.vc_btn_square_outlined:hover,
  .vc_btn.vc_btn_md.vc_btn_rounded_outlined:hover {
    padding: 20px 44px 17px;
  }

  .vc_btn.vc_btn_lg.vc_btn_square_outlined,
  .vc_btn.vc_btn_lg.vc_btn_rounded_outlined {
    padding: 27px 45px 24px;
  }

  .vc_btn.vc_btn_lg.vc_btn_square_outlined:hover,
  .vc_btn.vc_btn_lg.vc_btn_rounded_outlined:hover {
    padding: 27px 55px 24px;
  }

  .vc_btn.vc_btn_xs.vc_btn_square:hover,
  .vc_btn.vc_btn_sm.vc_btn_square:hover,
  .vc_btn.vc_btn_md.vc_btn_square:hover,
  .vc_btn.vc_btn_lg.vc_btn_square:hover {
    border: none;
  }

  .vc_btn.vc_btn_xs.vc_btn_square_outlined,
  .vc_btn.vc_btn_sm.vc_btn_square_outlined,
  .vc_btn.vc_btn_md.vc_btn_square_outlined,
  .vc_btn.vc_btn_lg.vc_btn_square_outlined,
  .vc_btn.vc_btn_xs.vc_btn_rounded_outlined,
  .vc_btn.vc_btn_sm.vc_btn_rounded_outlined,
  .vc_btn.vc_btn_md.vc_btn_rounded_outlined,
  .vc_btn.vc_btn_lg.vc_btn_rounded_outlined {
    position: relative;
    background: none !important;
  }

  .vc_btn.vc_btn_xs.vc_btn_square_outlined,
  .vc_btn.vc_btn_xs.vc_btn_rounded_outlined {
    border: 1px solid;
  }

  .vc_btn.vc_btn_sm.vc_btn_square_outlined,
  .vc_btn.vc_btn_md.vc_btn_square_outlined,
  .vc_btn.vc_btn_sm.vc_btn_rounded_outlined,
  .vc_btn.vc_btn_md.vc_btn_rounded_outlined {
    border: 2px solid;
  }

  .vc_btn.vc_btn_lg.vc_btn_square_outlined,
  .vc_btn.vc_btn_lg.vc_btn_rounded_outlined {
    border: 3px solid;
  }

  .outlined_background {
    opacity: 0;
    width: 100%;
    height: 100%;

    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;

    z-index: 2;

    transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
  }

  .vc_btn.vc_btn_xs.vc_btn_link,
  .vc_btn.vc_btn_sm.vc_btn_link,
  .vc_btn.vc_btn_md.vc_btn_link,
  .vc_btn.vc_btn_lg.vc_btn_link {
    background: none !important;
    padding: 0;
    margin: 5px 0;
    padding-bottom: 1px;
    min-width: 0;
    border: 0;
    border-bottom: 2px solid;
    width: auto;

    transition: border 0.3s;
    -webkit-transition: border 0.3s;
  }

  .vc_btn.vc_btn_link:hover {
    border-bottom: 2px solid transparent;
  }

  .vc_btn3.vc_btn3-size-xs {
    font-size: 13px;
    padding: 10px 20px;
  }

  .vc_btn3.vc_btn3-size-sm {
    font-size: 13px;
    padding: 15px 30px;
  }

  .vc_btn3.vc_btn3-size-md {
    font-size: 13px;
    padding: 20px 40px;
  }

  .vc_btn3.vc_btn3-size-lg {
    font-size: 13px;
    padding: 26px 52px;
  }

  /* Contact Form 7 */

  .wpcf7-form p {
    text-transform: uppercase;
    font-size: 0.8125rem;
    font-weight: bold;
    margin-bottom: 1px;
    line-height: 2em;
    margin-top: 16px;
  }

  .wpcf7-form p:first-of-type {
    margin-top: 1px;
  }

  .wpcf7-form p label {
    margin-top: 0px;
  }

  .wpcf7-form-control.wpcf7-submit {
    margin-bottom: 10px;
  }

  /* Toggles */

  .wpb_wrapper .wpb_toggle,
  #content .wpb_wrapper h4.wpb_toggle {
    font-weight: 900;
    /*color: #000;*/
    background: none;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.5265rem;
    padding-left: 30px;
    margin-bottom: 18px;
  }

  .wpb_wrapper .wpb_toggle:last-of-type,
  #content .wpb_wrapper h4.wpb_toggle:last-of-type {
    margin-bottom: 0;
  }

  .wpb_wrapper .wpb_toggle:last-of-type + .wpb_toggle_content,
  #content .wpb_wrapper h4.wpb_toggle:last-of-type + .wpb_toggle_content {
    margin-top: 8px;
  }

  .wpb_wrapper .wpb_toggle:before,
  #content .wpb_wrapper h4.wpb_toggle:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 7px;
    width: 19px;
    height: 18px;
    color: #fff;
  }

  .wpb_wrapper .wpb_toggle:after,
  #content .wpb_wrapper h4.wpb_toggle:after {
    content: "\f067";
    font: normal normal normal 13px/1 FontAwesome;
    color: #fff;
    speak: none;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    left: 4px;
    top: 10px;
  }

  .wpb_wrapper .wpb_toggle_title_active:after,
  #content .wpb_wrapper h4.wpb_toggle_title_active:after {
    content: "\f068";
    font: normal normal normal 13px/1 FontAwesome;
    speak: none;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    left: 4px;
    top: 10px;
  }

  .wpb_wrapper .wpb_toggle_content {
    margin-top: -5px;
    margin-bottom: 28px;
    padding-left: 30px;
  }

  .wpb_wrapper .last_toggle_el_margin {
    margin: 0;
  }

  /* Accordions */

  .wpb_heading.wpb_accordion_heading {
    margin: 0px;
  }

  .wpb_accordion_section.group {
    border-bottom: 1px solid #ddd;
    padding: 6px 0;
  }

  .wpb_wrapper .wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header {
    margin: 0;
    background: none;
  }

  .wpb_wrapper
    .wpb_accordion
    .wpb_accordion_wrapper
    .wpb_accordion_header.ui-state-active {
    border-bottom: none;
  }

  .wpb_wrapper
    .wpb_accordion
    .wpb_accordion_wrapper
    .wpb_accordion_header:focus {
    outline: 0;
  }

  .wpb_wrapper .wpb_accordion .wpb_accordion_wrapper .ui-state-default .ui-icon,
  .wpb_wrapper .wpb_accordion .wpb_accordion_wrapper .ui-state-active .ui-icon {
    top: 20px;
    right: 0px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    color: #fff;
  }

  .wpb_wrapper
    .wpb_accordion
    .wpb_accordion_wrapper
    .ui-state-default
    .ui-icon {
    cursor: pointer;
  }

  .wpb_wrapper .wpb_accordion .wpb_accordion_wrapper .ui-state-active .ui-icon {
    cursor: default;
  }

  .wpb_wrapper
    .wpb_accordion
    .wpb_accordion_wrapper
    .ui-state-default
    .ui-icon:before,
  .wpb_wrapper
    .wpb_accordion
    .wpb_accordion_wrapper
    .ui-state-active
    .ui-icon:before {
    font-size: 12px;
    width: 100%;
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    position: relative;
  }

  .wpb_wrapper
    .wpb_accordion
    .wpb_accordion_wrapper
    .ui-state-default
    .ui-icon:before {
    content: "\f063";
  }

  .wpb_wrapper
    .wpb_accordion
    .wpb_accordion_wrapper
    .ui-state-active
    .ui-icon:before {
    content: "\f062";
    top: -1px;
  }

  .wpb_wrapper .wpb_content_element .wpb_accordion_header .accordion_title {
    display: block;
    font-weight: 500;
    /*color: #000;*/
    cursor: pointer;
    background: none;
    font-size: 1.125rem;
    line-height: 1.4rem;
    padding: 20px 30px 20px 20px;
  }

  .wpb_wrapper
    .wpb_accordion
    .wpb_accordion_wrapper
    .wpb_accordion_header.ui-state-active
    .accordion_title {
    border-bottom: none;
    cursor: default;
  }

  .wpb_wrapper
    .wpb_accordion
    .wpb_accordion_wrapper
    .wpb_accordion_header
    .accordion_title,
  .wpb_wrapper
    .wpb_content_element
    .wpb_accordion_wrapper
    .wpb_accordion_content {
    padding-left: 0;
  }

  .wpb_wrapper
    .wpb_accordion
    .wpb_accordion_wrapper
    .wpb_accordion_header.ui-state-active
    .accordion_title:hover {
    cursor: default;
  }

  .wpb_wrapper
    .wpb_content_element
    .wpb_accordion_wrapper
    .wpb_accordion_content {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 34px;
  }

  /* Google Maps */

  .wpb_gmaps_widget.wpb_content_element .wpb_wrapper {
    padding: 0;
  }

  #map_container {
    position: relative;
  }

  #map_container img {
    max-width: none;
  }

  .map_button_wrapper {
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -75px;
  }

  #map_button {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    min-width: 150px;
    background-color: #fff;
    padding: 1rem 1rem 1rem;

    transition: all 0.3s;
    -webkit-transition: all 0.3s;
  }

  #map_button:hover {
    background-color: #000;
    color: #fff;
  }

  /* Progress Bars */

  .wpb_heading.wpb_progress_bar_heading {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 21px;
  }

  .wpb_wrapper .vc_progress_bar .vc_single_bar {
    margin-bottom: 13px;
    box-shadow: none;
    border-radius: 0;
    background: none;
  }

  .wpb_wrapper .vc_progress_bar .vc_single_bar .vc_label {
    font-size: 0.875rem;
    text-transform: capitalize;
    padding: 14px 0px;
    text-shadow: none !important;
    display: block;
    color: inherit !important;
  }

  .wpb_wrapper .vc_progress_bar .vc_single_bar:before {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    background: #f4f4f4;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.6;
  }

  .wpb_wrapper .vc_progress_bar .vc_single_bar .vc_label .vc_label_units {
    font-weight: 900;
    opacity: 1;
    margin-left: 10px;
  }

  .wpb_wrapper .vc_progress_bar .vc_single_bar .vc_bar {
    height: 5px;

    border-bottom: none;
    border-radius: 0;

    position: absolute;
    top: 0;
    left: 0;
  }

  /* Pie Charts */

  .wpb_wrapper .vc_pie_chart[data-pie-color] .vc_pie_chart_back {
    border-color: inherit;
    border-width: 5px;
    opacity: 0.15;
  }

  .wpb_wrapper .vc_pie_chart .vc_pie_chart_value {
    font-size: 2.3125rem;
  }

  .vc_pie_wrapper.with_title .vc_pie_chart_value {
    margin-top: -11px;
  }

  .wpb_heading.wpb_pie_chart_heading {
    font-size: 0.9375rem;
    font-weight: 900;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    margin-top: 6px;
    text-align: center;
    width: 100%;
    max-width: 80%;
    left: 10%;
  }

  .vc_pie_chart.without_pie {
    font-weight: bold;
  }

  .vc_pie_chart.without_pie .vc_pie_chart_back {
    display: none;
  }

  .vc_pie_chart.without_pie canvas {
    visibility: hidden;
    display: none;
  }

  .vc_pie_chart.without_pie .vc_pie_chart_value {
    font-size: 37px;
    position: relative;
    line-height: 1 !important;
    height: auto !important;
    margin-bottom: 18px;
  }

  .vc_pie_chart.without_pie .vc_pie_wrapper.with_title .vc_pie_chart_value {
    margin-top: 0;
  }

  .vc_pie_chart.without_pie .wpb_heading.wpb_pie_chart_heading {
    font-size: 15px;
    position: relative;
  }

  /* Separator */

  .vc_content_hr {
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #ddd;
    margin: 0 0 35px;
  }

  /*Single Image*/

  .wpb_single_image .vc_single_image-wrapper {
    max-width: 100%;
  }

  /* Blog Posts */

  .wpb_wrapper .from-the-blog-wrapper {
    margin-top: 0;
  }

  .boxed-row .wpb_wrapper .from-the-blog-wrapper {
    margin: 0px -30px 0px;
  }

  .off-canvas-wrap,
  .inner-wrap,
  nav.tab-bar,
  .left-off-canvas-menu,
  .left-off-canvas-menu *,
  .right-off-canvas-menu,
  .move-right a.exit-off-canvas,
  .move-left a.exit-off-canvas {
    -webkit-backface-visibility: visible;
  }
  .woocommerce #payment ul.payment_methods li img,
  .woocommerce-page #payment ul.payment_methods li img {
    margin: 2px -2px 0 6px !important;
  }

  /*featured deals on checkout */
  .deals_on_checkout > ul {
    margin-left: 0px;
    list-style: none;
  }
  .recomonded_div a {
    font-weight: normal;
    color: #000000;
    font-size: 15px;
    line-height: 0px;
  }
  .recomonded_div select {
    font-size: 15px;
    margin-top: 10px;
    font-weight: normal;
    width: 50%;
  }
  .deals_on_checkout .recomonded_div {
    padding: 22px 0;
  }
  .continue_shipping {
    padding-bottom: 20px;
  }
  .recomonded_add_to-cart.add_to_cart_link {
    color: #c9321a;
    font-weight: bold;
    padding-top: 4px;
  }
  .thumbnail_image {
    float: left;
    text-align: left;
    margin-right: 10px;
    max-width: 87px !important;
  }
  .recomonded_div a ins .amount {
    color: #c9321a;
  }
  .recomonded_div ins {
    background-color: #ffffff;
  }
  .woocommerce-billing-fields #subscribe_to_newsletter_field {
    display: none;
  }

  .entry-title.post-title {
    margin: -0.13em 0 15px;
    margin-top: -0.13em;
    margin-bottom: 15px;
    text-transform: capitalize;
    text-align: left !important;
    font-weight: 900;
    color: #222;
    font-size: 22px;
  }

  .entry-title.post-title::after {
    background: #000000;
  }
  .entry-title.post-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    margin: 32px auto;
  }

  .pw-old-padding {
    padding-left: 6em;
    padding-right: em;
    color: #222;
  }

  table.shop_table {
    border: none;
  }

  a.button.vendor-dashboard-link {
    display: none;
  }

  table thead th {
    text-transform: capitalize;
  }
  .woocommerce table.my_account_orders td {
    padding: 0;
  }

  a.woocommerce-button.button.view {
    padding: 4px 18px;
    border-radius: 6px !important;
    background-color: #fff;
    border: 1px solid #c9321a;
    color: #c9321a;
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
  }
  a.woocommerce-button.button.view:hover {
    color: #972615 !important;
    border-color: #972615 !important;
    background-color: unset !important;
  }
  .woocommerce table.shop_table .order-status,
  .woocommerce table.shop_table .order-date {
    /* padding-left: 25px; */
    padding-right: 25px;
  }
  .woocommerce
    table.shop_table
    .woocommerce-orders-table__row
    .subscription-id {
    padding-left: 24px;
    border-left: 1px solid #dbdbdb;
    border-bottom-left-radius: 6px;
  }
  .woocommerce
    table.shop_table
    .woocommerce-orders-table__row
    .subscription-actions {
    border-right: 1px solid #dbdbdb;
    border-bottom-right-radius: 6px;
  }
  .my_address_description {
    width: 100%;
    margin-bottom: 30px;
    padding-right: 52px;
    padding-bottom: 23px;
    float: left;
  }

  .shipping_billing_wrapper {
    float: left;
    width: 100%;
    padding-left: 0;
    padding-top: 5px;
  }

  .shipping_billing_wrapper address {
    margin-top: 11px;
    margin-bottom: 11px;
    line-height: 1.5rem;
    padding-left: 0px;
    padding-top: 0;
    padding-bottom: 0px;
    font-style: normal;
  }

  .woocommerce-account ul.digital-downloads li {
    margin-top: 12px;
  }

  .woocommerce div.product.elementor .woocommerce-tabs .panel {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  #header-menu .menu-item-user,
  #header-menu .menu-item-balance {
    color: #ffffff;
    float: right;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    display: block;
    padding: 21px 2px;
  }

  /* Chrome */
  input[type="search"]::-webkit-search-decoration,
  input[type="search"]::-webkit-search-cancel-button,
  input[type="search"]::-webkit-search-results-button,
  input[type="search"]::-webkit-search-results-decoration {
    display: none;
  }

  .variations_form .variations .label,
  .variations_form .variations .value {
    display: table-row;
  }

  .single_add_to_cart_button.button.alt.disabled.wc-variation-selection-needed {
    background-color: #c9321a;
  }

  .woocommerce-product-details__short-description {
    /*margin: 20px 0;*/
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 33px;
  }

  .woocommerce-page div.product p.price del {
    margin-right: 7px;
    font-size: 16px;
    font-weight: normal;
  }

  #primary div.product p.price ins {
    font-size: 20px;
    line-height: 25px;
    font-style: normal;
    font-weight: bold;
    color: #c9321a;
    text-decoration: none;
  }

  nav.navigation.pagination {
    text-align: center;
  }

  .products-wrapper .products li .wcpv-sold-by-loop,
  .woocommerce-view-order .order_details .wcpv-sold-by-order-details {
    display: none;
  }

  .products p.price del {
    margin-right: 6px;
  }

  #primary .product figure img.wp-post-image {
    width: 64%;
  }

  /* Single Product - Related Products */

  .related-product-wrapper .related-head {
    text-align: center;
    text-transform: uppercase;
  }

  .related-product-wrapper .related-head:after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    margin: 22px auto 15px;
  }

  .related-product-wrapper .related-head::after {
    background: #c9321a;
  }

  .related-product-wrapper .wcpv-sold-by-loop {
    display: none;
  }

  @media screen and (min-width: 1000px) {
    .woocommerce .related,
    .woocommerce-page .related,
    .woocommerce .upsells.products,
    .woocommerce-page .upsells.products {
      margin: 0 200px 0 200px;
    }
    /*.woocommerce .related { margin:0 15px; }*/
  }

  .related-product-wrapper .woocommerce-loop-product__title {
    font-size: 15px !important;
    line-height: 1.3em;
    text-align: left;
    overflow-wrap: break-word;
    color: #000;
  }

  .related-product-wrapper p.price del {
    margin-right: 2px;
  }

  span.res-header-cart-total,
  span.res-cart-icon.icon.icon-shopping-cart {
    font-size: 16px;
  }

  .res-cart-link a {
    padding-top: 5px;
  }

  .wpb_wrapper.add-to-cart-wrapper {
    text-align: center;
  }

  #\34 04.hentry {
    width: 420%;
    text-align: center;
  }

  .cross-table {
    margin-top: 1em;
    float: right;
    width: 52%;
    border: 1px solid #ebebeb !important;
  }

  .cross-table-product {
    display: flex;
  }

  .woocommerce-page.woocommerce-checkout
    .woocommerce
    form
    #customer_details.col2-set {
    width: 45%;
  }
  .woocommerce-page.woocommerce-checkout
    .woocommerce
    form
    #order_review_heading,
  .woocommerce-page.woocommerce-checkout .woocommerce form #order_review {
    width: 52%;
    border: none;
    background-color: #fff;
    border-radius: 5px;
    text-align: center;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }

  .woocommerce-page.woocommerce-checkout
    .woocommerce
    form
    #customer_details.col2-set {
    margin-right: 10px;
  }

  #place_order {
    width: 60%;
    background-color: #ffc439;
    color: black;
    margin-top: 12px;
    font-size: 20px !important;
    font-weight: 700 !important;
  }
  #place_order:hover {
    background-color: #ffc439 !important;
    color: #000 !important;
    filter: brightness(0.95);
  }

  input.wc_points_rewards_apply_discount {
    padding: 20px 25px !important;
    margin-left: 10px;
    background-color: #ffffff !important;
    color: #eb7a5c !important;
    text-decoration: underline;
    text-transform: capitalize !important;
  }

  .woocommerce-info.wc_points_redeem_earn_points,
  .woocommerce-form-coupon-toggle {
    text-transform: capitalize;
    font-size: 14px;
    border: none;
  }

  .woocommerce-form-coupon-toggle .woocommerce-info {
    border: none;
  }

  .order-review-wrapper {
    display: inline-block;
  }

  .woocommerce-billing-fields #billing_first_name_field #billing_first_name,
  .woocommerce-billing-fields #billing_email {
    padding: 5px 15px;
  }

  #billing_country_field #select2-billing_country-container {
    line-height: 1.75;
    font-size: 0.89rem !important;
    font-weight: 400;
  }
  #select2-billing_country-results .select2-results__option {
    font-size: 0.89rem !important;
    font-weight: 400;
    padding: 6px 12px !important;
  }

  #billing_country_field .select2-selection__arrow {
    margin: 5px;
  }

  .woocommerce-page.woocommerce-checkout
    .order-review-wrapper
    form
    #order_review_heading {
    padding: 0.5em 2em 0;
  }

  .cross-table table tr td {
    vertical-align: middle;
  }

  .cross-table h3 {
    margin-left: 50px;
  }

  .cross-table table {
    border: none;
  }

  #order_review .wcpv-sold-by-cart,
  #order_review .variation-SoldBy {
    display: none;
  }

  @media screen and (max-width: 768px) {
    .single-product
      .remove-for_freebie.addtocartprd.add_to_cart_button.ajax_add_to_cart
      #pw_single_product_plus_banner {
      left: -15% !important;
      max-width: 125%;
    }
    .woocommerce-checkout .woocommerce-form-login .wc-social-login a {
      margin-left: 0 !important;
    }
    /* Changes added for Mega menu My account menu item conflict by Prasada - start */
    #myaccount-mega .jet-mega-menu-mega-container {
      width: 400px !important;
    }
    .jet-mega-menu.jet-mega-menu--layout-dropdown.jet-mega-menu--dropdown-layout-default
      .jet-mega-menu-container {
      width: 500px;
      overflow-x: hidden !important;
      overflow-y: scroll !important;
      left: -15px;
    }
    .jet-mega-menu.jet-mega-menu--layout-dropdown.jet-mega-menu--dropdown-layout-default
      .jet-mega-menu-container
      ul.jet-mega-menu-list {
      border: 1px solid #e3e9ef;
      padding: 20px;
      background-color: #fff;
    }
    .jet-mega-menu-mega-container {
      max-width: 92vw !important;
    }
    /* Changes added for Mega menu My account menu item conflict by Prasada - end */
    /* Change added by Omendra on 25th jan -Start*/
    /* Checkout Alginmnet fix for mobile */
    .woocommerce table.shop_table .order-status,
    .woocommerce table.shop_table .order-date {
      padding-left: 9px;
      padding-right: 9px;
    }
    /* Change added by Omendra on 25th jan -End*/
    .sticky_add_to_cart {
      padding: 10px !important;
      text-align: center;
    }
    .sticky-cart-right {
      float: none !important;
      margin-top: 1em;
    }
    .sticky-cart-right a {
      margin-top: 1em !important;
    }
    .plus_upsell_content form {
      height: auto !important;
    }
    .woocommerce-checkout .woocommerce-form-login {
      height: auto !important;
    }
    .woocommerce-checkout .wc-social-login a {
      margin-left: 0 !important;
    }
    .woocommerce-checkout
      .woocommerce-form-login
      .form-row
      .woocommerce-form-login__submit {
      position: relative;
      right: 0 !important;
    }
    .woocommerce .col2-set .col-2,
    .woocommerce-page .col2-set .col-2 {
      float: none;
      width: auto;
      margin-top: 10px;
    }
    #place_order {
      margin-left: 0;
      width: 100%;
    }
    .woocommerce
      .shop_table.woocommerce-checkout-review-order-table
      tr
      th:last-child,
    .woocommerce-page
      .shop_table.woocommerce-checkout-review-order-table
      tr
      th:last-child,
    .woocommerce
      .shop_table.woocommerce-checkout-review-order-table
      tr
      td:last-child,
    .woocommerce-page
      .shop_table.woocommerce-checkout-review-order-table
      tr
      td:last-child {
      padding-left: 0;
    }
  }

  #order_review .product-remove a.remove {
    border: none;
    color: #000 !important;
  }

  .cross-table td button {
    padding: 10px 15px;
    float: right;
  }

  .woocommerce .woocommerce-info::before {
    color: #c9321a;
  }

  #pw-custom-container {
    display: inline-block;
    width: 100%;
  }
  #pw-custom-container-right {
    text-align: left;
    font-size: 16px;
    margin-left: 0.7em;
  }
  #pw-add-cart-container {
    display: inline-block;
    width: 100%;
  }
  #pw-add-cart-right {
    float: left;
    width: 45%;
    margin-left: 2.2em;
  }

  #pw-add-cart-right form .single_add_to_cart_button:hover {
    background-color: #972615 !important;
    padding: 1.3em !important;
  }

  .woocommerce div.product p.price {
    font-size: 20px;
    font-weight: 600 !important;
  }
  /* Hide header and footer on checkout page */
  .woocommerce-checkout .footer-layouts.social-icon,
  .woocommerce-checkout nav#footer-site-navigation,
  .woocommerce-checkout nav#site-navigation {
    display: none;
  }

  .cross-table form input[type="submit"] {
    font-size: 16px;
    padding: 18px 50px 18px 50px;
  }
  .woocommerce-checkout .checkout-get-plus-section {
    display: flex;
    font-size: 16px;
    align-items: center;
    justify-content: space-between;
  }
  .woocommerce-checkout .checkout-get-plus-image a {
    vertical-align: middle;
  }

  .checkout-get-plus-section .checkout-get-plus-fields input[type="submit"] {
    margin-top: 10px;
  }
  .checkout-get-plus-section .checkout-get-plus-fields {
    margin-left: -46%;
  }
  /*Vaibhav added container and made changes on Sep 20*/
  .pw-plus-upsell-plan-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .woocommerce-checkout
    a.add_pw_btn.single_add_to_cart_button.button.alt.wp-element-button {
    padding: 12px 18px;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 0 !important;
    border-radius: 6px !important;
  }
  .plus-and-submit-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  @media screen and (max-width: 768px) {
    .woocommerce table.shop_table_responsive thead,
    .woocommerce-page table.shop_table_responsive thead {
      display: block !important;
    }
    .woocommerce table.shop_table_responsive thead,
    .woocommerce-page table.shop_table_responsive thead tr.bundles_heading {
      display: none;
    }
    .woocommerce-cart .woocommerce .woocommerce-notices-wrapper {
      width: 100% !important;
      padding: 0 !important;
    }
    .plus_upsell_content form a {
      display: inline-block !important;
    }
    .woocommerce-cart table.shop_table tr.cart-table-title-mobile td {
      border-top: none;
    }
    #pw-custom-container-right form {
      margin-left: 40px;
    }
    .woocommerce-checkout #place_order {
      margin-bottom: 0 !important;
      width: 100% !important;
      padding: 18px 25px 18px 25px;
      float: none;
    }
    .woocommerce-checkout
      .woocommerce
      .woocommerce-form-login
      .woocommerce-form-login__rememberme {
      display: block;
      position: relative;
      right: 0 !important;
      margin-bottom: 0 !important;
    }
    .woocommerce-checkout
      .woocommerce
      .woocommerce-form-login
      .form-row
      .woocommerce-form-login__submit {
      margin: 1em 0 !important;
      padding: 18px 25px 18px 25px;
    }
    .woocommerce-checkout .woocommerce-form-login p:first-child {
      padding: 1em 0 !important;
    }
    .woocommerce-checkout .woocommerce-form-login .form-row-last {
      padding: 0 !important;
    }
    .woocommerce form.login,
    .woocommerce form.register {
      padding: 1em !important;
    }
    .woocommerce-checkout .woocommerce-form-login .form-row-last,
    .woocommerce-checkout .woocommerce-form-login .form-row {
      width: 100% !important;
      margin-left: 0 !important;
    }
    .woocommerce-cart-form .large-centered .large-8 {
      padding-left: 0.5em !important;
    }
  }

  #pw-custom-container-right p {
    /*margin-top: 15px;*/
    margin-bottom: 32px;
    margin-left: 24px;
  }

  #pw-custom-container-right form {
    text-align: left;
    margin-left: 24px;
  }

  #pw-custom-container-right form label {
    font-size: 18px;
    line-height: 1em;
    text-transform: unset;
    margin-left: 2px;
  }

  #order_review table.shop_table tr td.product-thumbnail {
    width: 15%;
  }

  #order_review table.shop_table tr td.product-subtotal {
    width: 20%;
    padding-left: 80px;
  }

  @media screen and (max-width: 768px) {
    #order_review table.shop_table tr td.product-subtotal {
      padding-left: 0px;
    }
    #order_review table.shop_table tr td.product-thumbnail {
      width: 30%;
    }
  }

  #order_review table.shop_table tr td.product-subtotal a.remove {
    border: none;
  }
  .woocommerce .form_edit_address input.button {
    background-color: #c9321a;
  }
  .related-product-wrapper a.button.add_to_cart_button {
    padding: 20px 25px 20px 25px !important;
    background-color: #c9321a !important;
    line-height: 1;
    color: #fff;
    margin: 10px 0 !important;
  }
  .related-product-wrapper .products a.button:before,
  .related.products .products a.button:before {
    content: none;
  }
  /* Deal page css */
  .woocommerce div.product .product_title {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 32px;
  }
  .woocommerce div.product .woocommerce-product-rating {
    margin-bottom: 32px;
  }
  .entry-summary a.woocommerce-review-link {
    font-size: 16px;
    color: #000000;
  }
  .single-product p.price {
    margin: 0;
  }
  .single-product div.product form.cart .button {
    /*font-size: 16px!important;*/
    text-transform: capitalize;
    padding: 22px 25px 22px 25px;
    width: 185px;
  }
  #pw-add-cart-right .button {
    width: 185px;
    text-transform: capitalize;
    padding: 22px 25px 22px 25px;
  }
  .wcpv-sold-by-single {
    font-size: 16px;
  }
  .wcpv-sold-by-single a {
    color: #000;
  }
  p.plus-text {
    font-weight: 700;
    margin-bottom: 10px !important;
    /*margin-top: 47px;*/
  }
  .single-product .button {
    font-size: 16px !important;
    text-transform: uppercase;
  }
  .woocommerce .quantity .qty {
    font-size: 20px;
    margin-right: 10px;
  }
  .woocommerce .quantity .qty {
    width: 3em;
    padding: 11px 7px 11px 4px;
  }
  .woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
    margin-top: 8px;
  }
  .woocommerce-product-gallery__trigger {
    display: none;
  }
  .single-product p.stock.out-of-stock {
    display: none;
  }
  .single_variation_wrap #woochimp_shortcode_subscription_submit {
    margin-top: 10px;
  }

  @media screen and (max-width: 768px) {
    .res-cart-link,
    #full-screen-res-search-link {
      width: 100%;
    }
    .main-navigation .menu li.menu-item-has-children > a:after {
      display: none !important;
    }
    #header-menu .sub-menu {
      box-shadow: none !important;
    }
    .elementor-287
      .elementor-element.elementor-element-5c9c91
      > .elementor-widget-container {
      padding: 0 !important;
    }
    .elementor-287
      .elementor-element.elementor-element-52f901a1
      .elementor-button[type="submit"] {
      width: 100%;
    }
    .woocommerce-noreviews {
      margin: 2em 1.5em !important;
    }
    #reviews {
      width: 100% !important;
    }
    .single-product
      #primary
      .product
      figure
      .woocommerce-product-gallery__image
      img.wp-post-image {
      padding-right: 0 !important;
    }
    #pw-add-cart-right .button {
      position: relative;
      bottom: 2.7em;
      width: 11em;
    }
    .single-product div.product form.cart .button {
      width: auto !important;
    }
    .woocommerce .quantity .qty {
      width: 3em;
      padding: 0;
      margin-bottom: 10px;
    }
    #pw-add-cart-container #pw-add-cart-right {
      margin-top: 13.3%;
      padding: 0;
    }
    #pw-add-cart-right {
      float: left;
      margin-left: 5px;
    }

    .elementor-287
      .elementor-element.elementor-element-0ef1af9
      > .elementor-widget-container {
      padding: 0px !important;
    }

    .elementor-element-4dd2fb53.elementor-sticky--active {
        top: 60px !important;
    }
  }
  /* Prasada - Website Changes  9Apr */
  .content-outer {
    max-width: 1180px !important;
  }
  .woocommerce #review_form #respond {
    width: 50% !important;
  }
  .woocommerce .product_cat-new-masterclass #review_form #respond {
    width: 100% !important;
  }
  #reviews {
    width: 100%;
  }
  .res-iconify {
    display: none;
  }

  .sticky-header .main-navigation .menu > li > .res-iconify svg {
    stroke: #ffffff !important;
  }
  .woocommerce-Reviews-title {
    display: none;
  }
  .woocommerce #reviews #comments ol.commentlist li .comment-text {
    border-bottom: 1px solid #e4e1e3 !important;
    border: none;
    margin: 0 !important;
  }
  .archive #masthead.sticky-header,
  .home #masthead.sticky-header {
    display: block;
  }
  .page-id-322235 #masthead.sticky-header,
  .page-id-307541 #masthead.sticky-header,
  .page-id-311472 #masthead.sticky-header,
  .page-id-247242 #masthead.sticky-header,
  .page-id-464143 #masthead.sticky-header,
  .page-template-tpl_submit_deal #masthead.sticky-header,
  .page-id-801377 #masthead.sticky-header,
  .single-product #masthead.sticky-header,
  .woocommerce-checkout #masthead.sticky-header,
  .woocommerce-cart #masthead.sticky-header {
    display: none !important;
  }
  .woocommerce #reviews #comments ol.commentlist li .comment-text .star-rating {
    order: 2;
    margin-bottom: 0.5em;
    margin-left: 0.7em;
  }
  .woocommerce #reviews #comments ol.commentlist li .comment-text {
    display: flex;
    flex-wrap: wrap;
  }
  .woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
    order: 1;
  }
  .woocommerce #reviews #comments ol.commentlist li .comment-text .description {
    order: 3;
    width: 100%;
  }
  /* CSS for Cart page UI */

  .woocommerce-cart table.shop_table thead tr th.product-thumbnail {
    border: 1px solid #333;
    border-top-left-radius: 5px;
  }
  .woocommerce-cart table.shop_table thead tr th.product-remove {
    border: 1px solid #333;
    border-top-right-radius: 5px;
  }
  .woocommerce-cart table.shop_table {
    border-top-left-radius: 5px !important;
    border-top-right-radius: 5px !important;
    border-top: 0 !important;
  }
  .woocommerce-cart .cart-collaterals .cart_totals > h2,
  .woocommerce-checkout .cart-collaterals .cart_totals > h2 {
    border-radius: 5px 5px 0 0;
    border-bottom: 0px !important;
  }
  .coupon_code_wrapper_inner input.button.apply_coupon {
    line-height: 0.85 !important;
  }
  .woocommerce-cart table.shop_table thead .product_th_heading th {
    padding: 1em 1.5em;
    font-size: 16px !important;
    text-transform: capitalize !important;
  }
  .woocommerce-cart table.shop_table tbody tr td:first-child {
    padding: 1.5em !important;
  }
  .woocommerce-cart table.shop_table td,
  .woocommerce-cart table.shop_table td {
    padding: 20px 20px 20px 0 !important;
    font-size: 16px !important;
  }
  .woocommerce-cart table.shop_table .product-name a,
  .woocommerce-checkout .shop_table .product-name a,
  .woocommerce-checkout .shop_table .price span {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #313131 !important;
  }
  .woocommerce-cart .elementor-icon.pw-cart-remove {
    font-size: 14px;
  }
  .woocommerce-cart table.shop_table .product-name a {
    text-decoration: none;
  }
  .woocommerce-cart table.shop_table tr {
    padding: 0 20px;
  }
  .woocommerce-cart table.shop_table .heading {
    font-size: 19px !important;
    text-transform: capitalize;
    background-color: #f3f3f3;
    padding-left: 3%;
  }

  .woocommerce-cart .woocommerce-info.wc_points_redeem_earn_points {
    text-align: left !important;
    padding: 0 !important;
  }
  .woocommerce-cart .shop_table .product-subtotal {
    text-align: center !important;
  }
  /*Changes made by Divya on Feb 7 - Start*/
  .bundles_heading th {
    background-color: #060a0d;
    color: #ffffff;
  }
  /*Changes made by Divya on Feb 7 - end*/

  .woocommerce-cart .cart_form .cart-collaterals,
  .woocommerce-cart .cart_form .cart-collaterals {
    padding: 0 !important;
  }
  .woocommerce-cart .cart-collaterals .cart_totals table tr th,
  .woocommerce-cart .cart-collaterals .cart_totals table tr td {
    border-top: 1px solid #ebe9eb !important;
    border-right: 0;
    border-bottom: 1px solid #ffffff !important;
    padding: 24px 24px !important;
  }
  .woocommerce-cart
    .cart_container
    .cart-collaterals
    .cart_totals
    .cart-subtotal
    th,
  .woocommerce-cart
    .cart_container
    .cart-collaterals
    .cart_totals
    .cart-subtotal
    td {
    border-top: none !important;
    padding: 6% 5% !important;
    line-height: 22px;
    font-weight: 600 !important;
  }
  .woocommerce-cart .cart-collaterals .cart_totals {
    padding: 0 !important;
    margin-bottom: 0 !important;
  }
  .woocommerce-cart .cart-collaterals .cart_totals tr.order-total td strong,
  .woocommerce-cart .cart-collaterals .cart_totals tr.order-total td strong {
    font-size: 1rem !important;
  }
  .woocommerce-cart .coupon_code_wrapper .update_and_checkout {
    float: right;
    margin-top: -0.5em;
  }
  .woocommerce-cart input.update_cart:disabled[disabled] {
    padding: 16px 25px 15px 25px !important;
    color: #c9321a !important;
    background-color: #ffffff !important;
    cursor: not-allowed !important;
    border: 1px solid #c9321a;
    opacity: 1 !important;
    font-size: 16px !important;
    position: relative;
    top: 24px;
  }
  .woocommerce-cart input.update_cart {
    padding: 17px 25px 17px 25px !important;
    color: #c9321a !important;
    background-color: #ffffff !important;
    cursor: pointer !important;
    border: 1px solid #c9321a !important;
    opacity: 1 !important;
    border-radius: 5px;
    font-size: 14px !important;
  }

  .woocommerce-cart .woocommerce-cart-form__contents .quantity input.qty {
    font-size: 16px !important;
    height: 31px !important;
    line-height: 31px !important;
  }
  .woocommerce-cart .coupon_code_wrapper_inner #coupon_code {
    font-size: 16px !important;
    border: 1px solid #ebebeb !important;
    margin-bottom: 0px;
  }
  .woocommerce-cart .cart-buttons {
    padding: 0 24px 24px 24px !important;
  }
  .woocommerce-cart table.cart-icons-tbl {
    border-radius: 5px;
    border-collapse: initial !important;
    margin-top: 10px;
  }
  .woocommerce-cart table.cart-icons-tbl td.icons {
    color: #c9321a;
    text-align: left;

    padding-left: 0;
  }

  .woocommerce-cart table.cart-icons-tbl td {
    border: 0;
    font-weight: normal;
    line-height: 24px;
    color: #333333;
  }
  .woocommerce-cart table.cart-icons-tbl td.description {
    font-size: 16px;
  }

  /*
.woocommerce-cart table.cart-icons-tbl{
	padding-top: 10px;
	padding-bottom: 10px;

	padding: 0px 12px 0px 20px;

}
*/
  .woocommerce-cart table.cart-icons-tbl {
    padding: 24px;
  }
  /* Checkout Changes */
  .woocommerce-checkout #payment ul.payment_methods li input {
    margin: 0 0.2em 0 0 !important;
  }
  .woocommerce-checkout .gift-a-deal-title {
    font-size: 16px;
  }
  .woocommerce-checkout .woocommerce form .form-row .input-checkbox {
    margin-right: 2px !important ;
  }

  .woocommerce-checkout #billing_last_name:focus,
  .woocommerce-checkout #billing_first_name:focus,
  .woocommerce-checkout #billing_email:focus,
  .woocommerce-checkout #billing_last_name:active,
  .woocommerce-checkout #billing_first_name:active,
  .woocommerce-checkout #billing_email:active {
    border-color: #8d8d8d !important;
  }
  .woocommerce-checkout #billing_last_name:focus-visible,
  .woocommerce-checkout #billing_first_name:focus-visible,
  .woocommerce-checkout #billing_email:focus-visible {
    outline: none;
  }
  .woocommerce-checkout .plus_upsell_heading {
    background-color: #060a0d;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
  .woocommerce-checkout .plus_upsell_heading .plus_upsell_title {
    display: inline-block;
  }
  .woocommerce-checkout .plus_upsell_heading .plus_upsell_benifits {
    display: inline-block;
    float: right;
    font-size: 16px;
    padding: 1.2em 1.2em;
    border-top-right-radius: 5px;
    color: #ed7a5c;
  }
  .woocommerce-billing-fields,
  .woocommerce-shipping-fields,
  .woocommerce-account-fields {
    border-right: 1px solid #ebebeb !important;
    border-bottom: 1px solid #ebebeb !important;
    border-left: 1px solid #ebebeb !important;
    margin-bottom: 1em;
    border-radius: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }

  .cls-border-box-padding label:first-child {
    margin-top: 0 !important;
  }
  .order_heading {
    width: 52%;
    float: right;
  }
  .woocommerce-checkout table.shop_table .order-total th,
  .woocommerce-checkout table.shop_table .order-total td {
    border-top: 1px solid #ebebeb !important;
    border-bottom: none !important;
  }
  .product-remove-cls .remove {
    border: none !important;
  }
  .woocommerce-checkout input.wc_points_rewards_apply_discount {
    padding: 5px 10px;
    margin-left: 10px;
    background-color: #f7f6f7 !important;
    color: #eb7a5c !important;
    text-decoration: underline;
    text-transform: capitalize !important;
  }
  .woocommerce-checkout form #order_review {
    padding: 0 !important;
  }
  .total_title_cls {
    font-size: 20px !important;
    position: relative;
    left: 11px;
    color: #313131;
  }
  .woocommerce-checkout-review-order-table .product-subtotal .price {
    position: relative;
    bottom: 0.9em;
  }
  .woocommerce-checkout .checkout_coupon .form-row-first,
  .woocommerce-checkout .checkout_coupon .form-row-last {
    width: 50% !important;
  }
  .woocommerce-checkout .checkout_coupon button.button {
    background-color: #eb7a5c !important;
    padding: 1.4em 2em !important;
  }
  .plus_upsell_content {
    padding: 24px;
  }
  .order_summary_title {
    border-bottom: none;
  }
  .payment_method_paypal img,
  .payment_method_paypal .about_paypal,
  .payment_box p,
  .woocommerce-checkout #payment div.payment_box:before,
  .payment_method_stripe img {
    display: none !important;
  }
  .woocommerce-checkout-review-order-table .cart-subtotal td span,
  .woocommerce-checkout-review-order-table .cart-discount td span,
  .woocommerce-checkout #order_review .recurring-total td {
    font-size: 90% !important;
    font-weight: 600 !important;
  }
  .woocommerce-checkout .recurring-totals th,
  .woocommerce-checkout .recurring-total th {
    font-size: 85% !important;
    padding-left: 0.8em !important;
    font-weight: 600 !important;
  }
  .coupon_total_title_cls,
  .subtotal_title_cls {
    font-size: 14px !important;
    padding-left: 0.8em !important;
    font-weight: 600 !important;
  }
  .woocommerce-checkout-review-order-table .woocommerce-remove-coupon {
    display: none;
  }

  /* For sliding click login css */
  .showlogin,
  .js-show-social-login {
    text-decoration: none;
    display: inline-block;
    position: relative; /* prepare the position for sliding in and out */
  }
  /* add a empty string before the elment with class .slide-in-out  */
  .showlogin:before,
  .js-show-social-login:before {
    content: "";
    display: block;
    height: 3px;
    width: 0;
    transition: width 0s ease, background-color 0.5s ease;
    -webkit-transition: width 0s ease, background-color 0.5s ease;
    -moz-transition: width 0s ease, background-color 0.5s ease;

    /* position the content to the left bottom corner of the parent element to make it to slide in from left to right on hover */
    position: absolute;
    left: 0;
    bottom: 0;
  }
  /* add a empty string after the elment with class .slide-in-out  */
  .showlogin:after,
  .js-show-social-login:after {
    content: "";
    display: block;
    height: 3px;
    width: 0;
    background: #eb7a5c;
    transition: width 0.5s ease;
    -webkit-transition: width 0.5s ease, background-color 0.5s ease;
    -moz-transition: width 0.5s ease, background-color 0.5s ease;

    /* position the content to the left bottom corner of the parent element to make it to slide out from left to right on hover */
    position: absolute;
    right: 0;
    bottom: 0;
  }

  /* Change the width and background on hover, aka sliding in and out */
  .showlogin:hover:before,
  .js-show-social-login:hover:before {
    width: 100%;
    background: #eb7a5c;
    transition: width 0.5s ease;
    -webkit-transition: width 0.5s ease;
    -moz-transition: width 0.5s ease;
  }
  .showlogin:hover:after,
  .js-show-social-login:hover:after {
    width: 100%;
    background: transparent;
    transition: all 0s ease;
    -webkit-transition: width 0s ease;
    -moz-transition: width 0s ease;
  }

  .woocommerce-checkout
    .woocommerce-form-login
    .form-row
    .woocommerce-form-login__submit {
    margin: 4.5em 1em !important;
    background-color: #eb7a5c !important;
    position: relative;
    right: 1em;
    margin-bottom: 0 !important;
    border-radius: 5px;
  }
  .woocommerce-checkout .woocommerce-form-login {
    clear: both;
    overflow: hidden !important;
  }
  .woocommerce-checkout .wc-social-login a {
    font-size: 0.895rem;
    line-height: 2.5em !important;
    margin-left: 1em !important;
    margin-top: 0 !important;
  }

  .woocommerce-checkout #place_order {
    font-size: 18px !important;
    margin-bottom: 1.5em !important;
    letter-spacing: 0;
    border-radius: 6px;
    text-transform: capitalize;
  }
  .woocommerce-checkout .the_champ_outer_login_container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 20px;
  }
  .woocommerce-checkout .hentry .post-entry > :first-child {
    padding-left: 10px;
  }
  .woocommerce-checkout .the_champ_login_ul {
    padding-top: 0;
  }
  .woocommerce-checkout .js-show-social-login {
    font-weight: 500;
  }
  .woocommerce-checkout .user-icon-login {
    color: #eb7a5c;
    margin-right: 0.5em;
  }
  .woocommerce-checkout .woocommerce-info::before {
    display: none !important;
  }
  .woocommerce-checkout .woocommerce-billing-fields label,
  .woocommerce-checkout .woocommerce-shipping-fields label,
  .woocommerce-checkout .woocommerce-account-fields label,
  .woocommerce-checkout
    .woocommerce-billing-fields
    #select2-billing_country-container,
  .woocommerce-checkout .create-account input,
  .woocommerce-checkout .gift_text_field input,
  .woocommerce-checkout .woocommerce-form-login label {
    text-transform: capitalize !important;
    font-size: 16px !important;
  }
  .woocommerce-checkout .woochimp_checkout_checkbox,
  .woocommerce-checkout #payment div.payment_box .form-row {
    padding: 0 !important;
    margin: 0 !important;
  }
  .woocommerce-checkout .gift_text_field label span {
    color: #333333 !important;
  }
  .woocommerce-checkout #payment ul.payment_methods {
    padding: 0 !important;
  }
  .woocommerce-checkout #customer_details .place-order {
    display: none;
  }
  .woocommerce-checkout .wc-credit-card-form #stripe-card-element,
  .woocommerce-checkout .wc-credit-card-form #stripe-exp-element,
  .woocommerce-checkout .wc-credit-card-form #stripe-cvc-element {
    padding: 0.7em;
  }
  .woocommerce-checkout .woocommerce-checkout-review-order-table {
    margin-bottom: 0 !important;
  }
  .woocommerce-cart .woocommerce-notices-wrapper {
    width: 100% !important;
    margin: 0 auto;
    position: relative;
    right: 6px;
    padding: 0;
  }
  .woocommerce-cart .woocommerce-notices-wrapper .wc_points_redeem_earn_points {
    display: none;
  }
  .continue_shop_btn {
    padding-top: 1em;
  }
  .page.woocommerce-cart .cart-buttons .continue_shop_btn .checkout-button {
    background-color: #ffffff !important;
    color: #c9321a !important;
    border: 1px solid #c9321a !important;
  }

  .woocommerce-checkout .woocommerce form.login {
    border-radius: 0 !important;
  }
  .out-of-stock-txt {
    font-weight: bold;
    color: #eb7a5c;
    padding: 0.5em;
    background-color: #ebebeb;
    width: 65%;
    display: block;
    text-align: center;
    margin-left: -0.3em;
  }
  .stripe-source-errors {
    display: table;
    width: 100%;
  }
  .stripe-source-errors ul li {
    padding-left: 2em !important;
    bottom: 0.3em;
    position: relative;
  }
  .woocommerce-cart .woocommerce-message a {
    background: none !important;
  }
  .woocommerce .woocommerce-info.wc_points_rewards_earn_points {
    width: 76% !important;
    margin: 1em 10.8em !important;
  }
  .woocommerce-notices-wrapper .woocommerce-info.wc_points_rewards_earn_points {
    width: 100% !important;
    margin: 0 !important;
  }
  .woocommerce-page .woocommerce .woocommerce-info,
  .woocommerce-notices-wrapper .woocommerce-info {
    margin-top: 1em !important;
  }
  .page.woocommerce-cart .woocommerce .woocommerce-message a.button {
    background: none !important;
  }
  .coupon_code_wrapper .wc_points_redeem_earn_points {
    font-size: 1rem;
    margin-bottom: -0.6em;
  }
  .coupon_code_wrapper_inner input.button.apply_coupon {
    line-height: 0;
    background-color: #a0a0a0 !important;
  }
  #scroll {
    bottom: 4em;
  }
  #masthead .container {
    max-width: 1154px;
    margin: 0 auto;
  }
  .site-branding-wrapper a {
    margin: 1em 0;
  }
  .sticky-header .site-branding-wrapper a {
    margin: 0.3em 0;
  }

  .main-navigation .menu li:hover > .sub-menu {
    animation: slide-up 0.25s ease-in-out;
  }
  #header-menu .sub-menu {
    box-shadow: 0 0px 30px 0 rgb(0 0 0 / 10%);
  }
  #header-menu .sub-menu .sub-menu {
    margin-top: 0.5rem;
    margin-right: 0;
    margin-left: -0.5rem;
  }
  #masthead .main-navigation .menu li > a:hover,
  .main-navigation .sub-menu li a:hover {
    color: #eb7a5c !important;
    background-color: transparent !important;
  }
  #masthead .main-navigation .menu li .sub-menu a:hover,
  .main-navigation .sub-menu li a:hover {
    background-color: #f8f8f8 !important;
  }
  #masthead .main-navigation .menu li.current-menu-ancestor > a:active,
  #masthead .main-navigation .menu li.current-menu-item > a:active {
    color: #eb7a5c;
  }
  .main-navigation .menu li.menu-item-has-children > a:after {
    content: " ▼";
    font-size: 10px;
    vertical-align: 1px;
    top: 4px;
    position: relative;
    margin-left: 0.8em;
  }

  .main-navigation .menu li li.menu-item-has-children > a:after {
    content: " ►";
    font-size: 10px;
    vertical-align: 1px;
    position: relative;
    float: right;
  }

  .woocommerce .woocommerce-ordering,
  .woocommerce-page .woocommerce-ordering {
    margin-right: 0.1em !important;
    margin-bottom: 30px !important;
  }
  .main-navigation .sub-menu a {
    padding: 7px 18px;
  }
  .full-screen
    .main-navigation
    .main-navigation-wrapper
    .full-screen-search-wrapper
    .full-screen-search-container
    #searchform
    .res-search-wrapper
    input[type="search"] {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff !important;
  }
  .full-screen
    .main-navigation
    .main-navigation-wrapper
    .full-screen-search-wrapper
    .full-screen-search-container
    #searchform
    .res-search-wrapper
    input[type="search"]::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-size: 42px;
    font-weight: 800;
    color: #ffffff !important;
  }
  .full-screen
    .main-navigation
    .main-navigation-wrapper
    .full-screen-search-wrapper
    .full-screen-search-container
    #searchform
    .res-search-wrapper
    input[type="search"]::-moz-placeholder {
    /* Firefox 19+ */
    font-size: 42px;
    font-weight: 800;
    color: #ffffff !important;
  }
  .full-screen
    .main-navigation
    .main-navigation-wrapper
    .full-screen-search-wrapper
    .full-screen-search-container
    #searchform
    .res-search-wrapper
    input[type="search"]:-ms-input-placeholder {
    /* IE 10+ */
    font-size: 42px;
    font-weight: 800;
    color: #ffffff !important;
  }
  .full-screen
    .main-navigation
    .main-navigation-wrapper
    .full-screen-search-wrapper
    .full-screen-search-container
    #searchform
    .res-search-wrapper
    input[type="search"]:-moz-placeholder {
    /* Firefox 18- */
    font-size: 42px;
    font-weight: 800;
    color: #ffffff !important;
  }
  .full-screen
    .main-navigation
    .main-navigation-wrapper
    .full-screen-search-wrapper
    .full-screen-search-container
    #searchform
    .res-search-wrapper {
    border-bottom: 1px solid #ddd;
  }
  .archive.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-weight: 600 !important;
  }
  .single-product #pw-add-cart-left .quantity {
    display: none;
  }
  #pw-add-cart-right .button {
    background-color: transparent !important;
    color: #c9321a !important;
    padding: 1.3em !important;
    border: 2px solid #c9321a !important;
  }
  #pw-add-cart-right .button:hover {
    background-color: #c9321a !important;
    border: 2px solid #972615 !important;
    color: #ffffff !important;
  }
  .single-product #pw-add-cart-container {
    margin-top: -1em;
  }

  .woocommerce-page ul.products li.product:hover .add_to_cart_button,
  .related ul.products li.product:hover .add_to_cart_button {
    display: inline-block;
  }
  option {
    background-color: #ffffff !important;
  }
  #header-menu a:hover {
    text-decoration: none !important;
  }
  .woocommerce-pagination .page-numbers a {
    color: #c9321a !important;
  }
  .woocommerce-ordering .bootstrap-select select button {
    background-color: #ffffff;
    font-size: 16px !important;
    font-family: "Open Sans";
    border: 1px solid #c1c1c1;
    padding: 10px;
  }
  .woocommerce-ordering .bootstrap-select select .btn:hover {
    background-color: #ffffff !important;
  }
  .single-product #primary .product figure img.wp-post-image {
    width: 100% !important;
    padding-right: 10% !important;
  }
  .single-product #pw-custom-container-left {
    padding-right: 1.2em;
  }
  .woocommerce-noreviews {
    font-size: 15px;
  }
  #reply-title {
    font-size: 1.3rem;
    color: #c9321a;
    font-weight: 600;
    text-transform: capitalize;
  }
  #reply-title,
  .single-product .comment-form-rating label,
  .single-product .comment-form-comment label,
  .comment-form-author label,
  .comment-form-email label {
    font-size: 16px !important;
    color: #333333;
    font-weight: 600 !important;
    text-transform: capitalize;
    line-height: 100%;
  }
  .comment-form-rating {
    margin-top: 1em;
  }
  .comment-form-comment {
    margin-top: 0 !important;
  }
  #commentform #submit {
    font-size: 90% !important;
  }
  .comment-form-cookies-consent label {
    display: inline !important;
    text-transform: inherit;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 32px;
    vertical-align: middle;
    font-family: Open Sans;
    color: #333333;
  }
  #commentform .comment-notes {
    padding: 0 !important;
  }
  .comment_container .description p {
    font-size: 90% !important;
    font-weight: 400;
  }
  #pw-custom-container-right p:first-child,
  .email_conf {
    font-weight: 600;
    margin-top: 0.1em;
    background-color: #f0f2f3;
    padding: 0.7em 0.7em;
    color: #333;
    text-align: justify;
    border: 1px solid #ddd;
  }
  #pw-custom-container-right .plus-text {
    position: relative;
    bottom: 0.3em;
    color: #817f80;
    margin-left: 25px !important;
  }

  .single-product .woocommerce-product-details__short-description p {
    padding-bottom: 1em;
  }
  .single-product .wcpv-sold-by-single,
  .single-product .wcpv-sold-by-single a {
    color: #817f80 !important;
    font-weight: 600;
  }
  #header_signup_form .e-form__buttons {
    margin-left: 10px;
  }
  #reviews #comments {
    margin-bottom: 1em;
  }
  .woocommerce #review_form #respond p {
    font-size: 15px;
  }
  .product_cat-new-masterclass #reviews #comments {
    margin-bottom: 2em;
  }
  .product_cat-new-masterclass input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }
  .woocommerce .product_cat-new-masterclass #review_form #respond p {
    font-size: 14px;
    color: #68727d;
  }
  .comment-form-rating label {
    margin: 0 !important;
  }
  .comment-form-comment label {
    margin-bottom: 1em !important;
  }
  .comment-form-rating .stars {
    padding: 0 !important;
  }
  .woocommerce-ordering .bootstrap-select .btn-light {
    background-color: #ffffff !important;
    font-size: 14px !important;
    border: 1px solid #a5a5a5 !important;
    border-radius: 0 !important;
    color: #333333 !important;
    padding: 7px 18px;
    border-top: none;
    border-left: none;
    border-right: none;
  }
  .dropdown-menu.show {
    width: 100% !important;
    border-radius: 0 !important;
  }
  .dropdown-item.active {
    background-color: #c9321a !important;
  }
  .single-product .elementor-add-to-cart #pw-add-cart-container {
    margin-top: 0 !important;
  }
  .single-product .related,
  .woocommerce-page .related {
    margin: 0 !important;
  }
  .woocommerce-cart #masthead .container .row {
    padding: 0 !important;
  }
  .woocommerce-cart #masthead .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .woocommerce-cart-form .large-centered .large-8 {
    padding-left: 0 !important;
    padding-right: 30px;
  }

  .page.woocommerce-checkout .content-area {
    width: 100% !important;
  }
  .footer-navigation ul > li {
    margin-right: 29px !important;
  }
  .footer-navigation ul > li:last-child {
    margin-right: 0 !important;
  }
  .footer-bar-layout-vertical .copyright {
    position: relative;
    right: 0.7em;
  }
  .elementor-287
    .elementor-element.elementor-element-52f901a1
    .elementor-button[type="submit"] {
    font-size: 18px !important;
    padding: 18px 40px !important;
  }
  .archive #primary {
    padding-right: 2.4em;
  }
  .archive .responsive-shop-summary-wrap .added_to_cart {
    color: #c9321a !important;
  }
  .bootstrap-select .dropdown-item {
    padding: 0.15rem 0.8em !important;
  }
  .bootstrap-select .dropdown-menu .dropdown-item:hover {
    background-color: #f8f8f8 !important;
    color: #c9321a !important;
  }
  #pw-custom-container-right form label:first-child {
    margin-left: 0;
    margin-right: 12px;
  }
  #pw-add-cart-left {
    height: 61px;
  }

  .main-navigation #header-menu a {
    text-transform: capitalize;
    font-size: 14px;
  }
  .bootstrap-select > .dropdown-toggle {
    letter-spacing: inherit;
    font-weight: bold;
    outline-color: #ffffff !important;
  }
  .bootstrap-select > .dropdown-toggle:focus-visible {
    outline: none !important;
  }
  .bootstrap-select .dropdown-menu li a {
    font-size: 14px !important;
    font-weight: bold;
  }
  .bootstrap-select .dropdown-item.active {
    background-color: transparent !important;
    color: #333333 !important;
  }
  .bootstrap-select .dropdown-menu li a {
    padding: 8px 18px !important;
  }
  .related .woocommerce-loop-product__title {
    font-weight: 600 !important;
    padding: 0.5em 0;
    margin: 0;
    font-size: 1em !important;
    text-align: center !important;
  }
  .single-product .related .price ins .woocommerce-Price-amount {
    font-size: 100% !important;
  }
  .woocommerce-ordering .bootstrap-select .dropdown-toggle:focus {
    outline: none !important;
    outline-offset: 0 !important;
  }
  /*three products fit to canvas css */
  #product-814392 .vc_custom_1591550446679,
  #product-814392 .vc_custom_1591550836805,
  #product-814392 .vc_custom_1591189518175,
  #product-814392 .vc_custom_1591189530798,
  #product-814392 .vc_custom_1591189530798,
  #product-814392 .vc_custom_1591189530798,
  #product-814392 .vc_custom_1591189530798,
  #product-814392 .vc_custom_1591244254188,
  #product-818783 .vc_custom_1592975404962,
  .elementor-884328 .elementor-element.elementor-element-4f60861,
  .elementor-884328 .elementor-element.elementor-element-d918598,
  .elementor-884328 .elementor-element.elementor-element-c4f9fc5,
  .elementor-884328 .elementor-element.elementor-element-bbcc7b1,
  .elementor-884328 .elementor-element.elementor-element-c46669d {
    padding: 0 !important;
  }
  #product-814392 .vc_custom_1591543266599,
  #product-814392 .vc_custom_1591550778988,
  #product-814392 .vc_custom_1591205480487,
  #product-814392 .vc_custom_1591177031248,
  #product-814392 .vc_custom_1591244148095,
  #product-814392 .vc_custom_1591177031248,
  #product-814392 .vc_custom_1591188518318,
  #product-814392 .vc_custom_1591188500333,
  #product-814392 .vc_custom_1591551351573,
  #product-814392 .vc_custom_1591551341273,
  #product-814392 .vc_custom_1591551362899,
  #product-814392 .vc_custom_1591551385969,
  #product-814392 .vc_custom_1591244217722,
  #product-814392 .vc_custom_1591177288306,
  #product-814392 .vc_custom_1591244224639,
  #product-814392 .vc_custom_1591190699863,
  #product-814392 .vc_custom_1591190699863,
  #product-814392 .vc_custom_1591190699863,
  #product-814392 .vc_custom_1591244262994,
  #product-814392 .vc_custom_1591177359173,
  #product-814392 .vc_custom_1591244276744,
  #product-814392 .vc_custom_1591162093677 {
    margin: 0;
  }

  #product-818783 .vc_custom_1592977378243,
  #product-818783 .vc_custom_1592977358967,
  #product-818783 .vc_custom_1592977333934,
  #product-818783 .vc_custom_1592978231094,
  #product-818783 .vc_custom_1592978221593,
  #product-818783 .vc_custom_1592978221593,
  #product-818783 .vc_custom_1592978221593,
  #product-818783 .vc_custom_1592978221593,
  #product-818783 .vc_custom_1592978221593,
  #product-818783 .vc_custom_1592978221593,
  #product-818783 .vc_custom_1592978221593,
  #product-818783 .vc_custom_1592978231094,
  #product-818783 .vc_custom_1592978221593,
  #product-818783 .vc_custom_1592978221593,
  #product-818783 .vc_custom_1592976068528 {
    margin: 0;
  }
  #header-menu {
    line-height: 0;
  }
  #header-menu .res-search-icon {
    line-height: 1.5em;
  }
  #header-menu .menu-item-balance {
    display: none;
  }
  .elementor-884328
    .elementor-element.elementor-element-4f60861
    .elementor-element-populated,
  .elementor-884328
    .elementor-element.elementor-element-d918598
    .elementor-element-populated,
  .elementor-884328
    .elementor-element.elementor-element-c4f9fc5
    .elementor-element-populated,
  .elementor-884328
    .elementor-element.elementor-element-bbcc7b1
    .elementor-element-populated,
  .elementor-884328
    .elementor-element.elementor-element-c46669d
    .elementor-element-populated {
    /*	padding: 10px 0 !important;*/
  }
  .main-navigation ul li .sub-menu li:hover > a {
    background-color: #f8f8f8 !important;
    color: #eb7a5c !important;
  }
  #masthead .main-navigation ul li .sub-menu .sub-menu li:hover a {
    color: #c24d2e !important;
  }
  .elementor-element-953b52e .elementor-element-7abe033 {
    background-color: #464143;
    opacity: 0.8;
    z-index: 5;
    padding: 1em;
    margin: 1.4em;
    position: relative;
    right: 1em;
  }
  #header_signup_submit {
    padding: 0 !important;
  }
  .elementor-287
    .elementor-element.elementor-element-1c2a1c1
    .elementor-form-fields-wrapper {
    margin-bottom: 0 !important;
  }
  .woocommerce-page ul.products.columns-4 li.product,
  .woocommerce ul.products.columns-4 li.product {
    height: auto;
  }
  .woocommerce-page ul.products li.product:hover .ajax_add_to_cart.added {
    display: none !important;
  }
  .bootstrap-select .dropdown-menu li {
    border-bottom: 1px solid #e3e9ef;
  }
  .bootstrap-select .dropdown-menu li:last-child {
    border-bottom: none !important;
  }
  .archive ul li.product a.button.add_to_cart_button,
  .related ul li.product a.button.add_to_cart_button {
    font-size: 14px !important;
    padding: 10px 15px 10px 15px !important;
    margin-top: 1em !important;
  }
  .woocommerce .star-rating::before {
    content: "\53\53\53\53\53" !important;
    color: #b0b0b0;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
  }
  .full-screen
    .main-navigation
    .main-navigation-wrapper
    .full-screen-search-wrapper {
    background: #332c2f !important;
    opacity: 0.9;
  }
  .full-screen
    .main-navigation
    .main-navigation-wrapper
    .full-screen-search-wrapper
    #search-close:before {
    color: #fff !important;
    position: relative;
    top: 2em;
    right: 2em;
  }
  .full-screen-search-container .search-submit:after {
    content: "\e699";
    font-family: "Pe-icon-7-stroke";
    font-weight: normal;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
    text-indent: 0;
    font-size: 32px;
    line-height: 34px;
    transition: color ease 0.3s;
  }
  .woocommerce div.product .woocommerce-tabs ul.tabs li a,
  .woocommerce div.product .woocommerce-tabs ul.tabs li {
    background-color: #ffffff !important;
    color: #333333 !important;
  }
  .woocommerce div.product .woocommerce-tabs ul.tabs li::before,
  .woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    box-shadow: none !important;
  }
  .woocommerce div.product .woocommerce-tabs ul.tabs li.active,
  .woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    background-color: #972615 !important;
    color: #ffffff !important;
  }

  .main-navigation .menu .sub-menu .current-menu-item > a {
    color: #333333 !important;
  }
  .bootstrap-select .dropdown-menu {
    padding: 0 !important;
  }
  .woocommerce-checkout .variation-Author {
    display: none !important;
  }
  .elementor-287
    .elementor-element.elementor-element-63942e9
    .elementor-heading-title {
    line-height: 1.1em;
  }
  .home #header_signup_form .elementor-button-text {
    font-size: 15px !important;
  }
  .single-product .single_add_to_cart_button:focus {
    outline: 0px !important;
  }
  .woocommerce .woocommerce-message .wc-forward:focus {
    background-color: #972615 !important;
  }
  .single-product .woocommerce-notices-wrapper {
    font-size: 93%;
    line-height: 3.3em;
  }
  div.sticky_add_to_cart {
    position: -webkit-sticky;
    position: fixed;
    bottom: 0;
    background-color: #333333;
    font-size: 20px;
    z-index: 999999;
    color: #ffffff;
    line-height: 1em;
    padding: 12px 3.7em;
    width: 100%;
  }
  div.sticky_add_to_cart_sticky_add_to_cart {
    position: -webkit-sticky;
    position: fixed;
    top: 64px;
    background-color: #1e1e1e;
    font-size: 20px;
    z-index: 9999;
    color: #ffffff;
    line-height: 1em;
    width: 100%;
    border-bottom: 1px solid #ffffff;
    background-color: #fff;
    border-top: 1px solid #dbdbdb;
  }
  .sticky_add_to_cart span {
    font-weight: 800;
  }
  .sticky-cart-left span {
    line-height: 24px;
    font-weight: 600;
    font-size: 16px;
  }
  .sticky-cart-left {
    padding-top: 5px;
    float: left;
    width: 100%;
  }

  .sticky-cart-right {
    float: right;
  }
  .sticky_add_to_cart .add_to_cart_button {
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 11px 26px 11px 26px !important;
    margin-top: 0 !important;
  }

  .sticky-cart-right span {
    padding-right: 1em;
    padding-left: 1em;
    font-size: 16px;
    font-weight: 400;
  }
  .sticky-cart-right a {
    background-color: #c9321a !important;
    color: #ffffff !important;
  }
}
.single-product #footer-site-navigation,
.woocommerce-cart #footer-site-navigation,
.woocommerce-cart .footer-layouts.social-icon,
.woocommerce-cart #site-navigation {
  display: none;
}
.woocommerce-cart table.shop_table thead .product_th_heading .product-quantity {
  padding: 1em 0.5em !important;
}
.woocommerce-cart table.shop_table thead .product_th_heading .product-subtotal {
  text-align: left !important;
}
.woocommerce-cart
  .coupon_code_wrapper
  .coupon_code_wrapper_inner
  .apply_coupon {
  padding: 18px 18px 20px 18px !important;
  background-color: #ffffff !important;
  margin-left: auto;
  width: 30% !important;
  color: #c9321a !important;
  border: 1px solid #c9321a !important;
  border-radius: 5px !important;
}
.woocommerce-cart a.checkout-button.button.alt.wc-forward:hover {
  background-color: #972615 !important;
}
.woocommerce-cart
  .coupon_code_wrapper
  .coupon_code_wrapper_inner
  .apply_coupon:hover {
  background-color: #cbcbcb !important;
  color: #ffffff !important;
}
/*.woocommerce-checkout .woochimp_checkout_checkbox input[type=checkbox]{
	    -webkit-appearance: none;
}
.woocommerce-checkout .woochimp_checkout_checkbox input[type=checkbox]:checked+label:before{
	content: '\f00c';
	background: #222;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	font-family: 'FontAwesome';
	text-align: center;
	padding: 0.1em;

}
.woocommerce-checkout .woochimp_checkout_checkbox label{
	padding-left: 0;
    margin-left: -1rem;
    line-height: 2.4em;
}
.woocommerce-checkout .woochimp_checkout_checkbox input[type=checkbox]+label:before{
	content: '';
		display: inline-block;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    left: 40px;
    width: 18px;
    height: 18px;
    line-height: 16px;
    border: 1px solid #ccc;
    border-radius: 0;
	}*/
.woocommerce-cart
  .cart_container
  .cart-collaterals
  .cart_totals
  .cart-subtotal
  td,
.woocommerce .cart-collaterals .cart_totals tr.order-total td {
  text-align: right;
}
.woocommerce .cart-collaterals .cart_totals tr.order-total th,
.woocommerce .cart-collaterals .cart_totals tr.order-total td strong,
.woocommerce-page .cart-collaterals .cart_totals tr.order-total td strong {
  font-weight: 700 !important;
}
.woocommerce-cart a.remove {
  text-align: right !important;
}
.woocommerce-checkout
  .select2-container--default
  .select2-results__option--highlighted[aria-selected],
.select2-container--default
  .select2-results__option--highlighted[data-selected] {
  background-color: #c9321a !important;
  font-size: 0.89rem !important;
  font-weight: 400 !important;
}
.woocommerce-checkout .select2-container--default .select2-selection--single {
  border: 1px solid #c1c1c1 !important;
}
.woocommerce form .form-row .required {
  color: #000000 !important;
}
.email_conf {
  font-size: 16px;
  margin-bottom: 1.1em;
}
#woochimp_user_preference {
  margin-left: 0em;
}
.woocommerce-checkout .woocommerce-form-login {
  padding: 1em 1.1em !important;
}

.woocommerce-checkout #gift_text_field .form-row .input-text {
  padding: 6px 9px !important;
  font-size: 0.89rem !important;
  border-color: #c1c1c1;
}
.woocommerce-checkout .order-total td:last-child {
  display: none !important;
}
.woocommerce-checkout .order-total td:nth-last-child(2) {
  position: relative;
  right: 2px;
}
.plus_upsell_content h4 {
  margin-bottom: 0 !important;
  padding-bottom: 20px !important;
  font-weight: 700;
}

/* Search Results page template UI changes */
.search-results ul.products.columns-4 li.product {
  width: calc((100% / 4) - (19px + 4px));
  margin: 0 30px 30px 0;
  float: left;
  list-style: none;
}
.search-results .navigation .nav-links {
  margin: 0 auto !important;
  width: auto !important;
}
.search-results .navigation .nav-links a,
.search-results .navigation .nav-links span {
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  margin: 0;
  padding: 0.2em 1.1em;
  line-height: 2em;
}
.search-results .navigation .nav-links a {
  color: #c9321a !important;
}

.search-results .navigation .nav-links span {
  color: #8a7e88;
}
.search-results .woocommerce-products-header .page-title {
  font-size: 33px !important;
  font-weight: 800 !important;
  text-align: center;
  margin-bottom: 50px;
  text-transform: capitalize;
}
.search-results.woocommerce
  ul.products
  li.product
  .woocommerce-loop-product__title {
  font-weight: 600 !important;
  font-size: 18px;
}
.search-results.woocommerce
  ul.products
  li.product
  .responsive-shop-summary-wrap
  a:hover {
  text-decoration: none;
}
.search-results ul li.product a.button.add_to_cart_button {
  font-size: 0.84rem !important;
  padding: 10px 15px 10px 15px !important;
  margin-top: 1em !important;
}

.search-results li.product a.button.add_to_cart_button {
  background-color: #c9321a !important;
  line-height: 1;
  color: #fff;
}
.search-results .products a.button:before {
  display: none !important;
}
.search-results.product-content-aligmnment-center
  ul.products
  li.product
  .star-rating.star-rating {
  margin-top: 10px;
}
.cta-wrapper {
  max-width: 1125px;
  margin: 0 auto;
}
.search-results .responsive-shop-summary-wrap .added_to_cart {
  color: #c9321a !important;
}
.woocommerce-checkout .entry-title.post-title::after,
.woocommerce-cart .entry-title.post-title::after {
  display: none !important;
}
.woocommerce-cart .entry-title.post-title {
  display: flex;
  font-family: inherit;
  margin-bottom: 30px;
  margin-top: 30px;
  text-transform: capitalize;
  text-align: center !important;
  font-weight: 700 !important;
  color: #404040;
  font-size: 32px;
  padding-left: 24px;
}
.woocommerce-cart .cart_right_wrapper {
  margin-top: 12px !important;
}
.woocommerce-checkout #account_username {
  text-transform: lowercase !important;
}
.woocommerce-checkout #account_username::-webkit-input-placeholder {
  text-transform: capitalize;
}
@media only screen and (min-width: 40.063em) {
  .row {
    padding: 0px !important;
  }
}
.woocommerce .blockUI.blockOverlay:before,
.woocommerce .loader:before {
  position: fixed !important;
  opacity: 0.5 !important;
}
.single-product .woocommerce-variation-add-to-cart .quantity {
  display: none !important;
}
.reset_variations {
  color: #c9321a !important;
}
.reset_variations:hover {
  color: #972615 !important;
}
#spnError {
  color: #7b3c38;
  font-size: 13px;
  text-align: center;
  border-radius: 3px;
  background-color: #fdebe9;
  padding: 0.5em;
  line-height: 2em;
}
#spnError:before {
  content: "\e016";
  font-family: WooCommerce;
  position: relative;
  right: 7px;
  top: 1px;
}
.single-product .comment-form-author {
  width: 48%;
  display: inline-block;
  margin-right: 17px !important;
}

.single-product .comment-form-email {
  width: 50% !important;
  display: inline-block !important;
}
.review_count_div {
  font-weight: 700;
  font-size: 26px;
  text-align: center;
  display: inline-block;
  margin-left: 10px;
}
.review_text {
  text-align: center;
  color: #808080;
  position: relative;
  bottom: 15px;
  left: 5px;
}

.download_count_div {
  font-weight: 700;
  font-size: 26px;
  text-align: center;
  display: inline-block;
  margin-left: 6px;
}

.download_text {
  text-align: center;
  color: #808080;
  position: relative;
  bottom: 7px;
}
.download_count_div:before {
  -webkit-text-stroke: 2px #f1f2f4;
  position: relative;
  top: 3px;
  right: 5px;
}
.home .elementor-widget-star-rating {
  position: relative;
  bottom: 38px;
  left: 54px;
  width: 63% !important;
}
.img-icon-block {
  display: inline-block;
  width: 40px;
}
.page-template-tpl_submit_deal #submit_deal #submit_form {
  display: inline !important;
}
.elementor-element-4a129da {
  display: none;
}
.woocommerce-account .woocommerce,
.woocommerce-js #aff_tab .woocommerce {
  border: none;
  padding: 40px;
  box-shadow: 0 4px 10px 0 #00000040;
}
.woocommerce-account
  .woocommerce
  .shop_table
  .woocommerce-orders-table__header {
  background-color: #333333;
  color: #ffffff !important;
}
.woocommerce-account .woocommerce .shop_table .woocommerce-orders-table__header,
.woocommerce-js
  .primary
  .product_vendors_report_form
  .shop_table
  .vendor_thead
  tr
  th,
.woocommerce-order-received .woocommerce-table--order-downloads tr th,
.woocommerce-order-received .woocommerce-table--order-details tr th,
.woocommerce-js .shop_table .vendor_thead tr th {
  text-transform: capitalize;
  font-size: 18px !important;
  padding-left: 20px;
}
.woocommerce-account
  .woocommerce
  .shop_table
  tr.woocommerce-orders-table__row:nth-child(odd),
#vendor_page_main .vendor_tbody tr:nth-child(odd) {
  background-color: #fafafa;
}
.woocommerce-account
  .woocommerce
  .shop_table
  tr.woocommerce-orders-table__row
  td,
.woocommerce-account .my_account_points_rewards tr.points-event td,
.woocommerce-order-received .woocommerce-table--order-downloads td,
.woocommerce-order-received .woocommerce-table--order-details td,
#vendor_page_main .vendor_tbody td {
  font-size: 14px;
  font-weight: 700;
  color: #636363;
}
.woocommerce-account
  .woocommerce
  .shop_table
  tr.woocommerce-orders-table__row
  td
  a:hover {
  color: #972615;
}

.woocommerce-account .woocommerce .shop_table td,
.woocommerce-js .woocommerce #reports td,
.woocommerce-order-received .woocommerce-table--order-downloads td,
.woocommerce-order-received .woocommerce-table--order-details td,
.woocommerce-order-received .shop_table.order_details tfoot tr:first-child th,
.woocommerce-order-received .shop_table.order_details tfoot tr th {
  padding-left: 20px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.woocommerce-account .woocommerce .woocommerce-button.view,
.woocommerce-account .woocommerce .woocommerce-button.invoice {
  padding: 11px 24px 11px 24px;
  font-size: 14px !important;
  border-radius: 5px;
}
.woocommerce-account .woocommerce table.my_account_orders .button {
  border-radius: 5px;
  margin-right: 2em;
  margin-bottom: 5px;
  padding: 11px 24px 11px 24px;
}
.woocommerce-account .woocommerce .woocommerce-button:hover {
  color: #ffffff !important;
}
.woocommerce-account .woocommerce .woocommerce-pagination {
  float: right;
  margin-top: 20px;
}

.woocommerce-account .woocommerce .woocommerce-pagination .woocommerce-button {
  background-color: #e8ecef;
  color: #575a61;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 16px !important;
  padding: 12px 20px 12px 20px !important;
}

.woocommerce-account
  .woocommerce
  .woocommerce-pagination
  .woocommerce-button:hover {
  background-color: #cbcbcb !important;
  color: #ffffff !important;
}

.woocommerce-account
  .woocommerce
  .woocommerce-pagination
  .woocommerce-button--previous:before {
  content: "\f053";
  font-family: "FontAwesome";
  padding-right: 11px;
  font-size: 20px;
  position: relative;
  top: 3px;
  -webkit-text-stroke: 1px #e8ecef;
}
.woocommerce-account
  .woocommerce
  .woocommerce-pagination
  .woocommerce-button--previous:hover::before,
.woocommerce-account
  .woocommerce
  .woocommerce-pagination
  .woocommerce-button--next:hover::after {
  -webkit-text-stroke: 1px #ffffff !important;
  font-size: 20px;
}

.woocommerce-account
  .woocommerce
  .woocommerce-pagination
  .woocommerce-button--next:after {
  content: "\f054";
  font-family: "FontAwesome";
  padding-left: 11px;
  font-size: 20px;
  position: relative;
  top: 3px;
  -webkit-text-stroke: 1px #e8ecef;
}
.ordhis_title {
  color: #464a53;
  padding: 10px 0;
}
.woocommerce-account .ordhis_heading,
.member-logged-in .ordhis_heading {
  text-align: center;
  margin-bottom: 32px;
  margin-top: 0;
  font-size: 38px;
  text-transform: capitalize;
  font-family: Open Sans;
  font-weight: 800;
  color: #333333;
  margin-top: 30px;
}
.woocommerce-account #wrapper {
  padding: 0;
}
.woocommerce-account-my-memberships .membership-actions .view {
  margin-bottom: 10px;
}
.woocommerce-members_area #masthead .container .row,
.woocommerce-downloads #masthead .container .row,
.woocommerce-account #masthead .container .row {
  padding: 0;
}
.woocommerce-account .woocommerce-orders-table__cell-order-actions {
  width: 22% !important;
  padding-left: 10px !important;
}
.woocommerce-downloads .download-file .woocommerce-MyAccount-downloads-file,
.woocommerce-view-order .download-file .woocommerce-MyAccount-downloads-file,
.woocommerce-order-received
  .woocommerce-table--order-downloads
  .download-file
  .woocommerce-MyAccount-downloads-file {
  background-color: transparent !important;
  color: rgb(236, 122, 92) !important;
  padding-left: 0px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.woocommerce-downloads
  .download-file
  .woocommerce-MyAccount-downloads-file:hover,
.woocommerce-view-order
  .download-file
  .woocommerce-MyAccount-downloads-file:hover,
.woocommerce-order-received
  .woocommerce-table--order-downloads
  .download-file
  .woocommerce-MyAccount-downloads-file:hover {
  text-decoration: underline;
  color: #972615 !important;
}

.woocommerce-downloads .download-product a,
.woocommerce-view-order .download-product a,
.woocommerce-order-received
  .woocommerce-table--order-downloads
  .download-product
  a,
.woocommerce-order-received .woocommerce-table--order-details .product-name a {
  color: #464a53 !important;
  pointer-events: none;
  font-size: 14px;
}

.woocommerce-downloads .download-product a:after,
.woocommerce-view-order .download-product a:after,
.woocommerce-order-received
  .woocommerce-table--order-downloads
  .download-product
  a:after {
  content: "\f08e";
  font-family: "FontAwesome";
  position: relative;
  font-size: 1em;
  left: 1em;
  transform: translateY(-46%);
  pointer-events: all;
  color: #c9321a;
}
.woocommerce-edit-account .woocommerce .xlarge-6 {
  width: 100%;
}
.woocommerce-edit-account .woocommerce .left_col_edit_acc {
  float: left;
  width: 49%;
  border: 1px solid #eaeaea;
  box-shadow: 0 0 5px 0 rgb(0 0 0 / 22%);
  padding: 20px;
}
.woocommerce-edit-account
  .woocommerce
  .form-edit-account
  fieldset
  input[type="text"] {
  margin-top: 1px;
}

.woocommerce-edit-account .woocommerce .form-edit-account .right_col_edit_acc {
  border: 1px solid #eaeaea;
  box-shadow: 0 0 5px 0 rgb(0 0 0 / 22%);
  padding: 20px;
  float: right;
  width: 49%;
}
.woocommerce-edit-account .woocommerce .form-edit-account legend {
  padding-top: 0.1em;
  padding-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  color: #464a53;
  text-transform: capitalize;
}

.woocommerce-edit-account .woocommerce .xlarge-6 .edit_account_form_title {
  display: none;
}
.woocommerce-edit-account .woocommerce .left_col_edit_acc .edit_account_title {
  font-size: 18px;
  font-weight: 700;
  color: #464a53;
  text-transform: capitalize;
  line-height: 30px;
  margin-bottom: 0;
  padding-top: 0.2em;
}
.woocommerce-edit-account .woocommerce .left_col_edit_acc label,
.woocommerce-edit-account .woocommerce .right_col_edit_acc label {
  font-size: 16px !important;
}
.woocommerce-edit-account .woocommerce .form-edit-account label {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: -1px;
}
.woocommerce-edit-account .woocommerce .row {
  padding: 0;
}
.woocommerce-edit-account .woocommerce .row .columns {
  padding-left: 0;
  padding-right: 0;
}

.woocommerce-js .woocommerce #reports td strong {
  font-size: 16px;
  font-weight: 700 !important;
  color: #464a53;
}
.woocommerce-js .woocommerce #reports td {
  font-size: 16px;
  color: #464a53;
}
.woocommerce-js .product_vendors_report_form #report_month {
  margin-bottom: 10px;
  margin-top: 10px;
  margin-left: 1em;
  width: 20% !important;
  font-weight: 500;
  font-size: 15px;
}
.woocommerce-js .product_vendors_report_form #report_year {
  margin-bottom: 10px;
  margin-left: 1em;
  width: 20% !important;
  font-weight: 500;
  font-size: 15px;
}
.woocommerce-js .product_vendors_report_form #vendors_form {
  text-align: right;
}

.woocommerce-js .product_vendors_report_form #vendor_submit {
  margin-left: 1em;
}
.woocommerce-js .product_vendors_report_form {
  font-size: 16px;
  font-weight: 700;
  color: #464a53;
}
.woocommerce-order-received .rec_subtext {
  font-size: 14px !important;
  font-weight: 400 !important;
  margin: 10px auto;
}
.woocommerce-order-received .woocommerce-thankyou-order-received {
  margin-bottom: 0 !important;
  font-weight: 600;
  font-size: 24px;
  color: #333;
}
.woocommerce-order-received .pw-confirmation-notice {
  font-size: 16px;
  font-weight: 400;
  margin-top: 16px !important;
  color: #333;
}
.woocommerce-order-received .pw-membership-msg {
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px !important;
  color: #333;
}
.woocommerce-order-received .rec_title_wrap {
  padding: 20px;
  background-color: #f4f4f4;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  border-radius: 5px;
}
.woocommerce-order-received .woocommerce-order-overview,
.woocommerce-order-downloads__title {
  display: none;
}
.woocommerce-order-received .woocommerce-table--order-downloads,
.woocommerce-order-received .woocommerce-table--order-details {
  border: 1px solid #eaeaea !important;
}
.woocommerce-order-received
  .woocommerce-table--order-downloads
  tbody
  tr:last-child
  td,
.woocommerce-order-received
  .woocommerce-table--order-details
  tfoot
  tr:last-child
  th,
.woocommerce-order-received
  .woocommerce-table--order-details
  tfoot
  tr:last-child
  td {
  border-bottom: none !important;
}
.woocommerce-order-received .woocommerce-table--order-details tbody tr td,
.woocommerce-order-received .woocommerce-table--order-details tfoot tr th,
.woocommerce-order-received .woocommerce-table--order-details tfoot tr td {
  border-bottom: 1px solid #eaeaea !important;
}
.woocommerce-order-received .woocommerce-table--order-details td .amount {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #575a61 !important;
}

.woocommerce-order-received
  .woocommerce-table--order-details
  tfoot
  tr:last-child
  th {
  font-size: 16px !important;
  color: #464a53;
  padding-left: 20px !important;
  font-weight: 700 !important;
}
.woocommerce-order-received
  .woocommerce-table--order-details
  tfoot
  tr:last-child
  th {
  font-size: 18px !important;
  color: #333333 !important;
  background-color: #f4f4f4;
}
.woocommerce-order-received
  .woocommerce-table--order-details
  tfoot
  tr:last-child
  td
  span {
  font-size: 18px !important;
  color: #333333 !important;
}
.woocommerce-order-received .woocommerce-table--order-details .product-quantity,
.woocommerce-order-received
  .woocommerce-table--order-details
  .wcpv-sold-by-order-details {
  display: none;
}
.woocommerce-order-received .shop_table.order_details .product-total {
  padding-left: 20px !important;
}
.woocommerce-order-received .woocommerce-customer-details,
.woocommerce-order-received .order-again {
  display: none;
}
.my_account_points_rewards .points-rewards-event-points {
  text-align: right;
}
.woocommerce-js .woocommerce h2 {
  margin-top: 22px;
}
.woocommerce-table--order-downloads .download-file a {
  text-align: left;
}
.form-edit-account p {
  margin-top: 3px;
}
.woocommerce-edit-account .form-edit-account .form-row {
  padding-top: 13px !important;
}
.woocommerce-order-received .woocommerce-order-downloads {
  margin-bottom: 0 !important;
  width: 80%;
  margin: 0 auto;
}
.woocommerce-order-received section.woocommerce-order-details {
  width: 100%;
  margin: 0 auto;
}
.woocommerce-order-received
  .woocommerce-table--order-details
  thead
  tr
  th:last-child,
.woocommerce-order-received
  .woocommerce-table--order-details
  tbody
  tr
  td:last-child,
.woocommerce-order-received
  .woocommerce-table--order-details
  tfoot
  tr
  td:last-child {
  text-align: center !important;
}

/*Start: Changes made by Akshay My Accounts --> My Profile--> Save Changes : 'Account details changed successfully.' pop-up massage need gap */

.woocommerce-edit-account .form-edit-account {
  margin-bottom: 0 !important;
  margin-top: 20px; /* added this line only */
}

/*End: Changes made by Akshay My Accounts --> My Profile --> Save Changes : 'Account details changed successfully.' pop-up massage need gap */

.woocommerce-edit-account .elementor-widget-container .woocommerce-error {
  margin-top: 0 !important;
  margin-bottom: 15px !important;
}
.elementor-element-39aa36fb .elementor-widget-container h3:not(:first-child) {
  margin: 25px 0 !important;
}
.elementor-element-e232797 .elementor-widget-container h1 {
  margin: 30px 0 !important;
}
.elementor-element-39aa36fb .elementor-widget-container h3:first-child {
  margin-top: 0 !important;
  margin-bottom: 25px;
}
.elementor-element-39aa36fb .elementor-widget-container ol {
  margin-left: 18px !important;
}

.elementor-element-39aa36fb .elementor-widget-container ol li {
  margin-bottom: 25px;
}
.elementor-element-39aa36fb .elementor-widget-container .sup_id {
  margin-bottom: 25px;
}
.log-left {
  float: left;
  background-color: #000;
  padding: 8em 3em;
  height: auto;
  text-align: center !important;
  width: 45%;
}
.log-left p {
  text-align: center;
}

.log-left h2 {
  font-weight: 700;
  font-size: 25px;
  line-height: 1.3;
  margin: 20px 21px;
  width: 83%;
}
.log-left h2 span {
  text-transform: capitalize;
}
.log-right {
  height: auto;
  background-color: #fff;
  float: right;
  padding: 50px;
  width: 60%;
}
.subtextp {
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.subtextsign {
  font-size: 16px;
  position: relative;
  bottom: 1.1em;
}

.seemorebtn {
  font-weight: 700;
  fill: #17162c;
  color: #17162c;
  background-color: #fff;
  font-size: 18px;
  padding: 20px 40px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  box-shadow: none;
  text-decoration: none;
  position: relative;
  top: 30px;
}
.seemorebtn:hover {
  color: #17162c;
}
.logwrapper {
  width: 100%;
  display: flex;
  height: auto;
  margin: 0 auto;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.22);
}
.logwrapper .log-right h1 {
  display: block;
  font-family: Open Sans;
  font-weight: 800;
  font-size: 34px;
  color: #000;
  margin-bottom: 30px;
}
.log-right #login {
  border: none !important;
  box-shadow: none;
}
#login label {
  margin-bottom: 0 !important;
  color: #696872 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-transform: capitalize !important;
  line-height: 2.3em !important;
}
.woocommerce-account #post-60570 {
  /*background-color: #AC958E;*/
}

#login input[type="text"],
#login .password-input .woocommerce-Input {
  background-color: #e8e8e8 !important;
  border-color: rgba(145, 156, 167, 0.27) !important;
  border-width: 0 0 0 0 !important;
  border-radius: 0 0 0 0 !important;
  width: 100% !important;
  max-width: 100%;
  padding: 10px;
}

#login .button {
  background-color: #c9321a;
  border-color: #d78e1a;
  color: #fff;
  text-decoration: none;
  border-radius: 0 0 0 0;
  width: 100%;
  height: 59px;
  font-weight: 700;
  font-size: 16px;
  text-transform: capitalize;
}

#login .button:hover {
  background: #ca654a;
  border-color: #ca654a;
}
#login .lost-pass-link {
  font-size: 16px !important;
  border-bottom: none !important;
}
#login .lost-pass-link,
#login .wc-social-login p {
  color: #999 !important;
  font-size: 16px !important;
}
#login .lost-pass-link:hover {
  color: #000000 !important;
}
#login .button-social-login-google {
  margin-left: 0 !important;
}
#login .remember-me {
  display: none;
}
.logwrapper .log-right h1 {
  display: block;
  font-family: Open Sans;
  font-weight: 800;
  font-size: 34px;
  color: #000;
  margin-bottom: 30px;
  text-align: center;
}
.account-forms-container {
  width: 80% !important;
}
.woocommerce-account .large-6 {
  width: 100% !important;
}
.woocommerce-account .wc-social-login:last-child {
  display: none;
}
.woocommerce-account .woocommerce .woocommerce-button.view {
  margin-right: 4px;
}
.woocommerce-account .woocommerce .woocommerce-button.invoice:hover {
  background-color: #972615;
  color: #ffffff !important;
}
.lic_class {
  font-size: 0.875rem !important;
  font-weight: 600;
  color: #464a53 !important;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .woocommerce-cart .woocommerce .woocommerce-notices-wrapper {
    width: 100% !important;
    position: relative;
    right: 6px;
  }
  .instructor-info {
    width: 100%;
  }
  .product_cat-new-masterclass form#commentform {
    width: 90% !important;
  }
}
.woocommerce-cart .cart_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 0 20px;
}
.woocommerce-cart .bundles_heading th {
  font-size: 16px !important;
  text-transform: capitalize;
}
.woocommerce-checkout
  .woocommerce-checkout-review-order-table
  .product-quantity {
  font-size: 16px !important;
  font-weight: 400 !important;
}
.points_subhead {
  font-size: 16px;
  text-transform: capitalize !important;
  font-weight: 700 !important;
}
.woocommerce-cart .product-thumbnail {
  padding-left: 24px !important;
}
.woocommerce-cart .product-quantity,
.woocommerce-cart .product-subtotal {
  padding-left: 0 !important;
  text-align: left !important;
}
.points_bal {
  float: right;
  border: 1px solid #28a745;
  padding: 10px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 8px;
  color: #c9321a;
}
.vendor_heading {
  text-align: left;
  margin-bottom: 40px;
  margin-top: 0;
  font-size: 25px;
  text-transform: capitalize;
  font-weight: 700;
}
#vendor_page_main {
  border: 1px solid #eee;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 22%);
  padding: 50px;
}
#vendor_page_main .vendor_button {
  padding: 19px 25px 19px 25px !important;
}
#vendor_page_main .vendor_tbody tr td {
  padding-left: 20px !important;
}
#vendor_page_main .vendor_tbody tr td:first-child a {
  color: #c9321a;
}
#vendor_page_main .product_vendors_report_form .shop_table td {
  padding: 10px !important;
}
.archive .responsive-shop-summary-wrap .responsive-loop-product__link,
.single-product .responsive-shop-summary-wrap .responsive-loop-product__link,
.search-results .responsive-shop-summary-wrap .responsive-loop-product__link {
  height: 4.6em;
  overflow: hidden;
  margin-bottom: 0.8em;
}
.search-results ul.products li.product .woocommerce-LoopProduct-link img {
  height: 310px !important;
}
#privacy_content h3 {
  font-size: 24px;
}
#terms_content p {
  font-size: 16px !important;
}
.woocommerce-orders .woocommerce-orders-table__cell-order-number a {
  color: #c9321a;
}
.woocommerce-members_area .membership-plan a:hover {
  color: #d85f34;
}
.woocommerce-members_area .membership td {
  font-size: 14px !important;
}
.woocommerce-members_area .membership-actions a {
  font-size: 14px !important;
  text-align: center !important;
}
.home #form-field-email {
  font-family: inherit !important;
}
.page.woocommerce-cart .woocommerce a.button.alt,
.page.woocommerce-cart .woocommerce a.button {
}
.woocommerce-checkout .woocommerce-error {
  padding: 1em 2em 1em 2.5em !important;
}
.single-product .sticky-cart-right .price {
  display: inline-block;
}
.single-product .sticky-cart-right .price del {
  display: none;
}
.single-product .sticky-cart-right .price ins {
  text-decoration: none;
}
.single-product .single_variation_wrap .woocommerce-variation-price {
  text-align: center;
  padding-bottom: 15px;
}
.woocommerce-checkout .blockUI.blockOverlay {
  position: relative !important;
  display: none !important;
}
.woocommerce-checkout.processing .blockUI.blockOverlay {
  display: block !important;
}
.single-product .plus-prod-btn {
  text-transform: capitalize;
  width: 75%;
  text-align: center;
  font-size: 18px !important;
  border-radius: 5px !important;
}
.single-product.pw-is-plus-select-product #or_div,
.single-product.pw-is-plus-select-product #buy_now_link_btn {
  display: none;
}
.single-product .addtocartprd {
  color: #c9321a !important;
  font-weight: 500;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  margin-top: -17px;
  z-index: 99999;
  text-decoration: none;
}
.plus-text-prd {
  color: #c9321a !important;
}
.plus_save_prd_shortcode em {
  color: #636363;
  line-height: 2.4em;
}
.wrpplus {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 25px;
  height: auto;
}
.single-product .elementor-widget-woocommerce-product-short-description {
  margin-bottom: 5px !important;
}
.single-product .woocommerce-product-details__short-description {
  margin-bottom: 0 !important;
}
#variation_block .single_add_to_cart_button {
  width: 100%;
  margin-left: 0 !important;
}
#variation_block .single_add_to_cart_button:hover {
  background-color: #c9321a !important;
}
#variation_block label {
  text-transform: capitalize !important;
  font-size: 16px !important;
}
#variation_block .variations {
  margin-top: 15px !important;
}
#variable_block .variations .value {
  display: flex;
}
#variation_block .variations .reset_variations {
  float: right;
  position: relative;
  bottom: 43px;
  left: 45px;
}
#variation_block .variations {
  margin-bottom: 0 !important;
}
.woocommerce #reviews #comments ol.commentlist {
  width: 50% !important;
}
.woocommerce #review_form #respond textarea {
  width: 97% !important;
}
#vendor_blk h5 {
  color: #636363;
  font-size: 16px !important;
  display: inline-block;
  margin-top: 2em;
  font-style: italic;
  font-weight: 400;
}
#vendor_blk .wcpv-widget-vendor-title {
  display: inline-block;
  font-size: 16px;
  color: #636363;
  font-style: italic;
  font-weight: 400;
  padding-left: 5px;
}
.woocommerce-cart .cart_container .woocommerce-message {
  margin-bottom: 10px !important;
  margin-top: 10px !important;
}
.single-product div.product .product_title {
  margin-bottom: 0 !important;
}
.single-product .comment-form-rating label,
.single-product .comment-form-comment label {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #333333 !important;
  text-transform: capitalize !important;
}
.comment-form-author label,
.comment-form-email label {
  font-style: SemiBold;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 100%;
  vertical-align: middle;
  font-family: Open Sans;
}

.sticky_add_to_cart .sticky-cart-right .sticky_crt {
  text-transform: capitalize !important;
}
.sticky_add_to_cart .sticky-cart-right .sticky_crt:hover {
  background-color: #972615 !important;
}
.sticky_add_to_cart .sticky-cart-right .sticky_orig {
  color: #ececec !important;
  background-color: #a5a5a5 !important;
  font-weight: 400;
  font-size: 16px;
  /*changes by Divya on feb 13 - start*/
  border-radius: 5px;
  /*changes by Divya on feb 13 - end*/
}
.sticky_add_to_cart .sticky-cart-right .sticky_orig:hover {
  color: #ececec !important;
  text-decoration: none;
  background-color: #636363 !important;
}
.single-product .tabs li {
  padding: 0 2px !important;
}
.single-product .woocommerce-tabs .tabs .description_tab:after,
.single-product .woocommerce-tabs .tabs .reviews_tab:before {
  border: 1px solid #d3ced2;
  position: absolute;
  bottom: -1px;
  width: 5px;
  height: 5px;
  content: " ";
  box-sizing: border-box;
}
#masthead.sticky-header {
  border-bottom: 1px solid #ffffff;
}
.postid-796261 #plus-sect2,
.postid-796261 .spanor,
.postid-796261 #plus-sect3 {
  display: none;
}
.single-product .spanor {
  font-size: 16px;
  color: #d9d9d9;
  margin-right: 10px;
}
#plus-sect1 p.price del {
  display: block;
}
.single-product .variations_button .single_add_to_cart_button {
  text-transform: capitalize;
  width: 66% !important;
  text-align: center;
  font-size: 18px !important;
  border-radius: 5px !important;
  margin-left: 0 !important;
  letter-spacing: 0;
}
.single-product .variations_button {
  margin-right: 32px;
}
.single-product .variations {
  width: 71% !important;
  margin-left: 5em;
}
.single-product .variations label {
  font-weight: 400 !important;
  text-transform: capitalize !important;
}
.woocommerce-lost-password .imgdiv {
  padding: 50px;
}
.woocommerce-lost-password .lost-left {
  background-color: #333;
  text-align: center;
}
.woocommerce-lost-password .visitdiv a {
  font-size: 16px;
  font-weight: 600;
  fill: #ec7a5c;
  color: #ec7a5c;
  background-color: #333333;
}

.woocommerce-lost-password .visitdiv a:hover {
  color: #ec7a5c !important;
}
.woocommerce-lost-password .visitdiv {
  margin-top: 20px;
}
.hd-forgot {
  font-size: 36px !important;
  font-weight: bold !important;
  letter-spacing: 0px;
  text-transform: capitalize !important;
}
.woocommerce-lost-password .lost-reset-pass-text {
  font-size: 16px !important;
  text-align: left !important;
  font-weight: 500 !important;
  line-height: 25px;
  margin-left: 2px;
  width: 80%;
  margin-top: 10px;
  margin-bottom: 10px !important;
}
.woocommerce-lost-password .lost-reset-pass-text:before {
  content: none !important;
}
.woocommerce-lost-password .usrlab {
  font-size: 16px !important;
  text-transform: capitalize !important;
}
.woocommerce-lost-password .reset_btn {
  background-color: #c9321a !important;
  letter-spacing: 0;
  width: 50% !important;
}
.woocommerce-lost-password .lost-right {
  border: 1px solid #a5a5a5;
  padding: 30px 50px !important;
}
.woocommerce-lost-password .account-forms-container {
  width: 100% !important;
}
.woocommerce-lost-password .woocommerce {
  border: none !important;
  box-shadow: none !important;
  padding: 20px 55px !important;
}
.woocommerce-lost-password .elementor-heading-title {
  display: none;
}
.woocommerce-lost-password .lost-right p {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  padding: 20px 0;
}
.woocommerce-lost-password .loginlinkbtn {
  width: 40%;
  font-size: 16px !important;
}
.archive .view_cat_btn,
.single-product .related .add_to_cart_button,
.search .view_cat_btn {
  border-radius: 5px;
  font-size: 16px !important;
  font-weight: bold;
  padding: 12px 30px !important;
  background-color: #c9321a !important;
  color: #ffffff !important;
  display: inline-block !important;
  margin: 16px 0 17px 0 !important;
}
.archive .view_cat_btn:hover,
.single-product .related .view_cat_btn:hover,
.search .view_cat_btn:hover {
  background-color: #972615 !important;
  color: #ffffff !important;
}
.archive ul.products li.product .price ins,
.search ul.products li.product .price ins,
.related ul.products li.product .price ins {
  font-size: 20px !important;
  color: #c9321a !important;
  text-decoration: none;
  display: inline !important;
  vertical-align: middle;
}
.archive ul.products li.product .price del,
.search ul.products li.product .price del {
  display: inline !important;
  vertical-align: middle;
}
.price del {
  color: #242523 !important;
  opacity: 1 !important;
}
.woocommerce-cart .cart-subtotal {
  display: none !important;
}
#subscription_prod_sect,
#subscription_prod_chk,
.woocommerce .woocommerce-checkout-review-order-table .cart_item {
  border-top: 1px solid #d4d4d4;
}
.woocommerce-cart .cart_right_wrapper .cart-buttons .checkout-button {
  border-radius: 5px !important;
  font-size: 16px !important;
  line-height: 22px;
  font-weight: 600;
}
.single-product #right_prd_section p.price del {
  font-weight: 700 !important;
  font-size: 30px !important;
  position: relative;
  width: 60%;
  text-decoration: none !important;
  margin: 0 auto;
}
.woocommerce-page
  .related
  .woocommerce
  .products
  div.product
  p.price
  del:before {
  position: relative !important;
  content: none !important;
}
.single-product #right_prd_section p.price del:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  right: 0;
  border-top: 2px solid #333333;
  transform: rotate(-17.38deg);
}
.wcpv-sold-by-loop a,
.wcpv-sold-by-loop,
.wcpv-sold-by-loop a:hover {
  color: #636363 !important;
  font-size: 16px;
}
.woocommerce-page .related div.product p.price del,
.woocommerce-page .related div.product .price,
.woocommerce-page .related span.price del {
  font-weight: 400 !important;
  font-size: 16px !important;
}
.single-product .related p.price ins,
.single-product .related span.price ins {
  font-size: 20px !important;
  color: #c9321a !important;
  text-decoration: none;
}
.related .wcpv-sold-by-loop {
  display: none;
}
.single-product .related .responsive-shop-summary-wrap {
  padding: 0 20px 20px 20px !important;
}
.single-product .related ul.products.columns-4 li.product:nth-child(4n) {
  margin-right: 0px !important;
}
.single-product .related .products a.button:before {
  position: relative !important;
  content: none !important;
}
.single-product .elementor-location-header #sticky_block_section,
.woocommerce-cart .elementor-location-header #sticky_block_section,
.woocommerce-checkout .elementor-location-header #sticky_block_section,
.woocommerce-account .elementor-location-header #sticky_block_section {
  display: none !important;
}
.elementor-location-header #sticky_block_section .eicon-cart-solid:before,
.elementor-location-header #sticky_block_section .fa-caret-down:before {
  color: #ffffff !important;
}
.elementor-location-header #sticky_block_section {
  display: none;
}
.elementor-location-header .sticky-placeholder {
  height: auto !important;
}
.elementor-menu-cart__toggle_button {
  border: none !important;
}
.woocommerce-cart .elementor-search-form,
.woocommerce-account .elementor-search-form {
  margin-bottom: 0 !important;
}
.plus_upsell_content input[type="submit"] {
  border-radius: 5px;
}
.elementor-menu-cart--items-indicator-bubble
  .elementor-menu-cart__toggle
  .elementor-button-icon[data-counter]:before {
  font-size: 12px;
  font-weight: bold;
  line-height: 20px;
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.single-product .related .product {
  padding-bottom: 20px;
}
.single-product .related .product .responsive-loop-product__link {
  margin-bottom: 0 !important;
}
.elementor-location-header
  .elementor-search-form
  .elementor-search-form__input::placeholder {
  font-size: 14px !important;
}
.woocommerce-order-received .woocommerce-table--order-details thead {
  background-color: #333333;
  color: #ffffff;
  overflow: hidden;
}
.woocommerce-order-received
  .woocommerce-order-details
  .woocommerce-order-details__title,
.woocommerce-order-received
  .woocommerce-order-downloads
  .woocommerce-order-details__title {
  font-size: 24px !important;
  font-weight: 700;
  color: #333;
}
table.woocommerce-table.woocommerce-table--order-downloads.shop_table.shop_table_responsive.order_details {
  border: 1px solid #eaeaea !important;
  border-radius: 5px;
}
table.woocommerce-table.woocommerce-table--order-downloads.shop_table.shop_table_responsive.order_details
  thead {
  background-color: #333333;
  color: #ffffff;
  overflow: hidden;
}
table.woocommerce-table.woocommerce-table--order-downloads.shop_table.shop_table_responsive.order_details
  thead
  tr
  th {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.woocommerce-checkout
  table.shop_table
  thead
  th.woocommerce-table__product-name.product-name {
  border-top-left-radius: 5px;
}
.woocommerce-checkout
  table.shop_table
  thead
  th.woocommerce-table__product-table.product-total {
  border-top-right-radius: 5px;
}
table.woocommerce-table.woocommerce-table--order-downloads.shop_table.shop_table_responsive.order_details
  th.download-product {
  border-top-left-radius: 5px;
}
table.woocommerce-table.woocommerce-table--order-downloads.shop_table.shop_table_responsive.order_details
  th.download-file {
  border-top-right-radius: 5px;
}

.woocommerce-order-received .woocommerce table.shop_table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 5px;
}
.woocommerce-order-received .woocommerce-order-details tfoot tr:last-child {
  background-color: #f4f4f4;
}
.woocommerce-order-received .woocommerce-order-details tfoot tr:first-child th,
.woocommerce-order-received
  .woocommerce-table--order-details
  tfoot
  tr:first-child
  td
  .amount {
  font-weight: bold !important;
  font-size: 14px !important;
  font-style: italic;
}
.woocommerce-cart .woocommerce-message .wc-forward {
  display: none;
}
.woocommerce-checkout .create-account .input-text {
  padding: 7px !important;
}
.single-product .woochimp_sc input#woochimp_shortcode_subscription_email {
  width: 65% !important;
}
.single-product .woochimp_sc #woochimp_shortcode_subscription_submit {
  letter-spacing: 0;
  border-radius: 5px;
  font-size: 16px;
}
.woocommerce-account .order-info {
  margin: 10px 0px 6px !important;
}
.woocommerce-edit-account .form-edit-account .button {
  border-radius: 5px;
  letter-spacing: 0;
}
.points_div {
  padding: 30px;
  text-align: center;
  background-color: #f4f4f4;
  margin-bottom: 30px;
}
.points_div span {
  font-size: 14px !important;
}
.woocommerce-view-order .product-name a:hover {
  color: #972615 !important;
}
.woocommerce-view-order .woocommerce-order-details__title,
.woocommerce-view-order .woocommerce-column__title {
  text-transform: capitalize !important;
}
.woocommerce-view-order .order-again a {
  border-radius: 5px !important;
}
.woocommerce-view-order .woocommerce .shop_table tfoot tr:nth-child(2) th {
  color: #333333 !important;
}
.woocommerce-page table.shop_table_responsive tr.cart-table-title-mobile {
  display: none;
}
tr.woocommerce-cart-form__cart-item.cart_item td.product-subtotal a.remove {
  float: right;
}
tr.woocommerce-cart-form__cart-item.cart_item
  div.quantity
  input.input-text.qty.text {
  border-bottom-width: 1px;
  border-bottom-color: #ebebeb;
}
.woocommerce-checkout .gift-a-deal-container {
  border: 1px solid #ebebeb;
  border-radius: 5px;
  margin-bottom: 20px;
}
.woocommerce-checkout .gift-a-deal-container .gift-a-deal-title {
  background-color: #060a0d;
  overflow: hidden;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  color: #fff;
  padding: 12px 24px;
}

.woocommerce-checkout .gift-a-deal-container .gift-a-deal-fields {
  padding: 18px 19px;
}
#my_custom_checkout_field {
  padding-top: 0;
  font-size: 16px !important;
}
.gift-checkbox span {
  font-size: 16px;
}

.checkout_gift_inner {
  display: none;
}

@media only screen and (max-width: 768px) {
  /* Removing scroll to top in mobile view  */

  #scroll {
    display: none !important;
  }

  /*sticky add to cart button*/

  div.sticky_add_to_cart1 {
    position: fixed;
    bottom: 0;
    font-size: 18px;
    font-weight: 600;
    z-index: 999999;
    color: #ffffff;
    line-height: 1em;
    width: 100%;
    align-items: flex-end;
    cursor: pointer;
    display: block;
  }
  /*changes by Divya on feb 10-start*/
  .woocommerce-loop-product__title {
    padding: 0px !important;
  }
  th.woocommerce-table__product-name.product-name {
    width: 65% !important;
  }
  /*changes by Divya on feb 10-end*/

  .plus-prod-btn-sticky {
    font-family: Open Sans;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 0em;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .single-product .addtocartprd.plus-prod-btn-sticky.right.without {
    background-color: #d9d9d9 !important;
    color: #000000 !important;
    font-weight: 700 !important;
  }

  .sticky_add_to_cart1 a {
    width: 50%;
  }

  .sticky_add_to_cart1 a.plus-prod-btn-sticky.left,
  .sticky_add_to_cart1 a.plus-prod-btn-sticky.right {
    width: 50%;
    text-transform: none;
    font-size: 18px !important;
    line-height: 18px;
  }

  .sticky_add_to_cart1 a.plus-prod-btn-sticky.left {
    width: 100%;
    text-transform: none;
    padding-top: 19px;
    padding-bottom: 19px;
    font-size: 14px !important;
    font-weight: 600 !important;
    border: none;
    border-radius: 0px !important;
  }

  .sticky_add_to_cart1 a.plus-prod-btn-sticky.left:hover {
    background-color: #972615 !important;
  }

  .sticky_add_to_cart1 a.single_button {
    width: 100%;
    text-transform: none;
    padding-top: 18px !important;
    padding-bottom: 18px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
  }

  .sticky_add_to_cart1 div {
    margin: 0 auto;
    text-transform: none;
  }

  .single-product .addtocartprd.plus-prod-btn-sticky {
    color: #fff !important;
    border: none;
    border-radius: 0px !important;
  }

  /* css for variation product in mobile view */

  .single-product .variations {
    width: 90% !important;
    margin-left: 10%;
  }
  div#pw-add-cart-left {
    width: 100% !important;
  }
  .single-product .variations_button {
    margin-right: 15px;
  }

  .single-product .addtocartprd {
    margin-top: 0;
    margin-right: 17%;
  }

  /* Cart page mobile CSS - Start */
  .woocommerce-cart tr.cart-table-title-mobile td::before {
    display: none;
  }
  .woocommerce-page table.shop_table_responsive tr.cart-table-title-mobile {
    display: block;
    background-color: #333333;
    overflow: hidden;
    border-top-right-radius: 5px;
    color: #fff;
    border-top-left-radius: 5px;
  }
  .woocommerce-cart table.shop_table tbody tr td:first-child {
    padding: 22px 0 !important;
  }
  .woocommerce-page table.shop_table_responsive tr.cart-table-title-mobile td {
    text-align: left !important;
  }
  .woocommerce-cart a.remove {
    font-size: 14px !important;
    vertical-align: middle !important;
  }
  .woocommerce-cart td.product-quantity {
    margin-bottom: 20px;
  }
  .woocommerce-cart .column,
  .woocommerce-cart .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .woocommerce table.shop_table_responsive tr td::before,
  .woocommerce-page table.shop_table_responsive tr td::before {
    font-size: 14px;
  }
  .woocommerce table.shop_table_responsive tr td,
  .woocommerce-page table.shop_table_responsive tr td {
    text-align: left !important;
  }
  .woocommerce table.shop_table td .amount,
  .woocommerce-page table.shop_table td .amount {
    font-size: 14px;
  }
  .woocommerce-cart .shop_table .product-subtotal {
    text-align: left !important;
  }
  .woocommerce table.shop_table_responsive tr:nth-child(2n) td,
  .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
    background-color: #ffffff;
  }
  .woocommerce table.shop_table_responsive tr,
  .woocommerce-page table.shop_table_responsive tr {
    border-top: 1px solid #ebebeb;
  }
  .woocommerce-cart table.shop_table .product-name a,
  .woocommerce-checkout .shop_table .product-name a,
  .woocommerce-checkout .shop_table .price span {
    font-size: 14px !important;
    font-weight: bold !important;
  }
  .woocommerce-cart table.shop_table td,
  .woocommerce-cart table.shop_table td {
    padding-right: 0px !important;
  }
  .coupon_code_wrapper_inner {
    display: flex;
  }
  .woocommerce-cart .coupon_code_wrapper_inner #coupon_code {
    width: 60%;
  }
  .woocommerce-cart
    .coupon_code_wrapper
    .coupon_code_wrapper_inner
    .apply_coupon {
    width: 20%;
  }
  .woocommerce-cart .coupon_code_wrapper .update_and_checkout {
    width: 60%;
    margin: 0 auto;
  }
  /* Cart page mobile CSS - End */
  .woocommerce-checkout .plus_upsell_heading .plus_upsell_benifits {
    float: inherit;
  }
  #prod_price_sect .elementor-widget-container {
    margin: 0 0 0 5em !important;
  }
  #sticky_block_section {
    display: none !important;
  }
  #vendor_sect {
    text-align: center;
  }
  #cat_div .elementor-widget-container {
    text-align: center;
  }
  .woocommerce .login-register-container .account-forms-container {
    width: 100% !important;
  }
  .woocommerce .login-register-container .logwrapper {
    display: block !important;
  }
  .woocommerce .login-register-container .log-left,
  .woocommerce .login-register-container .log-right {
    float: none;
    width: 100%;
    padding: 20px;
  }
  .woocommerce-edit-account .woocommerce .left_col_edit_acc {
    width: 100% !important;
  }
  .woocommerce-edit-account
    .woocommerce
    .form-edit-account
    .right_col_edit_acc {
    width: 100% !important;
  }
  .woocommerce-edit-account .woocommerce {
    padding: 1px !important;
    height: auto !important;
  }
  .woocommerce-account .woocommerce {
    padding: 10px !important;
  }
  #masthead
    .main-navigation
    .main-navigation-wrapper
    #header-menu
    .res-cart-link {
    float: none !important;
    left: 0 !important;
  }
  .main-navigation .menu li.menu-item-has-children .res-iconify-outer {
    display: block;
  }
  .woocommerce-account .woocommerce-orders-table__cell-order-actions {
    width: 100% !important;
  }

  .single-product #reviews #review_form #respond {
    margin-left: 0 !important;
  }
  .single-product .comment-form-author {
    width: 100% !important;
  }
  .single-product #commentform .comment-form-email {
    width: 100% !important;
  }
  .woocommerce-cart .cart_form .large-centered {
    margin-left: 0 !important;
  }
  #pw-add-cart-left {
    width: 50% !important;
  }
  #pw-custom-container-right {
    width: 40% !important;
  }
  #pw-add-cart-right {
    margin-left: 16px !important;
  }
  .woocommerce-page ul.products.columns-4 li.product,
  .woocommerce ul.products.columns-4 li.product {
    /* height: 700px; */
    height: auto !important;
  }
  .woocommerce ul.products li.product .woocommerce-placeholder {
    height: 451px;
  }
  .archive .content-outer #primary {
    padding-right: 0.5em !important;
  }
  .full-screen
    .main-navigation
    .main-navigation-wrapper
    .full-screen-search-wrapper
    .full-screen-search-container
    #searchform
    .res-search-wrapper
    input[type="search"] {
    font-size: 22px !important;
    font-weight: 800;
    color: #ffffff;
  }
  .full-screen
    .main-navigation
    .main-navigation-wrapper
    .full-screen-search-wrapper {
    height: 50% !important;
  }
  .full-screen
    .main-navigation
    .main-navigation-wrapper
    .full-screen-search-wrapper
    .full-screen-search-container
    #searchform
    .res-search-wrapper
    input[type="search"]::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-size: 22px !important;
    font-weight: 800;
    color: #ffffff !important;
  }
  .full-screen
    .main-navigation
    .main-navigation-wrapper
    .full-screen-search-wrapper
    .full-screen-search-container
    #searchform
    .res-search-wrapper
    input[type="search"]::-moz-placeholder {
    /* Firefox 19+ */
    font-size: 22px !important;
    font-weight: 800;
    color: #ffffff !important;
  }
  .full-screen
    .main-navigation
    .main-navigation-wrapper
    .full-screen-search-wrapper
    .full-screen-search-container
    #searchform
    .res-search-wrapper
    input[type="search"]:-ms-input-placeholder {
    /* IE 10+ */
    font-size: 22px !important;
    font-weight: 800;
    color: #ffffff !important;
  }
  .full-screen
    .main-navigation
    .main-navigation-wrapper
    .full-screen-search-wrapper
    .full-screen-search-container
    #searchform
    .res-search-wrapper
    input[type="search"]:-moz-placeholder {
    /* Firefox 18- */
    font-size: 22px !important;
    font-weight: 800;
    color: #ffffff !important;
  }
  .elementor-element-953b52e .elementor-element-7abe033 {
    right: 0 !important;
  }
  .elementor-add-to-cart #pw-add-cart-left {
    float: none !important;
    margin: 0 auto;
  }
  .elementor-287 .elementor-element.elementor-element-ed768fa,
  .elementor-287 .elementor-element.elementor-element-a837529,
  .elementor-287 .elementor-element.elementor-element-5aae41fd,
  .elementor-287 .elementor-element.elementor-element-c76bcb3,
  .elementor-287 .elementor-element.elementor-element-3d0f4938 {
    padding: 30px 0 30px 0 !important;
  }
  #header_signup_form .e-form__buttons {
    margin-left: 0 !important;
  }
  #footer-menu li {
    display: block !important;
  }
  .archive #primary,
  .woocommerce-page.single-product div.product,
  .related.products {
    padding: 0.5em;
  }
  #pw-add-cart-container #pw-add-cart-right .button {
    padding: 1.2em !important;
  }
  .archive .product .add_to_cart_button,
  .related .product .add_to_cart_button {
    display: inline-block !important;
  }
  .woocommerce-checkout .woocommerce {
    padding: 0.5em;
  }
  .woocommerce-cart .woocommerce-info.wc_points_rewards_earn_points {
    width: 95% !important;
    margin: 0.5em !important;
  }
  .woocommerce .shop_table.woocommerce-checkout-review-order-table th {
    padding-left: 2%;
  }
  .woocommerce-checkout-review-order .shop_table tr td {
    font-size: 0.7rem;
  }
  .woocommerce a.remove,
  .woocommerce-page
    .shop_table.woocommerce-checkout-review-order-table
    tfoot
    .order-total
    .amount {
    font-size: 0.9rem;
  }
  .woocommerce-cart .woocommerce a.remove {
    vertical-align: text-top !important;
  }
  .woocommerce-checkout-review-order .quantity input.qty {
    width: 35px;
  }
  .woocommerce .order_review_wrapper table.shop_table td {
    width: 100%;
  }

  .woocommerce-cart table.shop_table .heading {
    padding-left: 0 !important;
  }
  .woocommerce-cart .shop_table_responsive .product_th_heading {
    display: none;
  }
  .woocommerce-cart .shop_table_responsive .product-name {
    border-top: none;
  }
  .woocommerce-cart .shop_table_responsive .product-name a {
    padding-left: 8em !important;
    width: 100%;
  }

  .woocommerce-cart .shop_table_responsive .product-quantity .qty {
    float: right;
    margin-right: 0;
  }
  .woocommerce-cart .shop_table_responsive .product-remove {
    border-top: none;
  }
  .woocommerce-cart .coupon_code_wrapper .apply_coupon,
  .woocommerce-cart .coupon_code_wrapper .update_and_checkout .update_cart,
  .woocommerce-cart .coupon_code_wrapper_inner {
    width: 100%;
  }
  .woocommerce-cart .coupon_code_wrapper .update_and_checkout {
    float: none !important;
    margin-top: 0 !important;
  }
  .woocommerce-notices-wrapper {
    padding: 0 0.6em;
  }
  .woocommerce-cart .cart_right_wrapper {
    margin-top: 0 !important;
  }
}
/* For tooltip Plus image - Changes added by Ajinkya on Feb 9*/
.tooltip_img,
.tooltip_cartimg,
.plus_upsell_benifits_span {
  text-decoration: none;
  position: relative;
}

.tooltip_img span,
.tooltip_cartimg span,
.plus_upsell_benifits_span span {
  display: none;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 12px;
  color: black;
}

.tooltip_img span img,
.tooltip_cartimg span img,
.plus_upsell_benifits_span span img {
  float: left;
  margin: 0px 8px 8px 0;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 40%);
}

.tooltip_img .fas:hover span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000000;
  width: auto;
  margin-top: 25px;
  margin-left: 32px;
  overflow: hidden;
  padding: 8px;
}
.tooltip_cartimg:hover span {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1000000;
  width: auto;
  margin-top: 25px;
  overflow: hidden;
  padding: 0;
}
.plus_upsell_benifits_span:hover span {
  display: block;
  position: absolute;
  top: 0;
  right: -20px;
  z-index: 1000000;
  width: auto;
  margin-top: 25px;
  overflow: hidden;
  padding: 0;
}
.woocommerce-cart
  .product-subtotal
  .subtotal-and-delete
  .tooltip_cartimg:hover {
  opacity: 1 !important;
}
.tooltip_cartimg span,
.tooltip_cartimg span img,
.plus_upsell_benifits_span span img {
  max-width: 407px !important;
  height: auto !important;
}
@media screen and (min-width: 365px) and (max-width: 480px) {
  .plus_upsell_benifits_span:hover span {
    right: -70px;
  }
}
@media screen and (max-width: 480px) {
  .tooltip_cartimg span,
  .tooltip_cartimg span img,
  .plus_upsell_benifits_span span img {
    max-width: 300px !important;
  }
}
@media screen and (max-width: 365px) {
  .tooltip_cartimg span,
  .tooltip_cartimg span img,
  .plus_upsell_benifits_span span img {
    max-width: 250px !important;
  }
}

/*changed by Vaibhav on Dec-19 Start*/
.plus-membership-only {
  margin-top: 4em !important;
}
.plus-membership-only_heading {
  text-transform: none !important;
  text-align: center !important;
}
.plus-membership-only_images {
  display: flex !important;
  flex-wrap: wrap !important;
}
.plus-membership-only-image {
  height: 350px !important;
  width: 538px !important;
  margin: 11px !important;
}
.plus-membership-only-image p {
  margin-left: 39px !important;
  margin-bottom: 12px !important;
}
.plus-membership-only-image iframe {
  height: 79% !important;
  text-align: center !important;
}
iframe.old-school-street {
  width: 89% !important;
  margin-left: 40px !important;
}
iframe.mastering-the-model {
  width: 89% !important;
  margin-left: 40px !important;
}
/*changed by Vaibhav on Dec-19 End*/

/*Changes added by Vaibhav on Dec 23 Start*/
.product_cat-freebies .tooltip_img {
  display: none !important;
}
.product_cat-freebies .elementor-divider,
.product_cat-freebies #text-sect2,
.product_cat-freebies .remove-for_freebie {
  display: none !important;
}
.woocommerce-edit-address .form-row {
  display: block !important;
}
.woocommerce-ResetPassword {
  width: 40% !important;
  margin: 0 auto !important;
}
#cart-empty-img {
  margin-top: 50px !important;
}
.woocommerce-lost-password .form-row {
  display: block !important;
}
@media screen and (max-width: 480px) {
  .woocommerce-lost-password .col-7 {
    flex: none !important;
    max-width: none !important;
  }
  .woocommerce-ResetPassword {
    width: 80% !important;
    margin: 0 auto !important;
  }
  .single-product
    .product
    .elementor-widget-woocommerce-product-short-description {
    text-align: center;
  }
  .single-product
    .product
    .elementor-widget-woocommerce-product-title
    .product_title {
    text-align: center;
    margin-top: 36px;
  }
  .single-product .product_cat-plus-masterclasses .product_title {
    text-align: left;
    margin-top: 0;
  }
  .single-product
    .product_cat-plus-masterclasses
    .elementor-widget-woocommerce-product-short-description {
    text-align: left;
  }
  .single-product .wc-tabs-wrapper .wc-tabs {
    padding: 0px !important;
  }
  .search-results ul.products[class*="columns-"] li.product:nth-child(2n) {
    float: none !important;
  }
  #login-form-new .elementor-lost-password {
    left: 16em !important;
  }
  #login-form-new .elementor-register {
    left: 9.5em !important;
  }
  .elementor-1068638
    .elementor-element.elementor-element-515eb5f7
    > .elementor-element-populated {
    padding: 24px 6px 0px 10px !important;
  }
  #login-form-new .elementor-login-separator {
    width: 28% !important;
  }
  .search-results .products {
    width: 78% !important;
    margin: 0 auto !important;
  }
  .single-product #prod_price_sect .elementor-widget-container {
    margin: 0px !important;
  }
  .single-product .elementor-widget-woocommerce-product-price {
    margin: 0 auto !important;
  }
  .single-product
    .product_cat-new-masterclass
    .elementor-widget-woocommerce-product-title
    .product_title {
    text-align: left !important;
    margin-top: 0 !important;
  }
}
/*Changes added by Vaibhav on Dec 23 End*/

/*Changes added by Vaibhav on Jan 4 Start*/

@media only screen and (max-width: 768px) {
  .woocommerce #review_form #respond {
    width: auto !important;
  }
  .woocommerce #reviews #comments ol.commentlist {
    width: 100% !important;
  }
  /*change added by Vaibhav on Jan 10*/
  .woocommerce-order p {
    margin-left: 2em !important;
  }
}
/*Changes added by Vaibhav on Jan 4 End*/

/*change added by Vaibhav for thank you page UI fix on Jan 10 -Start*/
.woocommerce-order p {
  margin-left: 6em;
}
/*change added by Vaibhav for thank you page UI fix on Jan 10 -End*/

/*changes added by Vaibhav on Jan 23 - Start*/

@media only screen and (max-width: 260px) {
  .sticky_add_to_cart1 a.plus-prod-btn-sticky.left,
  .sticky_add_to_cart1 a.plus-prod-btn-sticky.right {
    font-size: 11px !important;
  }
}

/*changes added by Vaibhav on Jan 23 - End*/

/*changes added by Vaibhav on Jan 24 - Start*/
.woocommerce-account .woocommerce .pw-old-padding #aff_tab {
  display: none !important;
}
/*changes added by Vaibhav on Jan 24 - End*/
/* Changes added by Prasada for Checkout Page Plus user ajax checking - start */
.plusinfotext {
  color: #c9321a !important;
  font-size: 15px;
  vertical-align: middle;
  margin-left: 6px;
}
#plusbadgeicon {
  margin-top: 10px;
  vertical-align: middle;
  height: 32px;
}

/* Changes added by Prasada for Checkout Page Plus user ajax checking - end*/

/*Changes made by Vaibhav on Jan 27 -Start */
.woocommerce-checkout
  .woocommerce-form-login
  .woocommerce-form-login__rememberme {
  right: 13.7em !important;
}
@media screen and (max-width: 768px) {
  .woocommerce-orders .woocommerce-MyAccount-orders thead tr {
    display: none !important;
  }
  .woocommerce-checkout
    .woocommerce-order-downloads
    table.shop_table_responsive
    tr
    td {
    text-align: left !important;
  }
}
/*Changes made by Vaibhav on Jan 27 -End */

/* Change added by Omendra on 24jan -Start*/

/*button border fix*/
.woocommerce .lost-right a.button {
  border-radius: 5px !important;
}

.woocommerce .lost_reset_password .woocommerce-Button {
  border-radius: 5px !important;
}

/*Cart error fix*/

.woocommerce .cart_container .woocommerce-error .wp-element-button {
  display: none;
}
.woocommerce-cart
  .woocommerce
  .cart_container
  .woocommerce-notices-wrapper
  .woocommerce-error {
  margin: 0px;
}

/*text breaking issue*/
.woocommerce-checkout
  .woocommerce-checkout-review-order-table
  .product-subtotal
  .price {
  word-break: unset !important;
}

/* Change added by Omendra on 24jan -End*/

/*Changes added by Vaibhav on Jan 30 -Start*/
.woocommerce-order-received
  .rec_title_wrap
  .woocommerce-thankyou-order-received {
  margin-left: 0px !important;
}
/*Changes added by Vaibhav on Jan 30 -End*/

/*Changes made Vaibhav on Jan 31 - Start*/
@media screen and (max-width: 768px) {
  .woocommerce-checkout .woocommerce-order .rec_subtext {
    margin-left: 0 !important;
  }
}
/*Changes made Vaibhav on Jan 31 - End*/

/*Changes made Vaibhav on Feb 1 - Start*/
@media screen and (max-width: 768px) {
  .woocommerce-account .logwrapper {
    height: 820px !important;
    margin-bottom: 20px !important;
  }

  .woocommerce-account .elementor-element-e08aef6 .medium-10 {
    margin: 0 30px 0 30px;
  }
  /*changes added by Divya on Feb 9 -Start*/
  #pw-custom-container-right p:first-child,
  .email_conf {
    text-align: left;
  }
  /*changes added by Divya on Feb 9 -End*/
}
/*Changes made Vaibhav on Feb 1 - End*/

/* Changes added by Divya on Jan 31 - start */
@media only screen and (min-width: 768px) {
  .sticky_add_to_cart1 {
    display: none !important;
  }
}
/* Changes added by Divya on Jan 31 - end */

/* Checkout page break on tablet view by Ajinkya --start*/

@media screen and (max-width: 921px) {
  .woocommerce-page.woocommerce-checkout
    .woocommerce
    form
    #customer_details.col2-set {
    width: 100%;
    margin-right: 0;
  }

  .cross-table {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .woocommerce-checkout .order_heading {
    width: 100% !important;
    margin-bottom: 10px;
  }
  .woocommerce-page.woocommerce-checkout
    .woocommerce
    form
    #order_review_heading,
  .woocommerce-page.woocommerce-checkout .woocommerce form #order_review {
    width: 100%;
    border: none;
    background-color: #fff;
  }
  #order_review table.shop_table tr td.product-name {
    width: 56%;
  }
  .checkout-get-plus-section .checkout-get-plus-fields {
    margin-left: 0px;
    margin-bottom: 8px;
  }
  .plus-and-submit-container {
    display: block;
    margin-right: 0px;
    align-self: baseline;
  }
}
/* Checkout page break on tablet view by Ajinkya --end*/
/* Change added by Omendra on 1st feb -Start*/
/* New Cart page Look */

.woocommerce-cart .wc_epmty_cart_notice .woocommerce-message {
  width: 50% !important;
  margin: 0 auto !important;
}

@media only screen and (max-width: 450px) {
  .woocommerce-cart .wc_epmty_cart_notice .woocommerce-message {
    width: 100% !important;
  }
}
/* Change added by Omendra on 1st Feb -End*/
/*Fixed order summery details alignment on checkout page by Ajinkya --start*/

.woocommerce
  .shop_table.woocommerce-checkout-review-order-table
  tfoot
  tr
  th:nth-child(2),
.woocommerce-page
  .shop_table.woocommerce-checkout-review-order-table
  tfoot
  tr
  th:nth-child(2) {
  width: 60%;
}

#order_review table.shop_table tr td.product-subtotal {
  padding-right: 10px;
}

/*Fixed order summery details alignment on checkout page by Ajinkya --end*/

/*Changed by Vaibhav on Feb 3 - Start*/
@media screen and (max-width: 768px) {
  .woocommerce-account .my_account_orders thead > tr {
    display: none !important;
  }
}

/*Changed by Vaibhav on Feb 3 - End*/
/*Changed by Tejas on 13 Feb - Start */
.page.page-id-1071329 .category-reviews img {
  border: 1px solid black;
}

.page.page-id-1071329
  .elementor-1071329
  .elementor-element.elementor-element-caf78ce
  .elementor-search-form__submit:hover {
  background-color: #972615;
}

.page.page-id-1071329
  nav.elementor-pagination
  .page-numbers:not(.current):not(.dots):hover,
.tax-product_cat nav.woocommerce-pagination ul li a.page-numbers:hover {
  color: #972615 !important;
}

.single.single-post #llc_comments #llc_comments_button.btn {
  color: #fff;
  background-color: #c9321a;
  border: none;
  font-weight: 700;
  font-size: 18px;
}
.single.single-post #llc_comments #llc_comments_button.btn:hover {
  background-color: #972615;
}

.single.single-post #llc_comments a {
  color: #c9321a;
}
/*Changed by Tejas on 13 Feb - End */

/*Changes made by Vaibhav on Feb - 15 Start */

.pwplan-section .inner-section-divs {
  display: flex;
  justify-content: space-between;
}

.pwplan-section .inner-section-divs .pwplans-container {
  margin-right: 10em;
}

.pwplans-container label {
  font-family: Open Sans;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 20px !important;
  color: #333333;
}

.pwplan-section .add_pw_btn {
  font-weight: 700 !important;
  font-size: 18px !important;
  margin-bottom: 1.5em !important;
  letter-spacing: 0;
  border-radius: 5px !important;
}

/*Changes made by Vaibhav on Feb - 15 End */
/* Changes made by Divya on feb 13 -start */
.woocommerce a.button {
  border-radius: 6px !important;
}
/* Changes made by Divya on feb 13 -end */
/* changes made by Divya on feb 14 -start*/
#place_order:hover {
  background-color: #972615;
}
input[type="checkbox"] {
  accent-color: #c9321a;
}
/* changes made by Divya on feb 14 -end*/
/*Changed by Tejas on 14 Feb - Start */
.page.page-id-1068638 #login-form-new .elementor-button {
  outline: none;
}
/*Changed by Tejas on 14 Feb - End */
/* Changes added for Checkout login error message alignment by Ajinkya - start */
.woocommerce.wfls-login-message {
  width: 100%;
  max-width: 1140px;
  padding: 0 10px 0 25px;
}
/* Changes added for Checkout login error message alignment by Ajinkya - end */
/*Changed by Omendra on 21 Feb - Start */
.woocommerce-lost-password .woocommerce .woocommerce-error {
  margin-bottom: 20px !important;
}
/*Changed by Omendra on 21 Feb - End */
/* changes by Divya -start*/
input.input-checkbox,
input[type="radio"] {
  accent-color: #c9321a;
}
/* changes by Divya -end*/
/*Changed by Tejas on 17 Feb - Start */
#form-button-c812c31b9dc25a91bb6b0af281aad2a1:hover {
  background-color: #972615 !important;
}
.woocommerce-checkout
  .woocommerce-account-fields
  #account_password_field
  .password-input
  .show-password-input {
  top: 0.3em;
}
/*Changed by Tejas on 17 Feb - End*/
/*Changed by Tejas on 16 Feb - Start */
.woocommerce-checkout.woocommerce-page .create-account #account_password {
  text-transform: none !important;
}
/*Changed by Tejas on 16 Feb - End */

/*Changed by Omendra 22 Feb - Start */
.woocommerce-Reviews #review_form .form-submit #submit {
  font-size: 18px !important;
  border-radius: 5px !important;
  padding: 12px 24px;
}
/*Changed by Omendra 22 Feb - End */
/*Changed by Tejas on 20 Feb - Start*/
.single-product
  .remove-for_freebie.addtocartprd.add_to_cart_button.ajax_add_to_cart {
  position: relative;
  display: inline-block;
}
.single-product
  .remove-for_freebie.addtocartprd.add_to_cart_button.ajax_add_to_cart
  #pw_single_product_plus_banner {
  visibility: hidden;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  left: 0%;
  bottom: 100%;
  opacity: 0;
  transition: opacity 0.3s;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 40%);
}
.single-product
  .remove-for_freebie.addtocartprd.add_to_cart_button.ajax_add_to_cart:hover
  #pw_single_product_plus_banner {
  visibility: visible;
  opacity: 1;
}
/*Changed by Tejas on 20 Feb - End*/
/*changes by divya on feb 22-start*/
.elementor-login__logged-in-message > a {
  color: #c9321a !important;
}
.elementor-login__logged-in-message > a:hover {
  text-decoration: none !important;
}
/*changes by divya on feb 22-end*/
/*changes by divya on feb 22-start*/
#pw-mega-menu ul.elementor-icon-list-items li a:hover {
  text-decoration: none !important;
}
/*changes by divya on feb 22-end*/
/*for--cross selling section --*/
/*changes by divya on feb 22-start*/
@media screen and (min-width: 992px) {
  #related .woocommerce ul.products.columns-4 li.product {
    margin: 0px !important;
  }
}
/*changes by divya on feb 22-end*/
/*To reduce the z index of add_to_cart_button Changed by Ajinkya on 23 Feb - Start */
.remove-for_freebie.addtocartprd.add_to_cart_button {
  z-index: 1;
}
/*To reduce the z index of add_to_cart_button Changed by Ajinkya on 23 Feb - End */

/*Changes added by Vaibahv on Feb 27 - Start */

.woocommerce-checkout form .form-row.woocommerce-validated input.input-text {
  border-color: #c1c1c1 !important;
}
.woocommerce-checkout .password-input .show-password-input {
  top: 1.3em !important;
}

/*Changes added by Vaibahv on Feb 27 - End */
/* Added by Prasada for disabling Old PayPal radiobutton on Checkout Page */
.woocommerce-checkout #payment .payment_method_paypal {
  display: none !important;
}
@media screen and (min-width: 992px) {
  .woocommerce-checkout .component-frame {
    width: 52% !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    margin-bottom: 1.5em !important;
    letter-spacing: 0;
    border-radius: 5px;
    margin-left: 7em;
  }
}
/*changes made by Vaibhav on March 15 - Start */

.single-product .cart .qty,
.single-product .footer-bar .social-icon,
.single-product .footer-bar #footer-site-navigation,
.woocommerce-cart .footer-bar .social-icon,
.woocommerce-cart .footer-bar #footer-site-navigation {
  display: none;
}
/*changes made by Vaibhav on March 15 - End */
/*changes made by Vaibhav for blog search results - Start */
.search-results .blog-search {
  display: flex;
  flex-flow: wrap;
}

.search-results .single-blog {
  width: calc((97% / 4) - (19px + 4px));
  list-style: none;
  margin: 0 30px 30px 0;
}
.search-results .single-blog .card {
  align-items: center;
}
.search-results .single-blog .card a {
  text-decoration: none;
  text-align: center;
  margin: 12px;
  font-weight: 600 !important;
  color: #ffffff;
}
.search-results .single-blog .card a h2 {
  font-size: 1em;
  font-weight: 600 !important;
}
.search-results .card img {
  margin: 0 0 1em;
}
.search-results .card .button-style {
  border-radius: 5px;
  font-size: 16px !important;
  font-weight: bold;
  padding: 12px 30px !important;
  background-color: #c9321a !important;
  color: #ffffff !important;
  display: inline-block !important;
  margin: 16px 0 12px 0 !important;
}
/*changes made by Vaibhav for blog search results - End */

/*Changes made by Vaibhav on March 27 for modal on single product page - Start*/
.single-product .confirm-membership {
  cursor: pointer;
  color: #c9321a;
}
.single-product .rael-content a:hover {
  text-decoration: none;
}
.single-product .tool-tip-image .tool-tip-button-background {
  background-color: #dce5eb;
  width: 100%;
}
.single-product .tool-tip-text-background .tool-tip-buttons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 64%;
  margin: 20px 0px;
}
.single-product .product_cat-freebies .rael-modal-action-wrap {
  display: none;
}
.single-product .rael-content .rael-modal-text {
  background-color: #dce5eb;
}
.single-product .rael-button-wrapper {
  display: none;
}
.single-product .rael-content .tool-tip-buttons .tool-tip-button {
  background-color: #c9321a;
  padding: 12px;
  border-radius: 5px;
  color: #ffffff;
}
.single-product .rael-content .tool-tip-buttons div {
  width: 160px;
  text-align: center;
}
.mobile-deal-popup {
  display: none;
}
@media screen and (max-width: 540px) {
  .single-product .rael-content .tool-tip-buttons div {
    width: 116px;
  }
  .desktop-deal-popup {
    display: none;
  }
  .mobile-deal-popup {
    display: block;
  }
}

.single-product .rael-content .tool-tip-buttons .tool-tip-button:hover {
  background-color: #972615;
}
.single-product .rael-modal-close {
  display: none;
}
.tool-tip-buttons p {
  display: none;
}
.tool-tip-buttons .tool-tip-button-two {
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #c9321a;
  color: #c9321a;
}

.tool-tip-buttons .tool-tip-button-two:hover {
  background-color: #972615;
  color: #ffffff;
}
/*Changes made by Vaibhav on March 27 for modal on single product page - End*/

/*change added by Vaibhav on Apr 3 -Start*/
.woocommerce-order-received .woocommerce-order .rec_title_wrap p {
  width: 100%;
}
.woocommerce-order-received .woocommerce-order p {
  width: 80%;
  text-align: center;
}
/*change added by Vaibhav on Apr 3 - End */

/*changes added by Vaibhav on Apr 4 - Start*/
@media only screen and (max-width: 450px) {
  .woocommerce-checkout .montlypwleft {
    display: flex;
  }
  .woocommerce-checkout .checkout-get-plus-section {
    flex-direction: column;
  }
  .woocommerce-checkout .pwplans-container {
    margin-right: 4em !important;
  }
  .woocommerce-checkout .checkout-get-plus-image {
    text-align: center;
  }
  .woocommerce-checkout .pwplan-section .add_pw_btn {
    margin-top: 1em !important;
  }
  .woocommerce-checkout .montlypwleft label {
    margin-left: 5px !important;
  }
}
/*changes added by Vaibhav on Apr 4 - End*/

/*Changes made by Vaibhav on Apr 17 for Trust pilot reviews on cart page - Start*/
.woocommerce-cart .trust-text {
  margin-bottom: -1.75rem;
}

@media screen and (max-width: 768px) {
  .search-results ul.products[class*="columns-"] li.product:nth-child(2n) {
    clear: both !important;
  }
}
.woocommerce-cart .main_trust {
  display: flex;
  font-size: 14px;
  margin-left: 98px;
}
.woocommerce-cart .trust_score,
.woocommerce-cart .trust_reviews {
  display: flex;
  font-size: 14px;
}
.woocommerce-cart .trust_score {
  font-weight: 500;
  padding: 0 5px;
}
.woocommerce-cart .trust_score p {
  padding-right: 8px;
  font-size: 14px;
}

.woocommerce-cart .main_trust .trust_reviews p {
  padding-right: 10px;
  font-size: 14px;
}
.woocommerce-cart .main_trust .trust_score strong,
.woocommerce-cart .main_trust .trust_reviews strong {
  font-size: 14px;
  margin-right: 5px;
  margin-left: 9px;
}
.woocommerce-cart .woocommerce-cart-form .elementor-widget-container img {
  max-width: 74%;
}
.woocommerce-cart .cart-icons-tbl {
  margin-bottom: 0px;
}
.woocommerce-cart .breaker {
  font-size: 11px;
}
/*Changes made by Vaibhav on Apr 17 for Trust pilot reviews on cart page - End*/

/*Changes made by Vaibhav on Apr 19 by Vaibhav -Start*/
.woocommerce-cart #masthead #site-navigation {
  display: none;
}
.single-product .product_cat-freebies .confirm-membership {
  display: none;
}
.rael-register-form-group #reg-field-user_name {
  display: none;
}
/*Changes made by Vaibhav on Apr 19 by Vaibhav -End*/
.confirm-membership {
  text-transform: capitalize;
}
/*changes added by Vaibhav on Apr 22 - Start */

@media only screen and (max-width: 767px) {
  #mwb-cpr-drag {
    display: none !important;
  }
}

/*Changes added by Vaibhav on Apr 22  -End */

/*Changes added by Vaibhav on Apr 26 - Start */
@media only screen and (max-width: 767px) {
  .woocommerce-checkout .montlypwleft label {
    margin-top: 0px !important;
  }
  .woocommerce-checkout .inner-section-divs .pwplans-container {
    margin-top: 10px;
  }
}
/*Changes added by Vaibhav on Apr 26 - End */

/*changes made by Vaibhav on Apr 27 by Vaibhav - Start */
@media screen and (max-width: 768px) {
  .single-product .tool-tip-buttons .tool-tip-button,
  .single-product .tool-tip-buttons .tool-tip-button-two {
    font-size: 12px;
  }

  body .jet-mega-menu {
    min-width: 108px !important;
  }
  #jet-mega-menu-item-766372
    .jet-mega-menu-mega-container
    .elementor-element-populated {
    padding: 30px !important;
  }
}
/*changes made by Vaibhav on Apr 27 by Vaibhav - End */

.woocommerce-cart .cart-icons-tbl .icons {
  width: 22px;
}

/* changes made by tulasi - for main header menu */
.jet-mega-menu-mega-container a {
  color: #c9321a;
}
.jet-mega-menu-mega-container a:hover {
  color: #d85f34;
}

/* changes made by Ajinkya - to make site logo on cart page unclickable */
.woocommerce-cart a.custom-logo-link {
  pointer-events: none;
}
/* changes made by Tulasi - for main header menu */
.jet-mega-menu-mega-container a,
.related .products a {
  color: #c9321a;
}

.jet-mega-menu-mega-container a:hover,
.related .products a:hover {
  color: #d85f34;
  background-color: #972615 !important;
}

.woocommerce table.shop_table {
  margin-bottom: 20px !important;
  /* border-collapse: collapse !important; */
}
.woocommerce-cart table.shop_table {
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

.order-total {
  border-bottom: 1pt solid #d9d9d9 !important;
}
.elementor-login a.eye-icon {
  position: absolute;
  right: 15px;
  color: black;
  opacity: 0.7;
}
.elementor-login a.eye-icon:hover {
  position: absolute;
  right: 15px;
  color: black;
  opacity: 1;
}
.jet-mega-menu-mega-container a:hover,
.related .products a:hover {
  background-color: transparent !important;
}
.woocommerce-account ul.woocommerce-error,
.woocommerce-account .woocommerce-message {
  margin-left: auto !important;
  margin-right: auto !important;
}
@media screen and (max-width: 800px) {
  .woocommerce-account ul.woocommerce-error,
  .woocommerce-account .woocommerce-message {
    width: 95% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
.jet-mega-menu.jet-mega-menu--layout-horizontal
  .jet-mega-menu-item-1068343
  .jet-mega-menu-item__inner {
  padding-top: 10px;
}
/* styling done for plus membership masterclasses by tulasi- start*/
.plus-membership-only_images {
  justify-content: flex-start !important;
}

.tutor-course-details-tab-info h3.tutor-course-content-title {
  display: none;
}
.single-courses .st-sticky-share-buttons.st-left.st-toggleable.st-show-total,
.lesson-template-default
  .st-sticky-share-buttons.st-left.st-toggleable.st-show-total {
  display: none !important;
}

h3.tutor-fs-5.tutor-fw-bold.tutor-color-black.tutor-mb-24.tutor-course-content-title {
  display: none !important;
}
.plus-membership-text-container {
  display: flex;
  width: 251px;
  padding: 15px 20.05px 32.82px 20px;
  flex-direction: column;
  align-items: center;
  gap: -0.62px;
}

.lm-related-course-section .lm-course-title a {
  color: #000;
  text-align: center;
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 23.4px; /* 130% */
}
.lm-related-course-section .lm-course-title a:hover {
  text-decoration: none;
}
.lm-related-course-section .lm-course-item {
  box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.4) !important;
  transition: box-shadow 0.3s ease-in-out;
}
.lm-course-item-wrapper .lm-course-item {
  border: none;
}

.lm-related-course-section {
  font-family: "Open Sans";
}

.tutor-meta.tutor-course-details-info div:nth-child(2) {
  font-size: 0px;
}

.tutor-meta.tutor-course-details-info div:nth-child(2) span {
  font-size: 16px;
}

@media only screen and (max-width: 768px) {
  .plus-membership-only-imageimage {
    width: 343px;
    height: 673px !important;
    margin-bottom: 33px;
  }

  .plus-membership-only-imageimage img {
    height: 451.281px !important;
    width: 100% !important;
  }
  .plus-membership-text-container {
    width: 100%;
    padding-top: 15px;
  }
  .plus-membership-only-imageimage .plus-member-para {
    width: 100% !important;
  }
}

@media screen and (max-width: 576px) {
  .single-product .plus-masterclass-btn {
    width: fit-content;
    font-size: 15px !important;
    font-weight: 600;
    line-height: 22px;
  }
  .plus-membership-text-container {
    width: 100%;
    padding-top: 15px;
  }
  .plus-membership-only-imageimage .plus-member-para {
    width: 100% !important;
  }

  .plus-membership-only-imageimage {
    width: 100%;
    height: 715px !important;
    margin-bottom: 33px;
  }
  .plus-membership-only-imageimage img {
    height: 493.906px !important;
    width: 100% !important;
  }
}

.tutor-course-details-page .tutor-course-details-tab .tutor-is-sticky {
  z-index: 0;
}
@media screen and (min-width: 820px) {
  .plus-membership-only_images .plus-membership-only-imageimage {
    width: 249px !important;
  }
}
@media screen and (min-width: 820px) {
  .plus-membership-only_images .plus-membership-only-imageimage {
    width: 251px;
  }
}
.page-template-page-learning-center .plus-membership-only_images {
  margin-top: 40px;
}
.plus-membership-only_images .plus-membership-only-imageimage {
  background: rgba(255, 255, 255, 0);
  box-shadow: 0px 30px 30px 0px rgba(0, 0, 0, 0.4);
  margin-right: 30.1px;
  height: 540px;
  flex-shrink: 0;
  margin-bottom: 37px;
}

.plus-master-class-page-thumbnail {
  width: 100%;
  height: 500px;
}
.plus-membership-only-imageimage .plus-member-para {
  color: #000;
  text-align: center;
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
  font-family: Open Sans;
  font-size: 1em;
  font-style: normal;
  font-weight: 600;
  line-height: 23.4px; /* 130% */
  display: flex;
  width: 210.95px;
  min-height: 96.328px;
  padding: 8px 6.88px 9.56px 7.07px;
  flex-direction: column;
  align-items: center;
}

.plus-membership-only-imageimage a:nth-child(2) {
  display: flex;
  padding: 12px 30px;
  justify-content: center;
  align-items: flex-start;
  border-radius: 5px;
  background: #c9321a;
  color: #fff;
  text-align: center;
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.01);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
.plus-membership-only-imageimage
  .plus-membership-text-container
  a:nth-child(2):hover {
  text-decoration: none !important;
  background-color: #972615;
}
.plus-membership-only-imageimage .plus-membership-text-container a {
  text-decoration: none !important;
}

.plus-membership-only_images {
  display: flex !important;
  flex-wrap: wrap !important;
}

.plus-membership-only-imageimage img {
  height: 314.578px;
  max-width: 100% !important;
  border: none;
  border-radius: 0;
  box-shadow: none;
  width: 250.9px;
  height: 314.575px;
  flex-shrink: 0;
}
.single-courses .tutor-course-thumbnail {
  display: none;
}
.lm-related-course-section {
  margin-top: 60px;
}
.lm-course-title a {
  color: var(--tutor-color-primary);
}
.tutor-meta.tutor-course-details-info a {
  pointer-events: none;
}

.tutor-course-details-actions {
  display: none;
}
.lm-related-course-section .lm-course-author img {
  display: none;
}

.lm-related-course-section .lm-course-author {
  pointer-events: none;
}

.lm-related-course-section .tutor-course-loop-header-meta {
  display: none;
}

.lm-course-item-wrapper .lm-course-item .lm-course-thumbnail img {
  min-height: 314.5px;
  object-fit: inherit;
}

.button.lm-course-readmore-button.lm-course-grid-view-data {
  color: white;
  background: #c9321a;
}

.tutor-course-details-tab-info .tutor-course-content-title {
  display: none;
}

.single-courses .st-sticky-share-buttons.st-left.st-toggleable.st-show-total,
.lesson-template-default.single-lesson
  .st-sticky-share-buttons.st-left.st-toggleable.st-show-total {
  display: none;
}

@media screen and (min-width: 820px) {
  .plus-membership-only_images .plus-membership-only-imageimage {
    width: 249.5px;
  }
  .tutor-lms .elementor-heading-title.elementor-size-default,
  .tutor-lms .woocommerce {
    display: none;
  }

  .tutor-meta.tutor-course-details-info {
    display: none !important;
  }
  .tutor-course-details-instructors {
    display: none !important;
  }
}
/* styling done for plus membership masterclasses by tulasi- end*/
/* change for view cart button on cart page - by tulasi start */
.woocommerce-cart
  .woocommerce-notices-wrapper
  .woocommerce-error
  li
  a.button.wc-forward {
  padding: 13px !important;
  color: white !important;
  border-radius: 5px !important;
  font-size: 18px !important;
  position: relative;
  top: 0px;
}

/* change for view cart button on cart page - by tulasi end */

@media screen and (min-width: 700px) and (max-width: 768px) {
  .woocommerce-cart input.update_cart:disabled[disabled] {
    position: relative;
    top: 24px;
  }
  .woocommerce-cart .coupon_code_wrapper_inner #coupon_code {
    width: 38%;
  }
  .wc_points_redeem_earn_points {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 912px) {
  .coupon_code_wrapper_inner {
    display: block;
  }
  .woocommerce-cart input.update_cart:disabled[disabled] {
    top: 78px;
  }
}
.wc_points_rewards_apply_discount {
  margin-left: 0 !important;
}

@media screen and (max-width: 550px) {
  .wc_points_rewards_apply_discount {
    display: block !important;
    margin: auto !important;
  }
  .wc_points_redeem_earn_points {
    text-align: center;
  }
}

.woocommerce-cart a.button.wc-forward:hover {
  opacity: 1;
  background-color: #972615 !important;
}

.woocommerce-cart .woocommerce-error li {
  line-height: 2.7;
}

.single-product.postid-836928
  .elementor-element-4249f651.elementor-widget-divider--view-line_text,
.single-product.postid-796261
  .elementor-element-4249f651.elementor-widget-divider--view-line_text {
  display: none;
}
@media screen and (max-width: 767px) {
  .single-product .related.products .elementor-grid-mobile-2 .elementor-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.single-post div.moosend-newsletter-form > :nth-child(2) {
  display: none !important;
}

.footer_links a:hover {
  text-decoration: none !important;
}

.coupon_code_wrapper_inner {
  display: flex !important;
  justify-content: space-between !important;
}

.coupon_code_wrapper_inner input#coupon_code {
  width: 60% !important;
  height: 55px !important;
}
.coupon_code_wrapper_inner .button.apply_coupon {
  background-color: #ffffff !important;
  color: #c9321a !important;
  border: 1px solid #c9321a !important;
  border-radius: 5px !important;
  margin-left: auto;
  height: 100%;
}
.coupon_code_wrapper:nth-of-type(2) {
  margin-top: -52px !important;
  margin-bottom: 0px !important;
}
.coupon_code_wrapper .wc_points_redeem_earn_points {
  margin-bottom: 0;
}

.woocommerce-cart
  .coupon_code_wrapper
  .coupon_code_wrapper_inner
  .apply_coupon {
  color: #c9321a !important;
}
.wc_points_rewards_apply_discount {
  margin-top: 0px !important;
}

.woocommerce-cart
  .coupon_code_wrapper
  .coupon_code_wrapper_inner
  .apply_coupon:hover {
  background-color: #c9321a !important;
  color: #ffffff !important;
}
.woocommerce-cart
  .coupon_code_wrapper
  .coupon_code_wrapper_inner
  .apply_coupon {
  width: 26.5% !important;
}
.wc_points_redeem_earn_points {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #222;
  font-weight: 400;
  padding: 24px 0;
}
@media only screen and (max-width: 767px) {
  .woocommerce-cart .coupon_code_wrapper_inner #coupon_code {
    width: 73% !important;
  }
  .woocommerce-cart
    .coupon_code_wrapper
    .coupon_code_wrapper_inner
    .apply_coupon {
    width: 174px !important;
    margin-left: 0px;
    margin-top: 5px;
  }
  .coupon_code_wrapper #coupon_code {
    margin: 0px;
  }
  .coupon_code_wrapper_inner {
    flex-direction: column;
    align-items: center;
  }
  .coupon_code_wrapper_inner input#coupon_code {
    width: 80% !important;
  }
  input[type="submit"] .wc_points_rewards_apply_discount {
    padding-left: 0px;
    padding-right: 0px;
    width: 27% !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1053px) {
  .woocommerce-cart
    .coupon_code_wrapper
    .coupon_code_wrapper_inner
    .apply_coupon {
    width: 30.5% !important;
  }
}

.top_products_in_search {
  font-family: "open sans";
  font-weight: 700 !important;
  color: #972615 !important;
  font-size: 14px !important;
  border: none !important;
  margin-top: 12px;
}
.searchResultsBox {
  background-color: #ffffff !important;
  border-radius: 8px;
  border: 1px solid #e3e9ef;
  width: 404px !important;
  padding: 0px 29px 32px 29px !important;
  width: 110%;
  position: relative;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1) !important;
}
.searchResultsBox.no-search-results {
  padding: 15px 29px 15px 29px !important;
}

@media screen and (width: 540px) {
  .searchResultsBox {
    left: 11%;
  }
}
@media screen and (max-width: 300px) {
  .searchResultsBox {
    padding: 11px;
  }
}

@media screen and (min-width: 821px) and (max-width: 912px) {
  .searchResultsBox {
    left: -27%;
  }
}
.searchResultsBox a:hover {
  text-decoration: none;
}
.product-container {
  display: flex;
  justify-content: space-between;
  list-style-type: none;
}

.product-container:hover {
  text-decoration: none;
}
.product-container .product-details {
  margin-left: 15px;
  width: 249px;
  margin-left: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none !important;
}
.product-container .product-title {
  font-family: "Open Sans";
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: left;
  margin: 0;
}
.product-container .product-title:hover {
  color: rgb(219, 90, 54) !important;
}
.product-container .product-title:hover {
  text-decoration: none;
}
.product-container img {
  width: 86px;
  height: 108px;
}
.product-container .blog-search-image {
  width: 130px;
  height: 80px;
}
.product-container .product-author {
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: left;
  color: #3e3f40;
  margin: 0;
}
.searchResultsBox .see-all-search-results {
  border: none;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: center;
}

.searchResultsBox .see-all-search-results:hover {
  color: rgb(219, 90, 54) !important;
}

@media screen and (max-width: 540px) {
  .pw-blog-posts-cards .elementor-posts .elementor-post {
    flex-direction: column !important;
  }
  .pw-blog-posts-cards .elementor-posts .elementor-post__text {
    margin-top: 15px;
  }
  .search-results .single-blog {
    width: 100%;
  }
}

.woocommerce-cart .woocommerce-error .button.wc-forward {
  display: none;
}

.woocommerce-cart .checkout-button.button.alt.wc-forward,
.woocommerce-checkout #place_order,
.woocommerce-account #login .button,
.woocommerce-checkout .pwplans-container {
  border: none;
}

.searchResultsBox .top_products_in_search {
  color: var(--Gray-1, #333);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
}
.top-blogs-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 29px;
  margin-top: 32px;
}
.searchResultsBox .search-results-view-all {
  color: var(--Primary-Dark-Orange, #972615);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.final-results .result-links {
  display: inline-block;
  margin-bottom: 15px;
}

.final-results .result-links:last-child {
  margin-bottom: 0;
}
.search-results .woocommerce-loop-product__title {
  padding: 0.5em 0.5em !important;
}

.wp-logged-out-content {
  display: block;
}
.wp-logged-in-content {
  display: none;
}
.logged-in .wp-logged-out-content {
  display: none;
}
.logged-in .wp-logged-in-content {
  display: block;
}

@media screen and (max-width: 768px) {
  .elementor-element-53b6a0f a span {
    top: -46px;
    right: -16px;
  }

  #pw-mini-cart-header {
    position: relative;
    top: 7px;
    right: 0;
  }
}

@media screen and (max-width: 541px) {
  #pw-mini-cart-header {
    position: absolute;
    top: -24px;
    right: 19px;
  }
}

@media screen and (max-width: 420px) {
  .elementor-element-53b6a0f
    .elementor-widget-wrap.elementor-element-populated {
    max-width: 50px;
  }
}

@media screen and (max-width: 360px) {
  .pw-col-search-and-cart .elementor-widget-wrap.elementor-element-populated {
    padding: 10px 10px 0 10px;
  }
}

.elementor-element-22516bfe .related-posts-container,
.elementor-element-e9ccc27 .related-products-container {
  display: grid;
  grid-column-gap: var(--grid-column-gap);
  grid-row-gap: var(--grid-row-gap);
  --grid-column-gap: 30px;
  --grid-row-gap: 30px;
  align-items: stretch;
}
.elementor-element-22516bfe .related-posts-container {
  grid-template-columns: repeat(3, 1fr);
}
.elementor-element-e9ccc27 .related-products-container {
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 541px) {
  .elementor-element-22516bfe .related-posts-container,
  .elementor-element-e9ccc27 .related-products-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .masterclass-sticky-add-to-cart .custom-course-nav ul li a.active {
    font-weight: 700;
  }
  .masterclass-sticky-add-to-cart .custom-course-nav ul li a {
    font-size: 16px;
    font-weight: 600;
    padding: 8px 18px;
  }
  .masterclass-sticky-add-to-cart .cta-wrapper {
    flex-wrap: wrap;
  }
  .masterclass-sticky-add-to-cart .sticky-cart-left,
  .masterclass-sticky-add-to-cart .sticky-cart-right {
    width: 100%;
  }
  .masterclass-sticky-add-to-cart .sticky-cart-left {
    text-align: left;
  }
  .single-product .masterclass-sticky-add-to-cart .add_to_cart_button {
    font-size: 12px !important;
    font-weight: 400;
    justify-content: center;
    flex: auto;
  }
  .masterclass-sticky-add-to-cart .sticky-cart-right {
    justify-content: space-between;
  }
  .masterclass-sticky-add-to-cart .sticky-cart-left span {
    font-size: 14px !important;
  }
  .masterclass-sticky-add-to-cart .cta-wrapper {
    padding-bottom: 0;
  }

  .pw-col-search-and-cart .elementor-widget-wrap.elementor-element-populated {
    padding-bottom: 0 !important;
  }
}

.elementor-element-22516bfe .related-posts-container .related-post,
.elementor-element-e9ccc27 .related-products-container .related-post {
  flex-direction: column;
  transition-duration: 0.25s;
  overflow: hidden;
  display: flex;
  border-style: solid;
  border-width: 0px 0px 8px 0px;
  border-radius: 8px;
  box-shadow: 0px 3px 25px 0px rgba(0, 0, 0, 0.3);
  border-color: var(--e-global-color-22d175e);
}
.related-post-thumbnail img {
  width: 100%;
  height: 300px;
}

.related-post-content {
  padding: 24px 24px 24px 24px;
  width: 100%;
  display: var(--item-display, block);
  flex-direction: column;
  flex-grow: 1;
}

.related-post-content .elementor-post__title a {
  color: rgb(51, 51, 51);
  font-weight: 600;
}

.related-posts-container .readmore {
  color: #c9321a;
  font-weight: 600;
  font-size: 16px;
  display: block;
}

.related-posts-container .related-post-meta span {
  color: #414141;
  font-size: 12px;
  font-weight: 400;
}

.related-posts-container .related-post-excerpt {
  margin-bottom: 10px;
}

.related-posts-container .related-post-meta {
  margin-bottom: 13px;
}
@media screen and (max-width: 821px) {
  a.jet-mega-menu-item__link.jet-mega-menu-item__link--top-level {
    color: rgb(51, 51, 51);
    font-weight: 700;
  }
}

.related-products-container .related-post-thumbnail img {
  border-radius: 8px;
}
.related-products-container .related-post-thumbnail {
  margin-bottom: 20px;
}
.related-products-container h3 {
  font-weight: 700;
  text-align: center;
  font-size: 20px;
}
.related-products-container h3 a {
  color: rgb(51, 51, 51);
}

.related-products-container h3 a:hover {
  color: rgb(51, 51, 51);
  text-decoration: none;
}
.woocommerce #respond input#submit {
  background-color: #ec7a5c !important;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
/* Course category page design */
.tax-course-category .tutor-container {
  max-width: 1154px !important;
}

.tutor-card-footer:not(.tutor-no-border) {
  border: none !important;
  padding-top: 0 !important;
}
.tutor-course-card .tutor-course-name a,
.tutor-course-card .tutor-course-name {
  color: #000 !important;
  font-weight: 600 !important;
  font-size: 1em !important;
  text-align: center !important;
}
.tax-course-category .tutor-course-card .tutor-course-name a:hover,
.tax-course-category .tutor-course-card .tutor-btn-outline-primary:hover {
  text-decoration: none !important;
}

.tax-course-category .tutor-course-card .tutor-btn-outline-primary {
  background-color: #c9321a !important;
  border: none !important;
  padding: 12px 30px !important;
  color: #fff !important;
  border-radius: 5px;
  font-size: 16px !important;
  font-weight: bold;
  width: 81% !important;
  margin: 0 auto;
}

.tutor-card-body {
  padding: 20px 48px !important;
}
.tutor-card-footer {
  padding-bottom: 30px !important;
  padding-top: 0 !important;
}

.tutor-course-card {
  box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.4) !important;
  border: none !important;
  border-radius: 0 !important;
}
.tutor-form-select-option span,
.tutor-form-select-label {
  font-weight: 600 !important;
}
.tutor-form-control {
  border: 1px solid #a5a5a5 !important;
  border-radius: 0 !important;
}
.tutor-pagination-hints {
  display: none !important;
}
.tutor-pagination {
  border: none !important;
  justify-content: center;
}
.tutor-pagination ul.tutor-pagination-numbers {
  gap: 28px !important;
  padding-bottom: 20px !important;
}
.tutor-pagination ul.tutor-pagination-numbers .page-numbers.current {
  color: #816e99 !important;
}
.tutor-pagination ul.tutor-pagination-numbers .page-numbers:before {
  background: none !important;
}
.tutor-pagination ul.tutor-pagination-numbers .page-numbers {
  font-weight: 700 !important;
  color: #972615 !important;
}
.tutor-card-image-top {
  border-radius: 0 !important;
}
.tutor-card-footer .list-item-price del {
  font-weight: inherit !important;
}
/* Product Card size on vendor pages -start*/
.tax-wcpv_product_vendors
  .site
  .site-content
  .content-outer
  .row
  .content-area
  .products-wrapper
  .products {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 577px) and (max-width: 768px) {
  .tax-wcpv_product_vendors
    .site
    .site-content
    .content-outer
    .row
    .content-area
    .products-wrapper
    .products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 11px;
  }
}
/* Product Card size on vendor pages -End*/

/* Best sellers section on homepage - start */
.home .pw-best-seller-section .pw-best-sellers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-around;
}

/* Individual product item */
.home .pw-best-seller-section .pw-best-seller-product {
  flex: 1 1 calc(33.333% - 20px); /* Three items per row with space */
  box-sizing: border-box;
  margin-bottom: 20px;
  max-width: 200px;
}

.home .pw-best-seller-section .pw-best-seller-product img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .home .pw-best-seller-section .pw-best-sellers {
    flex-wrap: nowrap;
  }
  .home .pw-best-seller-section .pw-best-seller-product {
    flex: 1 1 calc(75% - 20px);
  }
}

@media (max-width: 768px) {
  .home .pw-best-seller-section .elementor-widget-container {
    height: unset !important;
  }
  .home .pw-best-seller-section .pw-best-sellers {
    flex-wrap: wrap;
  }
  .home .pw-best-seller-section .pw-best-seller-product {
    flex: 1 1 calc(50% - 20px); /* Two items per row on tablets */
  }
}

@media (max-width: 480px) {
  .home .pw-best-seller-section .pw-best-seller-product {
    flex: 1 1 100%; /* One item per row on mobile */
    max-width: 100%;
  }
}
/* Best sellers section on homepage - end */

/* Hide Vendor Registration Description, Average Vendor text and stars on vendors page on frontend */
.archive.tax-wcpv_product_vendors
  .woocommerce-products-header
  .term-description,
.archive.tax-wcpv_product_vendors
  .woocommerce-products-header
  .wcpv-star-rating.star-rating {
  display: none;
}

.archive.tax-wcpv_product_vendors .woocommerce-products-header small {
  display: none !important;
}

.woocommerce-cart
  .woocommerce-cart-form__contents
  .pw-cart-plus-select-product-section
  .pw-cart-plus-select-product {
  padding: 4px;
  font-size: 12px;
  background-color: #ffffff;
  color: #c9321a;
  border: 1px solid #c9321a;
}
/* CSS for vendor profile */
.tax-wcpv_product_vendors
  .site
  .site-content
  .container
  .woocommerce-products-header
  small {
  display: none !important;
}
.tax-wcpv_product_vendors
  .site
  .site-content
  .container
  .woocommerce-products-header
  .wcpv-star-rating.star-rating {
  display: none !important;
}
@media (min-width: 1024px) {
  .tax-wcpv_product_vendors .wcpv-vendor-profile {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
  }
  .tax-wcpv_product_vendors
    .site
    .site-content
    .container
    .woocommerce-products-header
    .wcpv-vendor-profile.entry-summary
    p:first-child {
    display: flex;
    justify-content: flex-start;
    width: 30%;
    margin-bottom: 0px;
  }
  .tax-wcpv_product_vendors
    .site
    .site-content
    .container
    .woocommerce-products-header
    .wcpv-vendor-profile.entry-summary
    p:nth-child(2) {
    display: none;
  }
  .tax-wcpv_product_vendors
    .site
    .site-content
    .container
    .woocommerce-products-header
    .wcpv-vendor-profile.entry-summary
    p:last-child {
    display: block;
    width: 70%;
    text-align: start;
    padding: 30px;
    border: 1px solid #21252950;
    font-size: 16px;
    padding-top: 5em;
    margin-top: 0px;
  }
  .tax-wcpv_product_vendors
    .site
    .site-content
    .container
    .woocommerce-products-header
    .woocommerce-products-header__title.page-title {
    display: block;
    position: absolute;
    left: 378px;
    font-weight: 700;
    top: 30px;
    line-height: unset;
  }
  .tax-wcpv_product_vendors
    .site
    .site-content
    .container
    .woocommerce-products-header
    .wcpv-vendor-profile.entry-summary
    p:first-child
    > img {
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.4);
  }
}

@media (max-width: 992px) {
  .tax-wcpv_product_vendors
    .site
    .site-content
    .container
    .woocommerce-products-header
    .wcpv-star-rating.star-rating {
    margin: auto;
    margin-bottom: 15px;
  }
  .tax-wcpv_product_vendors
    .site
    .site-content
    .container
    .woocommerce-products-header
    .wcpv-vendor-profile.entry-summary
    p:last-child {
    padding: 0 10px;
  }
}
/* Social share icon */
@media screen and (max-width: 767px) {
  #st-2 {
    width: 100% !important;
  }
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 0%;
  display: none;
}

.woocommerce-account .woocommerce-MyAccount-content {
  width: 100%;
  float: left;
}

.woocommerce-account
  .woocommerce
  .shop_table
  .woocommerce-orders-table__cell-order-number {
  padding-left: 20px;
}

/*changes starts for removing responsive-pro */

.woocommerce .woocommerce-breadcrumb {
  display: none;
}

.woocommerce-cart .trust_score p {
  margin-top: 0px;
}

.woocommerce-cart .cart-icons-tbl .description p {
  font-size: 18px;
}

#scroll {
  bottom: 4em !important;
}
.woocommerce-order-received .site-content {
  flex-grow: 1;
  padding: 28px 0px !important;
}

.woocommerce-order-received .site.hfeed{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/*changes end for removing responsive-pro */

/* remove registor button in login page start*/

.elementor-form-fields-wrapper .elementor-col-100 .elementor-login-separator {
  display: none;
}

.elementor-form-fields-wrapper .elementor-col-100 .elementor-register {
  display: none;
}

#login-form-new .elementor-column:last-child {
  height: 0px;
  margin-bottom: 0px;
}

/* remove registor button in login page end*/
.woocommerce-cart
  .woocommerce
  .cart_container
  .woocommerce-notices-wrapper
  .woocommerce-error {
  border: 3px solid rgb(201 50 25);
  color: rgb(201 50 25);
}

/* remove order again button in view order page start */

.woocommerce-view-order .woocommerce-MyAccount-content .order-again {
  display: none;
}

/* remove order again button in view order page end */
/*Border color is changing for messages on the Cart page -start*/
.woocommerce-message:focus-visible,
.woocommerce-error:focus-visible {
  outline: none;
}
/*Border color is changing for messages on the Cart page -end*/

/* start for cart page */
.woocommerce-cart .footer-layout.copyright {
  position: relative !important;
  right: 0em !important;
}
.footer-bar-layout-vertical .copyright {
  position: relative !important;
  right: 0em !important;
}
@media screen and (max-width: 600px) {
  .woocommerce-cart .woocommerce .row {
    margin-left: 0px;
    margin-right: 0px;
  }

  .woocommerce-cart .site #masthead .container .row {
    padding-left: 32% !important;
  }

  .woocommerce-cart .site-branding-wrapper {
    padding: 0px;
  }
  .woocommerce-cart .footer-bar {
    padding: 0px;
  }
  .woocommerce-cart .footer-bar .content-outer .row {
    margin-left: 0px;
    margin-bottom: 0px;
  }
}
/* end for cart page */

/* coupon code button alignment start */

.coupon_code_wrapper_inner {
  align-items: center;
}

.woocommerce-cart
  .coupon_code_wrapper
  .coupon_code_wrapper_inner
  .apply_coupon {
  height: 55px;
}

/* coupon code button alignment end */

/* download page alignment in mobile devices start */

@media only screen and (max-width: 768px) {
  .woocommerce-checkout .woocommerce table.shop_table_responsive tr td::before,
  .woocommerce-checkout
    .woocommerce-page
    table.shop_table_responsive
    tr
    td::before {
    content: none !important;
    font-weight: normal !important;
    float: none !important;
  }

  .woocommerce-checkout .woocommerce table.shop_table_responsive tr td,
  .woocommerce-checkout .woocommerce-page table.shop_table_responsive tr td {
    text-align: left !important;
  }

  .woocommerce-checkout .woocommerce-order-downloads table th {
    border: none;
  }
}

/* download page alignment in mobile devices end  */

/*Single page - Freebie category - upsell section -start*/
.product-content h2.woocommerce-loop-product__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 23.4px;
  margin-bottom: 0;
}
.product-content h2.woocommerce-loop-product__title a {
  color: #000;
}
.pw-free-deal-product-upsell .product-content {
  padding: 0 20px 20px 20px;
}
.pw-free-deal-product-upsell .product-image img {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}
.pw-free-deal-product-upsell li {
  box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.4) !important;
}
.pw-free-deal-product-upsell a.add_to_cart_button.view_cat_btn {
  font-size: 16px;
  font-weight: 700;
  padding: 12px 30px;
  background-color: #c9321a;
  color: #fff;
  border-radius: 5px;
}
.product-content .view-deal-button {
  margin: 24px 0 18px 0;
}
.product-content .price ins {
  color: #c9321a;
  font-size: 20px;
  text-decoration: none;
  vertical-align: middle;
}
.product-content h2.woocommerce-loop-product__title {
  min-height: 10ex;
}
.pw-free-deal-product-upsell .product-content del {
  font-size: 16px;
  font-weight: 400;
}
.pw-free-deal-product-upsell {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
@media (max-width: 1024px) {
  .pw-free-deal-product-upsell {
    grid-template-columns: repeat(3, 1fr); /* 3 columns on tablet */
  }
}

@media (max-width: 768px) {
  .pw-free-deal-product-upsell {
    grid-template-columns: repeat(1, 1fr); /* 2 columns on mobile */
  }
  .coupon {
    justify-content: center;
    row-gap: 20px;
  }
  #coupon_code {
    width: 100%;
  }
  .woocommerce-add-payment-method .woocommerce {
    width: auto !important;
  }
  .woocommerce-add-payment-method .woocommerce #payment #place_order,
  .woocommerce-page #payment #place_order {
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .pw-free-deal-product-upsell {
    grid-template-columns: 1fr; /* 1 column on very small screens */
  }
}
/*Single page - Freebie category - upsell section -end*/

/* make moosend form responsive in mobile device start*/

@media screen and (max-width: 767px) {
  .formb833b13833f451a3a3873defeffeb67c {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* make moosend form responsive in mobile device end*/

/* customise price text in masterclass product start */

.single-product .tooltip_img {
  text-align: center;
  color: #636363;
  font: inherit;
  font-size: 16px;
  margin-top: 10px;
}

/* customise price text in masterclass product end */

/* checkout issue start */

.woocommerce-checkout .woocommerce #customer_details.col2-set .col-1 {
  width: 100% !important;
}

.woocommerce-page.woocommerce-checkout
  .woocommerce
  form
  #customer_details.col2-set {
  width: 45% !important;
  float: left !important;
}

@media screen and (max-width: 600px) {
  .woocommerce-page.woocommerce-checkout
    .woocommerce
    form
    #customer_details.col2-set {
    width: 100% !important;
    float: left !important;
  }
}

.rael-woo-checkout .woocommerce #customer_details.col2-set .col-2 {
  width: 100% !important;
  margin-top: 10px;
}

.woocommerce-cart .woocommerce-notices-wrapper {
  position: relative;
  right: 11px;
  padding-right: 7px;
}

.rael-woo-checkout .woocommerce .woocommerce-info {
  background-color: #f6f5f8;
}
/* checkout issue end */

div#lm-course-archive-data.lm-grid-view .lm-course-meta:after {
  content: none;
}

div#lm-course-archive-data.lm-grid-view .lm-course-meta:before {
  content: none;
}

div#lm-course-archive-data.lm-grid-view .lm-course-meta {
  display: flex;
  margin-bottom: 85px;
}

div#lm-course-archive-data.lm-grid-view
  .lm-course-item-wrapper
  h2.lm-course-title {
  height: 95px;
  margin: 0px;
}

div#lm-course-archive-data.lm-grid-view .lm-course-meta:nth-of-type(4) {
  display: none;
}

.lm-related-course-section .lm-course-item {
  position: relative;
}

div#lm-course-archive-data.lm-grid-view
  .lm-course-item-wrapper
  .lm-course-item
  .lm-course-thumbnail {
  position: unset;
  background-color: #fff;
  margin-bottom: 10px;
}

.lm-course-item-wrapper
  .lm-course-item
  .lm-course-thumbnail
  .lm-course-grid-view-data {
  opacity: 1;
  visibility: inherit;
  top: 88%;
}

div#lm-course-archive-data.lm-grid-view
  .lm-course-item
  .lm-course-content
  .lm-course-meta
  > div.lm-course-price
  ins {
  font-size: 20px !important;
  color: #c9321a !important;
  text-decoration: none;
  display: inline !important;
  vertical-align: bottom;
}

div#lm-course-archive-data.lm-grid-view
  .lm-course-item-wrapper
  .lm-course-item
  .lm-course-thumbnail
  img {
  transform: none !important; /* Reset the transform property */
  transition: none !important; /* Disable the zoom animation */
}

div#lm-course-archive-data.lm-grid-view
  .lm-course-item-wrapper
  .lm-course-item
  .lm-course-thumbnail
  img:hover {
  transform: none !important; /* Ensure no scaling happens on hover */
}

.lm-course-item-wrapper
  .lm-course-item
  .lm-course-thumbnail
  .lm-course-grid-view-data {
  transform: none !important; /* Reset the transform property */
  transition: none !important; /* Disable the zoom animation */
  border-radius: 5px;
  border-radius: 5px;
  font-size: 16px !important;
  padding-top: 10px;
  height: 50px;
  font-weight: 700;
  background-color: #c9321a !important;
  max-width: 150px;
  color: #ffffff !important;
  text-transform: capitalize;
}

.lm-course-item-wrapper
  .lm-course-item
  .lm-course-thumbnail
  .lm-course-grid-view-data:hover {
  transform: none !important; /* Ensure no scaling happens on hover */
  text-decoration: none;
  background-color: #972615 !important;
}

div#lm-course-archive-data.lm-grid-view
  .lm-course-item
  .lm-course-content
  .lm-course-meta
  > div.lm-course-price
  p.price
  del {
  margin-right: 6px;
  font-size: 100%;
}

.lm-course-item-wrapper .lm-course-item .lm-course-thumbnail img {
  max-height: 100%;
}

.single-courses .lm-course-content .lm-course-meta .lm-course-students {
  display: none !important;
}

.single-courses .lm-related-course-section .lm-course-author {
  display: none !important;
}
/*for home page*/
@media screen and (max-width: 1440px) {
  .industry-icons-section .e-con-inner {
    padding: 77px 0px;
  }
  .industry-icons-section
    .industry-icons-section-heading
    .elementor-heading-title {
    font-size: 32px !important;
    line-height: 32px;
  }
  .industry-icons-section-des p {
    font-size: 16px;
    line-height: 32px;
  }
  .industry-icons-section .e-con-inner {
    width: 65%;
  }
  .hover-area .profile-title {
    font-size: 18px !important;
  }
  .hover-area .profile-designation {
    font-size: 12px !important;
  }
  .real-skills-section img {
    max-width: 100%;
    height: 320px;
  }
  .real-skills-section .e-con-inner {
    width: 80%;
  }
  .pw-master-craft-section .pw-master-your-craft-heading h2 {
    font-size: 32px !important;
  }
}
/*---end---*/
/*Materclass tempalte css -start*/
.class-materials-container {
  margin-bottom: 30px;
}
.class-materials-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.class-material-item {
  font-size: 14px;
  flex: 1 1 calc(50% - 20px); /* 2-column layout */
  box-sizing: border-box;
  background-color: #f2f2f2;
  padding: 20px;
  text-align: center;
  border-radius: 5px;
}

.class-material-item strong {
  font-weight: bold;
}

@media (max-width: 768px) {
  .class-material-item {
    flex: 1 1 100%;
  }
}
.class-materials-container {
  border-radius: 5px;
  max-width: 800px;
}

.class-materials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.single-product .plus-prod-btn.plus-masterclass-larging-btn {
  width: 100%;
  border-radius: 6px !important;
}

/* Default: Each item takes 50% (2 columns) */
.class-material-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  line-height: 19px;
  padding: 16px 20px;
  background: #f8f8f8;
  border-radius: 6px;
  flex: 1 1 calc(50% - 15px);
  font-weight: 400;
}
.material-name {
  text-align: left;
}

/* 3 Items: Last item takes half width (3/4 layout) */
.class-materials-grid .full-width {
  flex: 1 1 calc(75% - 15px);
}

/* Responsive */
@media (max-width: 600px) {
  .class-material-item {
    flex: 1 1 100%;
  }
}

.material-icon {
  width: 12px;
  height: 16px !important;
}
.folder-icon {
  width: 21px !important;
}

/*Lesson Accordion*/
.lesson-list-container {
  max-width: 600px;
}

.lesson-list {
  list-style: none;
  padding: 0;
}

.lesson-item {
  display: flex;
  align-items: start;
  column-gap: 6px;
  padding: 5px;
  font-size: 16px;
  font-weight: 400;
  line-height: 34px;
  color: #333333;
}
.lesson-list,
.lesson-list-small {
  margin-left: 0;
}
span.lesson-bullet-marker {
  font-size: 20px;
}

.lesson-hidden {
  display: none;
}

.show-more-link {
  display: block;
  margin: 10px 0;
  text-align: center;
  font-weight: bold;
  color: #0073aa;
  text-decoration: none;
}

.show-more-link:hover {
  color: #005f8d;
}
.show-more-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; /* Full container width */
  font-size: 1em;
  font-weight: bold;
  color: #0073aa;
  text-decoration: none;
  position: relative;
}

.show-more-link::before,
.show-more-link::after {
  content: "---------------------------";
  flex-grow: 1; /* Allows dashes to fill available space */
  text-align: center;
  color: #e6e6e6; /* Match dash color with text */
  font-weight: normal;
}

.show-more-link:hover {
  color: #005f8d;
}
.show-more-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 1em;
  font-weight: bold;
  color: #0073aa;
  text-decoration: none;
  position: relative;
  padding: 10px 0;
  white-space: nowrap;
}

.show-more-link::before,
.show-more-link::after {
  content: "";
  flex-grow: 1; /* Expands to fill available space */
  height: 2px; /* Line thickness */
}

.show-more-link span {
  padding: 0 15px; /* Space between text and dashes */
  position: relative;
}

.show-more-link:hover {
  color: #005f8d;
}
.show-more-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #c9321a;
  text-decoration: none;
  position: relative;
  padding: 7px 0;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  white-space: nowrap;
}

.show-more-link::before,
.show-more-link::after {
  content: "";
  flex-grow: 1;
  border-top: 1px dashed #e6e6e6; /* Dashed line */
}

.show-more-link span {
  padding: 0 15px; /* Space between text and dashes */
  position: relative;
  background: #fff; /* Match background color */
}

.show-more-link:hover {
  color: #005f8d;
}
.show-more-link:hover,
.show-more-link:focus {
  color: #c9321a;
}
.show-more-link {
  margin-top: -20px;
  background-color: #fff;
}

.lesson-list.expanded + .show-more-link {
  margin-top: 0;
}
.hide-shadow {
  box-shadow: 0px 0 0 44px rgb(255 255 255 / 43%);
}
.masterclass-product-price p.price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.masterclass-product-price del {
  font-size: 20px !important;
  line-height: 32px !important;
  font-weight: 600 !important;
}
.masterclass-product-price ins {
  font-size: 52px;
  line-height: 58px;
  text-decoration: none;
}
.quick-summary-list li {
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 32px;
  font-family: Open Sans;
}
.wc-star-rating {
  display: inline-flex;
  align-items: center;
  font-size: 22px; /* Adjust star size */
  gap: 3px; /* Adds spacing between stars */
}

.star {
  width: 24px;
  height: 24px;
  display: inline-block;
  background: transparent;
  position: relative;
}
.masterclass-wc-product-reviews {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.masterclass-wc-star-rating .star {
  margin-bottom: 11px;
}
.masterclass-wc-product-reviews .wc-review-text {
  font-size: 20px;
  line-height: 27px;
  font-weight: 600;
}
.wc-product-comments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.wc-single-comment {
  padding: 20px 30px;
  border-radius: 5px;
  border: 1px solid #b3b3b3;
}

.wc-comment-content {
  font-style: italic;
  color: #333;
}

.wc-comment-author {
  font-weight: bold;
  color: #555;
  margin-top: 5px;
}
.wc-product-comments-slider {
  margin-top: 20px;
}

.wc-product-comments-slider {
  margin-top: 20px;
}

/* Wrapper for each slide */
.wc-comment-slide {
  display: flex;
  flex-wrap: wrap;
  gap: 40px; /* Ensuring both row & column gap */
  justify-content: center;
}
.pw-masterclass_sticky_container {
  display: flex;
  flex-direction: column;
  width: 1140px;
}
.pw-masterclass_cta-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto 0;
  padding-bottom: 28px;
  border-bottom: 1px solid #dbdbdb;
}
nav.custom-course-nav {
  padding: 6px 0;
}
p.stars {
  font-size: 24px !important;
}
.stars a {
  color: #fdbf03;
}
.stars a:focus {
  color: #fdbf03;
}
.stars a:hover {
  color: #fdbf03;
}
.product_cat-new-masterclass form#commentform {
  width: 60%;
}

.custom-rating {
  display: flex;
  align-items: center;
  font-size: 16px;
}

#reviews {
  display: flex;
  flex-direction: column;
}
.woocommerce-noreviews {
  display: none;
}
a.product-title {
  color: #000;
  font-weight: bold;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}
a.product-title:hover {
  color: #000;
}
.slider-card {
  box-shadow: 0px 2.68px 8.49px 0px #c3c3c3;
  border-radius: 6px;
}
.product-details {
  padding: 10px;
}
.slider-nav-round .slider-nav::after,
.slider-nav-square .slider-nav::after {
  width: 1rem !important;
  height: 1rem !important;
}
.slider-nav::before {
  width: 2rem !important;
  height: 2rem !important;
}
.slider-nav.slider-nav-next {
  right: -30px !important;
}
.masterclass-prev {
  left: -10px !important;
}
.single-product .masterclass-sticky-add-to-cart {
  background-color: #fff;
  color: #333;
  box-shadow: 0px 4px 4px 0px #00000040;
  padding-bottom: 0;
}
.masterclass-sticky-add-to-cart .sticky-cart-left span {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4em;
  max-width: 95%;
}
.single-product
  .masterclass-sticky-add-to-cart
  .sticky-cart-right
  .sticky_orig {
  color: #c9321a !important;
  border: 1px solid #c9321a !important;
  background-color: transparent !important;
}
nav.custom-course-nav {
  padding: 10.5px 0 6px 0;
  max-width: 1140px;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  align-items: center;
  margin: 0 auto;
}
.custom-course-nav ul li a {
  text-decoration: none;
  padding: 8px 12px;
  font-weight: 600;
  color: #333;
  border-radius: 5px;
  transition: background-color 0.3s, border-bottom 0.3s;
  font-size: 18px;
  line-height: 100%;
  position: relative;
}

.plus-masterclass-categories a {
  color: #000000;
  font-weight: 400;
}
.single-product .plus-masterclass-btn {
  padding: 18px !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 22px !important;
}
/* Marterclass template css -end*/
.masterclass-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slider-container {
  display: flex;
  gap: 15px;
  padding: 0;
  list-style: none;
  transition: transform 0.3s ease-in-out;
}

.slider-card {
  flex: 1 0 calc(100% / 4 - 15px); /* Default: 4 items per row */
  box-sizing: border-box;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  padding: 10px;
}

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

.product-title {
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin-top: 8px;
  color: #333;
  text-decoration: none;
}

.price {
  font-size: 14px;
  color: #666;
}

/* Navigation Buttons */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  z-index: 10;
}

.slider-nav-prev {
  left: -20px;
}
.slider-nav-next {
  right: -20px;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .slider-card {
    flex: 1 0 calc(100% / 3 - 15px); /* 3 items per row */
  }
}

@media (max-width: 768px) {
  .slider-card {
    flex: 1 0 calc(100% / 2 - 15px); /* 2 items per row */
  }
}

@media (max-width: 480px) {
  .slider-card {
    flex: 1 0 100%; /* 1 item per row */
  }
  .reviews-static .review {
    /* min-width: 100% !important; */
    max-width: 100% !important;
  }
  .reviews-static {
    flex-direction: column;
  }
  .wc-product-reviews button.slick-prev,
  .wc-product-reviews button.slick-next {
    display: none !important;
  }
}

@media (max-width: 380px) {
  .single-product .plus-masterclass-btn {
    font-size: 16px !important;
    padding: 12px 18px !important;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .masterclass-sticky-add-to-cart .sticky-cart-right {
    width: 80% !important;
  }
  .single-product .masterclass-sticky-add-to-cart {
    padding: 0 0 0 1em;
  }
  .reviews-static .review {
    max-width: 45% !important;
  }
  .reviews-static {
    justify-content: flex-start !important;
  }
  .wc-product-reviews button.slick-prev,
  .wc-product-reviews button.slick-next {
    display: none !important;
  }
  .class-material-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    line-height: 19px;
    padding: 20px 13px;
    background: #f8f8f8;
    border-radius: 6px;
    flex: 1 1 calc(50% - 15px);
    font-weight: 400;
    gap: 13px;
  }
  .single-product .plus-prod-btn {
    width: 100%;
  }

  .masterclass-sticky-add-to-cart .sticky-cart-left {
    width: 100%;
  }

  .single-product .masterclass-sticky-add-to-cart .add_to_cart_button {
    font-weight: 600;
    font-size: 16px !important;
    line-height: 22px;
    text-align: center;
    vertical-align: middle;
    font-family: Open Sans;
    padding: 18px;
  }

  .rating-review-count {
    font-size: 16px !important;
    font-family: Open Sans;
  }

  .masterclass-sticky-add-to-cart .sticky-cart-left span {
    font-size: 24px;
  }
}
.custom-course-nav ul li a.active {
  border-bottom: 3px solid #c9321a;
  border-radius: 0;
}
#plus-masterclass-reviews
  .woocommerce-Reviews
  #review_form
  .form-submit
  #submit {
  font-size: 18px !important;
  font-weight: 600;
  letter-spacing: 0;
  padding: 18px;
  background-color: #c9321a !important;
}
#plus-masterclass-reviews
  .woocommerce-Reviews
  #review_form
  .form-submit
  #submit:hover {
  background-color: #972615 !important;
}
.woocommerce #plus-masterclass-reviews #reviews #comment,
.woocommerce-page #reviews #comment {
  height: 90px;
}
#plus-masterclass-reviews p.comment-form-cookies-consent {
  display: flex;
  align-items: center;
  column-gap: 6px;
}
.lesson-list {
  mask-image: linear-gradient(#ffffff, #ffffff, rgba(255, 255, 255, 0));
  transition: -webkit-mask-image 0.3s ease-in-out;
}

.lesson-list.expanded {
  mask-image: none;
}
.instructor-details-container {
  display: flex;
  align-items: center;
  gap: 30px;
}
.instructor-image img {
  max-width: 200px;
  border-radius: 50%;
}
.instructor-info {
  max-width: 80%;
}
.instructor-link {
  display: inline-block;
  margin-top: 6px;
  color: #c9321a;
  font-weight: 600;
  text-decoration: none;
}
.instructor-link:hover {
  color: #c9321a;
}
.instructor-above-heading {
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
  margin: 0;
  letter-spacing: 0.2em;
}
.instructor-name {
  font-size: 24px;
  font-weight: 700;
  line-height: 58px;
  margin: 0;
}
.instructor-bio {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
}
a.instructor-link:visited {
  color: #c9321a;
}
/*current product rating- start*/
.custom-rating {
  display: flex;
  align-items: center;
  font-size: 30px;
  gap: 3px;
}

.custom-star {
  width: 20px;
  height: 20px;
}

.rating-review-count {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -2.2%;
  font-family: Open Sans;
  color: #333333;
}

.review .review-author {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -2.2%;
  font-family: Open Sans;
  color: #333333;
}

.review .review-date {
  font-weight: 300;
  font-style: Light;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -2.2%;
  font-family: Open Sans;
}

.review .review-text p {
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 100%;
  color: #333333;
  font-family: Open Sans;
}

.woocommerce p.stars a::before {
  font-size: 20px;
}
.woocommerce p.stars a {
  height: 0.7em;
  width: 0.7em;
}
p.comment-form-cookies-consent {
  margin-bottom: 30px !important;
}
.rating-text {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-left: 8px;
}

.total-ratings-reviews {
  font-size: 14px;
  color: #333;
  margin-left: 5px;
}

#review_form .comment-notes {
  font-weight: 400;
  font-size: 16px !important;
  line-height: 32px;
  letter-spacing: 0%;
  vertical-align: middle;
  font-family: Open Sans;
  color: #333333;
}
/* current product rating - end*/
/*Masterclass Reviews slider -start*/
#masterclass-product-reviews .wc-product-reviews {
  margin-top: 20px;
}
#masterclass-product-reviews .review {
  background: #fff;
  padding: 24px;
  border: 1px solid #dbdbdb;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #333;
}
#masterclass-product-reviews .review-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 16px;
}
#masterclass-product-reviews .wc-product-reviews {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
#masterclass-product-reviews .review-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
#masterclass-product-reviews .review-meta {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
#masterclass-product-reviews .review-author {
  font-weight: 600;
  color: #333;
}
#masterclass-product-reviews .review-date {
  color: #333;
  font-weight: 300;
  font-size: 14px;
  padding-top: 5px;
}
#masterclass-product-reviews .review-rating {
  margin: 5px 0;
  display: flex;
  gap: 3px;
}
#masterclass-product-reviews .star-icon {
  width: 20px;
  height: 20px;
}
#masterclass-product-reviews .review-text {
  font-size: 16px;
  flex-grow: 1;
}
#masterclass-product-reviews .review-text p {
  color: #333;
}
#masterclass-product-reviews .reviews-static {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#masterclass-product-reviews .reviews-static .review {
  flex: 1;
  min-width: 30%;
  max-width: 30%;
}
/* Arrow image */
#masterclass-product-reviews .custom-arrow img {
  width: auto; /* Adjust arrow size */
  height: auto;
}

#masterclass-product-reviews .slick-slider .custom-arrow {
  top: 40%;
}
/* Positioning */
#masterclass-product-reviews .slick-prev {
  left: -50px; /* Adjust left arrow position */
}

#masterclass-product-reviews .slick-next {
  right: -50px; /* Adjust right arrow position */
}

/* Rotate next arrow */
#masterclass-product-reviews .slick-next img {
  transform: rotate(180deg);
}
#masterclass-product-reviews .slick-prev:before,
.slick-next:before {
  font-size: 14px !important;
}
#masterclass-product-reviews button.custom-arrow.slick-arrow {
  border-radius: 50%;
}

#masterclass-product-reviews #reviews ol.commentlist {
  display: none;
}
/* Normal dots */
#masterclass-product-reviews .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 5px;
}

/* Default dot color */
#masterclass-product-reviews .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d9d9d9;
  border: none;
  font-size: 0;
  transition: background-color 0.3s ease-in-out;
}

/* Active dot color */
#masterclass-product-reviews .slick-dots li.slick-active button {
  background-color: #c9321a;
}

/* Adjust dots positioning */
#masterclass-product-reviews .slick-dots {
  bottom: -30px; /* Adjust as needed */
}

/* Ensure dots have correct spacing */
#masterclass-product-reviews .slick-dots li {
  display: inline-block;
}
#masterclass-product-reviews
  .slick-dotted
  .slick-dots
  li.slick-active
  button:before,
#masterclass-product-reviews .slick-dotted .slick-dots li button:before {
  opacity: 0;
}
#masterclass-product-reviews .slick-dotted .slick-dots li button:before {
  width: 10px;
  height: 10px;
}
#masterclass-product-reviews .slick-dotted.slick-slider {
  padding-bottom: 80px !important;
  border-bottom: 1px solid #dbdbdb;
}
#masterclass-product-reviews .slick-dotted .slick-dots {
  bottom: 50px;
}
#masterclass-product-reviews .custom-arrow {
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  box-shadow: 0px 2.84px 9.01px 0px #c3c3c3;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

#masterclass-product-reviews .slick-slider {
  display: block !important;
  width: 100% !important;
}

#masterclass-product-reviews .slick-prev {
  left: -50px;
}
#masterclass-product-reviews .slick-next {
  right: -50px;
}

#masterclass-product-reviews .slick-dots {
  bottom: -30px;
}
#masterclass-product-reviews .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d9d9d9;
  border: none;
}
#masterclass-product-reviews .slick-dots li.slick-active button {
  background-color: #c9321a;
}

#masterclass-product-reviews .slick-dotted.slick-slider {
  padding-bottom: 80px !important;
  border-bottom: 1px solid #dbdbdb;
}
#masterclass-product-reviews .slick-prev:before {
  content: "";
}
#masterclass-product-reviews .slick-next:before {
  content: "";
}
#plus-masterclass-reviews ol.commentlist {
  display: none;
}
/*masterclass reviews slider - end*/
/*Sticky navigation menu -start*/
.masterclass-sticky-add-to-cart .custom-course-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 15px;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 10px;
}
.masterclass-sticky-add-to-cart .custom-course-nav ul li {
  display: inline;
}
.masterclass-sticky-add-to-cart .custom-course-nav ul li a {
  text-decoration: none;
  padding: 6px 18px;
  font-weight: 600;
  color: #333;
  border-radius: 5px;
  transition: background-color 0.3s;
  font-size: 16px;
  line-height: 100%;
}

.masterclass-sticky-add-to-cart .custom-course-nav li {
  padding-bottom: 5px;
  transition: border-bottom 0.3s ease-in-out;
}

.masterclass-sticky-add-to-cart .custom-course-nav li.active {
  border-bottom: 3px solid red;
}
.masterclass-sticky-add-to-cart .custom-course-nav ul li a.active {
  border-bottom: 4px solid #c9321a;
  border-radius: 0;
  font-weight: 700;
}
/*sticky navigation menu -end*/
.single-product .product_cat-new-masterclass .confirm-membership {
  cursor: pointer;
  color: #c9321a;
  font-weight: 600;
}
#new-masterclass-product-price p {
  margin-top: 0;
}

.product-type-variable .plus-prod-btn.ajax_add_to_cart.add_to_cart_button {
  display: none;
}

#variable_block .single_add_to_cart_button {
  background-color: #c9321a;
}
.tutor-wrap {
  padding-top: 40px;
}

.single-product .single_variation_wrap .woocommerce-variation {
  display: none !important;
}
/* Thank you page*/
.woocommerce-order-received .woocommerce-order p {
  margin: 0;
  text-align: left;
  width: auto;
}
.woocommerce-order-received .page .post-title {
  font-weight: 700;
  text-transform: none;
  font-size: 40px;
}
.woocommerce-order-received .woocommerce-order-details-heading {
  line-height: unset !important;
  margin-bottom: 12px;
}
p.thankyou-order-received-msg {
  font-weight: 400;
}
.woocommerce-cart-form .large-centered .large-4 {
  padding-right: 0;
}

/* Tutor LMS*/

/*Lesson Page*/

/* Thankyou page responsive start */
/* for tablet */
@media (max-width: 1024px) and (min-width: 768px) {
  .woocommerce-order-received .page .post-title {
    font-weight: 700;
    text-transform: none;
    font-size: 32px;
    color: #333333;
  }
  .woocommerce-order-received .woocommerce-order p {
    margin-left: 0px !important;
  }
  .woocommerce-checkout .woocommerce {
    padding: 0px;
  }
}

.tutor-course-single-content-wrapper
  #tutor-single-entry-content
  .tutor-course-topic-single-footer {
  top: 40%;
}

.woocommerce-cart .coupon {
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.woocommerce-cart .coupon .wc_points_redeem_earn_points {
  justify-content: flex-start;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  font-family: Open Sans;
  width: fit-content;
  gap: 12px;
  color: #6d6d6d;
  padding: 0px 0px;
}

.woocommerce-cart
  .coupon
  .wc_points_redeem_earn_points
  .wc_points_rewards_apply_discount {
  padding: 5px 10px !important;
  font-weight: 600;
  font-size: 14px !important;
  line-height: 22px;
  text-align: center;
  font-family: Open Sans;
}

.woocommerce-cart .coupon .cart-apply-coupon-discount-wrapper {
  display: flex;
}

.woocommerce-cart .coupon p {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  font-family: Open Sans;
  color: #6d6d6d;
  margin-top: 0px;
  margin-bottom: 0px;
}

#coupon_code {
  width: 54%;
  height: 2.25rem !important;
  padding: 10px 33px 10px 12px;
  font-family: Open Sans;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  vertical-align: middle;
  color: #8d8d8d !important;
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}
/* 3 */
.page.woocommerce-cart .woocommerce .coupon button.button {
  background-color: #fff !important;
  color: #c9321a !important;
  border: 1px solid #c9321a;
  border-top-right-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
  outline: none;
  font-weight: 600 !important;
  font-size: 14px !important;
  line-height: 22px !important;
  text-align: center;
  vertical-align: middle;
  font-family: Open Sans;
}
.page.woocommerce-cart .woocommerce .coupon button.button:hover {
  background-color: #972615 !important;
  color: #fff !important;
}

.page.woocommerce-cart .cart-buttons .continue_shop_btn .checkout-button:hover {
  background-color: #972615 !important;
  color: #fff !important;
}
.woocommerce-cart .woocommerce table.shop_table th,
.woocommerce-cart .woocommerce-page table.shop_table th {
  font-weight: 700;
  line-height: 24px;
  padding: 12px 24px;
  font-size: 16px !important;
}

@media screen and (min-width: 760px) and (max-width: 1200px) {
  .woocommerce-cart .cart_container {
    padding: 0 0 0 20px;
  }
  .woocommerce-cart-form .large-centered .large-8 {
    padding-right: 0px;
  }
  .coupon {
    padding: 0px 0px;
  }
  .woocommerce-cart .coupon .wc_points_redeem_earn_points {
    padding: 0px 0px;
  }

  .woocommerce-cart .cart_left_wrapper {
    margin-bottom: 20px;
  }

  .woocommerce-cart-form .large-centered .large-4 {
    padding-left: 0px;
    padding-left: 0px;
    display: flex;
    flex-direction: row-reverse;
    gap: 24px;
  }

  .woocommerce-cart .cart_right_wrapper {
    width: 100%;
    margin-top: 24px !important;
  }

  .woocommerce-cart .cart-trustpilot-wrapper {
    width: 100%;
  }

  .woocommerce .cart-collaterals .cart_totals tr.order-total th {
    font-size: 20px;
    line-height: 20px !important;
    font-family: Open Sans;
  }

  .woocommerce-page .cart-collaterals span.woocommerce-Price-amount.amount {
    font-size: 20px;
    line-height: 20px !important;
    font-weight: 700;
    font-family: Open Sans;
    color: #333333;
  }

  .woocommerce-cart .coupon .cart-apply-coupon-discount-wrapper {
    padding-top: 8px;
  }
}

/* ========== CART MOBILE STYLES ========== */

@media screen and (max-width: 748px) {
  .woocommerce-cart .woocommerce .row {
    flex-direction: column-reverse;
  }

  .woocommerce-cart .cart_container {
    padding: 0px 10px;
  }

  .woocommerce-cart-form .large-centered .large-8 {
    padding-right: 0px;
  }

  .woocommerce-cart .coupon {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .woocommerce-cart .coupon .wc_points_redeem_earn_points {
    flex-direction: row;
    padding: 0px 0px;
  }

  .woocommerce-cart .coupon p {
    margin: 0px 0px;
  }

  .coupon {
    padding: 0px 0px;
    margin-top: 20px !important;
  }

  .woocommerce table.shop_table_responsive tr td::before,
  .woocommerce-page table.shop_table_responsive tr td::before {
    content: none;
  }

  .woocommerce-cart-form__cart-item td .cart-product-card {
    display: flex;
    gap: 20px;
  }

  .woocommerce-cart-form__cart-item
    td
    .cart-product-card
    .cart-product-image
    img {
    width: 110px;
    height: 100px;
  }

  .woocommerce-cart-form__cart-item
    td
    .cart-product-card
    .cart-product-details
    .cart-product-name,
  .woocommerce-cart-form__cart-item
    td
    .cart-product-card
    .cart-product-details
    .cart-product-name
    a {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    font-family: Open Sans;
    color: #3a3a3a;
  }

  .woocommerce-cart-form__cart-item
    td
    .cart-product-card
    .cart-product-details
    .cart-product-price {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    font-family: Open Sans;
    color: #3a3a3a;
    margin-top: 10px;
  }
  .woocommerce-cart-form__cart-item
    td
    .cart-product-card
    .cart-product-details
    .cart-product-price
    .woocommerce-Price-amount {
    font-weight: 600;
  }

  .woocommerce-cart-form__cart-item
    td
    .cart-product-card
    .cart-product-details
    .cart-product-qty-delete {
    display: flex;
    justify-content: space-between;
  }

  .woocommerce-cart-form__cart-item
    td
    .cart-product-card
    .cart-product-details
    .cart-product-qty-delete
    .cart-product-qty {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    font-family: Open Sans;
  }
}

/* checkout page */

.woocommerce-checkout .hentry .post-entry > :first-child {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  font-family: Open Sans;
  margin-bottom: 40px;
  margin-top: 12px;
  text-align: center !important;
  padding-left: 0px;
}

.woocommerce-checkout .woocommerce .woocommerce-info {
  padding-left: 24px !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  border-radius: 6px;
  margin-top: 0px !important;
  font-weight: 400;
  font-size: 16px;
  font-family: Open Sans;
}

.woocommerce-checkout .woocommerce .woocommerce-info .toggle-login-link {
  color: #c9321a;
}

/* remove .woocommerce-checkout .the_champ_outer_login_container {
    
    column-gap: 20px;
} */

.woocommerce-checkout .woocommerce .login-close-button {
  width: 24px;
  height: 24px;
  padding: 0px;
  font-weight: 500;
}

.woocommerce-checkout .woocommerce .login-close-button:hover {
  background-color: #fff;
  color: #c9321a;
}

.woocommerce-checkout .the_champ_outer_login_container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 21px auto;
  column-gap: 12px;
}

.woocommerce-checkout
  .the_champ_outer_login_container
  .the_champ_social_login_title {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  font-family: Open Sans;
  color: #333333;
}

.woocommerce-checkout .the_champ_login_ul #theChampGoogleButton {
  width: 24px;
  height: 24px;
}

.woocommerce-checkout .login-close-button {
  background: none;
  border: none;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  float: right;
  cursor: pointer;
}

.woocommerce-checkout .woocommerce .woocommerce-form-login-message {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.woocommerce-checkout .woocommerce .woocommerce-form-login-fields {
  display: flex;
  justify-content: space-between;
}

.woocommerce-checkout .woocommerce .woocommerce-form-login-fields label {
  font-family: Open Sans;
  font-weight: 400;
  line-height: 100%;
  color: #333333;
  font-size: 14px !important;
  padding-bottom: 4px;
  text-align: left;
}

.woocommerce form .show-password-input::after {
  margin-top: 25px;
}

.woocommerce-checkout .woocommerce-form-login-wrapper {
  border: 1px solid #ddd;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #f9f9f9;
  position: relative;
}

.woocommerce-checkout .woocommerce .woocommerce-form-login {
  padding: 16px 24px !important;
  border: 1px solid #dbdbdb;
  border-radius: 6px;
  margin-top: 0px;
  width: 70%;
}

.woocommerce-checkout
  .woocommerce
  .woocommerce-form-login
  .woocommerce-form-login-message
  p {
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 20px;
  font-family: Open Sans;
  color: #333333;
  text-align: left;
}

.woocommerce-checkout .woocommerce .woocommerce-form-login .lost_password {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 10px;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  font-family: Open Sans;
  color: #c9321a;
}
.woocommerce-checkout .woocommerce form.login .form-row {
  width: 48%;
  margin-right: 0px;
}

.woocommerce-checkout
  .woocommerce
  .woocommerce-form-login
  .woocommerce-form-login-rememberme {
  display: flex;
  justify-content: flex-start;
  position: unset;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.woocommerce-checkout
  .woocommerce
  .woocommerce-form-login
  .woocommerce-form-login__submit {
  padding: 18px 32px !important;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  font-family: Open Sans;
  background-color: #c9321a !important;
  color: #ffffff !important;
  border-radius: 6px;
}

.woocommerce-checkout .billing_heading .billing_title,
.woocommerce-checkout .shipping_heading .payment_title,
.woocommerce-checkout .order_heading .order_summary_title,
.woocommerce-checkout .plus_upsell_heading .plus_upsell_title,
.woocommerce-checkout .account_heading .account_title {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: bottom;
  font-family: Open Sans;
  padding: 12px 24px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background-color: #060a0d;
  color: #ffffff;
  text-align: left;
}

.woocommerce-billing-fields .cls-border-box-padding {
  padding: 20px 24px;
  border-width: 0px 1px 1px 1px;
  border-style: solid;
  border-color: #dbdbdb;
}

.woocommerce-checkout .woocommerce-billing-fields label {
  font-weight: 400;
  font-size: 16px !important;
  vertical-align: middle;
  font-family: Open Sans;
}

#billing_country_field .select2-selection.select2-selection--single {
  height: auto;
  border-radius: 6px;
}

.woocommerce-checkout #billing_email_field {
  padding-top: 10px;
}

.woocommerce-checkout .woocommerce table.shop_table .product-name a {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  font-family: Open Sans;
  color: #333333;
}

.woocommerce-checkout
  .woocommerce
  table.shop_table
  .product-subtotal
  .woocommerce-Price-amount {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  font-family: Open Sans;
}

.woocommerce
  .order-review-wrapper
  .shop_table.woocommerce-checkout-review-order-table {
  border-width: 0px 1px 1px 1px;
  border-style: solid;
  border-color: #d4d4d4;
  margin-top: 0;
  margin-bottom: 24px !important;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-collapse: collapse;
}

.woocommerce #payment,
.woocommerce-page #payment {
  padding: 27px 24px;
}

.woocommerce-checkout-review-order .woocommerce-shipping-fields {
  border-right: 1px solid #dbdbdb !important;
  border-bottom: 1px solid #dbdbdb !important;
  border-left: 1px solid #dbdbdb !important;
}

.cls-border-box-padding .email_conf {
  margin-bottom: 0px;
}

/* PayPal style */
#place_order.paypal-style {
  background-color: #c9321a;
  color: #111;
  border: none;
}

/* Card style */

.woocommerce-checkout .gift-a-deal-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  vertical-align: bottom;
  font-family: Open Sans;
}

.woocommerce-checkout .gift-checkbox span {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  font-family: Open Sans;
}

.woocommerce-checkout #gift_text_field .form-row {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  font-family: Open Sans;
  color: #333333;
}

.woocommerce form .form-row input.input-text {
  border-color: #dbdbdb !important;
  border-radius: 6px !important;
}

.woocommerce-checkout #gift_text_field .form-row .input-text {
  height: 40px;
  border-color: #dbdbdb !important;
  border-radius: 6px !important;
  color: #3f3f3f;
}

@media screen and (min-width: 760px) and (max-width: 1200px) {
  .woocommerce-checkout .hentry .post-entry > :first-child {
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    font-family: Open Sans;
  }
  .woocommerce-page.woocommerce-checkout
    .woocommerce
    form
    #customer_details.col2-set {
    width: 100% !important;
  }

  .woocommerce-billing-fields .cls-border-box-padding {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
  }

  .woocommerce-billing-fields .cls-border-box-padding .form-row {
    width: 48%;
  }

  .order_heading {
    width: 100%;
  }

  .woocommerce-page.woocommerce-checkout .woocommerce form #order_review {
    width: 100% !important;
  }

  .woocommerce-checkout .woocommerce .woocommerce-form-login {
    width: 100% !important;
    margin-bottom: 0px;
  }

  .woocommerce-checkout .woocommerce form.login .form-row {
    width: 48% !important;
    margin-bottom: 0px;
  }

  .woocommerce-checkout .woocommerce form.login .lost_password {
    float: none !important;
  }

  .woocommerce-checkout #gift_text_field {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .woocommerce-checkout #gift_text_field .form-row {
    width: 48%;
  }
}

@media screen and (max-width: 748px) {
  .woocommerce-checkout .woocommerce .woocommerce-form-login {
    width: 100% !important;
  }

  .woocommerce-checkout .hentry .post-entry > :first-child {
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    font-family: Open Sans;
    margin-bottom: 30px;
  }

  .woocommerce-checkout .woocommerce {
    padding: 0px !important;
  }

  .woocommerce-checkout
    .woocommerce
    .woocommerce-form-login
    .woocommerce-form-login-message
    p {
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 100%;
    font-family: Open Sans;
    color: #333333;
    width: 90%;
    padding: 0px !important;
  }

  .woocommerce-checkout .woocommerce .woocommerce-form-login-message {
    align-items: flex-start;
  }

  .woocommerce-checkout .woocommerce .woocommerce-info {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .woocommerce-checkout .showlogin {
    margin-left: 0px;
  }
  .woocommerce-checkout .woocommerce form.login .form-row {
    margin: 0px;
    padding: 0px;
  }
  .woocommerce-checkout .woocommerce .woocommerce-form-login-fields {
    flex-direction: column;
    gap: 12px;
  }
  .woocommerce-checkout .woocommerce form.login .lost_password {
    margin-top: 8px;
    float: none;
  }

  .woocommerce-checkout
    .woocommerce
    .woocommerce-form-login
    .woocommerce-form-login__rememberme {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    font-family: Open Sans;
    color: #333333;
  }

  .woocommerce-checkout
    .woocommerce
    .woocommerce-form-login
    .woocommerce-form-login-rememberme {
    gap: 12px;
  }

  .woocommerce-checkout .woocommerce table.shop_table td {
    padding: 0 0;
  }

  .mobile-review-order-wrapper .mobile-order-total-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    border-width: 0px 1px 1px 1px;
    border-style: solid;
    border-color: #d4d4d4;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    margin-bottom: 30px;
  }

  .mobile-review-box {
    padding: 10px 24px;
    display: flex;
    gap: 20px;
    border-width: 0px 1px 1px 1px;
    border-style: solid;
    border-color: #d4d4d4;
  }

  .mobile-product-image img {
    width: 60px;
    height: auto;
    border-radius: 5px;
  }

  .mobile-product-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .mobile-product-name {
    font-weight: 400;
    font-size: 14px;
    color: #3a3a3a;
    white-space: nowrap;
    overflow: hidden;
    line-height: 20px;
    text-overflow: ellipsis;
    max-width: 180px;
  }

  .mobile-product-price {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    font-family: Open Sans;
    color: #3a3a3a;
    text-align: left;
  }

  .mobile-product-price .woocommerce-Price-amount {
    font-weight: 600;
  }

  .mobile-product-price .subscription-price {
    font-weight: 600;
  }

  .woocommerce-checkout .order_heading {
    margin-bottom: 0px;
  }

  .mobile-order-total-label {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    font-family: Open Sans;
    color: #333333;
  }

  .mobile-order-total-value {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-align: right;
    vertical-align: bottom;
    font-family: Open Sans;
    color: #333333;
  }
}

.woocommerce-checkout .woocommerce .woocommerce-message a {
  display: none;
}

.woocommerce-checkout .woocommerce .woocommerce-message:before {
  content: "";
  display: none;
}

.woocommerce-checkout .woocommerce .woocommerce-message {
  padding-left: 20px;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 14px;
  color: #039855;
  border-radius: 6px;
  font-weight: 600;
  background: #e6f5ee;
  border-top-color: #e6f5ee;
}

.woocommerce-checkout .woocommerce #payment div.form-row.place-order {
  margin-top: 24px;
}

.woocommerce-checkout .woocommerce-shipping-fields .wc_payment_method label {
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 20px;
  font-family: Open Sans;
}

.woocommerce-checkout .woocommerce-shipping-fields .payment_method_stripe_cc {
  margin-top: 16px !important;
}

.pwplans-container .annuallypwleft {
  margin-top: 12px;
}

.pw-plus-upsell-plan-container .checkout-get-plus-image .pw-plus-banner-image {
  width: 72px;
  height: 90px;
}

.woocommerce-checkout .woocommerce table.shop_table td.product-name {
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 20px;
  font-family: Open Sans;
  color: #333333;
}

.woocommerce-checkout .woocommerce table.shop_table td.product-subtotal {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 16px;
  line-height: 24px;
  font-family: Open Sans;
  color: #333333;
}

.woocommerce-checkout .woocommerce table.shop_table .cart_item img {
  width: 80px;
  height: 100px;
}

@media screen and (max-width: 740px) {
  .elementor-widget-video .elementor-wrapper iframe,
  .elementor-widget-video .elementor-wrapper video {
    width: 343px !important;
    height: 173px !important;
  }
  .quick-summary-list li {
    line-height: 24px;
  }
  .class-materials-container-heading {
    font-size: 24px;
  }

  .class-material-item {
    line-height: 19px;
    padding: 20px 13px;
    background: #f2f2f2;
    border-radius: 6px;
    flex: 1 1 calc(50% - 15px) !important;
    font-weight: 400;
    gap: 12px;
    font-size: 14px;
  }

  .masterclass-product-price del {
    font-size: 18px !important;
  }

  .masterclass-product-price ins {
    font-size: 46px;
  }

  .instructor-image img {
    max-width: 192px;
  }

  .instructor-details-container {
    gap: 20px;
  }

  .instructor-above-heading {
    font-size: 16px;
    text-align: center;
  }

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

  .instructor-bio {
    line-height: 24px;
  }

  .rating-review-count {
    font-size: 16px;
  }

  #plus-masterclass-reviews
    .woocommerce-Reviews
    #review_form
    .form-submit
    #submit {
    font-size: 16px !important;
  }

  .elementor-nav-menu {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .elementor-nav-menu::-webkit-scrollbar {
    display: none;
  }

  .elementor-nav-menu > li {
    flex: 0 0 auto !important;
    display: inline-block !important;
    white-space: nowrap;
  }

  .elementor-nav-menu > li > a {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
  }
}

.plus-membership-only_paragraph {
  display: flex;
  justify-content: center;
  align-items: center;
}

.plus-membership-only_paragraph p {
  max-width: 1100px;
  text-align: center;
  margin-right: 30px;
}

.page-id-1158
  .elementor-element-fe1ad68
  .elementor-widget-container
  .elementor-heading-title {
  display: none;
}

.vendor-products-title h2 {
  text-align: center;
  font-size: 33px;
  line-height: 1.8;
  font-weight: 800;
}

.woocommerce-MyAccount-content .woocommerce-notices-wrapper {
  padding: 0;
}

@media screen and (max-width: 600px) {
  .elementor-kit-846229 .elementor-element-405cb48 {
    display: none;
  }
}

.elementor-element-53b6a0f a span {
  position: relative;
  display: inline-block;
  top: -16px;
  right: 13px;
  color: #fff;
  background: #c9321a;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 10px;
  font-weight: 600;
  padding-top: 2px;
  padding-left: 7px;
  padding-right: 5px;
}

header .elementor-element-b144369 {
  height: 66.5px !important;
}

@media screen and (max-width: 1120px) and (min-width: 700px) {
  .elementor-element-53b6a0f a span {
    top: -11px;
    right: 9px;
    padding-top: 2px;
    padding-left: 6px;
    padding-right: 6px;
  }

  .elementor-element-53b6a0f .elementor-widget-container {
    width: fit-content;
  }

  .elementor-element-53b6a0f a {
    display: flex;
    justify-content: flex-start;
  }

  .cta-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    align-items: center;
  }
  .sticky-cart-left {
    padding-top: 0px;
    float: left;
    width: fit-content;
  }

  .sticky-cart-right {
    margin-top: 0px;
  }
  body:not(.rtl)
    .elementor-1069117
    .elementor-element.elementor-element-48bb4ef {
    max-width: 300px;
  }
}

@media screen and (max-width: 600px) {
  .elementor-element-53b6a0f a span {
    top: -10px;
    right: 8px;
    padding-left: 6px;
    padding-right: 6px;
  }
  header .elementor-element-b144369 {
    height: 61px !important;
  }
}

header.elementor-location-header {
  position: relative;
  width: 100%;
  transition: all 0.3s ease-in-out; /* smooth animation */
}

header.elementor-location-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 9999;
  transition: all 0.3s ease-in-out; /* smooth animation */
}

/* Add border + shadow only when sticky is active */
.elementor-sticky.elementor-sticky--effects {
  border-bottom: 1px solid #dbdbdb; /* light grey border */
  border-top: 1px solid #dbdbdb; /* light grey border */
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25) !important; /* subtle shadow */
  transition: all 0.3s ease; /* smooth appearance */
  border-bottom: 0px;
}

.elementor-page-1367419
  .elementor-element-e2dcb02
  .elementor-element-populated {
  padding-top: 0px;
}

.elementor-page-1367419 .elementor-element-b144369 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.jet-mega-menu.jet-mega-menu--layout-horizontal
  .jet-mega-menu-item-846270
  > .jet-mega-menu-item__inner {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.jet-mega-menu.jet-mega-menu--layout-horizontal
  .jet-mega-menu-item-766372
  > .jet-mega-menu-item__inner {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.jet-mega-menu.jet-mega-menu--layout-horizontal
  .jet-mega-menu-item-1068343
  > .jet-mega-menu-item__inner {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

#header-search-form .elementor-search-form__submit .fa-search:before {
  content: ""; /* remove the Font Awesome icon */
  display: inline-block;
  width: 18px; /* adjust size */
  height: 18px;
  background: url("/wp-content/themes/responsive-child/images/cart.svg")
    no-repeat center center;
  background-size: contain;
}

#plus-sticky-desktop {
  display: flex;
  justify-content: center;
  align-items: center;
}
#plus-sticky-mobile {
  display: none;
}

.elementor-search-form
  .elementor-search-form__container:has(.elementor-search-form__input:focus) {
  border: 1px solid rgba(81, 81, 81, 1) !important;
}

/* Mobile only */
@media (max-width: 760px) {
  #header-search-form {
    position: relative;
    top: 6px;
  }

  .elementor-element-7b1be45 .elementor-widget-container {
    width: fit-content;
  }

  .elementor-element-53b6a0f a {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  }

  /* Hide input & border initially */
  #header-search-form .elementor-search-form__input {
    display: none;
  }

  /* Keep only search icon visible */
  #header-search-form .elementor-search-form__submit {
    background: none;
    border: none;
    font-size: 20px;
    padding-bottom: 3px;
  }

  /* Expanded overlay */
  #header-search-form.active {
    top: 3px;
    left: -215px;
    width: 260px;
    max-width: 300px;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
  }

  .elementor-1069117 .elementor-element.elementor-element-48bb4ef {
    max-width: 350px;
  }

  #header-search-form.active .elementor-search-form {
    width: 260px;
  }

  #header-search-form .elementor-search-form {
    width: fit-content;
  }

  #header-search-form.active .elementor-search-form__input {
    display: block;
    padding-right: 39px;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    padding-left: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
    color: rgba(116, 116, 116, 1);
  }

  /* Hide search icon when expanded */
  #header-search-form.active .elementor-search-form__submit {
    display: none;
  }

  .elementor-1069117
    .elementor-element.elementor-element-7cb01c6:not(
      .elementor-search-form--skin-full_screen
    )
    .elementor-search-form__container {
    border: 0px;
  }
  #header-search-form.active .elementor-search-form__container {
    border: 1px solid rgba(163, 163, 163, 1);
  }

  /* Close button */
  #header-search-form .close-search {
    display: none;
    font-size: 22px;
    padding-left: 10px;
    width: 26px;
    cursor: pointer;
    color: #000;
  }

  #header-search-form.active .close-search {
    display: inline-block;
    position: absolute;
    top: 0px;
    right: 4px;
    color: #515151;
  }

  /* Default (normal flow) */
  .elementor-element-153f1ac5 {
    position: relative;
    transition: all 0.3s ease;
  }

  /* Sticky when scrolling past */
  .elementor-element-153f1ac5.sticky-product-nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    z-index: 9999;
    width: 100%;
    border-top: 1px solid rgba(219, 219, 219, 1);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }

  .jet-mega-menu-list .jet-mega-menu-item__inner:hover {
    border-bottom: none;
  }

  #header-search-form .elementor-search-form__submit .fa-search:before {
    content: ""; /* remove the Font Awesome icon */
    display: inline-block;
    width: 18px; /* adjust size */
    height: 18px;
    background: url("/wp-content/themes/responsive-child/images/cart1.svg")
      no-repeat center center;
    background-size: contain;
  }

  /* Swap on Mobile */
  #plus-sticky-desktop {
    display: none;
  }

  #plus-sticky-mobile {
    display: flex;
    padding: 0px 0px;
    background-color: #ffffff;
  }

  #plus-sticky-mobile a {
    font-size: 14px;
    font-weight: 600;
    padding-top: 19px;
    padding-bottom: 19px;
    width: 100%;
    margin-left: 0px;
    border-radius: 0;
  }

  .elementor-search-form
    .elementor-search-form__container:has(.elementor-search-form__input:focus) {
    border: 1px solid #515151 !important;
  }

  .elementor-search-form__input:focus {
    border: none !important;
    outline: none !important;
  }

  .jet-mega-menu.jet-mega-menu--layout-dropdown.jet-mega-menu--dropdown-layout-default
    .jet-mega-menu-container {
    top: 48px !important;
  }
}

@media (max-width: 370px) {
  #header-search-form.active {
    top: 3px;
    left: -200px;
    width: 230px;
    max-width: 300px;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
  }

  #header-search-form.active .elementor-search-form {
    width: 230px;
  }
}

@media (max-width: 390px) and (min-width: 371px) {
  #header-search-form.active {
    top: 3px;
    left: -215px;
    width: 260px;
    max-width: 300px;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
  }

  #header-search-form.active .elementor-search-form {
    width: 260px;
  }
}

@media (max-width: 415px) and (min-width: 391px) {
  #header-search-form.active {
    top: 3px;
    left: -231px;
    width: 280px;
    max-width: 300px;
    background: #fff;
    z-index: 9999;
    align-items: center;
  }

  #header-search-form.active .elementor-search-form {
    width: 280px;
  }
}

@media (max-width: 440px) and (min-width: 416px) {
  #header-search-form.active {
    top: 3px;
    left: -242px;
    width: 300px;
    max-width: 300px;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
  }

  #header-search-form.active .elementor-search-form {
    width: 300px;
  }
}

@media (max-width: 349px) and (min-width: 320px) {
  #header-search-form.active {
    top: 3px;
    left: -180px;
    width: 210px;
    max-width: 300px;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
  }

  #header-search-form.active .elementor-search-form {
    width: 210px;
  }
}

.jet-mega-menu-list .jet-mega-menu-item__inner {
  border-bottom: 3px solid #ffffff;
}
.jet-mega-menu-list .jet-mega-menu-item__inner:hover {
  border-bottom-color: rgba(201, 50, 26, 1) !important;
}

.elementor-1071329
  .elementor-element.elementor-element-8062490
  .elementor-nav-menu--main:not(.e--pointer-framed)
  .elementor-item.elementor-item-active {
  font-weight: 700;
}

.jet-mega-menu-item__inner:hover .jet-mega-menu-item__dropdown svg path {
  stroke: #c9321a;
}

.jet-mega-menu.jet-mega-menu--layout-horizontal
  .jet-mega-menu-item.jet-mega-current-menu-item
  > .jet-mega-menu-item__inner
  .jet-mega-menu-item__dropdown
  svg
  path {
  stroke: rgba(201, 50, 26, 1);
}

/* container positioning */
.elementor-search-form__container {
  position: relative;
}

.elementor-search-form__clear {
  background: url("/wp-content/themes/responsive-child/images/cross-button.svg")
    no-repeat center center !important;
  background-size: 16px 16px;
  border: none;
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: none !important;
  background-color: #ffffff !important;
}

.elementor-search-form .elementor-search-form__container {
  max-width: 360px !important;
}

/* when the container is "active" (focused or has value) hide submit and show clear */
.elementor-search-form__container.active_desktop
  .elementor-search-form__submit {
  display: none !important;
}
.elementor-search-form__container.active_desktop .elementor-search-form__clear {
  display: block !important;
}

.elementor-col-50 .elementor-element-7b1be45 {
  margin-bottom: 0px;
}

#commentform .google-captcha-notice {
  display: none;
}

.woocommerce #reviews #comments ol.commentlist {
  padding-bottom: 0px;
}

.woocommerce #review_form #respond p.comment-form-cookies-consent {
  margin-bottom: 0px !important;
}

.rael-faq-container .rael-accordion-title .rael-question-span {
  font-family: "Open Sans", sans-serif !important;
}

.rael-faq-container .rael-accordion-content p {
  font-family: "Open Sans", sans-serif !important;
}

.woocommerce-MyAccount-content .billing-method-notice {
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: Open Sans;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #313131;
}

.woocommerce .woocommerce-MyAccount-content .add-billing-method-button {
  padding: 12px 18px;
  font-family: Open Sans;
  font-weight: 600;
  font-size: 16px !important;
  line-height: 22px;
  background-color: #c9321a;
  border-radius: 6px !important;
  margin-top: 20px;
}

@media (max-width: 1140px) and (min-width: 700px) {
  .woocommerce-account .ordhis_heading,
  .member-logged-in .ordhis_heading {
    font-size: 32px;
    margin-bottom: 24px;
    margin-top: 10px;
  }

  .woocommerce-account .woocommerce {
    padding: 20px !important;
    margin-left: 10px;
    margin-right: 10px;
  }

  .woocommerce .woocommerce-MyAccount-content .add-billing-method-button {
    padding: 12px 18px;
    font-family: Open Sans;
    font-weight: 600;
    font-size: 16px !important;
    line-height: 22px;
    background-color: #c9321a;
    border-radius: 6px !important;
    margin-top: 20px;
  }
}

@media (max-width: 699px) {
  .woocommerce-account .ordhis_heading,
  .member-logged-in .ordhis_heading {
    font-size: 24px;
    margin-bottom: 24px;
    margin-top: 0px;
  }
  .woocommerce-account .woocommerce {
    padding: 16px !important;
    margin-left: 14px;
    margin-right: 14px;
  }
  .woocommerce .woocommerce-MyAccount-content .add-billing-method-button {
    padding: 12px 18px;
    font-family: Open Sans;
    font-weight: 600;
    font-size: 16px !important;
    line-height: 22px;
    background-color: #c9321a;
    border-radius: 6px !important;
    margin-top: 20px;
  }
}

.woocommerce-cart-form__cart-item td .cart-product-card .cart-product-image {
  flex: 2;
}

.woocommerce-cart-form__cart-item td .cart-product-card .cart-product-details {
  flex: 5;
}

/* .woocommerce-error li:has(:contains("Plus Monthly – $12/Month")) {
    display: none !important;
} */

.woocommerce-cart .woocommerce-error {
  display: none; /* Hide all error boxes initially */
}
/* 
.select2-container--open .select2-search__field {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23999' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") no-repeat 8px center;
    background-size: 16px 16px;
    padding-left: 30px; 
} */

/* View order page alignment styling */
.woocommerce-MyAccount-content .row .large-12.columns{
  width: 100%;
}
