/*
* ================
* Variables
* ================
*/
/*
* ================
* Import sass file 
* ================     
*/
/* Extra Small Screens (default - mobile first) */
.ast-col-1 {
  width: 8.333333%;
}

.ast-col-2 {
  width: 16.666667%;
}

.ast-col-3 {
  width: 25%;
}

.ast-col-4 {
  width: 33.333333%;
}

.ast-col-5 {
  width: 41.666667%;
}

.ast-col-6 {
  width: 50%;
}

.ast-col-7 {
  width: 58.333333%;
}

.ast-col-8 {
  width: 66.666667%;
}

.ast-col-9 {
  width: 75%;
}

.ast-col-10 {
  width: 83.333333%;
}

.ast-col-11 {
  width: 91.666667%;
}

.ast-col-12 {
  width: 100%;
}

/* Grid container and row styles */
.ast-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.ast-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/* Column base styles */
[class*=ast-col-] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}

/* Responsive behavior - stack on mobile */
@media (max-width: 575px) {
  [class*=ast-col-] {
    width: 100% !important;
    margin-bottom: 20px;
  }
  .ast-row {
    flex-direction: column;
  }
}
/* Ensure proper spacing */
/* Fix for common Astra layout issues */
.ast-width-md-4 {
  width: 33.333333%;
}

.ast-width-md-6 {
  width: 50%;
}

.ast-width-md-8 {
  width: 66.666667%;
}

.ast-width-md-12 {
  width: 100%;
}

/* Ensure proper display */
.ast-grid {
  display: grid;
  gap: 20px;
}

.ast-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.ast-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.ast-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Mobile responsive grid */
@media (max-width: 767px) {
  .ast-grid-2,
  .ast-grid-3,
  .ast-grid-4 {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .ast-grid-3,
  .ast-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Astra Grid Fix - Restore responsive grid functionality */
/* Small Screens (576px and up) */
@media (max-width: 767px) {
  .ast-col-sm-1 {
    width: 8.333333%;
  }
  .ast-col-sm-2 {
    width: 16.666667%;
  }
  .ast-col-sm-3 {
    width: 25%;
  }
  .ast-col-sm-4 {
    width: 33.333333%;
  }
  .ast-col-sm-5 {
    width: 41.666667%;
  }
  .ast-col-sm-6 {
    width: 50%;
  }
  .ast-col-sm-7 {
    width: 58.333333%;
  }
  .ast-col-sm-8 {
    width: 66.666667%;
  }
  .ast-col-sm-9 {
    width: 75%;
  }
  .ast-col-sm-10 {
    width: 83.333333%;
  }
  .ast-col-sm-11 {
    width: 91.666667%;
  }
  .ast-col-sm-12 {
    width: 100%;
  }
}
/* Medium Screens (768px and up) */
@media (min-width: 768px) {
  .ast-col-md-1 {
    width: 8.333333%;
  }
  .ast-col-md-2 {
    width: 16.666667%;
  }
  .ast-col-md-3 {
    width: 25%;
  }
  .ast-col-md-4 {
    width: 33.333333%;
  }
  .ast-col-md-5 {
    width: 41.666667%;
  }
  .ast-col-md-6 {
    width: 50%;
  }
  .ast-col-md-7 {
    width: 58.333333%;
  }
  .ast-col-md-8 {
    width: 66.666667%;
  }
  .ast-col-md-9 {
    width: 75%;
  }
  .ast-col-md-10 {
    width: 83.333333%;
  }
  .ast-col-md-11 {
    width: 91.666667%;
  }
  .ast-col-md-12 {
    width: 100%;
  }
}
/* Large Screens (992px and up) */
@media (min-width: 992px) {
  .ast-col-lg-1 {
    width: 8.333333%;
  }
  .ast-col-lg-2 {
    width: 16.666667%;
  }
  .ast-col-lg-3 {
    width: 25%;
  }
  .ast-col-lg-4 {
    width: 33.333333%;
  }
  .ast-col-lg-5 {
    width: 41.666667%;
  }
  .ast-col-lg-6 {
    width: 50%;
  }
  .ast-col-lg-7 {
    width: 58.333333%;
  }
  .ast-col-lg-8 {
    width: 66.666667%;
  }
  .ast-col-lg-9 {
    width: 75%;
  }
  .ast-col-lg-10 {
    width: 83.333333%;
  }
  .ast-col-lg-11 {
    width: 91.666667%;
  }
  .ast-col-lg-12 {
    width: 100%;
  }
}
/* Extra Large Screens (1200px and up) */
@media (min-width: 1200px) {
  .ast-col-xl-1 {
    width: 8.333333%;
  }
  .ast-col-xl-2 {
    width: 16.666667%;
  }
  .ast-col-xl-3 {
    width: 25%;
  }
  .ast-col-xl-4 {
    width: 33.333333%;
  }
  .ast-col-xl-5 {
    width: 41.666667%;
  }
  .ast-col-xl-6 {
    width: 50%;
  }
  .ast-col-xl-7 {
    width: 58.333333%;
  }
  .ast-col-xl-8 {
    width: 66.666667%;
  }
  .ast-col-xl-9 {
    width: 75%;
  }
  .ast-col-xl-10 {
    width: 83.333333%;
  }
  .ast-col-xl-11 {
    width: 91.666667%;
  }
  .ast-col-xl-12 {
    width: 100%;
  }
}
.sensi-blog-post-card {
  background-color: #fff;
  height: 100%;
}
.sensi-blog-post-card .sensi-blog-post-card-body {
  padding-bottom: 1em;
}
.sensi-blog-post-card .post-thumb {
  position: relative;
}
.sensi-blog-post-card .post-thumb .video-play-button {
  position: absolute;
  width: 88px;
  height: 88px;
  left: 50%;
  top: 50%;
  margin-top: -44px;
  margin-left: -44px;
  z-index: 1;
  display: inline-block;
  background-image: url("../images/circle-cropped.png?v=1");
  background-size: cover;
  background-position: 0 0;
  cursor: pointer;
}
.sensi-blog-post-card .post-thumb .video-play-button:hover {
  text-decoration: none;
}
.sensi-blog-post-card .post-thumb img {
  width: 100%;
  object-fit: cover;
}
.sensi-blog-post-card .post-thumb iframe {
  width: 100%;
  display: block;
  object-fit: cover;
}
.sensi-blog-post-card .post-thumb img,
.sensi-blog-post-card .post-thumb iframe {
  height: 224px;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .sensi-blog-post-card .post-thumb img,
  .sensi-blog-post-card .post-thumb iframe {
    height: auto;
  }
}
@media (max-width: 575.98px) {
  .sensi-blog-post-card .post-thumb img,
  .sensi-blog-post-card .post-thumb iframe {
    height: auto;
  }
}
.sensi-blog-post-card .post-content {
  padding: 1.5rem;
  background-color: #fff;
  height: auto;
  margin-bottom: 1em;
}
.sensi-blog-post-card .post-content header.entry-header h2,
.sensi-blog-post-card .post-content header.entry-header h3,
.sensi-blog-post-card .post-content header.entry-header h2 > a,
.sensi-blog-post-card .post-content header.entry-header h3 > a {
  font-size: 22px;
  line-height: 34px;
}
.sensi-blog-post-card .post-content header.entry-header h2 > a,
.sensi-blog-post-card .post-content header.entry-header h3 > a {
  font-family: inherit;
  font-weight: inherit;
}
.sensi-blog-post-card .ast-button-wrapper {
  margin-bottom: 0.5em;
}
.sensi-blog-post-card .ast-button-wrapper .cat-links {
  display: inline-block;
}
.sensi-blog-post-card .ast-button-wrapper .cat-links > a {
  margin-bottom: 5px;
}
.sensi-blog-post-card .ast-button-wrapper a {
  font-weight: 600;
  color: #634078;
  font-size: 13px;
  box-sizing: border-box;
  border: 1px solid #634078;
  border-radius: 100px;
  background-color: #ffffff;
  padding: 5px 25px;
  display: inline-block;
}
.sensi-blog-post-card .permalink,
.sensi-blog-post-card .read-article {
  margin-bottom: 1em;
}

.ast-load-more.active {
  border-color: #634078;
  line-height: 2.5em !important;
  border-radius: 100px;
}
.ast-load-more.no-more {
  border-color: #eaeaea;
}

body.sensi-blog.site-sensiblog .ast-button-wrapper a.oval,
body.sensi-blog.site-weedshop .ast-button-wrapper a.oval {
  font-weight: 600;
  color: #634078;
  font-size: 13px;
  box-sizing: border-box;
  border: 1px solid #634078;
  border-radius: 100px;
  background-color: #ffffff;
  padding: 5px 25px;
  display: inline-block;
}

.author-and-expert ul li:nth-child(2) {
  margin-top: 3em;
}

.user-card {
  background-color: #ffffff;
  text-align: center;
  margin-bottom: 1em;
}
.user-card .user-avatar {
  max-height: 300px;
  overflow-y: hidden;
}
.user-card .user-avatar img {
  width: 100%;
  height: auto;
}
.user-card .user-title {
  margin-top: 0.5em;
  font-weight: bold;
  font-size: 22px;
  font-family: Merriweather;
}
.user-card .user-description {
  font-weight: 500;
  padding: 0.75em 0.5em;
  font-size: 15px;
  white-space: pre-wrap;
}
.user-card .user-link {
  display: block;
  text-align: center;
  background-color: #89c53c;
  padding: 0.75em 0.5em;
  color: #ffffff;
}

.sensi-blog .ast-breadcrumbs-wrapper {
  width: 100%;
  padding-left: 20px;
  padding-right: 0px;
  font-family: Montserrat;
  font-size: 14px;
  padding-top: 1em;
  padding-bottom: 1em;
  z-index: 1;
  position: relative;
}
@media (max-width: 1440px) {
  .sensi-blog .ast-breadcrumbs-wrapper {
    padding-right: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .sensi-blog .ast-breadcrumbs-wrapper .ast-breadcrumbs-inner {
    text-align: right;
  }
}
@media (min-width: 1200px) {
  .sensi-blog .ast-breadcrumbs-wrapper .ast-breadcrumbs-inner {
    text-align: right;
  }
}
.sensi-blog .ast-breadcrumbs-wrapper .ast-breadcrumbs-inner .breadcrumbs {
  color: #000;
  font-weight: 500;
}
.sensi-blog .ast-breadcrumbs-wrapper .ast-breadcrumbs-inner .breadcrumbs ul li span {
  text-decoration: underline;
}
.sensi-blog .ast-breadcrumbs-wrapper .ast-breadcrumbs-inner .breadcrumbs ul li:last-child span {
  text-decoration: none;
}
.sensi-blog .ast-breadcrumbs-wrapper .ast-breadcrumbs-inner .breadcrumbs ul li a {
  color: #000;
}

.section-title-with-border {
  border-bottom: 2px solid #3c3c3c;
  margin: 1em 0 1em 0;
  font-size: 20px;
  line-height: 32px;
  font-weight: bold;
  font-family: Montserrat;
  color: #3c3c3c;
  margin-top: 2em;
}

body.site-sensiblog .section-title-without-border {
  margin: 1em 0 1em 0;
  font-size: 20px;
  line-height: 32px;
  font-weight: bold;
  font-family: Montserrat;
  color: #3c3c3c;
  margin-top: 2em;
}

.header-hero {
  margin: 0 auto 2.5rem auto;
  width: 100%;
  background: #fff;
  padding: 30px 150px;
}
@media (max-width: 767.98px) {
  .header-hero {
    padding: 30px;
  }
}
.header-hero > div {
  max-width: 1027px;
  margin: 0 auto;
}
.header-hero h1 {
  font-size: 30px;
  line-height: 50px;
  text-align: center;
}
.header-hero p {
  font-family: Montserrat;
  text-align: center;
  font-size: 18px;
  line-height: 32px;
  color: #000;
}

@media (max-width: 767.98px) {
  body.sensi-blog.site-sensiblog.archive .header-hero, body.sensi-blog.site-sensiblog.category .header-hero, body.sensi-blog.site-sensiblog.home .header-hero,
  body.sensi-blog.site-weedshop.archive .header-hero,
  body.sensi-blog.site-weedshop.category .header-hero,
  body.sensi-blog.site-weedshop.home .header-hero {
    padding: 10px;
    margin-bottom: 1.5rem;
  }
  body.sensi-blog.site-sensiblog.archive .header-hero p, body.sensi-blog.site-sensiblog.category .header-hero p, body.sensi-blog.site-sensiblog.home .header-hero p,
  body.sensi-blog.site-weedshop.archive .header-hero p,
  body.sensi-blog.site-weedshop.category .header-hero p,
  body.sensi-blog.site-weedshop.home .header-hero p {
    display: none;
  }
  body.sensi-blog.site-sensiblog.archive article.ast-article-post, body.sensi-blog.site-sensiblog.category article.ast-article-post,
  body.sensi-blog.site-weedshop.archive article.ast-article-post,
  body.sensi-blog.site-weedshop.category article.ast-article-post {
    margin-bottom: 0;
  }
}

.recente-artikelen {
  display: flex;
  flex-wrap: wrap;
  clear: both;
}
.recente-artikelen ul {
  list-style: none;
}
.recente-artikelen ul li.post,
.recente-artikelen ul li.recente-artikelen-post {
  position: relative;
}
.recente-artikelen .articles-sensi-blog-block ul li.post .sensi-blog-post-card,
.recente-artikelen .articles-sensi-blog-block ul li.post > article,
.recente-artikelen .articles-sensi-blog-block ul li.recente-artikelen-post > article {
  width: 100%;
  height: 100%;
}
.recente-artikelen .articles-sensi-blog-block ul li.post .sensi-blog-post-card .post-content .entry-content {
  margin-bottom: 30px;
}
.recente-artikelen .articles-sensi-blog-block ul li.post .sensi-blog-post-card .post-content a.permalink {
  text-decoration: underline;
  position: absolute;
  bottom: 17px;
}

.category-articles {
  margin-bottom: 2.992em;
}

.category-articles ul {
  list-style: none;
}

.category-articles ul li.post {
  position: relative;
}
.category-articles ul li.post .sensi-blog-post-card {
  height: 100%;
}

.category-articles-post .sensi-blog-post-card .post-thumb img,
.category-articles-post .sensi-blog-post-card .post-thumb iframe {
  height: 300px;
}

.article-ads {
  text-align: center;
  margin-bottom: 2rem;
}

.article-ads:after {
  display: table;
}

.articles-with-ads .articles-with-ads-post,
.articles-with-ads .ajax-load-more-wrap .articles-with-ads-post {
  position: relative;
}

.articles-with-ads .sensi-blog-post-card .post-content {
  height: auto;
}

.articles-with-ads .articles-with-ads-post .post-content .entry-content {
  margin-bottom: 2rem;
}

.articles-sensi-blog-block .alm-btn-wrap .alm-load-more-btn {
  color: #ffffff;
  font-family: Montserrat;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  border-radius: 0;
  height: auto;
  padding: 14px 40px;
  border-radius: 0px;
}

.category #content {
  padding: 0 1rem;
}
.category .category-overview section.articles-with-ads-post {
  padding-left: 20px;
  padding-right: 20px;
  float: left;
  display: flex;
  flex: 0 0 100%;
  margin-bottom: 2rem;
  margin-right: 0;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .category .category-overview section.articles-with-ads-post {
    flex: 0 0 50%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .category .category-overview section.articles-with-ads-post {
    flex: 0 0 33.33%;
  }
}
@media (min-width: 1200px) {
  .category .category-overview section.articles-with-ads-post {
    flex: 0 0 25%;
  }
}
.category .category-overview section.articles-with-ads-post .entry-title {
  font-family: "Merriweather";
  font-weight: bold;
  font-size: 22px;
  line-height: 34px;
}
.category .category-overview section.articles-with-ads-post .entry-meta {
  display: flex;
  flex-flow: column;
}
.category .category-overview section.articles-with-ads-post .entry-meta .author-name {
  color: #634078;
  font-size: 15px;
  line-height: 24px;
  font-family: "Montserrat";
  font-weight: 500;
}
.category .category-overview section.articles-with-ads-post .entry-meta :nth-child(2) {
  display: none;
}
.category .category-overview .alm-reveal {
  display: flex;
  flex-flow: row wrap;
  height: 100%;
}
.category .category-overview.load-more .alm-listing {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
}
.category .category-overview.load-more .alm-listing .articles-with-ads-post {
  width: 50%;
  flex: 0 0 calc(50% - 15px);
  padding-left: 0;
  padding-right: 0;
}
.category .category-overview.load-more .sensi-blog-post-card {
  flex: 0 0 100%;
}
.category .category-overview.load-more .sensi-blog-post-card .sensi-blog-post-card-body {
  height: 100%;
  padding-bottom: 0;
}
.category .category-overview.load-more .sensi-blog-post-card .sensi-blog-post-card-body .post-thumb img,
.category .category-overview.load-more .sensi-blog-post-card .sensi-blog-post-card-body .post-thumb iframe {
  height: 180px;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .category .category-overview.load-more .sensi-blog-post-card .sensi-blog-post-card-body .post-thumb img,
  .category .category-overview.load-more .sensi-blog-post-card .sensi-blog-post-card-body .post-thumb iframe {
    height: 150px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .category .category-overview.load-more .sensi-blog-post-card .sensi-blog-post-card-body .post-thumb img,
  .category .category-overview.load-more .sensi-blog-post-card .sensi-blog-post-card-body .post-thumb iframe {
    height: auto;
  }
}
@media (max-width: 575.98px) {
  .category .category-overview.load-more .sensi-blog-post-card .sensi-blog-post-card-body .post-thumb img,
  .category .category-overview.load-more .sensi-blog-post-card .sensi-blog-post-card-body .post-thumb iframe {
    height: auto;
  }
}
.category .category-overview.load-more .sensi-blog-post-card .sensi-blog-post-card-body .post-content {
  height: auto !important;
}
.category .category-overview.load-more .sensi-blog-post-card .sensi-blog-post-card-body .post-content .entry-content {
  display: none;
}
.category .category-overview.load-more .sensi-blog-post-card .sensi-blog-post-card-body .post-content .permalink {
  display: none;
}
.category .category-overview.load-more .sensi-blog-post-card .sensi-blog-post-card-body .post-content h2,
.category .category-overview.load-more .sensi-blog-post-card .sensi-blog-post-card-body .post-content h3 > a {
  font-size: 22px;
  line-height: 34px;
}
.category .category-overview.load-more .sensi-blog-post-card .sensi-blog-post-card-body .post-content h3 > a {
  font-family: inherit;
  font-weight: inherit;
}
.category .category-overview.load-more section.recente-artikelen ul li .entry-content {
  height: auto !important;
}
.category .category-overview.load-more section.recente-artikelen ul li .post-thumb img,
.category .category-overview.load-more section.recente-artikelen ul li .post-thumb iframe {
  height: auto;
}
@media (min-width: 1200px) {
  .category .category-overview.load-more section.recente-artikelen ul li .post-thumb img,
  .category .category-overview.load-more section.recente-artikelen ul li .post-thumb iframe {
    height: 224px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .category .category-overview.load-more section.recente-artikelen ul li .post-thumb img,
  .category .category-overview.load-more section.recente-artikelen ul li .post-thumb iframe {
    height: 200px;
  }
}

body.category .sensi-blog-post-card,
body.category .recente-artikelen > .articles-sensi-blog-block > ul > li.post > .sensi-blog-post-card {
  height: auto;
}

.article-ads {
  text-align: center;
  margin-bottom: 2rem;
}

.article-ads:after {
  display: table;
}

.articles-with-ads.articles-sensi-blog-block .alm-listing {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 2rem;
}
.articles-with-ads.articles-sensi-blog-block .alm-listing .articles-with-ads-post {
  flex: 0 1 calc(50% - 1em);
  width: 48%;
}
@media (max-width: 767.98px) {
  .articles-with-ads.articles-sensi-blog-block .alm-listing .articles-with-ads-post {
    width: 100%;
    flex: 0 1 100%;
  }
}

.articles-loadmore .articles-with-ads-post,
.articles-loadmore .articles-with-ads-post {
  position: relative;
}

.articles-with-ads .sensi-blog-post-card .post-content {
  height: auto;
}

.articles-with-ads .articles-with-ads-post .post-content .entry-content {
  margin-bottom: 2rem;
}

.articles-sensi-blog-block .alm-btn-wrap .alm-load-more-btn {
  color: #ffffff;
  font-family: Montserrat;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  border-radius: 0;
  height: auto;
  padding: 14px 40px;
  border-radius: 0px;
}

body.sensi-blog.site-sensiblog .related-articles .section-head h3.section-title,
body.sensi-blog.site-weedshop .related-articles .section-head h3.section-title {
  font-size: 20px;
}
@media (max-width: 767.98px) {
  body.sensi-blog.site-sensiblog .related-articles .section-head h3.section-title,
  body.sensi-blog.site-weedshop .related-articles .section-head h3.section-title {
    font-size: 16px;
  }
}

.related-articles {
  overflow: auto;
  margin-bottom: 2rem;
}
.related-articles:after {
  display: table;
  content: " ";
}
.related-articles .section-head h3.section-title {
  margin-bottom: 0;
}
.related-articles .section-head h3.section-title a {
  color: inherit;
}
@media (max-width: 575.98px) {
  .related-articles .section-head {
    margin-bottom: 1rem;
  }
}
.related-articles .related-article {
  overflow: auto;
  display: flex;
  align-items: center;
  height: auto;
}
@media (max-width: 575.98px) {
  .related-articles .related-article {
    padding: 10px;
  }
}
.related-articles .related-article.list-article .post-thumb {
  width: 260px;
  vertical-align: top;
  float: left;
}
@media (max-width: 575.98px) {
  .related-articles .related-article.list-article .post-thumb {
    width: 40%;
    padding: 0;
    padding-right: 5px;
  }
}
@media (max-width: 450px) {
  .related-articles .related-article.list-article .post-thumb {
    width: 100%;
    padding: 0;
    padding-right: 0;
  }
}
.related-articles .related-article.list-article .post-thumb img {
  width: 100%;
  height: auto;
}
@media (max-width: 420px) {
  .related-articles .related-article.list-article .post-thumb img {
    max-height: 180px;
  }
}
.related-articles .related-article.list-article .text-contents {
  width: 395px;
  display: inline-block;
  padding: 10px 0;
  padding-left: 20px;
}
@media (max-width: 575.98px) {
  .related-articles .related-article.list-article .text-contents {
    width: 60%;
    padding: 0 5px;
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}
@media (max-width: 450px) {
  .related-articles .related-article.list-article .text-contents {
    width: 100%;
    padding: 10px 0;
    padding-left: 1.5em;
    padding-right: 1.5em;
    padding: 0 0 0 10px;
  }
}
@media (max-width: 450px) {
  .related-articles .related-article.list-article .text-contents .entry-meta {
    font-size: 11px;
  }
}
.related-articles .related-article.list-article .text-contents .entry-meta .author a span {
  color: #634078;
}
.related-articles .related-article.list-article .text-contents .entry-meta .posted-on span {
  color: #999999;
}
.related-articles .related-article.list-article .text-contents .cat-links a {
  font-weight: 600;
  color: #634078;
  font-size: 13px;
  box-sizing: border-box;
  border: none;
  border-radius: 100px;
  background-color: transparent;
  padding: 0;
  margin-bottom: 5px;
}
@media (max-width: 450px) {
  .related-articles .related-article.list-article .text-contents .cat-links a {
    font-size: 12px;
  }
}
.related-articles .related-article.list-article .text-contents > h3 {
  font-size: 1.3rem;
}
@media (max-width: 575.98px) {
  .related-articles .related-article.list-article .text-contents > h3 {
    font-size: 11px;
    margin-bottom: 0.25rem;
  }
}
.related-articles .related-article.list-article .text-contents > h3 a {
  color: #000000;
}
@media (max-width: 450px) {
  .related-articles .related-article.list-article .text-contents {
    width: 100%;
  }
  .related-articles .related-article.list-article .text-contents .ast-button-wrapper {
    margin-bottom: 0;
  }
}

.sensi-blog-toggle-share-container {
  text-align: right;
}

.sensi-blog-share.social {
  text-align: left;
  display: block;
}
.sensi-blog-share.social .icon {
  height: 20px;
  padding: 2px 2px 2px 26px;
  position: relative;
  margin-right: 10px;
  clear: both;
}
.sensi-blog-share.social .icon span {
  font-family: "lucida grande", tahoma, verdana, arial, sans-serif !important;
  font-weight: bold;
  font-size: 10px;
  display: inline-block;
  vertical-align: top;
  padding-top: 2px;
  padding-left: 10px;
  padding-right: 10px;
}
.sensi-blog-share.social .icon:hover {
  color: #fff;
}
.sensi-blog-share.social .icon::before {
  position: absolute;
  left: 6px;
  top: 2px;
}
.sensi-blog-share.social .icon:last-child {
  margin-right: 0;
}
.sensi-blog-share.social .icon-facebook {
  background: #3b5998;
  color: #fff;
}
.sensi-blog-share.social .icon-facebook:before {
  font-size: 15px;
}
.sensi-blog-share.social .icon-twitter {
  background: #2ca9e1;
  color: #fff;
}
.sensi-blog-share.social .icon-twitter:before {
  font-size: 15px;
}

.sensi-blog-toggle-share {
  cursor: pointer;
  color: #666666;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  padding-left: 30px;
  position: relative;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.sensi-blog-toggle-share .icon-share:before {
  font-size: 17px;
  content: "\e90a";
  position: absolute;
  display: inline-block;
  left: 0;
  top: 0;
  color: #000;
}
.sensi-blog-toggle-share.open {
  color: #89c53c;
}
.sensi-blog-toggle-share.open .icon-share:before {
  color: #89c53c;
}

.sensi-blog-toggle-share-container {
  display: none;
  width: 200px;
  background: #f5f5f5;
  position: absolute;
  right: 0;
  top: 27px;
  padding: 10px 15px 15px 15px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  text-align: center;
}
.sensi-blog-toggle-share-container:before {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  position: absolute;
  right: 10px;
  top: -4px;
  border-bottom: 5px solid #f5f5f5;
  content: " ";
  display: inline-block;
}
.sensi-blog-toggle-share-container.open {
  display: block;
}

.page-template-template-home .recente-artikelen-post .sensi-blog-post-card .post-thumb img,
.page-template-template-home .recente-artikelen-post .sensi-blog-post-card .post-thumb iframe {
  height: 224px;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .page-template-template-home .recente-artikelen-post .sensi-blog-post-card .post-thumb img,
  .page-template-template-home .recente-artikelen-post .sensi-blog-post-card .post-thumb iframe {
    height: auto;
  }
}
@media (max-width: 575.98px) {
  .page-template-template-home .recente-artikelen-post .sensi-blog-post-card .post-thumb img,
  .page-template-template-home .recente-artikelen-post .sensi-blog-post-card .post-thumb iframe {
    height: auto;
  }
}
.page-template-template-home .articles-with-ads .articles-sensi-blog-block .post-thumb-img-content.post-thumb img,
.page-template-template-home .articles-with-ads .articles-sensi-blog-block .post-thumb-img-content.post-thumb iframe {
  height: 365px;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .page-template-template-home .category-articles .category-articles-post {
    margin-bottom: 20px;
  }
}
.page-template-template-home .category-articles .category-articles-post .sensi-blog-post-card .post-thumb img,
.page-template-template-home .category-articles .category-articles-post .sensi-blog-post-card .post-thumb iframe {
  height: 179px;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .page-template-template-home .category-articles .category-articles-post .sensi-blog-post-card .post-thumb img,
  .page-template-template-home .category-articles .category-articles-post .sensi-blog-post-card .post-thumb iframe {
    height: auto;
  }
}
@media (max-width: 575.98px) {
  .page-template-template-home .category-articles .category-articles-post .sensi-blog-post-card .post-thumb img,
  .page-template-template-home .category-articles .category-articles-post .sensi-blog-post-card .post-thumb iframe {
    height: auto;
  }
}
@media (max-width: 575.98px) {
  .page-template-template-home .articles-with-ads .articles-with-ads-post,
  .page-template-template-home .articles-with-ads .ajax-load-more-wrap .articles-with-ads-post {
    width: 100%;
  }
}

/*
* ===========
* SINGLE POST
* ===========
*/
body.sensi-blog.single.site-sensiblog .entry-content p,
body.sensi-blog.single.site-sensiblog .entry-content ul li,
body.sensi-blog.single.site-sensiblog .entry-content ol li,
body.sensi-blog.single.site-weedshop .entry-content p,
body.sensi-blog.single.site-weedshop .entry-content ul li,
body.sensi-blog.single.site-weedshop .entry-content ol li {
  font-size: 20px;
  line-height: 32px;
}
@media (max-width: 980px) {
  body.sensi-blog.single.site-sensiblog .entry-content p,
  body.sensi-blog.single.site-sensiblog .entry-content ul li,
  body.sensi-blog.single.site-sensiblog .entry-content ol li,
  body.sensi-blog.single.site-weedshop .entry-content p,
  body.sensi-blog.single.site-weedshop .entry-content ul li,
  body.sensi-blog.single.site-weedshop .entry-content ol li {
    line-height: 25px;
    font-size: 16px;
  }
}
@media (max-width: 980px) {
  body.sensi-blog.single.site-sensiblog .entry-content .wp-block-image figcaption,
  body.sensi-blog.single.site-weedshop .entry-content .wp-block-image figcaption {
    font-size: 0.9rem;
  }
}

.sensi-blog.single .ast-container {
  padding-left: 0;
  padding-right: 0;
}
.sensi-blog.single #comments {
  border: 0;
  background: #fff;
  padding: 0 1.5em 1.5em 1.5em;
  margin: 0 !important;
}
.sensi-blog.single .article-single-post {
  margin: 0 auto;
  max-width: 660px;
}
.sensi-blog.single h1.post-title-with-video {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.sensi-blog.single .single-post-featured-title-upper {
  max-width: 660px;
  margin: 0 auto;
}
.sensi-blog.single .single-post-featured-title-wrapper .post-thumb img {
  width: 100%;
  max-height: 800px;
  object-fit: cover;
}
.sensi-blog.single .single-post-featured-title-wrapper .single-post-featured-title {
  position: relative;
}
.sensi-blog.single .single-post-featured-title-wrapper .single-post-featured-title h1.post-title {
  height: 100%;
  text-align: center;
  position: absolute;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  padding-left: 1em;
  padding-right: 1em;
  word-break: break-word;
}
@media (max-width: 575.98px) {
  .sensi-blog.single .single-post-featured-title-wrapper .single-post-featured-title h1.post-title {
    font-size: 30px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .sensi-blog.single .single-post-featured-title-wrapper .single-post-featured-title h1.post-title {
    font-size: 40px;
    top: -8%;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .sensi-blog.single .single-post-featured-title-wrapper .single-post-featured-title h1.post-title {
    font-size: 50px;
    top: -10%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .sensi-blog.single .single-post-featured-title-wrapper .single-post-featured-title h1.post-title {
    font-size: 60px;
    top: -15%;
    line-height: 80px;
  }
}
@media (min-width: 1200px) {
  .sensi-blog.single .single-post-featured-title-wrapper .single-post-featured-title h1.post-title {
    font-size: 68px;
    top: -20%;
    line-height: 80px;
  }
}
.sensi-blog.single .single-post-featured-title-wrapper .single-post-featured-title iframe {
  width: 100%;
}
@media (min-width: 894px) and (max-width: 980px) {
  .sensi-blog.single .single-post-featured-title-wrapper .single-post-featured-title iframe {
    background-color: #000;
    height: 574px !important;
  }
}
@media (min-width: 574px) and (max-width: 893px) {
  .sensi-blog.single .single-post-featured-title-wrapper .single-post-featured-title iframe {
    background-color: #000;
    height: 574px !important;
  }
}
@media (min-width: 420px) and (max-width: 573px) {
  .sensi-blog.single .single-post-featured-title-wrapper .single-post-featured-title iframe {
    background-color: #000;
    height: 420px !important;
  }
}
@media (min-width: 0px) and (max-width: 419px) {
  .sensi-blog.single .single-post-featured-title-wrapper .single-post-featured-title iframe {
    background-color: #000;
    height: 220px !important;
  }
}
.sensi-blog.single header.entry-header {
  padding-top: 1em;
}
.sensi-blog.single header.entry-header .sensi-reviewer-post-meta-wrapper {
  color: #666666;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
}
.sensi-blog.single header.entry-header .sensi-reviewer-post-meta-wrapper ul {
  padding-left: 0;
  margin: 0 0 0;
}
.sensi-blog.single header.entry-header .sensi-reviewer-post-meta-wrapper ul li {
  list-style: none;
}
.sensi-blog.single header.entry-header .sensi-reviewer-post-meta-wrapper ul li span {
  color: #000;
}
.sensi-blog.single .entry-content p,
.sensi-blog.single .entry-content ul li,
.sensi-blog.single .entry-content ol li {
  font-size: 20px;
  line-height: 32px;
}
.sensi-blog.single .entry-content .excerpt-before-content {
  font-weight: bold;
}
.sensi-blog.single .entry-content .entry-meta {
  color: #666666;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
}
.sensi-blog.single .entry-content .entry-meta span {
  color: #000;
}
.sensi-blog.single .single-post-meta {
  padding: 1em 0 1em 0;
}
.sensi-blog.single .single-post-meta .sensi-block-row {
  display: flex;
  flex-flow: row wrap;
}
@media (max-width: 575.98px) {
  .sensi-blog.single .single-post-meta .sensi-block-row {
    flex-flow: row;
    flex-wrap: wrap-reverse !important;
  }
}
.sensi-blog.single .single-post-meta .sensi-block-row .sensi-blog-col:first-child {
  flex: 0 0 75%;
}
.sensi-blog.single .single-post-meta .sensi-block-row .sensi-blog-col:last-child {
  flex: 0 0 25%;
  align-items: center;
  justify-content: flex-end;
  display: flex;
}
@media (max-width: 575.98px) {
  .sensi-blog.single .single-post-meta .sensi-block-row .sensi-blog-col {
    flex: 0 0 100% !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .sensi-blog.blog .ast-row article.ast-article-post {
    width: 50% !important;
  }
  .sensi-blog.blog .ast-row article.ast-article-post .sensi-blog-post-card .post-content {
    height: auto;
  }
}

.recente-artikelen-post.ast-article-post:last-child {
  margin-bottom: 2.5em;
}

body.page-template-default .article-single-page {
  margin: 0 auto;
  max-width: 660px;
}

body.sensi-blog.site-sensiblog .category-list-card ul {
  list-style: none;
  padding: 0 0 0 1em;
  margin: 0;
}
body.sensi-blog.site-sensiblog .category-list-card ul li {
  padding: 3px 0;
}
body.sensi-blog.site-sensiblog .category-list-card ul li a {
  font-family: Montserrat;
  color: #3c3c3c;
  line-height: 32px;
  margin: 0 0 0 auto;
  font-weight: bold;
}
body.sensi-blog.site-sensiblog .category-list-card ul li a::before {
  display: inline-block;
  content: "-";
  width: 1em;
  margin-left: -1em;
}

body.sensi-blog #content main#main .wp-block-uagb-table-of-contents .uagb-toc__wrap {
  background: transparent;
  border: none;
  padding: 10px 0 0 0;
  display: block;
  margin-bottom: 20px;
}
body.sensi-blog #content main#main .wp-block-uagb-table-of-contents .uagb-toc__wrap .uagb-toc__list-wrap {
  column-count: 1;
}
body.sensi-blog #content main#main .wp-block-uagb-table-of-contents .uagb-toc__wrap .uagb-toc__list-wrap .uagb-toc__list {
  padding-left: 0;
}
body.sensi-blog #content main#main .wp-block-uagb-table-of-contents .uagb-toc__wrap .uagb-toc__title-wrap {
  border-bottom: solid #3c3c3c 2px;
  width: 100%;
  margin-bottom: 15px;
  display: flex;
}
body.sensi-blog #content main#main .wp-block-uagb-table-of-contents .uagb-toc__wrap .uagb-toc__title-wrap .uagb-toc__title {
  display: inline-block;
  font-family: Montserrat;
  color: #3c3c3c;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 0;
  font-weight: bold;
}

.trustpilot {
  font-size: 1rem;
}
.trustpilot .customer-say {
  padding-right: 15px;
}
.trustpilot .trustpilot-string-container {
  line-height: 23px;
}
.trustpilot .trustpilot-string-container #trustpilot-string {
  font-size: 1.4rem;
  vertical-align: bottom;
}
.trustpilot .trustpilot-star-img-container {
  padding: 0 10px;
  padding-left: 10px;
}
.trustpilot #trustpilot-anchor {
  vertical-align: text-bottom;
  margin-left: 10px;
}
.trustpilot #trustpilot-anchor .trustpilot-icon {
  width: 90px;
}

.sensi-blog.single-recipe .single-post-featured-title .post-title {
  z-index: 1;
}
.sensi-blog.single-recipe .single-post-featured-title .post-thumb {
  position: relative;
  padding-bottom: 56.34%;
}
.sensi-blog.single-recipe .single-post-featured-title .post-thumb iframe,
.sensi-blog.single-recipe .single-post-featured-title .post-thumb img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

body.site-sensiblog .search input {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 10px 0 20px;
  border: 0;
  font-size: 18px;
  font-weight: normal;
  background: #fafafa;
  -webkit-box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.2);
}
body.site-sensiblog .search input:hover, body.site-sensiblog .search input:active, body.site-sensiblog .search input:focus {
  background: #fafafa;
  -webkit-box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.2);
}

/*
* ===========
* AUTHOR EXPERT
* ===========
*/
body.page-template-template-author-expert .user-avatar,
body.author .user-avatar {
  display: inline-block;
  width: 100%;
}
body.page-template-template-author-expert .user-avatar img,
body.author .user-avatar img {
  width: 100%;
}
body.page-template-template-author-expert .author-expert-article,
body.author .author-expert-article {
  margin-bottom: 60px;
}
body.page-template-template-author-expert .author-expert-article h1,
body.author .author-expert-article h1 {
  color: #000000;
  font-family: Merriweather;
  font-size: 22px;
  font-weight: bold;
  line-height: 34px;
}
body.page-template-template-author-expert ul.roles,
body.author ul.roles {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
}
body.page-template-template-author-expert ul.roles li,
body.author ul.roles li {
  display: inline-block;
  padding: 0;
  margin: 0;
  color: #999999;
  font-size: 12px;
  font-family: Montserrat;
}
body.page-template-template-author-expert ul.social-icons,
body.author ul.social-icons {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0;
  display: block;
}
body.page-template-template-author-expert ul.social-icons li,
body.author ul.social-icons li {
  margin-right: 9px;
  display: inline-block;
  margin-bottom: 9px;
}
body.page-template-template-author-expert ul.social-icons li a,
body.author ul.social-icons li a {
  display: inline-block;
  padding: 0;
  margin: 0;
  width: 37px;
  height: 37px;
  background-color: #000;
  color: #fff;
  text-align: center;
  font-size: 21px;
  line-height: 40px;
}
body.page-template-template-author-expert ul.social-icons li a:hover,
body.author ul.social-icons li a:hover {
  background-color: #634078;
}
body.page-template-template-author-expert ul.social-icons li a i,
body.author ul.social-icons li a i {
  color: #fff;
}

/*
* ===========
* DISCLAIMERS
* ===========
*/
.sensi-disclaimer-wrapper ul {
  padding: 0;
  margin: 0;
}
.sensi-disclaimer-wrapper ul li.disclaimer-item {
  list-style: none;
  background-color: rgba(0, 153, 0, 0.1);
  box-sizing: border-box;
  border: 1px solid #009900;
  color: #009900;
  padding: 0.3em 0.6em;
  font-weight: 600;
  font-size: 14px;
  line-height: 32px;
}
.sensi-disclaimer-wrapper ul li.disclaimer-item .disclaimer-item-wrapper {
  line-height: 24px;
  font-size: 14px;
}
.sensi-disclaimer-wrapper ul li.disclaimer-item .disclaimer-item-wrapper .dashicons {
  vertical-align: middle;
  margin-right: 10px;
}
.sensi-disclaimer-wrapper ul li.disclaimer-item .disclaimer-item-wrapper .disclaimer-content {
  display: inline;
  font-size: 14px;
}
.sensi-disclaimer-wrapper ul li.disclaimer-item .disclaimer-item-wrapper .disclaimer-content p {
  padding: 0;
  margin: 0;
}

ul.posts-cards-list {
  list-style: none;
  margin-bottom: 2.8em;
}
/**
 * =======
 * COLUMNS
 * =======
 */
.sensi-block-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  margin-right: -15px;
  margin-left: -15px;
}
.sensi-block-row:after {
  display: table;
  content: " ";
  overflow: auto;
}
.sensi-block-row > .sensi-blog-col {
  float: left;
  padding: 0;
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.sensi-block-row > .sensi-blog-col.columns-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}
.sensi-block-row > .sensi-blog-col.columns-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.sensi-block-row > .sensi-blog-col.columns-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.sensi-block-row > .sensi-blog-col.columns-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}
.sensi-block-row > .sensi-blog-col.columns-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

body.sensi-blog.site-sensiblog .sensi-block-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  margin-right: -15px;
  margin-left: -15px;
}
body.sensi-blog.site-sensiblog .sensi-block-row.columns-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.66%;
  flex: 0 0 66.66%;
  max-width: 66.66%;
}
body.sensi-blog.site-sensiblog .sensi-block-row.columns-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .sensi-block-row > .sensi-blog-col.md-columns-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .sensi-block-row > .sensi-blog-col.md-columns-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .sensi-block-row > .sensi-blog-col.md-columns-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
body.sensi-blog.site-sensiblog .sensi-block-row > .sensi-blog-col.md-columns-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.66%;
  flex: 0 0 66.66%;
  max-width: 66.66%;
}
body.sensi-blog.site-sensiblog .sensi-block-row > .sensi-blog-col.md-columns-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .sensi-block-row > .sensi-blog-col.sm-columns-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .sensi-block-row > .sensi-blog-col.sm-columns-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 575.98px) {
  .sensi-block-row > .sensi-blog-col.xs-columns-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .sensi-block-row > .sensi-blog-col.sm-columns-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.interviewee-card {
  background-color: #ffffff;
  text-align: center;
  margin-bottom: 1em;
}
.interviewee-card .interviewee-avatar {
  max-height: 300px;
  overflow-y: hidden;
  position: relative;
}
.interviewee-card .interviewee-avatar img,
.interviewee-card .interviewee-avatar iframe {
  width: 100%;
  height: auto;
}
.interviewee-card .interviewee-video {
  max-height: 300px;
  overflow-y: hidden;
}
.interviewee-card .interviewee-title {
  margin-top: 0.5em;
  margin-bottom: 0.5rem;
  font-weight: bold;
  font-size: 22px;
  font-family: Merriweather;
}
.interviewee-card .interviewee-short-description {
  color: #888888;
  margin: 0 20px;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 10px;
}
.interviewee-card .interviewee-short-description p {
  margin-bottom: 0;
}
.interviewee-card .interviewee-short-description .interviewee-website {
  font-size: 1rem;
}
.interviewee-card .interviewee-description {
  font-weight: 500;
  margin: 1rem 0.5rem;
  padding: 0.75em 0.5em;
  font-size: 15px;
}
.interviewee-card .interviewee-social-media {
  padding: 0 0.5rem 1rem 0.5rem;
}
.interviewee-card .interviewee-social-media ul {
  text-align: left;
  margin: 0;
}
.interviewee-card .interviewee-social-media ul li {
  display: inline-block;
  list-style: none;
  font-size: 2.5rem !important;
  padding: 0.5rem 1rem;
}
.interviewee-card .user-link {
  display: block;
  text-align: center;
  background-color: #89c53c;
  padding: 0.75em 0.5em;
  color: #ffffff;
}

@media (max-width: 757.98px) {
  .uagb-toc__title {
    font-size: 18px !important;
  }
  .uagb-toc__list a {
    font-size: 15px !important;
  }
}
/* reset some styles */
.sensi-blog.page-template-template-affiliate #sensi-blog-wrapper #content {
  max-width: 100% !important;
}
.sensi-blog.page-template-template-affiliate #sensi-blog-wrapper #content .ast-container {
  max-width: 100%;
  padding: 0;
}
.sensi-blog.page-template-template-affiliate #sensi-blog-wrapper #content .site-main {
  max-width: 100% !important;
}
.sensi-blog.page-template-template-affiliate #sensi-blog-wrapper #main {
  margin-bottom: 0;
}

.site-sensiblog article.affiliate {
  overflow-x: hidden;
  min-height: 85vh;
  font-family: "Montserrat", sans-serif;
  background-color: #fff;
}
.site-sensiblog article.affiliate h1,
.site-sensiblog article.affiliate h2,
.site-sensiblog article.affiliate h3,
.site-sensiblog article.affiliate h4 {
  font-family: "Merriweather", serif;
  font-weight: 700 !important;
}
.site-sensiblog article.affiliate h2 {
  font-size: 42px;
}
.site-sensiblog article.affiliate .inner {
  max-width: 1200px;
  margin: auto;
}
.site-sensiblog article.affiliate header {
  min-height: 85vh;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: repeat(12, 1fr);
  -ms-grid-rows: 150px 1fr 1fr 1fr;
}
.site-sensiblog article.affiliate header .header-logo {
  grid-column: 12/-1;
  -ms-grid-column: 12;
  grid-row: 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  margin: 50px 50px 0 0;
}
.site-sensiblog article.affiliate header .header-heading {
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
  grid-column: 1/7;
  -ms-grid-row: 2;
  align-self: end;
  -ms-grid-row-align: end;
  -ms-grid-row-span: 1;
  -ms-grid-column-align: center;
}
.site-sensiblog article.affiliate header .header-heading-wrapper {
  max-width: 650px;
  text-align: center;
  margin: auto;
}
.site-sensiblog article.affiliate header .header-heading-wrapper h1 {
  color: #ffffff;
  display: inline;
  font-size: 64px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}
.site-sensiblog article.affiliate header .header-buttons {
  grid-column: 1/7;
  -ms-grid-column: 1;
  -ms-grid-row: 3;
  -ms-grid-column-span: 6;
  margin: auto;
  -ms-grid-column-align: center;
  -ms-grid-row-align: center;
}
.site-sensiblog article.affiliate header .header-buttons .button {
  margin: 0 16px;
}
.site-sensiblog article.affiliate header .header-signup {
  grid-column: 1/7;
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
  -ms-grid-row: 4;
  margin: 0 auto;
  align-self: start;
  -ms-grid-row-align: start;
  -ms-grid-column-align: center;
}
.site-sensiblog article.affiliate header .header-signup-wrapper {
  position: relative;
  z-index: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.site-sensiblog article.affiliate header .header-signup-wrapper h2 {
  margin: 0 auto 2rem;
  color: #fff;
  font-size: 36px;
  max-width: 400px;
  text-align: center;
}
.site-sensiblog article.affiliate header .header-signup-wrapper .button-signup {
  margin: auto;
}
.site-sensiblog article.affiliate .how {
  margin-top: 8rem;
}
.site-sensiblog article.affiliate .how-header {
  max-width: 600px;
  margin: auto;
  text-align: center;
}
.site-sensiblog article.affiliate .how-steps {
  display: flex;
  flex-direction: row;
  margin-top: 3rem;
}
.site-sensiblog article.affiliate .how-steps-single {
  border: 1px solid #F0F0F0;
  margin: 30px;
  padding: 20px;
  position: relative;
  flex-grow: 1;
  flex-basis: 0;
  background-color: #FAFAFA;
}
.site-sensiblog article.affiliate .how-steps-single h3 {
  position: absolute;
  top: 20px;
  left: -10px;
  font-size: 20px;
  background-color: #3A2944;
  color: #ffffff;
  text-transform: uppercase;
  display: inline-block;
  box-shadow: -10px 0 0 5px #3A2944, 10px 0 0 5px #3A2944;
  padding: 0 5px 0 30px;
  font-family: "Montserrat";
}
.site-sensiblog article.affiliate .how-steps-single p {
  margin-top: 60px;
}
.site-sensiblog article.affiliate .always {
  margin-top: 8rem;
  display: flex;
  flex-direction: row;
  position: relative;
}
.site-sensiblog article.affiliate .always-image {
  flex: 0 0 50%;
  width: calc(100% - 100px);
  height: inherit;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  position: absolute;
  height: calc(100% + 20px);
}
.site-sensiblog article.affiliate .always-text {
  flex: 0 0 50%;
  padding: 5rem;
  background-color: #3F4F4F;
  margin-left: auto;
  z-index: 2;
  margin-top: 20px;
}
.site-sensiblog article.affiliate .always-text h2 {
  color: #ffffff;
  text-align: center;
}
.site-sensiblog article.affiliate .always-text p {
  color: #ffffff;
  text-align: center;
  max-width: 400px;
  margin: 3rem auto;
}
.site-sensiblog article.affiliate .always-text .always-buttons {
  display: flex;
  justify-content: center;
}
.site-sensiblog article.affiliate .always-text .always-buttons .button {
  margin: 1rem;
}
.site-sensiblog article.affiliate .why {
  padding: 4rem 6rem;
  margin: 8rem 4rem 4rem;
}
.site-sensiblog article.affiliate .why-wrapper {
  position: relative;
  z-index: 1;
}
.site-sensiblog article.affiliate .why-wrapper h2 {
  text-align: left;
  margin-bottom: 1rem;
  background-color: #fff;
  display: inline-block;
  z-index: 3;
  padding: 0 20px;
  margin-left: -20px;
}
.site-sensiblog article.affiliate .why-wrapper h2:before {
  position: absolute;
  width: 4000px;
  content: " ";
  border-bottom: 1px solid black;
  left: -1000px;
  top: 28px;
  z-index: -1;
}
.site-sensiblog article.affiliate .start {
  margin-top: 8rem;
  min-height: 100vh;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: repeat(12, 1fr);
  -ms-grid-rows: 150px 1fr 1fr 1fr;
}
.site-sensiblog article.affiliate .start .heading {
  grid-column: 1/-1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 12;
  margin-top: 2rem;
  align-self: end;
}
.site-sensiblog article.affiliate .start .heading-wrapper {
  text-align: center;
}
.site-sensiblog article.affiliate .start .heading-wrapper h2 {
  color: #ffffff;
  display: inline;
  font-size: 56px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}
.site-sensiblog article.affiliate .start-text {
  grid-column: 4/10;
  -ms-grid-column: 4;
  -ms-grid-column-span: 6;
  grid-row: 2;
  -ms-grid-row: 2;
  align-self: center;
}
.site-sensiblog article.affiliate .start-text-wrapper {
  color: #ffffff;
  padding: 4rem;
}
.site-sensiblog article.affiliate .start-text-wrapper p a {
  color: #ffffff;
  text-decoration: underline;
}
.site-sensiblog article.affiliate .start-text-wrapper .button-signup {
  margin-top: 2rem;
  display: inline-block;
}
.site-sensiblog article.affiliate .start .logo-wrap {
  grid-column: 1/-1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 12;
  grid-row: 3;
  -ms-grid-row: 3;
  align-self: end;
  justify-self: center;
  margin-bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #fff;
  padding: 1rem 0;
  height: 150px;
}
.site-sensiblog article.affiliate .start .logo-wrap .single-logo {
  max-height: 120px;
  display: block;
  padding: 10px;
  line-height: 120px;
}
.site-sensiblog article.affiliate .start .logo-wrap .single-logo img {
  max-height: 120px;
  width: auto;
  vertical-align: middle;
}
.site-sensiblog article.affiliate .button {
  background-color: #89c53c;
  color: #fff;
  font-family: "Montserrat", serif;
  font-weight: 500;
  font-size: 20px;
  padding: 12px 24px;
  text-align: center;
  border-radius: 0;
}
.site-sensiblog article.affiliate .button-signup {
  font-family: "Montserrat", sans-serif;
  padding: 16px 32px;
  color: #fff;
  font-size: 24px;
  background: #f69200;
  font-weight: bold;
  text-transform: uppercase;
}

.site-weedshop.page-template-template-affiliate .site-content {
  background-color: #fff;
}
.site-weedshop article.affiliate {
  min-height: 100vh;
}
.site-weedshop article.affiliate h1,
.site-weedshop article.affiliate h2,
.site-weedshop article.affiliate h3,
.site-weedshop article.affiliate h4 {
  font-family: "Arvo", serif;
  font-weight: 900 !important;
}
.site-weedshop article.affiliate h2 {
  font-size: 42px;
}
.site-weedshop article.affiliate .inner {
  max-width: 1200px;
  margin: auto;
}
.site-weedshop article.affiliate header {
  min-height: 90vh;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: repeat(12, 1fr);
  -ms-grid-rows: 150px 1fr 1fr 1fr;
}
.site-weedshop article.affiliate header .header-logo {
  grid-column: 12/-1;
  -ms-grid-column: 12;
  grid-row: 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  margin: 20px 20px 0 0;
}
.site-weedshop article.affiliate header .header-heading {
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
  grid-column: 1/7;
  -ms-grid-row: 2;
  align-self: end;
  -ms-grid-row-align: end;
  -ms-grid-row-span: 1;
  -ms-grid-column-align: center;
}
.site-weedshop article.affiliate header .header-heading-wrapper {
  max-width: 650px;
  text-align: center;
  margin: auto;
}
.site-weedshop article.affiliate header .header-heading-wrapper h1 {
  color: #ffffff;
  background-color: #000000;
  display: inline;
  font-size: 72px;
  box-shadow: -10px 0 0 5px #000, 10px 0 0 5px #000;
}
.site-weedshop article.affiliate header .header-buttons {
  grid-column: 1/7;
  -ms-grid-column: 1;
  -ms-grid-row: 3;
  -ms-grid-column-span: 6;
  margin: auto;
  -ms-grid-column-align: center;
  -ms-grid-row-align: center;
}
.site-weedshop article.affiliate header .header-buttons .button {
  margin: 0 16px;
}
.site-weedshop article.affiliate header .header-signup {
  grid-column: 1/7;
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
  -ms-grid-row: 4;
  margin: 0 auto;
  align-self: start;
  -ms-grid-row-align: start;
  -ms-grid-column-align: center;
}
.site-weedshop article.affiliate header .header-signup-wrapper {
  position: relative;
  z-index: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.site-weedshop article.affiliate header .header-signup-wrapper:before {
  content: "";
  position: absolute;
  border: 3px solid #ffffff;
  top: -40px;
  bottom: -10px;
  left: -50px;
  right: -40px;
  z-index: -1;
  background-color: #fff;
  -webkit-transform: perspective(27em) rotateX(20deg) rotateY(-4deg);
  transform: perspective(27em) rotateX(20deg) rotateY(-4deg);
}
.site-weedshop article.affiliate header .header-signup-wrapper h2 {
  margin: 0 auto 2rem;
  color: #000000;
  text-transform: uppercase;
  font-size: 36px;
  max-width: 400px;
  text-align: center;
}
.site-weedshop article.affiliate header .header-signup-wrapper .button-signup {
  margin: auto;
}
.site-weedshop article.affiliate .how {
  margin-top: 8rem;
}
.site-weedshop article.affiliate .how-header {
  max-width: 600px;
  margin: auto;
  text-align: center;
}
.site-weedshop article.affiliate .how-steps {
  display: flex;
  flex-direction: row;
  margin-top: 3rem;
}
.site-weedshop article.affiliate .how-steps-single {
  border: 2px solid black;
  margin: 30px;
  padding: 20px;
  position: relative;
  flex-grow: 1;
  flex-basis: 0;
}
.site-weedshop article.affiliate .how-steps-single h3 {
  position: absolute;
  top: -24px;
  left: -10px;
  background-color: #46a136;
  color: #ffffff;
  text-transform: uppercase;
  display: inline-block;
  box-shadow: -10px 0 0 5px #46a136, 10px 0 0 5px #46a136;
}
.site-weedshop article.affiliate .how-steps-single p {
  margin-top: 1rem;
}
.site-weedshop article.affiliate .always {
  margin-top: 8rem;
  display: flex;
  flex-direction: row;
}
.site-weedshop article.affiliate .always-image {
  flex: 0 0 50%;
  width: 50%;
  height: inherit;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
}
.site-weedshop article.affiliate .always-text {
  flex: 0 0 50%;
  padding: 5rem;
  background-color: #f63663;
}
.site-weedshop article.affiliate .always-text h2 {
  color: #ffffff;
  text-align: center;
}
.site-weedshop article.affiliate .always-text p {
  color: #ffffff;
  text-align: center;
  max-width: 400px;
  margin: 3rem auto;
}
.site-weedshop article.affiliate .always-text .always-buttons {
  display: flex;
  justify-content: center;
}
.site-weedshop article.affiliate .always-text .always-buttons .button {
  margin: 1rem;
  font-size: 20px;
  font-weight: 700;
}
.site-weedshop article.affiliate .why {
  border: 2px dashed #000000;
  padding: 4rem 6rem;
  margin: 8rem 4rem 4rem;
}
.site-weedshop article.affiliate .why h2 {
  text-align: center;
  margin-bottom: 1rem;
}
.site-weedshop article.affiliate .start {
  margin-top: 8rem;
  min-height: 100vh;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: repeat(12, 1fr);
  -ms-grid-rows: 150px 1fr 1fr 1fr;
}
.site-weedshop article.affiliate .start .heading {
  grid-column: 3/-1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 9;
  align-self: end;
}
.site-weedshop article.affiliate .start .heading-wrapper h2 {
  color: #ffffff;
  background-color: #2d7ff9;
  display: inline;
  font-size: 56px;
  box-shadow: -10px 0 0 5px #2d7ff9, 10px 0 0 5px #2d7ff9;
}
.site-weedshop article.affiliate .start-text {
  grid-column: 3/7;
  -ms-grid-column: 3;
  -ms-grid-column-span: 4;
  grid-row: 2;
  -ms-grid-row: 2;
  align-self: center;
}
.site-weedshop article.affiliate .start-text-wrapper {
  background-color: #ffffff;
  padding: 4rem;
}
.site-weedshop article.affiliate .start-text-wrapper .button-signup {
  margin-top: 2rem;
  display: inline-block;
}
.site-weedshop article.affiliate .start .logo-wrap {
  grid-column: 3/6;
  -ms-grid-column: 3;
  -ms-grid-column-span: 3;
  grid-row: 3;
  -ms-grid-row: 3;
  align-self: end;
  justify-self: start;
  margin-bottom: 2rem;
}
.site-weedshop article.affiliate .button {
  background-color: #f9d02c;
  color: #000000;
  font-family: "Arvo", serif;
  border-radius: 5px;
  font-weight: 900;
  font-size: 24px;
  padding: 12px 24px;
  text-align: center;
}
.site-weedshop article.affiliate .button-signup {
  font-family: "Open Sans", sans-serif;
  padding: 16px 32px;
  color: #fff;
  font-size: 24px;
  background: #f69200;
  font-weight: bold;
  text-transform: uppercase;
}

@media (max-width: 1280px) {
  .site-weedshop article.affiliate header .header-heading {
    -ms-grid-column: 1;
    -ms-grid-column-span: 9;
    grid-column: 1/9;
  }
  .site-weedshop article.affiliate header .header-buttons {
    margin-top: 40px;
    -ms-grid-column: 1;
    -ms-grid-column-span: 9;
    grid-column: 1/9;
  }
  .site-weedshop article.affiliate header .header-signup {
    margin-top: 40px;
    -ms-grid-column: 1;
    -ms-grid-column-span: 9;
    grid-column: 1/9;
  }
  .site-weedshop article.affiliate .start .heading {
    grid-column: 1/-1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    text-align: center;
  }
  .site-weedshop article.affiliate .start-text {
    grid-column: 2/9;
    -ms-grid-column: 2;
    -ms-grid-column-span: 7;
  }
  .site-sensiblog article.affiliate header .header-heading {
    -ms-grid-column: 1;
    -ms-grid-column-span: 9;
    grid-column: 1/9;
  }
  .site-sensiblog article.affiliate header .header-buttons {
    margin-top: 40px;
    -ms-grid-column: 1;
    -ms-grid-column-span: 9;
    grid-column: 1/9;
  }
  .site-sensiblog article.affiliate header .header-signup {
    margin-top: 40px;
    -ms-grid-column: 1;
    -ms-grid-column-span: 9;
    grid-column: 1/9;
  }
  .site-sensiblog article.affiliate .start .heading {
    grid-column: 1/-1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    text-align: center;
  }
  .site-sensiblog article.affiliate .start-text {
    grid-column: 2/9;
    -ms-grid-column: 2;
    -ms-grid-column-span: 7;
  }
}
@media (max-width: 960px) {
  .site-sensiblog article.affiliate header .header-logo, .site-weedshop article.affiliate header .header-logo {
    -ms-grid-column: 3;
    -ms-grid-column-span: 6;
    grid-column: 3/11;
    justify-self: center;
    margin: 10px 0 0;
  }
  .site-sensiblog article.affiliate header .header-heading, .site-weedshop article.affiliate header .header-heading {
    -ms-grid-column: 3;
    -ms-grid-column-span: 6;
    grid-column: 3/11;
    justify-self: center;
  }
  .site-sensiblog article.affiliate header .header-heading h1, .site-weedshop article.affiliate header .header-heading h1 {
    font-size: 48px;
  }
  .site-sensiblog article.affiliate header .header-buttons, .site-weedshop article.affiliate header .header-buttons {
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    grid-column: 1/-1;
  }
  .site-sensiblog article.affiliate header .header-signup, .site-weedshop article.affiliate header .header-signup {
    margin-top: 40px;
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    grid-column: 1/-1;
  }
  .site-sensiblog article.affiliate .button, .site-weedshop article.affiliate .button {
    font-size: 20px;
    padding: 8px 16px;
  }
  .site-sensiblog article.affiliate .start-text {
    grid-column: 2/11;
    -ms-grid-column: 2;
    -ms-grid-column-span: 9;
  }
  .site-sensiblog article.affiliate .button {
    font-size: 20px;
    padding: 8px 16px;
  }
}
@media (max-width: 640px) {
  .site-sensiblog article.affiliate h2, .site-weedshop article.affiliate h2 {
    font-size: 32px;
  }
  .site-sensiblog article.affiliate header, .site-weedshop article.affiliate header {
    background-size: 165%;
    min-height: 80vh;
  }
  .site-sensiblog article.affiliate header .header-logo, .site-weedshop article.affiliate header .header-logo {
    -ms-grid-column: 3;
    -ms-grid-column-span: 11;
    grid-column: 3/11;
  }
  .site-sensiblog article.affiliate header .header-logo .logo, .site-weedshop article.affiliate header .header-logo .logo {
    width: 80px;
  }
  .site-sensiblog article.affiliate header .header-heading, .site-weedshop article.affiliate header .header-heading {
    -ms-grid-column: 2;
    -ms-grid-column-span: 9;
    grid-column: 2/9;
  }
  .site-sensiblog article.affiliate header .header-heading-wrapper, .site-weedshop article.affiliate header .header-heading-wrapper {
    text-align: left;
  }
  .site-sensiblog article.affiliate header .header-heading-wrapper h1, .site-weedshop article.affiliate header .header-heading-wrapper h1 {
    font-size: 24px;
  }
  .site-sensiblog article.affiliate header .header-buttons, .site-weedshop article.affiliate header .header-buttons {
    -ms-grid-column: 2;
    -ms-grid-column-span: 9;
    grid-column: 2/9;
    margin: unset;
    padding-top: 20px;
  }
  .site-sensiblog article.affiliate header .header-buttons-wrapper, .site-weedshop article.affiliate header .header-buttons-wrapper {
    display: flex;
    flex-direction: column;
    align-items: baseline;
  }
  .site-sensiblog article.affiliate header .header-buttons .button, .site-weedshop article.affiliate header .header-buttons .button {
    margin: 4px 0;
  }
  .site-sensiblog article.affiliate header .header-signup, .site-weedshop article.affiliate header .header-signup {
    margin-top: 20px;
  }
  .site-sensiblog article.affiliate header .header-signup h2, .site-weedshop article.affiliate header .header-signup h2 {
    font-size: 32px;
  }
  .site-sensiblog article.affiliate header .header-signup-wrapper:before, .site-weedshop article.affiliate header .header-signup-wrapper:before {
    top: -10px;
    bottom: -28px;
    left: 0;
    right: 0;
    background-color: #fff;
    transform: none;
  }
  .site-sensiblog article.affiliate .how, .site-weedshop article.affiliate .how {
    margin-top: 3rem;
    padding: 0 16px;
  }
  .site-sensiblog article.affiliate .how .how-steps, .site-weedshop article.affiliate .how .how-steps {
    flex-direction: column;
  }
  .site-sensiblog article.affiliate .always, .site-weedshop article.affiliate .always {
    margin-top: 3rem;
    display: block;
  }
  .site-sensiblog article.affiliate .always .always-image, .site-weedshop article.affiliate .always .always-image {
    width: 100%;
    height: 350px;
  }
  .site-sensiblog article.affiliate .always .always-text, .site-weedshop article.affiliate .always .always-text {
    padding: 3rem 2rem;
    flex: 0 0 100%;
  }
  .site-sensiblog article.affiliate .always .always-text .always-buttons, .site-weedshop article.affiliate .always .always-text .always-buttons {
    flex-direction: column;
  }
  .site-sensiblog article.affiliate .why, .site-weedshop article.affiliate .why {
    margin: 3rem 1rem;
    padding: 2rem;
  }
  .site-sensiblog article.affiliate .start, .site-weedshop article.affiliate .start {
    background-size: 120%;
    min-height: unset;
    margin-top: 3rem;
  }
  .site-sensiblog article.affiliate .start .heading, .site-weedshop article.affiliate .start .heading {
    align-self: start;
    min-height: 240px;
  }
  .site-sensiblog article.affiliate .start .heading-wrapper h2, .site-weedshop article.affiliate .start .heading-wrapper h2 {
    font-size: 32px;
  }
  .site-sensiblog article.affiliate .start-text, .site-weedshop article.affiliate .start-text {
    grid-column: 1/-1;
  }
  .site-sensiblog article.affiliate .start-text-wrapper, .site-weedshop article.affiliate .start-text-wrapper {
    padding: 2rem;
  }
  .site-sensiblog article.affiliate .start .logo-wrap, .site-weedshop article.affiliate .start .logo-wrap {
    grid-column: 1/-1;
    justify-self: center;
  }
  .site-sensiblog article.affiliate .start .logo-wrap .logo, .site-weedshop article.affiliate .start .logo-wrap .logo {
    margin: 1rem auto;
  }
  .site-sensiblog article.affiliate .button, .site-weedshop article.affiliate .button {
    padding: 6px 12px;
  }
  .site-sensiblog article.affiliate h2 {
    font-size: 32px;
  }
  .site-sensiblog article.affiliate header {
    background-size: cover;
  }
  .site-sensiblog article.affiliate header .header-logo .logo {
    width: 100px;
    margin-bottom: 10px;
  }
  .site-sensiblog article.affiliate .always .always-image {
    display: none;
  }
  .site-sensiblog article.affiliate .start {
    background-size: cover;
  }
  .site-sensiblog article.affiliate .start .heading {
    min-height: 50px;
  }
}
@media (max-width: 768px) {
  *[class*=ast-col] {
    width: 100%;
  }
}
.sensi-blog #sensi-about-wrapper h1, .sensi-blog #sensi-about-wrapper h2, .sensi-blog #sensi-about-wrapper h3 {
  font-family: Merriweather, sans-serif;
}
@media (max-width: 767.98px) {
  .sensi-blog #sensi-about-wrapper h1 {
    font-size: 36px;
  }
}
.sensi-blog #sensi-about-wrapper h2 {
  font-size: 48px;
  margin-bottom: 0.5rem;
}
@media (max-width: 767.98px) {
  .sensi-blog #sensi-about-wrapper h2 {
    font-size: 32px;
  }
}
.sensi-blog #sensi-about-wrapper h3 {
  font-size: 30px;
  margin-bottom: 0.5rem;
}
@media (max-width: 767.98px) {
  .sensi-blog #sensi-about-wrapper h3 {
    font-size: 24px;
  }
}
.sensi-blog #sensi-about-wrapper p {
  font-size: 16px;
  line-height: 28px;
}
.sensi-blog #sensi-about-wrapper #content {
  max-width: 1600px;
  margin: 0 auto;
}
@media (max-width: 1600px) {
  .sensi-blog #sensi-about-wrapper #content {
    padding-left: 0;
    padding-right: 0;
  }
}
.sensi-blog #sensi-about-wrapper .ast-row-eq-height {
  display: flex;
  flex-wrap: wrap;
}
.sensi-blog #sensi-about-wrapper .about h2 {
  text-align: center;
}
.sensi-blog #sensi-about-wrapper .about-start {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 80vh;
  justify-content: space-between;
}
.sensi-blog #sensi-about-wrapper .about-start-left {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media (max-width: 767.98px) {
  .sensi-blog #sensi-about-wrapper .about-start-left {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.sensi-blog #sensi-about-wrapper .about-start-left h1 {
  font-size: 72px;
  color: #ffffff;
  font-family: Merriweather, sans-serif;
  max-width: 600px;
}
@media (max-width: 767.98px) {
  .sensi-blog #sensi-about-wrapper .about-start-left h1 {
    font-size: 48px;
  }
}
.sensi-blog #sensi-about-wrapper .about-start-right {
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  text-align: center;
  flex: 0 0 30%;
}
@media (max-width: 767.98px) {
  .sensi-blog #sensi-about-wrapper .about-start-right {
    display: none;
  }
}
.sensi-blog #sensi-about-wrapper .about-start-right .about-start-logo {
  max-width: 200px;
  margin: 0 auto 40px;
}
.sensi-blog #sensi-about-wrapper .about-start-right h4 {
  color: #ffffff;
  font-family: Merriweather, sans-serif;
  font-size: 32px;
  margin-bottom: 10px;
}
.sensi-blog #sensi-about-wrapper .about-start-right a {
  color: #ffffff;
  display: block;
}
.sensi-blog #sensi-about-wrapper .about-start-right .social {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sensi-blog #sensi-about-wrapper .about-start-right .social li {
  display: inline-block;
  margin: 5px 10px;
}
.sensi-blog #sensi-about-wrapper .about-start-right .social li a {
  font-size: 24px;
  padding: 5px;
}
.sensi-blog #sensi-about-wrapper .about-history {
  margin-top: 40px;
  justify-content: center;
}
.sensi-blog #sensi-about-wrapper .about-history h2 {
  text-align: center;
  margin: 40px auto;
}
.sensi-blog #sensi-about-wrapper .about-history .ast-col-md-6 {
  flex: 0 0 50%;
}
.sensi-blog #sensi-about-wrapper .about-history-tagline-wrapper {
  background-color: #3a2944;
  display: table;
  padding: 20px 40px;
  margin: 20px auto;
}
.sensi-blog #sensi-about-wrapper .about-history-tagline-wrapper-text {
  font-family: Merriweather, sans-serif;
  color: #fff;
  text-align: center;
}
.sensi-blog #sensi-about-wrapper .about-mission {
  background-size: contain;
  background-color: #F0F0F0;
  background-repeat: no-repeat;
  background-position: center;
  margin: 40px auto 0;
  padding-top: 40px;
  padding-bottom: 40px;
}
.sensi-blog #sensi-about-wrapper .about-mission h2 {
  text-align: center;
  margin: 40px auto 80px auto;
}
@media (max-width: 767.98px) {
  .sensi-blog #sensi-about-wrapper .about-mission h2 {
    margin: 0 auto 40px;
  }
}
.sensi-blog #sensi-about-wrapper .about-mission .about-mission-text {
  padding: 40px;
}
@media (max-width: 767.98px) {
  .sensi-blog #sensi-about-wrapper .about-mission .about-mission-text {
    padding: 0;
  }
}
.sensi-blog #sensi-about-wrapper .about-mission .about-mission-tagline-wrapper {
  padding: 40px;
  background-color: #6D8989;
  text-align: center;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  transform: translate(0, -50%);
  top: 50%;
  position: relative;
}
@media (max-width: 767.98px) {
  .sensi-blog #sensi-about-wrapper .about-mission .about-mission-tagline-wrapper {
    max-width: 100%;
    padding: 10px;
    top: 0;
    transform: none;
  }
}
.sensi-blog #sensi-about-wrapper .about-mission .about-mission-tagline-wrapper .about-mission-tagline-wrapper-text {
  color: #fff;
  font-size: 36px;
}
@media (max-width: 767.98px) {
  .sensi-blog #sensi-about-wrapper .about-mission .about-mission-tagline-wrapper .about-mission-tagline-wrapper-text {
    font-size: 24px;
  }
}
.sensi-blog #sensi-about-wrapper .about-family {
  margin: 0 auto;
  padding: 80px 0;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .sensi-blog #sensi-about-wrapper .about-family {
    background-image: none !important;
  }
}
.sensi-blog #sensi-about-wrapper .about-family h2 {
  color: #fff;
}
@media (max-width: 767.98px) {
  .sensi-blog #sensi-about-wrapper .about-family h2 {
    color: inherit;
  }
}
.sensi-blog #sensi-about-wrapper .about-family-member {
  background-color: #fff;
  margin: 40px;
  padding: 20px;
}
@media (max-width: 767.98px) {
  .sensi-blog #sensi-about-wrapper .about-family-member {
    padding: 0;
    margin: 20px 0;
  }
}
.sensi-blog #sensi-about-wrapper .about-family-member-image {
  margin-left: -20px;
}
@media (max-width: 767.98px) {
  .sensi-blog #sensi-about-wrapper .about-family-member-image {
    margin-left: 0;
  }
}
@media (max-width: 767.98px) {
  .sensi-blog #sensi-about-wrapper .about-family-member-image img {
    width: 100%;
    height: auto;
    max-width: 350px;
    display: block;
    margin: auto;
  }
}
.sensi-blog #sensi-about-wrapper .about-family-member-tagline {
  margin-bottom: 10px;
}
@media (max-width: 767.98px) {
  .sensi-blog #sensi-about-wrapper .about-family-member-tagline {
    text-align: center;
    font-size: 20px;
    margin: 10px auto;
  }
}
.sensi-blog #sensi-about-wrapper .about-family-member-name-full {
  margin-bottom: 0;
}
.sensi-blog #sensi-about-wrapper .about-family-member-text {
  margin-top: 20px;
}
@media (max-width: 767.98px) {
  .sensi-blog #sensi-about-wrapper .about-family-member-text {
    margin: 10px auto;
  }
}
.sensi-blog #sensi-about-wrapper .about-stores {
  margin: 80px auto 0;
}
.sensi-blog #sensi-about-wrapper .about-stores h2 {
  margin-bottom: 40px;
}
.sensi-blog #sensi-about-wrapper .about-stores .row-bg {
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: -20px;
  margin-right: -20px;
}
@media (max-width: 767.98px) {
  .sensi-blog #sensi-about-wrapper .about-stores .sub-title {
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 10px;
  }
}
.sensi-blog #sensi-about-wrapper .about-stores .sub-title h3 {
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 20px;
  margin: 25% 0 20px -20px;
}
.sensi-blog #sensi-about-wrapper .about-stores .read-more {
  font-size: 14px;
}
.sensi-blog #sensi-about-wrapper .about-stores .small-shop {
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  display: block;
  padding: 20px;
  margin-left: -20px;
}
@media (max-width: 767.98px) {
  .sensi-blog #sensi-about-wrapper .about-stores .small-shop {
    margin: 10px 0;
  }
}
.sensi-blog #sensi-about-wrapper .about-stores .featured-shop {
  margin: 20px 0 20px -20px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
}
@media (max-width: 767.98px) {
  .sensi-blog #sensi-about-wrapper .about-stores .featured-shop {
    margin: 0;
  }
}
.sensi-blog #sensi-about-wrapper .about-stores .featured-shop .shop-photo {
  margin-left: -20px;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .sensi-blog #sensi-about-wrapper .about-stores .featured-shop .shop-photo {
    display: none;
    margin-left: 0;
  }
}
.sensi-blog #sensi-about-wrapper .about-stores .featured-shop .shop-photo img {
  height: inherit;
  width: auto;
  overflow: hidden;
  max-width: 320px;
}
.sensi-blog #sensi-about-wrapper .about-stores .featured-shop-text {
  padding-top: 20px;
  padding-bottom: 20px;
}
.sensi-blog #sensi-about-wrapper .about-stores .featured-shop-text .store-extra-text {
  margin-bottom: 20px;
}
.sensi-blog #sensi-about-wrapper .about-stores .featured-shop-text .store-icons {
  margin-bottom: 20px;
}
.sensi-blog #sensi-about-wrapper .about-stores h4 {
  font-family: Merriweather, sans-serif;
}
.sensi-blog #sensi-about-wrapper .about-stores a, .sensi-blog #sensi-about-wrapper .about-stores h4, .sensi-blog #sensi-about-wrapper .about-stores h3 {
  color: #ffffff;
}
.sensi-blog #sensi-about-wrapper .about-news {
  margin: 80px auto;
}
.sensi-blog #sensi-about-wrapper .about-news .recente-artikelen {
  padding: 0 20px;
}
.sensi-blog #sensi-about-wrapper .about-company {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 80vh;
}
.sensi-blog #sensi-about-wrapper .about-company-block {
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  text-align: center;
  width: 100%;
}
.sensi-blog #sensi-about-wrapper .about-company-block .about-company-logo {
  max-width: 200px;
  margin: 0 auto 40px;
}
.sensi-blog #sensi-about-wrapper .about-company-block h4 {
  color: #ffffff;
  font-family: Merriweather, sans-serif;
  font-size: 32px;
  margin-bottom: 10px;
}
.sensi-blog #sensi-about-wrapper .about-company-block a {
  color: #ffffff;
  display: block;
}
.sensi-blog #sensi-about-wrapper .about-company-block .social {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sensi-blog #sensi-about-wrapper .about-company-block .social li {
  display: inline-block;
  margin: 5px 10px;
}
.sensi-blog #sensi-about-wrapper .about-company-block .social li a {
  font-size: 24px;
  padding: 5px;
}
.sensi-blog #sensi-about-wrapper .about .read-more {
  text-transform: uppercase;
  font-weight: bold;
  border-bottom: 0;
  color: #3a3a3a;
}
.sensi-blog #sensi-about-wrapper .about .read-more__light {
  color: #ffffff;
}
.sensi-blog #sensi-about-wrapper .about .read-more span:not(.icon) {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  border-bottom: 1px solid transparent;
  transition: border 0.2s linear;
}
.sensi-blog #sensi-about-wrapper .about .read-more .icon {
  color: #89c53c;
  font-size: inherit;
}
.sensi-blog #sensi-about-wrapper .about .read-more .icon.icon-chevrons-right:before {
  content: "\e914";
}
.sensi-blog #sensi-about-wrapper .about .read-more:hover {
  border-bottom: 0;
}
.sensi-blog #sensi-about-wrapper .about .read-more:hover strong,
.sensi-blog #sensi-about-wrapper .about .read-more:hover span {
  border-bottom: 1px solid;
}
.sensi-blog #sensi-about-wrapper .about .read-more:hover .icon {
  animation-duration: 0.2s;
  animation-name: arrow-right;
}
.sensi-blog .about-item-default {
  max-width: 800px;
  margin: auto;
}
.sensi-blog .header-stripped {
  height: auto;
}
@media (max-width: 980px) {
  .sensi-blog .header-stripped {
    padding-bottom: 80px;
  }
}
@media (max-width: 575.98px) {
  .sensi-blog .header-stripped {
    padding-bottom: 54px;
  }
}
.sensi-blog .header-stripped .header-wrap {
  height: 160px;
}
@media (max-width: 980px) {
  .sensi-blog .header-stripped .header-wrap {
    height: 80px;
  }
}
@media (max-width: 575.98px) {
  .sensi-blog .header-stripped .header-wrap {
    height: 54px;
  }
}
.sensi-blog .header-stripped .nav-desktop {
  grid-column: 2/13;
}
@media (max-width: 980px) {
  .sensi-blog .header-stripped .nav-desktop {
    display: none;
  }
}
.sensi-blog .header-stripped .about-menu-wrapper {
  width: 100%;
  position: relative;
}
@media (max-width: 980px) {
  .sensi-blog .header-stripped .about-menu-wrapper {
    display: none;
  }
}
.sensi-blog .header-stripped .about-menu-wrapper.fixed {
  position: fixed;
  top: 0;
  left: 0;
}
@media (max-width: 980px) {
  .sensi-blog .header-stripped .about-menu-wrapper.fixed {
    top: 80px;
  }
}
.sensi-blog .header-stripped .about-menu-wrapper.open {
  position: fixed;
  top: 70px;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 20;
  width: calc(100% - 40px);
  height: calc(100% - 90px);
  display: block;
}
.sensi-blog .header-stripped .about-menu-wrapper.open .about-menu {
  height: 100%;
  padding: 40px 0;
}
.sensi-blog .header-stripped .about-menu-wrapper.open .about-menu ul {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: inherit;
}
.sensi-blog .header-stripped .about-menu-wrapper.open .about-menu ul li {
  display: block;
}
.sensi-blog .header-stripped .about-menu-wrapper a {
  transition: none !important;
}
.sensi-blog .header-stripped .about-menu-wrapper a:hover {
  border-bottom: none !important;
}
.sensi-blog .header-stripped .about-menu-wrapper .about-menu {
  max-width: 1600px;
  padding-left: 40px;
  padding-right: 40px;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  text-align: center;
  position: relative;
}
@media (max-width: 980px) {
  .sensi-blog .header-stripped .about-menu-wrapper .about-menu {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
.sensi-blog .header-stripped .about-menu-wrapper .about-menu ul {
  list-style: none;
  margin: 0;
  display: inline-block;
}
.sensi-blog .header-stripped .about-menu-wrapper .about-menu ul li {
  display: inline-block;
}
.sensi-blog .header-stripped .about-menu-wrapper .about-menu ul li a {
  display: block;
  padding: 20px 40px;
  position: relative;
}
@media (max-width: 980px) {
  .sensi-blog .header-stripped .about-menu-wrapper .about-menu ul li a {
    padding: 10px 20px;
  }
}
.sensi-blog .header-stripped .about-menu-wrapper .about-menu ul li a:hover {
  border-bottom: none;
}
.sensi-blog .header-stripped .about-menu-wrapper .about-menu ul li a:hover:after {
  content: " ";
  width: 100%;
  border-bottom: 2px solid #fff;
  position: absolute;
  bottom: 10px;
  left: 0;
}
.sensi-blog .header-stripped .about-menu-toggle {
  display: none;
}
@media (max-width: 980px) {
  .sensi-blog .header-stripped .about-menu-toggle {
    width: 48px;
    height: 48px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.85);
    padding: 0 8px;
    display: block;
    cursor: pointer;
    z-index: 100;
  }
}
.sensi-blog .header-stripped .about-menu-toggle .about-menu-toggle-wrap {
  position: relative;
}
.sensi-blog .header-stripped .about-menu-toggle .about-menu-toggle-wrap .line {
  background-color: #fff;
  height: 1px;
  width: 100%;
  position: absolute;
}
.sensi-blog .header-stripped .about-menu-toggle .about-menu-toggle-wrap .line-top {
  position: absolute;
  top: 16px;
  transform: rotate(0);
  transition: 250ms;
}
.sensi-blog .header-stripped .about-menu-toggle .about-menu-toggle-wrap .line-middle {
  position: absolute;
  top: 24px;
  display: block;
}
.sensi-blog .header-stripped .about-menu-toggle .about-menu-toggle-wrap .line-bottom {
  position: absolute;
  top: 32px;
  transform: rotate(0);
  transition: 250ms;
}
.sensi-blog .header-stripped .about-menu-toggle.open {
  background-color: rgba(0, 0, 0, 0);
}
.sensi-blog .header-stripped .about-menu-toggle.open .about-menu-toggle-wrap {
  transition: 250ms;
}
.sensi-blog .header-stripped .about-menu-toggle.open .about-menu-toggle-wrap .line-middle {
  display: none;
  transition: 250ms;
}
.sensi-blog .header-stripped .about-menu-toggle.open .about-menu-toggle-wrap .line-top {
  top: 24px;
  transform: rotate(-45deg);
  transition: 250ms;
}
.sensi-blog .header-stripped .about-menu-toggle.open .about-menu-toggle-wrap .line-bottom {
  top: 24px;
  transform: rotate(45deg);
  transition: 250ms;
}
.sensi-blog .acf-map {
  width: 100%;
  height: 400px;
  border: none;
  margin: 20px 0;
}
.sensi-blog .acf-map img {
  max-width: inherit !important;
}

.about {
  background-color: #ffffff;
}
.about .ast-container {
  max-width: 100%;
  padding: 0;
}
.about .ast-container .primary {
  margin-top: 0 !important;
}
.about .ast-container .primary article {
  padding: 0 !important;
}
.about .shop h1 {
  margin: 20px 0;
  font-size: 48px;
}
.about .shop h3 {
  margin: 16px 0;
}
.about .shop .ast-row {
  margin-bottom: 80px;
  padding-right: 40px;
  padding-left: 40px;
}
@media (max-width: 767.98px) {
  .about .shop .ast-row {
    padding: 0;
    margin-bottom: 20px;
  }
}
.about .shop-text {
  position: relative;
  z-index: 1;
}
.about .shop-text:before {
  content: " ";
  position: absolute;
  top: -20px;
  left: -20px;
  background-color: #F5F5F5;
  width: calc(100% + 80px);
  height: calc(100% + 40px);
  z-index: -2;
}
@media (max-width: 767.98px) {
  .about .shop-text:before {
    width: 100%;
    left: 0;
  }
}
.about .shop-image {
  z-index: 2;
  display: flex;
  align-items: center;
}
.about .shop .shop-address {
  margin-bottom: 0.5rem;
}
.about .shop .read-more {
  font-size: 14px;
  margin-bottom: 1.5rem;
  display: inline-block;
}
.about .shop .opening-times {
  display: flex;
}
.about .shop .opening-times ul {
  list-style: none;
  margin: 0 40px 0 0;
}
.about .shop .opening-times ul li {
  padding: 5px 0;
}
.about .stores-overview .ast-row {
  margin-bottom: 40px;
}
.about .stores-overview .amsterdam {
  padding-right: 30px;
}
@media (max-width: 980px) {
  .about .stores-overview .amsterdam {
    padding-right: 20px;
  }
}
.about .stores-overview .barcelona {
  padding-left: 30px;
}
@media (max-width: 980px) {
  .about .stores-overview .barcelona {
    padding-left: 20px;
  }
}
.about .stores-overview .store-map {
  margin-bottom: 40px;
}
@media (max-width: 980px) {
  .about .stores-overview .store-map {
    margin-bottom: 20px;
  }
}
.about .stores-overview .stores {
  margin-top: 20px;
  margin-left: -20px;
  margin-right: -20px;
}
@media (max-width: 980px) {
  .about .stores-overview .stores {
    margin-top: 0;
  }
}
.about .stores-overview .single-store-text {
  background-color: #3F4F4F;
  padding: 20px;
  color: #fff;
}
@media (max-width: 767.98px) {
  .about .stores-overview .single-store-text {
    margin-bottom: 20px;
  }
}
.about .stores-overview .single-store-text h4 {
  color: #fff;
  font-family: Merriweather, sans-serif;
}
.about .stores-overview .single-store-text p {
  color: #fff;
}
.about .stores-overview .single-store-text a {
  color: #fff;
}
.about .stores-overview .single-store-text .store-icons {
  margin: 20px 0;
}

@keyframes arrow-right {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translate(3px);
  }
  100% {
    transform: translate(0);
  }
}
.page-template-template-grow-bible {
  background-color: #f4f4f4;
}
@media (max-width: 767.98px) {
  .page-template-template-grow-bible .ast-container {
    margin: 10px;
    padding: 0;
  }
}

.grow-bible {
  background-color: #fff;
  margin: 40px auto;
  max-width: 800px;
  padding: 40px;
}
@media (max-width: 767.98px) {
  .grow-bible {
    padding: 0 10px;
    margin: 10px auto;
  }
}
.grow-bible header {
  padding: 0 10px;
}
.grow-bible header h1 {
  font-size: 32px;
  background-color: #5397B7;
  color: #fff;
  padding: 8px;
  margin: 20px auto;
  font-weight: 700;
  text-align: center;
  display: inline-block;
}
@media (max-width: 767.98px) {
  .grow-bible header h1 {
    font-size: 24px;
  }
}
.grow-bible header .logo {
  margin: auto;
}
@media (max-width: 767.98px) {
  .grow-bible header .logo {
    display: none;
  }
}
.grow-bible .content .row {
  display: flex;
}
@media (max-width: 767.98px) {
  .grow-bible .content .row {
    flex-direction: column;
  }
}
.grow-bible .content .row .col-60 {
  padding: 0 10px;
  flex: 60% 1 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .grow-bible .content .row .col-60 {
    order: 2;
    margin-top: 20px;
  }
}
.grow-bible .content .row .col-40 {
  padding: 0 10px;
  flex: 40% 1 1;
}
@media (max-width: 767.98px) {
  .grow-bible .content .row .col-40 {
    order: 1;
    margin: auto;
    max-width: 260px;
  }
  .grow-bible .content .row .col-40 .e-book {
    display: none;
  }
}
.grow-bible .sign-up {
  display: flex;
}
@media (max-width: 767.98px) {
  .grow-bible .sign-up {
    flex-direction: column;
  }
}
.grow-bible .sign-up .col-60 {
  flex: 60% 1 1;
}
.grow-bible .sign-up .col-40 {
  flex: 40% 1 1;
}
.grow-bible .sign-up .privacy {
  padding: 0 10px;
  font-size: 14px;
}
.grow-bible .sign-up .logo {
  margin: 50px auto 0;
}
@media (max-width: 767.98px) {
  .grow-bible .sign-up .logo {
    margin: 0 auto;
    padding-bottom: 20px;
  }
}
.grow-bible footer {
  display: none;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .grow-bible footer {
    display: block;
  }
}
.grow-bible footer .logo {
  margin: auto;
  padding-bottom: 20px;
}

.sensi-blog.single .grow-report-featured-title-wrapper {
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  display: flex;
  background-color: rgba(0, 0, 0, 0.3);
}
@media (max-width: 991.98px) {
  .sensi-blog.single .grow-report-featured-title-wrapper {
    margin-left: -15px;
    margin-right: -15px;
    padding: 0 15px;
    max-height: 240px;
  }
}
.sensi-blog.single .grow-report-featured-title-wrapper .grow-report-featured-title {
  margin: auto;
}
.sensi-blog.single .grow-report-featured-title-wrapper .grow-report-title-wrap .post-title {
  color: #fff;
  font-family: Montserrat, sans-serif !important;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}
@media (max-width: 991.98px) {
  .sensi-blog.single .grow-report-featured-title-wrapper .grow-report-title-wrap .post-title {
    font-size: 36px;
  }
}
@media (max-width: 767.98px) {
  .sensi-blog.single .grow-report-featured-title-wrapper .grow-report-title-wrap .post-title {
    font-size: 28px;
  }
}
.sensi-blog.single .grow-report-featured-title-wrapper .grow-report-title-wrap .grow-report-icon {
  max-height: 200px;
  height: 100%;
  width: auto;
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.7));
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.7));
  /* Similar syntax to box-shadow */
}
@media (max-width: 991.98px) {
  .sensi-blog.single .grow-report-featured-title-wrapper .grow-report-title-wrap .grow-report-icon {
    max-height: 100px;
  }
}
.sensi-blog.single .grow-report-featured-title-wrapper .post-thumb img {
  width: 100%;
  max-height: 800px;
  object-fit: cover;
}
.sensi-blog.single .grow-report .ast-breadcrumbs-wrapper {
  max-width: 1012px;
  margin: auto;
  padding-left: 0;
  padding-right: 0;
}
.sensi-blog.single .grow-report .grow-report-top-bar {
  width: 100%;
  height: 50px;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.sensi-blog.single .grow-report .grow-report-top-bar.sticky {
  position: fixed;
  top: 0;
  left: 0;
}
@media (max-width: 991.98px) {
  .sensi-blog.single .grow-report .grow-report-top-bar.sticky {
    top: 130px;
    left: 0;
    padding-left: 15px;
  }
}
@media (max-width: 639.98px) {
  .sensi-blog.single .grow-report .grow-report-top-bar.sticky {
    top: 102px;
    left: 0;
    padding-left: 15px;
  }
}
@media (max-width: 991.98px) {
  .sensi-blog.single .grow-report .grow-report-top-bar.sticky .grow-report-top-bar-content {
    margin-right: 15px;
  }
}
.sensi-blog.single .grow-report .grow-report-top-bar-content {
  max-width: 660px;
  width: 100%;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}
.sensi-blog.single .grow-report .grow-report-top-bar-content:after {
  content: "";
  display: block;
  background-color: #166734;
  width: 100vw;
  position: absolute;
  height: 50px;
  right: 0;
  top: 0;
  z-index: -1;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  transition: background-color 500ms linear;
}
.sensi-blog.single .grow-report .grow-report-top-bar-content h3 {
  z-index: 2;
  line-height: 50px;
  font-family: Montserrat, sans-serif !important;
  padding-left: 5px;
  color: #fff;
}
@media (max-width: 767.98px) {
  .sensi-blog.single .grow-report .grow-report-top-bar-content h3 {
    font-size: 18px;
    line-height: 1em;
    padding-top: 4px;
    height: auto;
    margin-top: auto;
    margin-bottom: auto;
  }
}
.sensi-blog.single .grow-report .grow-report-top-bar-content .grow-report-icon {
  display: block;
  height: auto;
  margin: 5px;
}
.sensi-blog.single .grow-report .grow-report-top-bar-strain {
  max-width: 320px;
  margin-left: 2em;
  width: 100%;
}
@media (max-width: 991.98px) {
  .sensi-blog.single .grow-report .grow-report-top-bar-strain {
    display: none;
  }
}
.sensi-blog.single .grow-report .grow-report-top-bar-strain h4 {
  margin-left: 32px;
  line-height: 1.3;
  padding-left: 32px;
  font-size: 18px;
  padding-right: 5px;
  min-height: 50px;
  background-color: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  font-family: Montserrat, sans-serif !important;
}
.sensi-blog.single .grow-report .grow-report-top-bar.strain .grow-report-top-bar-content:after {
  background-color: #166734;
}
.sensi-blog.single .grow-report .grow-report-top-bar.germination .grow-report-top-bar-content:after {
  background-color: #44AEE3;
}
.sensi-blog.single .grow-report .grow-report-top-bar.flowering .grow-report-top-bar-content:after {
  background-color: #8AC652;
}
.sensi-blog.single .grow-report .grow-report-top-bar.vegetation .grow-report-top-bar-content:after {
  background-color: #F26722;
}
.sensi-blog.single .grow-report .grow-report-top-bar.harvest .grow-report-top-bar-content:after {
  background-color: #92278F;
}
.sensi-blog.single .grow-report .grow-report-top-bar.effects .grow-report-top-bar-content:after {
  background-color: #6FC7B2;
}
.sensi-blog.single .grow-report .grow-report-top-bar.terpene .grow-report-top-bar-content:after {
  background-color: #CBCB2C;
}
.sensi-blog.single .grow-report .ast-container {
  display: flex;
  justify-content: center;
}
.sensi-blog.single .grow-report-content {
  margin: 0;
}
.sensi-blog.single .grow-report .article-single-post {
  margin: 0;
}
.sensi-blog.single .grow-report .article-single-post .stage-header {
  font-family: "Montserrat", sans-serif !important;
  font-size: 24px;
  color: #fff;
  line-height: 40px;
  border-radius: 10px;
  padding: 5px 10px;
  position: relative;
  background-color: lightgrey;
}
.sensi-blog.single .grow-report .article-single-post .stage-header-germination {
  background-color: #44AEE3;
}
.sensi-blog.single .grow-report .article-single-post .stage-header-vegetation {
  background-color: #F26722;
}
.sensi-blog.single .grow-report .article-single-post .stage-header-flowering {
  background-color: #8AC652;
}
.sensi-blog.single .grow-report .article-single-post .stage-header-harvest {
  background-color: #92278F;
}
.sensi-blog.single .grow-report .article-single-post .stage-header-terpene {
  background-color: #CBCB2C;
}
.sensi-blog.single .grow-report .article-single-post .stage-header-effects {
  background-color: #6FC7B2;
}
.sensi-blog.single .grow-report .grow-data {
  width: 100%;
  max-width: 320px;
  margin-left: 2em;
  border-left: 1px solid #b0b0b0;
  padding-left: 2em;
  margin-top: 2em;
}
@media (max-width: 991.98px) {
  .sensi-blog.single .grow-report .grow-data {
    max-width: 360px;
    position: fixed;
    right: calc(-100% - 8px);
    height: 100%;
    width: 100%;
    margin: 0;
    background-color: #f1f3f3;
    top: 0;
    z-index: 100;
    transition: right 1s;
    padding-right: 15px;
    border-left: none;
    box-shadow: -2px 0px 7px 0px rgba(0, 0, 0, 0.58);
  }
  .sensi-blog.single .grow-report .grow-data.show-sidebar {
    transition: right 1s;
    right: 0;
  }
}
.sensi-blog.single .grow-report .grow-data-wrapper {
  position: relative;
  display: flex;
  top: 0;
  flex-direction: column;
  overflow-y: auto;
  max-height: calc(100vh - 100px);
  max-width: calc(320px - 2em);
  width: 100%;
  /* Track */
  /* Handle */
  /* Handle on hover */
}
@media (max-width: 991.98px) {
  .sensi-blog.single .grow-report .grow-data-wrapper {
    max-width: 100%;
    padding-right: 1em;
    padding-top: 1em;
    max-height: calc(100vh - 15px);
  }
}
.sensi-blog.single .grow-report .grow-data-wrapper::-webkit-scrollbar {
  width: 10px;
}
.sensi-blog.single .grow-report .grow-data-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.sensi-blog.single .grow-report .grow-data-wrapper::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #888;
}
.sensi-blog.single .grow-report .grow-data-wrapper::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.sensi-blog.single .grow-report .grow-data-wrapper.sticky {
  position: fixed;
  top: 50px;
  margin-top: 2em;
}
@media (max-width: 991.98px) {
  .sensi-blog.single .grow-report .grow-data-wrapper.sticky {
    position: relative;
    top: 0;
    margin-top: 0;
  }
}
.sensi-blog.single .grow-report .grow-data-wrapper.sticky-bottom {
  position: absolute;
  bottom: 50px;
  top: auto;
}
@media (max-width: 991.98px) {
  .sensi-blog.single .grow-report .grow-data-wrapper.sticky-bottom {
    position: relative;
    top: 0;
    bottom: 0;
    margin-top: 0;
  }
}
.sensi-blog.single .grow-report .grow-data-wrapper .grow-data-header {
  display: none;
}
.sensi-blog.single .grow-report .grow-data-wrapper .grow-data-header h4 {
  margin-left: 32px;
  line-height: 50px;
  padding-left: 32px;
  background-color: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  font-family: Montserrat, sans-serif !important;
}
@media (max-width: 991.98px) {
  .sensi-blog.single .grow-report .grow-data-wrapper .grow-data-header h4 {
    margin-left: 0;
  }
}
@media (max-width: 991.98px) {
  .sensi-blog.single .grow-report .grow-data-wrapper .grow-data-header {
    display: block;
    margin-bottom: 16px;
  }
}
.sensi-blog.single .grow-report .grow-data-wrapper .grow-data-block {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
}
.sensi-blog.single .grow-report .grow-data-wrapper .grow-data-block-title {
  padding: 10px 5px 10px 1em;
  padding: 10px 5px 10px 1em;
  font-size: 18px;
}
.sensi-blog.single .grow-report .grow-data-wrapper .grow-data-block-title_strain {
  padding: 10px 5px 10px -webkit-calc(1em + 10px);
  padding: 10px 5px 10px calc(1em + 10px);
}
.sensi-blog.single .grow-report .grow-data-wrapper .grow-data-block-subtitle {
  padding: 5px 10px 10px 1em;
  font-weight: 400 !important;
  font-size: 16px;
  border-top: 1px solid lightgrey;
  cursor: pointer;
}
.sensi-blog.single .grow-report .grow-data-wrapper .grow-data-block-subtitle:after {
  content: "\e900";
  font-family: sensi-icomoon;
  float: right;
}
.sensi-blog.single .grow-report .grow-data-wrapper .grow-data-block-subtitle.ui-state-active:after {
  transform: rotate(90deg);
}
.sensi-blog.single .grow-report .grow-data-wrapper .grow-data-block-subtitle_main {
  border-left: 10px solid #166734;
}
.sensi-blog.single .grow-report .grow-data-wrapper .grow-data-block-subtitle_vegetation {
  border-left: 10px solid #F26722;
}
.sensi-blog.single .grow-report .grow-data-wrapper .grow-data-block-subtitle_flowering {
  border-left: 10px solid #8AC652;
}
.sensi-blog.single .grow-report .grow-data-wrapper .grow-data-block-subtitle_harvest {
  border-left: 10px solid #92278F;
}
.sensi-blog.single .grow-report .grow-data-wrapper .grow-data-block-subtitle:last-of-type {
  border-bottom-left-radius: 10px;
}
.sensi-blog.single .grow-report .grow-data-wrapper .grow-data-block-content {
  padding: 5px 5px 10px 1em;
}
.sensi-blog.single .grow-report .grow-data-wrapper .grow-data-block-content_main {
  border-left: 10px solid #166734;
}
.sensi-blog.single .grow-report .grow-data-wrapper .grow-data-block-content_vegetation {
  border-left: 10px solid #F26722;
}
.sensi-blog.single .grow-report .grow-data-wrapper .grow-data-block-content_flowering {
  border-left: 10px solid #8AC652;
}
.sensi-blog.single .grow-report .grow-data-wrapper .grow-data-block-content_harvest {
  border-left: 10px solid #92278F;
}
.sensi-blog.single .grow-report .grow-data-wrapper .grow-data-block-content:last-of-type {
  top: -10px;
  margin-bottom: -10px;
  position: relative;
  padding-top: 15px;
  border-bottom-left-radius: 10px;
}
.sensi-blog.single .grow-report .grow-data-wrapper .grow-data-block-content ul, .sensi-blog.single .grow-report .grow-data-wrapper .grow-data-block-content li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sensi-blog.single .grow-report .grow-data-wrapper .grow-data-block-content li {
  display: flex;
  margin: 10px 0;
  align-items: center;
}
.sensi-blog.single .grow-report .grow-data-wrapper .grow-data-block-content li [class*=g-icon] {
  font-size: 24px;
  width: 28px;
}
.sensi-blog.single .grow-report .grow-data-wrapper .grow-data-block-content li span {
  margin-left: 10px;
  font-weight: 700;
  font-size: 14px;
}
.sensi-blog.single .grow-report .grow-data-wrapper .grow-data-block-content li .data-label {
  margin-left: 3px;
}
.sensi-blog.single .grow-report .grow-data-wrapper h3, .sensi-blog.single .grow-report .grow-data-wrapper h4 {
  font-family: Montserrat, sans-serif !important;
}
.sensi-blog.single .grow-report .grow-data-wrapper .weekly-data {
  border-left: 10px solid #F26722;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.sensi-blog.single .grow-report .grow-data-wrapper .weekly-data_vegetation {
  border-left: 10px solid #F26722;
}
.sensi-blog.single .grow-report .grow-data-wrapper .weekly-data_flowering {
  border-left: 10px solid #8AC652;
}
.sensi-blog.single .grow-report .grow-data-wrapper .weekly-data_harvest {
  border-left: 10px solid #92278F;
}
.sensi-blog.single .grow-report .grow-data-wrapper .weekly-data-header {
  display: flex;
}
.sensi-blog.single .grow-report .grow-data-wrapper .weekly-data-header > span {
  padding-left: 16px;
  display: block;
  line-height: 60px;
  padding-right: 10px;
}
.sensi-blog.single .grow-report .grow-data-wrapper .weekly-data-header .weekly-data-selector {
  width: 100%;
  max-width: 160px;
  padding-right: 10px;
  padding-top: 10px;
}
.sensi-blog.single .grow-report .grow-data-wrapper .weekly-data-header .weekly-data-selector .select2 {
  width: 100%;
}
.sensi-blog.single .grow-report .grow-data-wrapper .weekly-data-header .weekly-data-selector .select2-container .select2-selection--single {
  height: 42px;
  border-radius: 10px;
  border-width: 2px;
}
.sensi-blog.single .grow-report .grow-data-wrapper .weekly-data-header .weekly-data-selector .select2-container .select2-selection--single .select2-selection__rendered {
  height: inherit;
}
.sensi-blog.single .grow-report .grow-data-wrapper .weekly-data-header .weekly-data-selector .select2-container .select2-selection--single .select2-custom-wrap {
  display: block;
  line-height: 18px;
  text-align: center;
}
.sensi-blog.single .grow-report .grow-data-wrapper .weekly-data-header .weekly-data-selector .select2-container .select2-selection--single .select2-custom-wrap__week {
  display: block;
}
.sensi-blog.single .grow-report .grow-data-wrapper .weekly-data-header .weekly-data-selector .select2-container .select2-selection--single .select2-custom-wrap__stage {
  display: block;
  font-size: 14px;
}
.sensi-blog.single .grow-report .grow-data-wrapper .weekly-data-header .weekly-data-selector .select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .sensi-blog.single .grow-report .grow-data-wrapper .weekly-data-header .weekly-data-selector .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}
.sensi-blog.single .grow-report .grow-data-wrapper .weekly-data-header .weekly-data-selector.vegetation .select2-container--default .select2-selection--single {
  border-color: #F26722;
}
.sensi-blog.single .grow-report .grow-data-wrapper .weekly-data-header .weekly-data-selector.flowering .select2-container--default .select2-selection--single {
  border-color: #8AC652;
}
.sensi-blog.single .grow-report .grow-data-wrapper .week-block {
  display: none;
  padding: 5px 5px 10px 1em;
}
.sensi-blog.single .grow-report .grow-data-wrapper .week-block-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.sensi-blog.single .grow-report .grow-data-wrapper .week-block:last-of-type {
  top: 0;
  margin-bottom: 0;
  position: relative;
  padding-top: 5px;
  border-bottom-left-radius: 10px;
}
.sensi-blog.single .grow-report .grow-data #sidebar-growdata-toggle {
  display: none;
}
@media (max-width: 991.98px) {
  .sensi-blog.single .grow-report .grow-data #sidebar-growdata-toggle {
    display: block;
    width: 48px;
    height: 48px;
    padding: 0 8px;
    right: 15px;
    bottom: 15px;
    position: fixed;
    border-radius: 5px;
    background: #166734;
    z-index: 3;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.4);
  }
}
.sensi-blog.single .grow-report .grow-data #sidebar-growdata-toggle .growdata-toggle-wrap {
  position: relative;
}
.sensi-blog.single .grow-report .grow-data #sidebar-growdata-toggle .growdata-toggle-wrap .line {
  background-color: #fff;
  height: 2px;
  width: 100%;
  position: absolute;
}
.sensi-blog.single .grow-report .grow-data #sidebar-growdata-toggle .growdata-toggle-wrap .line-top {
  position: absolute;
  top: 16px;
  transform: rotate(0);
  transition: 250ms;
}
.sensi-blog.single .grow-report .grow-data #sidebar-growdata-toggle .growdata-toggle-wrap .line-middle {
  position: absolute;
  top: 24px;
  display: block;
}
.sensi-blog.single .grow-report .grow-data #sidebar-growdata-toggle .growdata-toggle-wrap .line-bottom {
  position: absolute;
  top: 32px;
  transform: rotate(0);
  transition: 250ms;
}
.sensi-blog.single .grow-report .grow-data #sidebar-growdata-toggle.open .growdata-toggle-wrap {
  transition: 250ms;
}
.sensi-blog.single .grow-report .grow-data #sidebar-growdata-toggle.open .growdata-toggle-wrap .line-middle {
  display: none;
  transition: 250ms;
}
.sensi-blog.single .grow-report .grow-data #sidebar-growdata-toggle.open .growdata-toggle-wrap .line-top {
  top: 24px;
  transform: rotate(-45deg);
  transition: 250ms;
}
.sensi-blog.single .grow-report .grow-data #sidebar-growdata-toggle.open .growdata-toggle-wrap .line-bottom {
  top: 24px;
  transform: rotate(45deg);
  transition: 250ms;
}
.sensi-blog.single .select2-dropdown {
  border-radius: 10px;
  border-width: 2px;
  margin-top: 70px;
}
.sensi-blog.single .select2-dropdown.select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.sensi-blog.single .select2-dropdown.vegetation {
  border-color: #F26722;
}
.sensi-blog.single .select2-dropdown.flowering {
  border-color: #8AC652;
}
.sensi-blog.single .select2-dropdown .select2-results .select2-results__option:last-of-type {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* color animations */
@keyframes flowering {
  from {
    background-color: red;
  }
  to {
    background-color: blue;
  }
}
.black-friday {
  background-color: #000000;
  color: #ffffff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.black-friday .site-main {
  margin-bottom: 5rem !important;
}
.black-friday .content-text {
  max-width: 800px;
  margin: auto;
  font-size: 18px;
}
@media (max-width: 991.98px) {
  .black-friday .content-text {
    font-size: 16px;
  }
}
.black-friday h1 {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 991.98px) {
  .black-friday h1 {
    font-size: 36px;
  }
}
.black-friday p {
  text-align: center;
}
.black-friday a {
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 575.98px) {
  .black-friday .ast-row .ast-col-sm-6 {
    float: left;
    width: 50%;
  }
}
.black-friday .card {
  position: relative;
  margin-bottom: 2rem;
}
.black-friday .card-image img {
  margin: auto;
  display: block;
}
.black-friday .card-text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 70%;
  max-width: 280px;
  font-size: 18px;
}
.black-friday .card-text .card-btn {
  text-decoration: none;
  margin: auto;
  text-align: center;
  display: block;
  background-color: #F5A623;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 10px;
  text-shadow: 0 0 4px grey;
  border-radius: 5px;
  border: 1px solid #fff !important;
  box-shadow: 0 0 11px 1px black;
  font-size: 22px;
}
@media (max-width: 767.98px) {
  .black-friday .card-text .card-btn {
    font-size: 14px;
  }
}

.sensi-blog.site-sensiblog .category-list-button-wrapper,
.sensi-blog.site-weedshop .category-list-button-wrapper {
  text-align: center;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media (max-width: 991.98px) {
  .sensi-blog.site-sensiblog .category-list-button-wrapper,
  .sensi-blog.site-weedshop .category-list-button-wrapper {
    display: none !important;
  }
}
.sensi-blog.site-sensiblog .category-list-button-wrapper h2,
.sensi-blog.site-weedshop .category-list-button-wrapper h2 {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  font-size: 25px;
  line-height: 32px;
  color: #3c3c3c;
  font-family: "Montserrat", sans-serif !important;
  font-weight: bold;
}
.sensi-blog.site-sensiblog .category-list-button-wrapper .category-list-button-content ul,
.sensi-blog.site-weedshop .category-list-button-wrapper .category-list-button-content ul {
  margin: 0;
  list-style: none;
}
.sensi-blog.site-sensiblog .category-list-button-wrapper .category-list-button-content ul li,
.sensi-blog.site-weedshop .category-list-button-wrapper .category-list-button-content ul li {
  display: inline-block;
  margin: 0 4px 10px 4px;
}
.sensi-blog.site-sensiblog .category-list-button-wrapper .category-list-button-content ul li a,
.sensi-blog.site-weedshop .category-list-button-wrapper .category-list-button-content ul li a {
  margin-right: 2px;
  margin-left: 2px;
  font-size: 15px;
}

.sensi-blog .sensi-blog-shoutout {
  padding: 0.75em 0;
  font-weight: bold;
  text-align: center;
  font-size: 24px;
  background: #634078;
  color: #f0f0f0;
  font-size: 24px;
  display: block;
  border: 0;
  height: 64px;
}
.sensi-blog .sensi-blog-shoutout p {
  margin: 0;
}
.sensi-blog .sensi-blog-shoutout p a {
  color: #f0f0f0;
}

@media (max-width: 980px) {
  .sensi-blog .sensi-blog-shoutout {
    height: 64px;
    position: relative;
    top: 130px;
  }
  .sensi-blog.site-weedshop .sensi-blog-shoutout {
    top: 141px;
  }
}
@media (max-width: 768px) {
  .sensi-blog .sensi-blog-shoutout {
    height: 108px;
    position: relative;
    top: 130px;
  }
  .sensi-blog.site-weedshop .sensi-blog-shoutout {
    top: 141px;
  }
}
@media (max-width: 640px) {
  .sensi-blog .sensi-blog-shoutout {
    height: 108px;
    position: relative;
    top: 106px;
  }
  .sensi-blog.site-weedshop .sensi-blog-shoutout {
    top: 116px;
  }
}
@media (max-width: 980px) and (min-width: 976px) {
  .sooqrSearchContainer {
    top: 134px !important;
    margin-top: 0 !important;
  }
}
@media (max-width: 975px) and (min-width: 769px) {
  .sooqrSearchContainer {
    top: 134px !important;
    margin-top: 0 !important;
  }
}
@media (max-width: 768px) and (min-width: 641px) {
  .sooqrSearchContainer {
    top: 128.156px !important;
    margin-top: 0 !important;
  }
}
@media (max-width: 640px) and (min-width: 0px) {
  .sooqrSearchContainer {
    top: 111px !important;
    margin-top: 0 !important;
  }
}
body {
  overflow-anchor: none;
}

body,
button,
input[type=button],
input[type=submit],
textarea {
  line-height: inherit !important;
}

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

.uagb-toc__scroll-top {
  display: none !important;
}

body.sensi-blog.site-sensiblog {
  font-family: Montserrat;
}
@media (max-width: 980px) {
  body.sensi-blog.site-sensiblog.single #sensi-blog-wrapper #content > #primary {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

body.sensi-blog.site-weedshop {
  font-family: "Open Sans", sans-serif;
  margin: 0 auto;
}
body.sensi-blog.site-weedshop #sensi-blog-wrapper {
  background-color: #f4f4f4;
}
body.sensi-blog.site-weedshop h1,
body.sensi-blog.site-weedshop h2,
body.sensi-blog.site-weedshop h3,
body.sensi-blog.site-weedshop h4,
body.sensi-blog.site-weedshop h5,
body.sensi-blog.site-weedshop h6 {
  font-family: Arvo;
  font-weight: 400;
  text-transform: none;
}
body.sensi-blog.site-weedshop p {
  line-height: 1.5rem;
}
body.sensi-blog.site-weedshop .articles-sensi-blog-block .ajax-load-more-wrap.green .alm-load-more-btn {
  font-size: 100%;
  display: inline-block;
  color: #000;
  font-weight: normal;
  padding: 0 1.5em;
  line-height: 3em;
  border-color: #634078;
  line-height: 2.5em !important;
  border-radius: 100px;
  border: 2px solid #634078;
  background: transparent;
}
body.sensi-blog.site-weedshop .articles-sensi-blog-block .ajax-load-more-wrap.green .alm-load-more-btn.loading {
  background-color: transparent;
}
body.sensi-blog.site-weedshop .articles-sensi-blog-block .ajax-load-more-wrap.green .alm-load-more-btn:hover {
  background-color: #634078;
  color: #fff;
}
body.sensi-blog.site-weedshop .articles-sensi-blog-block .ajax-load-more-wrap.green .alm-load-more-btn.loading:before {
  left: 50%;
  margin-left: -15px;
  background-color: transparent;
}
body.sensi-blog.site-weedshop #primary {
  margin: 0 0 0 0 !important;
  padding: 0;
}
body.sensi-blog.site-weedshop #content {
  max-width: 1440px !important;
  margin: 0 auto;
}
body.sensi-blog.site-weedshop #content > #primary {
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  max-width: 1480px;
}

.sensi-blog.site-sensiblog {
  margin: 0 auto;
}
.sensi-blog.site-sensiblog #sensi-blog-wrapper {
  background-color: #f5f5f5;
  overflow-x: hidden;
}
.sensi-blog.site-sensiblog #sensi-blog-wrapper p {
  line-height: 1.6em;
}
.sensi-blog.site-sensiblog #sensi-blog-wrapper .header-hero h1 {
  font-family: Merriweather;
  font-weight: bold;
}
.sensi-blog.site-sensiblog #sensi-blog-wrapper .type-post h1,
.sensi-blog.site-sensiblog #sensi-blog-wrapper .type-post h2,
.sensi-blog.site-sensiblog #sensi-blog-wrapper .type-post h3,
.sensi-blog.site-sensiblog #sensi-blog-wrapper .type-post h4,
.sensi-blog.site-sensiblog #sensi-blog-wrapper .type-post h5,
.sensi-blog.site-sensiblog #sensi-blog-wrapper .type-post h6, .sensi-blog.site-sensiblog #sensi-blog-wrapper .type-country h1,
.sensi-blog.site-sensiblog #sensi-blog-wrapper .type-country h2,
.sensi-blog.site-sensiblog #sensi-blog-wrapper .type-country h3,
.sensi-blog.site-sensiblog #sensi-blog-wrapper .type-country h4,
.sensi-blog.site-sensiblog #sensi-blog-wrapper .type-country h5,
.sensi-blog.site-sensiblog #sensi-blog-wrapper .type-country h6, .sensi-blog.site-sensiblog #sensi-blog-wrapper .type-recipe h1,
.sensi-blog.site-sensiblog #sensi-blog-wrapper .type-recipe h2,
.sensi-blog.site-sensiblog #sensi-blog-wrapper .type-recipe h3,
.sensi-blog.site-sensiblog #sensi-blog-wrapper .type-recipe h4,
.sensi-blog.site-sensiblog #sensi-blog-wrapper .type-recipe h5,
.sensi-blog.site-sensiblog #sensi-blog-wrapper .type-recipe h6 {
  font-family: Merriweather;
  font-weight: bold;
}
.sensi-blog.site-sensiblog #sensi-blog-wrapper #primary {
  margin: 0 0 0 0 !important;
  padding: 0;
}
.sensi-blog.site-sensiblog #sensi-blog-wrapper #content {
  max-width: 1440px !important;
  margin: 0 auto;
}
.sensi-blog.site-sensiblog #sensi-blog-wrapper #content > #primary {
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1480px;
}
.sensi-blog.site-sensiblog #sensi-blog-wrapper #main {
  margin-bottom: 2em;
}
.sensi-blog.site-sensiblog #sensi-blog-wrapper .sensi-blog-post-card .post-content header.entry-header h2, .sensi-blog.site-sensiblog #sensi-blog-wrapper .sensi-blog-post-card .post-content header.entry-header h3 {
  font-family: Merriweather, sans-serif;
  font-weight: bold;
}

.single-post-meta {
  border-bottom: solid #ccc 1px;
}

.entry-header.in-category-header .entry-meta a span {
  color: #634078;
}

/*
* =====
* META
* =====
*/
.entry-meta {
  color: #666666;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
}
.entry-meta span {
  color: #999999;
}

/*
* ===========
* POST TYPE
* ===========
*/
.sensi-blog.blog .ast-breadcrumbs-wrapper {
  padding-right: 0;
  padding-left: 0;
}

.sensi-blog.ast-full-width-layout #sensi-blog-wrapper #primary {
  margin: 0 auto !important;
  padding: 0;
}
.sensi-blog.ast-full-width-layout #sensi-blog-wrapper #content {
  width: 100%;
  max-width: 100% !important;
  margin: 0 auto;
}
.sensi-blog.ast-full-width-layout #sensi-blog-wrapper #content #primary {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 100%;
  width: 100%;
  float: none;
}
.sensi-blog.ast-full-width-layout #sensi-blog-wrapper #content #primary.full-width {
  padding-left: 20px;
  padding-right: 20px;
}
.sensi-blog.ast-full-width-layout #sensi-blog-wrapper #content #primary .site-main {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
.sensi-blog.ast-full-width-layout #sensi-blog-wrapper #content #primary.grow-report {
  padding-left: 0;
  padding-right: 0;
}
.sensi-blog.ast-full-width-layout #sensi-blog-wrapper #content #primary.grow-report .site-main {
  max-width: unset;
}

/*
* =================
* AUTHOR AND EXPERT
* =================
*/
.author-and-expert ul {
  padding: 0;
  margin: 0;
}
.author-and-expert ul li {
  list-style: none;
}

/*
* ==========
* PAGINATION
* ==========
*/
.ast-pagination-infinite {
  margin-bottom: 2.5em !important;
}

/**
 * ======
 * ICON
 * ======
 */
.icon-chevrons-right:before {
  content: "\e900";
}

/**
 * =======
 * Ajax Load more 
 * =======
 */
.ast-row,
.ajax-load-more-wrap {
  margin-left: 0;
  margin-right: 0;
}
.ast-row .alm-listing .alm-reveal,
.ajax-load-more-wrap .alm-listing .alm-reveal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  margin-right: -15px;
  margin-left: -15px;
}
.ast-row .alm-listing .alm-reveal > .articles-with-ads-post,
.ajax-load-more-wrap .alm-listing .alm-reveal > .articles-with-ads-post {
  float: left;
  padding: 0;
  padding-left: 15px !important;
  padding-right: 15px !important;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .ast-row .alm-listing .alm-reveal > .articles-with-ads-post,
  .ajax-load-more-wrap .alm-listing .alm-reveal > .articles-with-ads-post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .ast-row .alm-listing .alm-reveal > .articles-with-ads-post,
  .ajax-load-more-wrap .alm-listing .alm-reveal > .articles-with-ads-post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .ast-row .alm-listing .alm-reveal > .articles-with-ads-post,
  .ajax-load-more-wrap .alm-listing .alm-reveal > .articles-with-ads-post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .ast-row .alm-listing .alm-reveal > .articles-with-ads-post,
  .ajax-load-more-wrap .alm-listing .alm-reveal > .articles-with-ads-post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 575.98px) {
  .ast-row .alm-listing .alm-reveal > .articles-with-ads-post,
  .ajax-load-more-wrap .alm-listing .alm-reveal > .articles-with-ads-post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.ast-row .alm-btn-wrap,
.ajax-load-more-wrap .alm-btn-wrap {
  margin-top: 20px;
}

/**
 * =======
 * RANDOM
 * =======
 */
.articles-sensi-blog-block {
  width: 100% !important;
}

.chevron-title-link i {
  font-size: 9px;
}

#ast-scroll-top {
  display: none !important;
}

.mb-2 {
  margin-bottom: 20px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

form p.comment-form-cookies-consent {
  width: 100%;
  display: flex;
}
form p.comment-form-email.ast-col-md-4, form p.comment-form-email.ast-col-lg-4,
form p.comment-form-author.ast-col-md-4,
form p.comment-form-author.ast-col-lg-4 {
  width: 50% !important;
}

body.sensi-blog.site-weedshop .articles-sensi-blog-block .ajax-load-more-wrap.green .alm-load-more-btn {
  font-size: 100%;
  display: inline-block;
  color: #000;
  font-weight: normal;
  padding: 0 1.5em;
  line-height: 3em;
  border-color: #634078;
  line-height: 2.5em !important;
  border-radius: 100px;
  border: 2px solid #634078;
  background: transparent;
}

body.sensi-blog.site-weedshop .articles-sensi-blog-block .ajax-load-more-wrap.green .alm-load-more-btn.loading {
  background-color: transparent;
}

body.sensi-blog.site-weedshop .articles-sensi-blog-block .ajax-load-more-wrap.green .alm-load-more-btn:hover {
  background-color: #634078;
  color: #fff;
}

.articles-sensi-blog-block .ajax-load-more-wrap.green .alm-load-more-btn.loading:before {
  left: 50%;
  margin-left: -15px;
  background-color: transparent;
}