/** Shopify CDN: Minification failed

Line 790:14 Expected identifier but found whitespace
Line 790:16 Unexpected "{"
Line 790:26 Expected ":"

**/
/**
 * Base CSS file for Custom Fields widget styles.
 * You can modify this file.
 */
.custom-fields-widgets-wrapper {
  margin-top: 2rem;
}
.custom-fields-widgets-wrapper > div {
  margin-bottom: 2rem;
}
.custom-fields-widgets-wrapper > div:last-child {
  margin-bottom: 0;
}

.custom-fields-wrapper > [class*=cf-widget-] {
  margin-bottom: 2rem;
}

.custom-fields-section {
  margin-top: 6rem;
}
.custom-fields-section .custom-field {
  margin: auto;
  padding-left: 22px;
  padding-right: 22px;
  max-width: 1200px;
}
.custom-fields-section .cf-widget-items-wrapper {
  margin: auto;
  padding-left: 22px;
  padding-right: 22px;
  max-width: 1200px;
}
.custom-fields-section .custom-fields-section__item > div {
  margin-bottom: 8rem;
}
@media screen and (min-width: 749px) {
  .custom-fields-section .custom-field {
    padding-left: 55px;
    padding-right: 55px;
  }
  .custom-fields-section .cf-widget-items-wrapper {
    padding-left: 55px;
    padding-right: 55px;
  }
}



/**
 * Accordion Widget CSS.
 */
 
 .cf-widget__accordion .cf-widget-items-wrapper{
   padding:50px;
 }
.cf-widget__accordion .inner {
  overflow: hidden;
}
.cf-widget__accordion .inner-padding {
  padding: 0.5rem 2rem 2rem 2rem;
}
.cf-widget__accordion .cf-accordion-title {
  padding: 0.9rem 2.9rem 1rem 2rem;
  font-size:42px;
  font-weight: bold;
  width: 100%;
  transition: all 0.25s;
  position: relative;
  cursor: pointer;
}
.cf-widget__accordion .cf-accordion-title:hover {
  opacity: 0.7;
}
.cf-widget__accordion .cf-accordion-title:after {
  display: block;
  font-family:"flex-icon";
  content: "\e904";
  background-size: contain;
  background-repeat: no-repeat;
  width: 14px;
  height: 24.8888888889px;
  position: absolute;
  right: 20px;
  top: 18px;
  transform: rotateZ(-90deg);
  transition: all 0.2s;
}
.cf-widget__accordion .cf-widget-item {
  margin-bottom: 5px;
}
.cf-widget__accordion .cf-widget-item.closed .cf-accordion-title:after {
  transform: rotateZ(90deg);
}
.cf-widget__accordion .cf-widget-item.closed .cf-accordion-title:after {
  opacity:0.7;
  transform: rotateZ(90deg);
}
.cf-widget__accordion.force-one-open[data-open-count="1"] .cf-widget-item:not(.closed) .cf-accordion-title {
  pointer-events: none;
  cursor: default;
}


/**
 * Image Slider Widget CSS.
 */
.cf-widget__image-slider {
  position: relative;
}
.cf-widget__image-slider .cf-widget-items-wrapper {
  margin: auto;
  overflow: hidden;
  position: relative;
  height: 750px;
  max-width: none;
}
.cf-widget__image-slider .slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center right;
  z-index: 1;
}
@media screen and (max-width: 500px) {
  .cf-widget__image-slider .slide-image {
    background-position: center center !important;
  }
}
.cf-widget__image-slider .inner {
  z-index: 2;
  padding: 2rem;
  /*     background-color: rgba(white, .4); */
  /*     backdrop-filter: blur(10px); */
  /*     box-shadow: 2px 10px 30px rgba(black, .1); */
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.75);
}
.cf-widget__image-slider .inner a, .cf-widget__image-slider .inner p, .cf-widget__image-slider .inner h1, .cf-widget__image-slider .inner h2, .cf-widget__image-slider .inner h3, .cf-widget__image-slider .inner h4, .cf-widget__image-slider .inner h5, .cf-widget__image-slider .inner h6 {
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.75);
}
@media screen and (min-width: 749px) {
  .cf-widget__image-slider .inner {
    position: relative;
    padding: 4rem;
    border-radius: 20px;
  }
}
.cf-widget__image-slider .inner-padding {
  max-width: 1200px;
  margin: auto;
  padding-left: 55px;
  padding-right: 55px;
}
.cf-widget__image-slider .inner-maxwidth {
  max-width: 500px;
}
.cf-widget__image-slider .cf-slides-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-wrap: nowrap;
}
.cf-widget__image-slider .cf-slider-pager {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding-bottom: 15px;
}
.cf-widget__image-slider .cf-slider-pager .cf-pager-button {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 4px;
  background-color: rgba(128, 128, 128, 0.15);
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s;
}
.cf-widget__image-slider .cf-slider-pager .cf-pager-button:hover {
  background-color: rgba(128, 128, 128, 0.5);
}
.cf-widget__image-slider .cf-slider-pager .cf-pager-button.active {
  background-color: gray;
}
.cf-widget__image-slider .cf-slider-arrow {
  position: absolute;
  z-index: 15;
  padding: 20px;
  cursor: pointer;
  top: calc(50% - 40px);
}
.cf-widget__image-slider .cf-slider-arrow .arrow-triangle:before {
  display: block;
  content: "";
  background-image: url("cf-arrow-white-outline.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 18px;
  height: 32px;
}
.cf-widget__image-slider .cf-slider-arrow:hover .arrow-triangle {
  opacity: 1;
}
.cf-widget__image-slider .cf-slider-arrow__prev {
  left: 0;
}
.cf-widget__image-slider .cf-slider-arrow__prev .arrow-triangle:before {
  transform: rotateZ(-180deg);
}
.cf-widget__image-slider .cf-slider-arrow__next {
  right: 0;
}
.cf-widget__image-slider .cf-widget-field {
  margin-bottom: 0.5rem;
}
.cf-widget__image-slider .cf-widget-field__title {
  font-weight: bold;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  line-height: 2.7rem;
}
.cf-widget__image-slider .cf-widget-field__link {
  margin-top: 5rem;
}
.cf-widget__image-slider .cf-widget-item {
  height: 750px;
  position: relative;
  display: flex;
  align-items: center;
}
.cf-widget__image-slider .cf-widget-item:after {
  display: block;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 500px;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
  z-index: 1;
}
@media screen and (min-width: 749px) {
  .cf-widget__image-slider .cf-widget-item:after {
    display: none;
  }
}
.cf-widget__image-slider .cf-widget-item p {
  color: #464646;
}
.cf-widget__image-slider .cf-widget-item a {
  font-weight: bold;
}
.cf-widget__image-slider .cf-widget-item.cf-text-pos--Right .slide-image {
  background-position: center left;
}
.cf-widget__image-slider .cf-widget-item.cf-text-pos--Right .inner {
  text-align: right;
}
.cf-widget__image-slider .cf-widget-item.cf-text-pos--Right .inner .inner-maxwidth {
  margin-left: auto;
}
.cf-widget__image-slider .cf-widget-item.cf-text-pos--Center .slide-image {
  background-position: center center;
}
.cf-widget__image-slider .cf-widget-item.cf-text-pos--Center .inner .inner-maxwidth {
  margin: auto;
  text-align: center;
}
@media screen and (min-width: 749px) {
  .cf-widget__image-slider .cf-widget-item.cf-text-pos--Center .inner {
    position: relative;
    left: auto;
  }
}
.cf-widget__image-slider .cf-widget-item.cf-light-text--1:after {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}
.cf-widget__image-slider .cf-widget-item.cf-light-text--1 .inner {
  color: white;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.75);
}
.cf-widget__image-slider .cf-widget-item.cf-light-text--1 .inner a, .cf-widget__image-slider .cf-widget-item.cf-light-text--1 .inner p, .cf-widget__image-slider .cf-widget-item.cf-light-text--1 .inner h1, .cf-widget__image-slider .cf-widget-item.cf-light-text--1 .inner h2, .cf-widget__image-slider .cf-widget-item.cf-light-text--1 .inner h3, .cf-widget__image-slider .cf-widget-item.cf-light-text--1 .inner h4, .cf-widget__image-slider .cf-widget-item.cf-light-text--1 .inner h5, .cf-widget__image-slider .cf-widget-item.cf-light-text--1 .inner h6 {
  color: white;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.75);
}


/**
 * Text with Background Image Widget CSS.
 */
.cf-widget__text-bg-image .cf-widget-items-wrapper {
  max-width: none;
  padding: 0;
}
.cf-widget__text-bg-image .cf-widget-item {
  background-position: center center;
  background-size: cover;
  padding: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}
.cf-widget__text-bg-image .cf-widget-item.cf-height--Taller {
  min-height: 600px;
}
.cf-widget__text-bg-image .cf-widget-item.cf-height--Shorter {
  min-height: 400px;
}
.cf-widget__text-bg-image .cf-widget-item.cf-fixed-position {
  background-attachment: fixed;
}
.cf-widget__text-bg-image .cf-widget-item .inner {
  padding-left: 22px;
  padding-right: 22px;
  text-align: center;
  max-width: 1200px;
}
@media screen and (min-width: 749px) {
  .cf-widget__text-bg-image .cf-widget-item .inner {
    padding-left: 55px;
    padding-right: 55px;
    width: 100%;
    margin: auto;
  }
}
.cf-widget__text-bg-image .cf-widget-item.cf-text-left-align .cf-widget-field__body {
  margin-left: 0;
}
.cf-widget__text-bg-image .cf-widget-item.cf-text-left-align .inner {
  text-align: left;
}
.cf-widget__text-bg-image .cf-widget-field {
  margin-bottom: 0.5rem;
}
.cf-widget__text-bg-image .cf-widget-field:last-child {
  margin-bottom: 0;
}
.cf-widget__text-bg-image .cf-widget-field__title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  font-weight: bold;
}
.cf-widget__text-bg-image .cf-widget-field__body {
  max-width: 70%;
  margin: auto;
  margin-bottom: 1rem;
}
@media screen and (min-width: 749px) {
  .cf-widget__text-bg-image .cf-widget-field__body {
    max-width: 550px;
  }
}
.cf-widget__text-bg-image .cf-widget-field__link {
  padding: 10px 0;
}
.cf-widget__text-bg-image .cf-widget-field__link a {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #555;
  color: #555;
  border-radius: 5px;
  font-weight: bold;
  transition: opacity 0.3s;
}
.cf-widget__text-bg-image .cf-widget-field__link a:hover {
  opacity: 0.8;
}
.cf-widget__text-bg-image .cf-widget-item.cf-light-text {
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
.cf-widget__text-bg-image .cf-widget-item.cf-light-text .cf-widget-field__link a {
  border-color: white;
  color: white;
}
.cf-widget__text-bg-image .cf-widget-item.cf-light-text * {
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 749px) {
  .cf-widget__text-bg-image .cf-widget-item {
    min-height: 500px;
  }
  .cf-widget__text-bg-image .cf-widget-item.cf-height--Taller {
    min-height: 600px;
  }
  .cf-widget__text-bg-image .cf-widget-item.cf-height--Shorter {
    min-height: 400px;
  }
  .cf-widget__text-bg-image .cf-widget-field__title {
    font-size: 3rem;
  }
}




/**
 * Columns Widget CSS.
 */
.cf-widget__columns {
  margin-bottom: -55px;
}
.cf-widget__columns .cf-widget-items-wrapper {
  display: flex;
  align-items: flex-start;
  /* justify-content: flex-start; */
  justify-content: center;
  flex-wrap: wrap;
}
.cf-widget__columns .cf-widget-item {
  width: calc((100% / 1) - 0rem);
  margin-right: 1rem;
}
.cf-widget__columns .cf-widget-item:nth-child(1n) {
  margin-right: 0;
}
@media screen and (min-width: 749px) {
  .cf-widget__columns .cf-widget-item {
    width: calc((100% / 3) - 0.6666666667rem);
    margin-right: 1rem;
  }
  
  .cf-widget__columns .cf-widget-item:nth-child(1n) {
    margin-right: 1rem;
  }
  .cf-widget__columns .cf-widget-item:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 749px) {
  .cf-widget__columns[data-grid-width="1"] .cf-widget-item {
    width: calc((100% / 1) - 0rem);
    margin-right: 1rem;
  }
  .cf-widget__columns[data-grid-width="1"] .cf-widget-item:nth-child(1n) {
    margin-right: 0;
  }
  .cf-widget__columns[data-grid-width="2"] .cf-widget-item {
    width: calc((100% / 2) - 0.5rem);
    margin-right: 1rem;
  }
  .cf-widget__columns[data-grid-width="2"] .cf-widget-item:nth-child(2n) {
    margin-right: 0;
  }
  .cf-widget__columns[data-grid-width="3"] .cf-widget-item {
    width: calc((100% / 3) - 0.6666666667rem);
    margin-right: 1rem;
  }
  .cf-widget__columns[data-grid-width="3"] .cf-widget-item:nth-child(3n) {
    margin-right: 0;
  }
  .cf-widget__columns[data-grid-width="4"] .cf-widget-item {
    width: calc((100% / 4) - 0.75rem);
    margin-right: 1rem;
  }
  .cf-widget__columns[data-grid-width="4"] .cf-widget-item:nth-child(4n) {
    margin-right: 0;
  }
  .cf-widget__columns[data-grid-width="5"] .cf-widget-item {
    width: calc((100% / 5) - 0.8rem);
    margin-right: 1rem;
  }
  .cf-widget__columns[data-grid-width="5"] .cf-widget-item:nth-child(5n) {
    margin-right: 0;
  }
  .cf-widget__columns[data-grid-width="6"] .cf-widget-item {
    width: calc((100% / 6) - 0.8333333333rem);
    margin-right: 1rem;
  }
  .cf-widget__columns[data-grid-width="6"] .cf-widget-item:nth-child(6n) {
    margin-right: 0;
  }
  .cf-widget__columns[data-grid-width="7"] .cf-widget-item {
    width: calc((100% / 7) - 0.8571428571rem);
    margin-right: 1rem;
  }
  .cf-widget__columns[data-grid-width="7"] .cf-widget-item:nth-child(7n) {
    margin-right: 0;
  }
  .cf-widget__columns[data-grid-width="8"] .cf-widget-item {
    width: calc((100% / 8) - 0.875rem);
    margin-right: 1rem;
  }
  .cf-widget__columns[data-grid-width="8"] .cf-widget-item:nth-child(8n) {
    margin-right: 0;
  }
}
.cf-widget__columns .inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.cf-widget__columns .cf-widget-field__image {
  width: 100%;
  margin-bottom: 1rem;
}
.cf-widget__columns .cf-widget-field__image img {
  width: auto;
  display: block;
  border-radius: 5px;
  max-height: 150px;
  height: 150px;
}
.cf-widget__columns .cf-widget-field__title {
  text-align: left;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 2rem;
}
.cf-widget-field.cf-widget-field__body.cf-widget-field--html {
    margin: auto;
}
.cf-widget__columns .cf-widget-item {
  margin-bottom: 55px;
}
@media(max-width:768px) {
  .cf-widget__columns .cf-widget-item {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 749px) {
  .cf-widget__columns .cf-widget-field__title,
  .cf-widget__columns .cf-widget-field__body {
    padding-right: 3rem;
  }

}
@media screen and (min-width: 749px) {
  .cf-widget-product-info-columns .cf-widget-field__title,
  .cf-widget-product-info-columns .cf-widget-field__body {
    padding-right: 0rem!important;
  }
}
.cf-widget-you-might-also-like.cf-widget__text-bg-image{
  width:100%;
}
.cf-widget-you-might-also-like .container {
  width: 50%;
  display: inline-flex;
  display:-webkit-inline-flex;
}
@media screen and (min-width: 750px) {
.cf-widget-tabbed-accordion .inner{

  width:50%;
  float:right;
  height: auto;

}
.cf-widget-tabbed-accordion .cf-accordion-title{
  
  width:50%;
  float:left;

}
.cf-widget-tabbed-accordion {
  display:grid; 
}

.cf-widget-tabbed-accordion .cf-widget-item {
  display:inline-block; 
}

}
@media screen and (max-width: 749px) {
.cf-widget-tabbed-accordion .cf-widget-items-wrapper {
 margin:0px!important;
}
}
@media screen and (min-width: 750px) {
.cf-widget__accordion .cf-accordion-title:after {
  width: auto;
  height: auto;
}

.fc-field.field__title.field-type--text{
  text-align:center;
}

}
.child-fc-item span.icon.is-small{
  position: absolute;
  /* margin-left: -40px; */
  height: 1.2rem;
  width: 1.2rem;
  color:white;
  top: 5px;
}

.child-fc-item .fc-field.field__title.field-type--text{
text-align: left;
}

.child-fc-item.one-third.small-down--one-whole{
  margin-right:40px;
}

.fc-field.field__points.field-type--field-collection-json{
  padding: 40px 20px 0;
}

.cf-widget-field.cf-widget-field__body.cf-widget-field--html ul li,
.cf-widget-field.cf-widget-field__body.cf-widget-field--html p
{
  font-family:"bookmania";
  margin-bottom: 10px;
}

.custom-field--value .heading-section__preheading.subtitle {
  font-size:18px;
}

.cf-widget-you-might-also-like h2,
.cf-widget-you-might-also-like .pretext,
.cf-widget-you-might-also-like .money, 
.cf-widget-you-might-also-like h3
{
    color:white;
}

.cf-widget-you-might-also-like.cf-widget__text-bg-image {
  width: auto;
  margin-bottom:50px;
  background-size:cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cf-widget-you-might-also-like.cf-widget__text-bg-image .cf-widget-item .container{
  width: auto;
  display: block;
}
.cf-widget-you-might-also-like .cf-widget-item img {
  height:360px;
}
.cf-widget-you-might-also-like .pretext{
  padding-top:120px;
}

.cf-widget-featured-product-reference h2,
.cf-widget-featured-product-reference .pretext,
.cf-widget-featured-product-reference .money, 
.cf-widget-featured-product-reference h3
{
    color:white;
}

.cf-widget-featured-product-reference.cf-widget__text-bg-image {
  width: auto;
  margin-bottom:50px;
  background-size:cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cf-widget-featured-product-reference.cf-widget__text-bg-image .cf-widget-item .container{
  width: auto;
  display: block;
}
.cf-widget-featured-product-reference .cf-widget-item img {
  max-width: 475px;
  width: 100%;
}


.cf-widget-featured-product-reference {
  width: auto;
  margin-bottom:50px;
  background-size:contain;
  background-position: center;
  background-repeat: no-repeat;
  text-align:center;
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
}
.cf-widget-items-wrapper, .cf-widget-featured-product-reference .cf-widget-field__preheading {
  position: relative;

}

.cf-widget-featured-product-reference .cf-widget-items-wrapper::before, 
.cf-widget-featured-product-reference .cf-widget-items-wrapper::after{
  position: absolute;
  content: "";
  display: inline-block;
  background-size: cover;
}
.cf-widget-featured-product-reference .cf-widget-items-wrapper::before {
  background: url(/cdn/shop/files/candle-icon.svg?v=1620399888) center center scroll no-repeat;
  width: 165px;
  height: 240px;
  bottom: -20px;
  left: -24px;
}
.cf-widget-featured-product-reference .cf-widget-items-wrapper::after { 
  background: url(/cdn/shop/files/tree-fector.svg?v=1620399888) center center scroll no-repeat;
  width: 100px;
  height: 214px;
  bottom: 0;
  right: -14px;
}
.cf-widget-featured-product-reference .cf-widget-field__preheading::before {
  content: "";
  display: inline-block;
  width: 161px;
  height: 33px;
  margin: 0 auto 10px;
  background: url(/cdn/shop/files/yellow-squiggle.svg?v=1620399916) center center scroll no-repeat;
}
.pdp-featured-product__copy {
  padding: 0 5%;
}
@media screen and (max-width:798px){
  .cf-widget-featured-product-reference .cf-widget-items-wrapper::before {
    width: 80px;
    height: 114px;
    background-size: cover;
  }
  .cf-widget-featured-product-reference .cf-widget-items-wrapper::after {
    width: 39px;
    height: 82px;
    background-size: cover;
  }
  .cf-widget-featured-product-reference .cf-widget-field__preheading::before {
    width: 83px;
    height: 17px;
    background-size: cover;
  }
  .cf-widget-featured-product-reference{
    width: auto;
    margin-bottom:50px;
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align:center;
  }
}
.cf-widget-tabbed-accordion-widget---even{
  background-color: #4B6335;
  min-height:490px;
  font-family:"gopher";
}
.cf-widget-tabbed-accordion-widget---even .cf-widget-items-wrapper{
  padding:100px;
  display:flex;
}
.cf-widget-items-wrapper h2,
.cf-widget-items-wrapper .tab-contents-container{
color:white;
}
.cf-widget-items-wrapper h2{
  padding:0px 0px 40px 0;
}
.tab-labels{
  text-align:right;
  margin-right:80px;
}
@media screen and (max-width:798px){

  .cf-widget-tabbed-accordion-widget---even .cf-widget-items-wrapper{ 
    flex-direction: column;
    padding: 0; 
  }
  .cf-widget-tabbed-accordion-widget---even .cf-tab h2 {
    font-size: {{ settings.heading_size | times: 0.65 | floor | append: 'px' }};
    text-align: center;
  }
  .cf-widget-tabbed-accordion-widget---even .tab-labels{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: flex-start;
    margin: 0;
    width: 100%;
  }
}



/* CSS Updates JT */

a.navbar-item:hover::after{
  content:url(/cdn/shop/files/arrow.png?v=1619675380)!important;
  background-size:contain;
  width:auto;
  background-position:center;
  background-repeat: no-repeat;
  margin-left:15px;
}

.social-section__wrapper{
  border:0px solid transparent;
}

.social-section__wrapper a{
display:flex;
}  

.cf-widget-description-tabs,
.cf-widget-tabbed-accordion-widget---even{
  margin: 60px auto;
  padding:60px;
  color:white;
  border-radius: 25px 0 0 35px;
  width:100%;
  max-width: 1320px;
}



@media screen and (max-width:798px){
  .cf-widget-description-tabs,
  .cf-widget-tabbed-accordion-widget---even{
    margin: 0;
    padding:30px 15px;
  }
  .cf-widget-description-tabs {
    width: 100%;
    margin: 15px auto;
  }
}

.cf-widget-description-tabs .tab-labels h2,
.cf-widget-tabbed-accordion-widget---even .tab-labels h2{
  font-family: "gopher", serif;
  color: rgba(250, 249, 241, 0.6);
}
.cf-widget-description-tabs .cf-tab.active h2,
.cf-widget-tabbed-accordion-widget---even .cf-tab.active h2 {
  color: #fff;
}
.cf-widget-description-tabs .cf-tab {position: relative;}
@media only screen and (min-width: 799px) {
  .cf-widget-description-tabs .cf-tab::after {
    content: "";
    display: block;
    width: 34px;
    height: 34px;
    position: absolute;
     top: calc(50% + 10px);
     right: -44px;
    background: url(/cdn/shop/files/Icons--arrow__accordion.svg?v=1620396474) no-repeat center center scroll;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .cf-widget-description-tabs .cf-tab.active::after {
    opacity: 1;
  }
}

.cf-widget-description-tabs a,
.cf-widget-tabbed-accordion-widget---even a{
  color:white;
}

@media screen and (min-width:799px){
  .cf-widget-description-tabs .tab-labels,
  .cf-widget-description-tabs .tab-contents-container,
  .cf-widget-tabbed-accordion-widget---even .tab-labels,
  .cf-widget-tabbed-accordion-widget---even .tab-contents-container{
    width:50%;
  }
}
@media screen and (min-width:799px){
.cf-widget-description-tabs .cf-widget-items-wrapper,
  .cf-widget-tabbed-accordion-widget---even .cf-widget-items-wrapper{
    display:flex;
  }
}
.cf-widget-description-tabs li,
.cf-widget-tabbed-accordion-widget---even li{
    list-style: disc;
}

@media screen and (max-width:798px){
  .cf-widget-description-tabs .tab-labels,
  .cf-widget-tabbed-accordion-widget---even .tab-labels{
    padding-bottom:30px;
  }
}
@media screen and (min-width:799px){
  .cf-widget-description-tabs .tab-labels,
  .cf-widget-tabbed-accordion-widget---even .tab-labels{
    text-align:right;
    padding-right:80px;
  }
}
@media screen and (max-width:798px){
.cf-widget-description-tabs span.cf-tab h2,
  .cf-widget-tabbed-accordion-widget---even span.cf-tab h2{
    padding-bottom:15px;
  }
}
@media screen and (min-width:799px){
  .cf-widget-description-tabs span.cf-tab h2,
  .cf-widget-tabbed-accordion-widget---even span.cf-tab h2{
    padding-bottom:40px;
  }
}


.cf-widget-product-info-columns.cf-widget__columns {
  max-width: 1200px;
  margin: auto !important;
}

@media screen and (min-width: 749px) {
  .cf-widget-product-info-columns.cf-widget__columns {
    width: auto!important;
    margin-right: 1rem;
  }
}


@media screen and (min-width: 749px) {
  .cf-widget-item.medium-up--one-fourth {
    width:calc((25% / 1) - 1rem)!important;
    margin-right: 1rem;
  }
}
@media screen and (min-width: 749px) {
  .cf-widget-item.medium-up--one-third {
    width: calc((33% / 1) - 1rem)!important;
    margin-right: 1rem;
  }
}
@media screen and (min-width: 749px) {
  .cf-widget-item.medium-up--one-half {
    width: calc((50% / 1) - 1rem)!important;
    margin-right: 1rem;
  }
}
.how-it-works.section,
.cf-widget-product-info-columns h1,
.cf-widget-product-info-columns .cf-widget-field.cf-widget-field__title.cf-widget-field--text h3 {
  text-align: center;
}
.cf-widget-product-info-columns .cf-widget-field.cf-widget-field__title.cf-widget-field--text {
  margin: 0 auto;
}
@media screen and (max-width: 748px){
  .cf-widget-product-info-columns .cf-widget-field.cf-widget-field__title.cf-widget-field--text h3 {
    padding-bottom: 10px;
    font-size: 20px !important;
  }
}

@media screen and (min-width: 749px){
  .cf-widget-product-info-columns .cf-widget-field__title {
  margin: 0 auto;
  padding-bottom: 20px;
  }
}
.cf-widget-product-info-columns img{
max-width:260px;
margin:0 auto;
}

/** START V2 **/
.custom-fields-section.v2 {
  width: 100%;
  margin-top: 0;
}
.custom-fields-section.v2 > div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.custom-fields-section.v2 .cf-widget-section-title {
  text-align: center;
}
.custom-fields-section.v2 .custom-fields-section__item {
  width: 100%;
}
.custom-fields-section.v2 .custom-fields-section__item.cf-width-1-of-12 {
  width: calc(100% / 12 * 1);
}
.custom-fields-section.v2 .custom-fields-section__item.cf-width-2-of-12 {
  width: calc(100% / 12 * 2);
}
.custom-fields-section.v2 .custom-fields-section__item.cf-width-3-of-12 {
  width: calc(100% / 12 * 3);
}
.custom-fields-section.v2 .custom-fields-section__item.cf-width-4-of-12 {
  width: calc(100% / 12 * 4);
}
.custom-fields-section.v2 .custom-fields-section__item.cf-width-5-of-12 {
  width: calc(100% / 12 * 5);
}
.custom-fields-section.v2 .custom-fields-section__item.cf-width-6-of-12 {
  width: calc(100% / 12 * 6);
}
.custom-fields-section.v2 .custom-fields-section__item.cf-width-7-of-12 {
  width: calc(100% / 12 * 7);
}
.custom-fields-section.v2 .custom-fields-section__item.cf-width-8-of-12 {
  width: calc(100% / 12 * 8);
}
.custom-fields-section.v2 .custom-fields-section__item.cf-width-9-of-12 {
  width: calc(100% / 12 * 9);
}
.custom-fields-section.v2 .custom-fields-section__item.cf-width-10-of-12 {
  width: calc(100% / 12 * 10);
}
.custom-fields-section.v2 .custom-fields-section__item.cf-width-11-of-12 {
  width: calc(100% / 12 * 11);
}
.custom-fields-section.v2 .custom-fields-section__item.cf-width-12-of-12 {
  width: calc(100% / 12 * 12);
}
.custom-fields-section.v2 .custom-fields-section__item:not(.cf-width-12-of-12) {
  padding-right: 1.5rem;
}
.custom-fields-section.v2 .custom-fields-section__item:not(.cf-width-12-of-12):last-child {
  padding-right: 0;
}
@media screen and (max-width: 768px) {
  .custom-fields-section.v2 .custom-fields-section__item.cf-width-1-of-12 {
    width: 100%;
  }
  .custom-fields-section.v2 .custom-fields-section__item.cf-width-2-of-12 {
    width: 100%;
  }
  .custom-fields-section.v2 .custom-fields-section__item.cf-width-3-of-12 {
    width: 100%;
  }
  .custom-fields-section.v2 .custom-fields-section__item.cf-width-4-of-12 {
    width: 100%;
  }
  .custom-fields-section.v2 .custom-fields-section__item.cf-width-5-of-12 {
    width: 100%;
  }
  .custom-fields-section.v2 .custom-fields-section__item.cf-width-6-of-12 {
    width: 100%;
  }
  .custom-fields-section.v2 .custom-fields-section__item.cf-width-7-of-12 {
    width: 100%;
  }
  .custom-fields-section.v2 .custom-fields-section__item.cf-width-8-of-12 {
    width: 100%;
  }
  .custom-fields-section.v2 .custom-fields-section__item.cf-width-9-of-12 {
    width: 100%;
  }
  .custom-fields-section.v2 .custom-fields-section__item.cf-width-10-of-12 {
    width: 100%;
  }
  .custom-fields-section.v2 .custom-fields-section__item.cf-width-11-of-12 {
    width: 100%;
  }
  .custom-fields-section.v2 .custom-fields-section__item.cf-width-12-of-12 {
    width: 100%;
  }
}
.custom-fields-section.v2 .custom-fields-section__item > div:not(.custom-field) {
  margin-bottom: 0;
}

/** END V2 **/