@import url(https://fonts.googleapis.com/css?family=Rubik:300,400,500);
@import url(https://fonts.googleapis.com/css?family=Montserrat:400,600);
@import url(https://fonts.googleapis.com/css?family=Fira+Sans:400,600);
@import url(https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap);
.Cart {
  z-index: 5;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 385px;
  max-width: 100%;
  overflow: scroll;
  background-color: white;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #e5e5e5;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1); }
  .Cart .orderNotesButton {
    transition-duration: 0.2s;
    color: #999;
    padding-bottom: 5px; }
    .Cart .orderNotesButton:hover {
      color: #2b4144; }
    .Cart .orderNotesButton.open {
      color: #2b4144; }
  .Cart .orderNotes {
    opacity: 0;
    height: 0;
    transition-duration: 0.2s;
    margin-bottom: 10px; }
    .Cart .orderNotes textarea {
      background: #fafafa;
      border-color: #ccc;
      width: 100%;
      height: 0px;
      border-radius: 3px;
      outline: 0;
      padding: 5px 7px;
      font-size: 14px;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box; }
      .Cart .orderNotes textarea:focus {
        border-color: #2b4144; }
    .Cart .orderNotes.open {
      opacity: 1;
      height: 100px; }
      .Cart .orderNotes.open textarea {
        height: 100px; }

.Cart__close {
  position: absolute;
  right: 9px;
  top: 8px;
  font-size: 35px;
  color: #999;
  border: none;
  background: transparent;
  cursor: pointer; }

.Cart__close:hover {
  color: #aaa; }

.Cart__header {
  padding: 20px;
  border-bottom: 1px solid #e5e5e5;
  flex: 0 0 auto;
  display: inline-block;
  color: #2b4144; }

.Cart__header h2 {
  margin: 0px;
  font-weight: normal; }

.Cart__line-items {
  flex: 1 0 auto;
  margin: 0;
  padding: 20px;
  overflow: scroll; }

.Cart__footer {
  padding: 15px 20px 30px 20px;
  border-top: 1px solid #e5e5e5;
  flex: 0 0 auto; }

.Cart__checkout {
  margin-top: 20px;
  display: block;
  width: 100%;
  padding: 10px;
  background: linear-gradient(-180deg, #2b4144 0%, #3B575A 100%);
  border-radius: 4px;
  color: #eee;
  font-size: 15px; }

.Cart__checkout:hover {
  background: linear-gradient(-180deg, #496063 25%, #3B575A 100%) !important; }

.Cart-info {
  padding: 15px 20px 10px; }

.Cart-info__total {
  float: left;
  text-transform: uppercase; }

.Cart-info__small {
  font-size: 11px; }

.Cart-info__pricing {
  float: right; }

.pricing {
  margin-left: 5px;
  font-size: 16px;
  color: black; }

/*--- LINE ITEMS ---*/
.Line-item__price, .Line-item__variant-title {
  margin-right: 75px;
  font-family: Helvetica Neue,Helvetica,Arial,sans-serif; }

.Line-item__img {
  display: flex;
  justify-content: center; }

.Line-item__img img {
  display: block;
  max-width: 100%;
  max-height: 100%; }

.Line-item {
  margin-bottom: 20px;
  overflow: hidden;
  backface-visibility: visible;
  min-height: 65px;
  position: relative;
  opacity: 1;
  transition: opacity 0.2s ease-in-out; }

.Line-item__img {
  width: 65px;
  height: 65px;
  border-radius: 3px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute; }

.Line-item__content {
  width: 100%;
  padding-left: 75px; }

.Line-item__content-row {
  display: inline-block;
  width: 100%;
  margin-bottom: 5px;
  position: relative; }

.Line-item__variant-title {
  float: right;
  font-weight: bold;
  font-size: 11px;
  line-height: 22px;
  padding-left: 10px;
  color: #767676; }

.Line-item__title {
  color: #4E5665;
  font-size: 15px;
  font-weight: 400; }

.Line-item__price {
  color: #2b4144;
  line-height: 23px;
  float: right;
  font-weight: bold;
  font-size: 15px; }

.Line-item__quantity-container {
  border: 1px solid #767676;
  float: left;
  border-radius: 3px;
  display: flex; }

.Line-item__quantity-update {
  color: #767676;
  display: block;
  float: left;
  height: 23px;
  line-height: 16px;
  font-family: monospace;
  width: 25px;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  font-size: 18px;
  text-align: center; }

.Line-item__quantity-update-form {
  display: inline; }

.Line-item__quantity {
  color: black;
  width: 50px;
  height: 30px;
  line-height: 30px;
  font-size: 15px;
  border: none;
  text-align: center;
  -moz-appearance: textfield;
  background: transparent;
  /*border-left: 1px solid #767676;*/
  /*border-right: 1px solid #767676;*/
  display: block;
  float: left;
  padding: 0;
  border-radius: 0; }
  .Line-item__quantity input {
    height: 30px;
    font-size: 13px; }

input[type=number]::-webkit-inner-spin-button {
  width: 20px;
  height: 30px; }

.Line-item__remove {
  position: absolute;
  right: 0;
  top: 0;
  border: 0;
  background: 0;
  font-size: 20px;
  top: -4px;
  opacity: 0.5; }

.Line-item__remove:hover {
  opacity: 1;
  cursor: pointer; }

.lineItemUpdate, .LineItemRemove {
  height: 30px;
  color: white;
  padding: 0px 5px;
  font-weight: bold;
  margin: 0;
  font-size: 12px; }

.lineItemUpdate {
  background: #1e753b; }

.lineItemUpdate:hover {
  color: #fafafa;
  background: #237B40; }

.LineItemRemove {
  color: #aaa;
  border-left: 1px solid #aaa; }

.LineItemRemove:hover {
  background: #c15151;
  color: #fafafa; }

.totals {
  display: flex;
  justify-content: space-between;
  padding: 5px 0px;
  color: #58595b;
  font-weight: normal;
  font-size: 0.9em; }
  .totals .pricing {
    color: #2b4144; }
  .totals .calculated {
    color: #58595b; }

.increment_buttons {
  display: flex;
  flex-direction: column; }
  .increment_buttons .Line-item__quantity-update {
    height: auto; }

@media screen and (max-width: 501px) {
  .Line-item__quantity {
    height: 23px;
    line-height: 23px; }
    .Line-item__quantity input {
      height: 23px; }
  .lineItemUpdate, .LineItemRemove {
    height: 23px; } }

.Line-item.out_of_stock .price_quan_info {
  display: none; }

.out_of_stock_row .LineItemRemove {
  color: #c15151; }
  .out_of_stock_row .LineItemRemove:hover {
    background: white; }

/* ----------GLOBAL STYLESHEET---------- */
.container {
  width: 1300px;
  max-width: 100%;
  margin: 0 auto; }

.container > .row {
  padding: 0px 20px; }
  .container > .row .col {
    max-width: 100%; }
  .container > .row .size-50 {
    width: 650px; }

.container2 {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto; }

.container3 {
  width: 1100px;
  max-width: 100%;
  margin: 0 auto; }

.header-g {
  font-size: 40px;
  margin: 50px 0px 25px 0px;
  color: #2b4144;
  font-weight: normal; }
  .header-g.with-line {
    border-bottom: 1px solid #e5e9ec;
    padding-bottom: 20px;
    margin-bottom: 0px; }
  @media screen and (max-width: 501px) {
    .header-g {
      font-size: 35px; } }

.subheader-g {
  font-size: 26px;
  color: #2b4144; }
  @media screen and (max-width: 501px) {
    .subheader-g {
      font-size: 1.3em; } }

.normal-text-g {
  font-size: 20px;
  color: #2b4144; }
  @media screen and (max-width: 950px) {
    .normal-text-g {
      font-size: 18px; } }
  @media screen and (max-width: 501px) {
    .normal-text-g {
      font-size: 16px; } }

.light-med-weight {
  font-weight: 400; }

.small-g {
  font-size: 13px; }

.intro-g {
  color: #2b4144; }
  .intro-g h1 {
    font-size: 4em;
    text-align: center;
    margin: 150px 0px; }
  @media screen and (max-width: 501px) {
    .intro-g h1 {
      font-size: 2em; } }

.clickable {
  cursor: pointer; }

.accordion {
  margin-bottom: 10px;
  transition: 0.4s;
  border-radius: 4px;
  color: #2b4144; }
  .accordion .label {
    transition: background 0.15s;
    border: 1px solid #ccc;
    border-radius: inherit;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    padding: 18px; }
    .accordion .label .icon {
      color: #999;
      padding-left: 5px;
      padding-top: 3px; }
    .accordion .label .icon.up {
      display: none; }
    .accordion .label .icon.down {
      display: block; }
    .accordion .label:hover {
      background: #f5f5f5; }
      .accordion .label:hover .icon {
        color: #2b4144; }
  .accordion .panel {
    border: 1px solid #ccc;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    border-top: none;
    padding: 0 18px;
    display: none;
    background-color: white;
    overflow: hidden; }

.accordion.active .label {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  background: #2b4144;
  color: #eee; }
  .accordion.active .label .icon {
    color: inherit; }
  .accordion.active .label .icon.up {
    display: block; }
  .accordion.active .label .icon.down {
    display: none; }

.accordion.active .panel {
  background: #fcfcfc;
  display: block; }

.Cart, .Cart__line-items {
  -ms-overflow-style: none;
  scrollbar-width: none; }

.Cart::-webkit-scrollbar, .Cart__line-items::-webkit-scrollbar {
  display: none; }

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #aaa;
  opacity: 1;
  /* Firefox */ }

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #aaa; }

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #aaa; }

/* ---GLOBALS--- */
html,
body {
  margin: 0px;
  padding: 0px; }

body {
  font-family: "Rubik", "Helvetica Neue", helvetica, arial, sans-serif; }

a {
  text-decoration: none;
  color: #2d2d2d; }

.true-link {
  color: #1DA1F2; }

ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none; }

.keepListStyle ul {
  list-style-type: disc;
  padding-left: 20px; }

h1 {
  margin: 0px; }

.header, .subheader {
  color: #2b4144; }

h1, h2, h3, h4, h5, h6 {
  font-weight: normal; }

strong {
  font-weight: 500; }

small, p {
  line-height: 1.6em;
  font-weight: 300; }

small {
  color: #58595b; }

p {
  max-width: 100%;
  color: #2b4144;
  word-break: break-word; }
  p a {
    color: #1c94e0; }

input:focus {
  outline: none; }

button {
  outline: 0;
  padding: 0;
  border: 0;
  background: none;
  outline: none;
  cursor: pointer; }

.header {
  font-size: 40px; }

h2, .subheader {
  font-size: 26px; }

p {
  font-size: 20px; }

li, button {
  font-size: 16px; }

@media screen and (max-width: 950px) {
  .hideElement {
    height: 0;
    position: fixed;
    overflow: hidden; } }

.clearbtn {
  margin: 15px 0px;
  background: none;
  padding: 10px 25px;
  color: #2b4144;
  border: 1px solid #2b4144;
  transition-duration: 0.2s;
  font-weight: 500;
  border-radius: 25px;
  cursor: pointer; }
  .clearbtn:hover {
    background: #2b4144;
    color: #f6f4f4; }
  .clearbtn.nohover {
    color: #aaa;
    border-color: #ccc;
    cursor: default; }
    .clearbtn.nohover:hover {
      background: none; }
  .clearbtn.square {
    border-radius: 5px;
    margin-top: 5px;
    padding: 10px; }
  .clearbtn.small {
    font-size: 12px; }

.normalInput {
  padding: 10px;
  margin-right: 5px;
  border-radius: 5px;
  border: 1px solid #ccc; }
  .normalInput:focus {
    border-color: #2b4144; }
  .normalInput.small {
    font-size: 12px; }
  .normalInput.success {
    font-weight: bold;
    text-decoration: underline;
    color: #2b4144;
    background: #fafafa;
    border-color: #ccc; }

.check_confirm_icon {
  color: #6c967e; }

.mobile {
  display: none !important; }

.mobileflex {
  display: none !important; }

@media screen and (max-width: 950px) {
  .mobile {
    display: block !important; }
  .mobileflex {
    display: flex !important; }
  .nonmobile {
    display: none !important; }
  p, .mainPage li {
    font-size: 18px; } }

@media screen and (max-width: 501px) {
  p, .mainPage li {
    font-size: 16px; }
  h2 {
    font-size: 1.3em; } }

.two-col {
  display: flex; }

.two-col-image img {
  width: 50%;
  height: 100%; }

@media screen and (max-width: 501px) {
  .two-col-image img {
    width: 100%; } }

.center-element {
  display: flex;
  flex-direction: column;
  align-items: center; }

/* ---HEADER SECTION--- */
nav {
  display: flex;
  margin: 0px auto;
  max-width: 1300px;
  /* This is being handled on react
  .dropdown:hover .dropbtn {
    color: $mainColor;
  }
  */ }
  nav .navLink {
    font-weight: 500;
    white-space: nowrap;
    display: block;
    padding: 18px 18px 22px 18px;
    color: #58595b;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    font-size: 0.9rem; }
  nav .homeLink {
    padding: 0px;
    display: flex;
    align-items: center; }
    nav .homeLink .navLogo {
      width: 175px;
      height: auto; }
  nav .navLink:not(.homeLink):hover {
    color: #0c8441;
    transition: 0.1s ease-out; }
  nav .activeLink {
    color: #0c8441;
    border-color: #0c8441; }
  nav .productsGridButton .dropdownContent {
    animation: hideDropDown 0.2s linear forwards; }
  nav .dropdown .dropbtn {
    outline: 0;
    color: #58595b;
    background-color: inherit;
    cursor: pointer; }
  nav .dropdown .dropdownContent {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 1px 10px 1px rgba(0, 0, 0, 0.1);
    z-index: 3; }
    nav .dropdown .dropdownContent .navLink:hover {
      background: #ddd; }
  nav .dropdown .dropbtn:hover + .dropdownContent {
    display: block;
    animation: showDropDown 0.2s linear forwards; }
  nav .dropdown .normal.dropdownContent:hover {
    display: block;
    animation: showDropDown 0.2s linear forwards; }
  nav .dropdown .normal.unhover:hover {
    display: none; }
  nav .dropdown .dropdownContent ul {
    padding: 10px 15px;
    font-family: "Rubik", "Helvetica Neue", helvetica, arial, sans-serif;
    font-weight: 500; }
    nav .dropdown .dropdownContent ul a {
      font-size: 0.9em;
      color: #58595b; }
    nav .dropdown .dropdownContent ul a:hover {
      color: #0c8441; }
    nav .dropdown .dropdownContent ul li {
      padding: 5px 0px; }
  nav .dropdown.wide .dropdownContent {
    width: 100%;
    left: 0; }
  nav .dropdownContent.show {
    display: block;
    animation: showDropDown 0.2s linear forwards; }
  nav .burgerNavButton {
    display: none;
    padding-right: 15px;
    border-left: 1px solid #eee;
    color: #2d2d2d;
    padding-left: 15px;
    padding-top: 10px;
    padding-bottom: 5px; }
    nav .burgerNavButton button {
      border: 0;
      padding: 0;
      margin: 0;
      background: none;
      outline: none;
      cursor: pointer;
      position: relative;
      line-height: 0;
      font-family: "Rubik", "Helvetica Neue", helvetica, arial, sans-serif; }
      nav .burgerNavButton button .icon {
        font-size: 26px;
        vertical-align: middle; }
  nav .cartButton button {
    display: flex;
    padding: 17px 15px 17px 5px;
    font-size: 14px; }
  nav .cartButton button:hover {
    color: #0c8441; }
  @media screen and (max-width: 950px) {
    nav {
      height: 54px; }
      nav .navContainer {
        padding: 0px; }
        nav .navContainer li {
          padding-top: 0px; }
      nav .navLink {
        display: none; }
      nav .homeLink {
        display: flex;
        align-items: center; }
        nav .homeLink .navLogo {
          height: 25px;
          width: auto;
          max-width: none; }
      nav .burgerNavButton {
        display: block;
        padding-bottom: 10px;
        display: flex;
        padding-top: 3px !important;
        padding-bottom: 0px; }
      nav .dropdown.burger {
        display: block; }
      nav .cartButton {
        display: flex;
        padding: 0; }
        nav .cartButton button {
          padding: 2px 15px 0px 15px; } }
  @media screen and (min-width: 950px) {
    nav .burgerContent {
      display: none !important; } }

@media screen and (min-width: 950px) {
  .burgerContent {
    display: none !important; }
  .mainContent,
  .mainFooter {
    display: block !important; } }

@media screen and (max-width: 950px) {
  .logoDrop {
    z-index: 5;
    transition-duration: 0.3s;
    transform: translateY(25px); } }

.dropdown.burger .burgerHeader {
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fcfbf2;
  border-bottom: 3px solid #eee; }
  .dropdown.burger .burgerHeader .burgerArrow {
    font-size: 3em;
    width: auto;
    color: #444; }
  .dropdown.burger .burgerHeader h2 {
    text-align: right;
    margin: 0;
    font-size: 1.7em;
    color: #6c967e;
    letter-spacing: 1.7px; }
  .dropdown.burger .burgerHeader span {
    padding: 0px 15px 0px 20px; }

.dropdown.burger .burgerContent {
  display: block;
  position: absolute;
  background: white;
  width: 100vw;
  display: block;
  left: 0px;
  top: 54px;
  border-top: 1px solid #eee;
  transition: 0.5s;
  overflow: hidden; }

.dropdown.burger .burgerNavList {
  outline: 0;
  padding-top: 25px;
  width: 100%; }
  .dropdown.burger .burgerNavList li,
  .dropdown.burger .burgerNavList .burgerNavButton,
  .dropdown.burger .burgerNavList a {
    height: 40px;
    font-weight: 500;
    font-size: 25px;
    display: flex;
    align-items: center; }
  .dropdown.burger .burgerNavList a:active, .dropdown.burger .burgerNavList .burgerNavButton:active {
    color: #0c8441; }
  .dropdown.burger .burgerNavList .burgerNavButton > * {
    display: flex;
    align-items: center; }
  .dropdown.burger .burgerNavList li {
    padding: 10px 75px; }
  .dropdown.burger .burgerNavList .burgerArrow {
    font-size: 50px;
    width: auto; }

.dropdown.burger .burgerNavButton {
  border: 0;
  padding: 0;
  margin: 0;
  background: none;
  outline: none;
  cursor: pointer;
  position: relative;
  line-height: 0;
  font-family: "Rubik", "Helvetica Neue", helvetica, arial, sans-serif;
  display: flex;
  justify-content: space-between; }

.dropdown.burger .burgerNavButton,
.dropdown.burger a {
  width: 100%; }

.dropdown.burger .productsGrid {
  display: grid;
  grid-template-columns: 1fr; }

@media screen and (max-width: 650px) {
  .dropdown.burger .burgerHeader h2 {
    font-size: 1.2em; } }

@media screen and (max-width: 550px) {
  .dropdown.burger .burgerNavList > li {
    padding: 10px 25px !important; } }

@keyframes showDropDown {
  from {
    opacity: 0;
    transform: translateY(10px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

@keyframes hideDropDown {
  from {
    display: block;
    opacity: 1;
    transform: translateY(0); }
  to {
    display: none;
    opacity: 0;
    transform: translateY(10px); } }

.navContainer {
  display: flex;
  justify-content: flex-end;
  padding-right: 10px; }
  .navContainer li {
    padding-top: 10px; }

/* ---PRODUCTS GRID--- */
.productsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 10px 40px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 10px 0px; }
  .productsGrid .productItem {
    text-align: center;
    padding: 10px 0px;
    color: #2b4144; }
    .productsGrid .productItem img {
      height: 150px;
      width: auto;
      max-width: 100%; }
    .productsGrid .productItem .bar {
      border: 2px solid #fff;
      margin: 5px auto 5px auto;
      width: 25px;
      transition-duration: 0.15s;
      border-radius: 5px; }
    .productsGrid .productItem h4 {
      font-weight: 500; }
  .productsGrid .productItem:hover .bar {
    border-color: #0c8441;
    width: 45px; }
  @media screen and (max-width: 950px) {
    .productsGrid .productItemContainer {
      border-bottom: 1px solid #ccc; }
    .productsGrid .productItem {
      padding: 10px;
      display: flex;
      align-items: center;
      width: 100%;
      justify-content: space-around;
      padding: 20px 20px; }
      .productsGrid .productItem .bar {
        display: none;
        height: 15px;
        width: 0px; }
      .productsGrid .productItem:hover .bar {
        height: 35px;
        width: 0px; }
    .productsGrid a {
      display: flex;
      justify-content: space-around; }
    .productsGrid img {
      height: 250px; }
    .productsGrid h4 {
      width: 50%;
      text-align: left;
      font-size: 2em; } }
  @media screen and (max-width: 650px) {
    .productsGrid a {
      flex-direction: column; }
    .productsGrid h4 {
      text-align: center;
      width: 100%;
      font-size: 1.5em; }
    .productsGrid img {
      height: 150px; } }
  @media screen and (max-width: 501px) {
    .productsGrid .productItem img {
      height: 100px; }
    .productsGrid h4 {
      font-size: 1em; } }

.burgerProductGrid {
  outline: 0; }
  .burgerProductGrid a:active .productItem, .burgerProductGrid .burgerNavButton:active .burgerArrow {
    color: #0c8441; }

/* ---HERO SECTION--- */
.heroIntro {
  position: relative;
  height: 50vh;
  min-height: 450px;
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: center; }
  .heroIntro:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    z-index: -1; }
  .heroIntro.heroTint:before {
    -webkit-filter: brightness(75%);
    filter: brightness(75%); }
  .heroIntro .title {
    color: white;
    font-size: 55px;
    text-align: center; }
    .heroIntro .title.dark {
      color: #2b4144; }
    .heroIntro .title h1 {
      font-weight: 300; }
  @media screen and (max-width: 950px) {
    .heroIntro {
      min-height: 0;
      height: 50vh; }
      .heroIntro .title, .heroIntro h1 {
        font-size: 1.5em; } }

.homePageContainer .heroContent {
  font-family: "Fira Sans", sans-serif;
  color: #2b4144;
  width: 1300px; }
  .homePageContainer .heroContent h1, .homePageContainer .heroContent h2 {
    padding: 0px 22px;
    max-width: 100%; }
  .homePageContainer .heroContent h1 {
    font-size: 52px;
    font-weight: 600; }
  .homePageContainer .heroContent h2 {
    line-height: 1.4em;
    margin-top: 5px;
    font-size: 26px; }

.homePageContainer .slide3 .heroContent {
  color: white; }

.homePageContainer .slide3 .heroIntro:before {
  -webkit-filter: brightness(75%);
  filter: brightness(75%); }

@media screen and (max-width: 850px) {
  .homePageContainer .heroContent {
    color: white; }
  .homePageContainer .heroIntro:before {
    background-position-x: 60%;
    -webkit-filter: brightness(75%);
    filter: brightness(75%); } }

@media screen and (max-width: 950px) {
  .homePageContainer .heroContent h1, .homePageContainer .heroContent h2 {
    padding: 0px 20px; }
  .homePageContainer .slide1 h2 {
    width: 300px !important; }
  .homePageContainer .heroContent h1 {
    width: auto !important;
    font-size: 45px; }
  .homePageContainer .heroContent h2 {
    font-size: 24px; }
  .homePageContainer .quote .content {
    font-size: 1.5em !important; } }

@media screen and (max-width: 501px) {
  .homePageContainer .heroContent h1 {
    width: auto; }
  .homePageContainer .heroContent h1 {
    font-size: 36px; }
  .homePageContainer .slide1 h2 {
    width: 220px !important; }
  .homePageContainer .slide2 h2 {
    width: 270px !important; }
  .homePageContainer .heroContent h2 {
    font-size: 18px; }
  .homePageContainer .quote .content {
    font-size: 1em !important; } }

@media screen and (max-width: 400px) {
  .homePageContainer .heroContent h1 {
    font-size: 26px; }
  .homePageContainer .heroContent h2 {
    font-size: 16px; } }

.featureIconContainer {
  display: flex;
  justify-content: center;
  padding: 60px 0px 10px 0px; }
  .featureIconContainer .featureIcon {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 10px;
    width: 220px; }
    .featureIconContainer .featureIcon .image {
      height: 100px; }
    .featureIconContainer .featureIcon img {
      height: 100px;
      width: auto; }
    .featureIconContainer .featureIcon h2 {
      margin-top: 10px;
      font-weight: normal;
      color: #2b4144; }

.slick-slider .slick-arrow.slick-prev {
  left: 0;
  margin-left: 10px;
  z-index: 1; }

.slick-slider .slick-arrow.slick-next {
  right: 0;
  margin-right: 10px;
  z-index: 1; }

.slick-slider .slick-arrow {
  height: 50px;
  width: 50px; }

.slick-slider .slick-dots {
  bottom: 0px; }
  .slick-slider .slick-dots li.slick-active button:before {
    color: black; }
  .slick-slider .slick-dots li button:before {
    color: white;
    font-size: 7px;
    opacity: 0.9;
    text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5); }

.blogList .slick-slide {
  visibility: hidden; }

.blogList .slick-slide.slick-active {
  visibility: visible; }

/* ---HOMEPAGE INTRO 0--- */
.test1,
.test2 {
  margin: 0px auto 0px auto;
  display: flex;
  justify-content: center;
  color: #424242; }

.test1 {
  transition-duration: 0.6s; }

.test2 {
  flex-direction: column; }
  .test2 .featuredItemContainer {
    display: flex;
    margin: 0px 20px; }
    .test2 .featuredItemContainer .featuredItem .image {
      position: relative;
      overflow: hidden;
      -webkit-transition: all 0.3s ease-in-out; }
    .test2 .featuredItemContainer .featuredItem .image:before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      bottom: 0;
      background-position: center;
      background-size: contain;
      overflow: hidden;
      -webkit-transition: all 0.3s ease-in-out;
      background-repeat: no-repeat; }
      @media screen and (max-width: 501px) {
        .test2 .featuredItemContainer .featuredItem .image:before {
          background-size: 75%;
          background-repeat: no-repeat;
          background-position-x: 90%; } }
    .test2 .featuredItemContainer .image:hover .arrow {
      opacity: 1; }
    .test2 .featuredItemContainer .featuredItem {
      width: 100%;
      margin: 10px;
      transition-duration: 0.2s; }
    .test2 .featuredItemContainer .arrow {
      font-size: 1.3em;
      color: #2b4144;
      opacity: 0;
      transition-duration: 0.2s; }
    .test2 .featuredItemContainer .featuredItem:hover .image:before {
      -webkit-transform: scale(1.02, 1.02);
      -webkit-transform: scale(1.02, 1.02);
      transform: scale(1.02); }
    .test2 .featuredItemContainer .featuredItem:hover .content {
      transform: translateX(8px); }
    .test2 .featuredItemContainer .content {
      z-index: 0;
      -webkit-transition: all 0.3s ease-in-out; }
    .test2 .featuredItemContainer .content h4 {
      width: 180px;
      max-width: 100%; }
    .test2 .featuredItemContainer .image {
      transition-duration: 0.3s;
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 228px;
      padding: 20px 35px;
      width: auto;
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat;
      background-color: #f6f4f4; }
      .test2 .featuredItemContainer .image h1 {
        font-family: "Rubik", "Helvetica Neue", helvetica, arial, sans-serif;
        color: #2b4144; }
      .test2 .featuredItemContainer .image h4 {
        font-family: "Rubik", "Helvetica Neue", helvetica, arial, sans-serif;
        font-weight: normal;
        color: #58595b; }
  @media screen and (max-width: 850px) {
    .test2 .featuredItemContainer {
      flex-wrap: wrap; } }
  @media screen and (max-width: 501px) {
    .test2 .featuredItemContainer .content {
      width: 50%; }
      .test2 .featuredItemContainer .content .arrow {
        display: none; }
    .test2 .featuredItemContainer h1 {
      font-size: 20px; }
    .test2 .featuredItemContainer h2 {
      font-size: 20px;
      margin-bottom: 5px; }
    .test2 .featuredItemContainer h4 {
      font-size: 12px;
      margin-top: 0px; }
    .test2 .featuredItemContainer .image {
      height: 120px;
      background-size: 75%;
      background-position-x: 90%; } }
  @media screen and (max-width: 350px) {
    .test2 .featuredItem .image {
      height: 90px; } }

.introContainer0 {
  margin: 60px 0px 0px 0px;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.2);
  padding: 20px 0px 50px 0px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  flex-direction: column; }
  .introContainer0 h2 {
    font-size: 35px;
    color: #0c8441; }
  .introContainer0 p {
    margin: 0px 0px 30px 0px;
    font-size: 20px;
    color: #58595b;
    width: 500px;
    text-align: center; }
  .introContainer0 a {
    font-size: 23px;
    font-weight: bold;
    color: #0c8441;
    padding-bottom: 3px;
    border-bottom: 2px solid #0c8441; }

.introContainer1 {
  text-align: center;
  color: #58595b; }
  .introContainer1 h1 {
    margin: 30px 0px; }

.tileRow {
  display: flex;
  justify-content: center;
  flex-direction: row;
  margin-top: 10px; }
  .tileRow .tile {
    position: relative;
    overflow: hidden;
    margin: 1px;
    height: 300px;
    max-width: 600px; }
    .tileRow .tile img {
      height: auto;
      max-width: 100%;
      -moz-transition: all 0.3s;
      -webkit-transition: all 0.3s;
      transition: all 0.3s; }
    .tileRow .tile .after {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      visibility: hidden;
      color: #fff; }
    .tileRow .tile:hover .after {
      visibility: visible;
      background: rgba(0, 0, 0, 0.3); }
    .tileRow .tile:hover img {
      -moz-transform: scale(1.1);
      -webkit-transform: scale(1.1);
      transform: scale(1.1); }

/* ---HOMEPAGE TOUR--- */
.homepageTour {
  width: 1300px;
  max-width: 100%;
  margin: 0 auto; }
  @media screen and (max-width: 1100px) {
    .homepageTour .tourItem .content .description {
      font-size: 1.45em; } }
  @media screen and (max-width: 950px) {
    .homepageTour .tourItem {
      height: 400px;
      margin-bottom: 15px; }
      .homepageTour .tourItem img {
        height: 100%; }
    .homepageTour .tourItem .content .description {
      font-size: 1.35em; } }
  @media screen and (max-width: 800px) {
    .homepageTour .tourItem .content .description {
      font-size: 1.15em; } }
  @media screen and (max-width: 800px) {
    .homepageTour .tourItem,
    .homepageTour .tourItem.reverse {
      margin: 70px 20px 15px 20px; } }
  @media screen and (max-width: 750px) {
    .homepageTour .tourItem,
    .homepageTour .tourItem.reverse {
      height: auto;
      flex-direction: column;
      margin: 15px 15px; }
      .homepageTour .tourItem img,
      .homepageTour .tourItem.reverse img {
        width: 100%;
        height: auto; }
      .homepageTour .tourItem .content,
      .homepageTour .tourItem.reverse .content {
        width: auto;
        padding: 0px 10px; } }

.tourItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 70px 30px 100px 30px;
  height: 510px;
  color: #2b4144; }
  .tourItem img {
    height: 110%;
    width: auto; }
  .tourItem .content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 0px 0px 50px; }
    .tourItem .content .title {
      margin: 20px 0px;
      font-size: 40px; }
    .tourItem .content .description {
      font-weight: 300;
      color: #58595b;
      line-height: 1.5em;
      border-radius: 4px; }
  .tourItem h1 {
    font-weight: normal; }
  .tourItem h2 {
    font-weight: normal; }
  .tourItem.reverse {
    flex-direction: row-reverse; }
    .tourItem.reverse .content {
      padding: 0px 50px 0px 0px; }

/* ---Homepage Intro - Product Classes--- */
.homeProductClasses {
  font-family: "Rubik", "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 500;
  margin: 50px auto;
  color: #2b4144; }
  .homeProductClasses .strikeBackground {
    margin-bottom: 50px; }
  .homeProductClasses > * {
    padding: 0px 20px; }
  .homeProductClasses h2 {
    font-weight: 300;
    float: right; }
  .homeProductClasses .twos {
    display: flex; }
    .homeProductClasses .twos .wrapper,
    .homeProductClasses .twos .classItem {
      height: 350px; }
  .homeProductClasses .wrapper {
    -webkit-transition: all 0.3s ease-in-out;
    overflow: hidden;
    width: 100%;
    margin: 10px 10px; }
    .homeProductClasses .wrapper .arrow {
      opacity: 0;
      transition-duration: 0.2s; }
  .homeProductClasses .classItem:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    z-index: -1; }
  .homeProductClasses .classItem {
    position: relative;
    text-align: center;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    -webkit-transition: all 0.2s ease-in-out;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; }
  .homeProductClasses .wrapper:hover .classItem:before {
    -webkit-transform: scale(1.02, 1.02);
    -webkit-transform: scale(1.02, 1.02);
    transform: scale(1.02); }
  .homeProductClasses .wrapper:hover .content {
    transform: translateX(8px); }
  .homeProductClasses .wrapper:hover .arrow {
    opacity: 1; }
  .homeProductClasses .chevron {
    vertical-align: middle;
    padding-left: 10px;
    font-weight: 300; }
  .homeProductClasses .content {
    padding: 15px 30px;
    color: #2b4144;
    -webkit-transition: all 0.3s ease-in-out;
    font-size: 1.4em; }
    .homeProductClasses .content .left {
      float: left; }
  .homeProductClasses a,
  .homeProductClasses a:hover {
    color: #2b4144; }
  .homeProductClasses .singles .wrapper,
  .homeProductClasses .singles .classItem {
    width: auto;
    height: 400px; }
  .homeProductClasses .singles .classItem:before {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-position-y: 85%; }
  @media screen and (max-width: 950px) {
    .homeProductClasses .singles .wrapper, .homeProductClasses .singles .classItem, .homeProductClasses .twos .wrapper, .homeProductClasses .twos .classItem {
      height: 255px; }
    .homeProductClasses .singles {
      margin-bottom: 10px; } }
  .homeProductClasses .reinvigorator .content.nonmobile {
    display: flex;
    flex-direction: column;
    padding: 15px 35px;
    padding-top: 100px; }
  @media screen and (max-width: 1100px) {
    .homeProductClasses .reinvigorator:before {
      background-position-x: 65%; } }
  @media screen and (max-width: 950px) {
    .homeProductClasses .strikeBackground {
      margin-bottom: 20px; }
    .homeProductClasses .content {
      padding: 15px 20px; }
      .homeProductClasses .content h2 {
        margin-top: 10px;
        font-size: 1em; }
    .homeProductClasses .twos {
      flex-wrap: wrap; }
    .homeProductClasses .reinvigorator:before {
      filter: none !important;
      background-position-x: 85% !important; } }
  @media screen and (max-width: 501px) {
    .homeProductClasses .reinvigorator:before {
      filter: none !important; }
    .homeProductClasses h1 {
      font-size: 1.5em; }
    .homeProductClasses .content {
      padding-top: 0px; }
    .homeProductClasses .wrapper,
    .homeProductClasses .classItem {
      max-height: 20vh; }
    .homeProductClasses .classItem:before {
      -webkit-filter: brightness(75%);
      filter: brightness(75%); }
    .homeProductClasses h2 {
      color: white; } }
  @media screen and (max-width: 350px) {
    .homeProductClasses .reinvigorator, .homeProductClasses .reinvigoratorWrapper {
      height: 130px !important;
      max-height: none; } }

.newsletterContainer {
  border-top: 1px solid #eee;
  height: 500px; }
  .newsletterContainer .contentContainer {
    width: 1200px;
    max-width: 100%;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    z-index: 0; }
    .newsletterContainer .contentContainer .content {
      max-width: 100%; }
      .newsletterContainer .contentContainer .content .newsletter,
      .newsletterContainer .contentContainer .content .socialMedia {
        padding-right: 20px;
        padding-left: 20px; }
      .newsletterContainer .contentContainer .content .socialMedia {
        justify-content: space-around; }
        .newsletterContainer .contentContainer .content .socialMedia .socialMediaLink {
          margin: 0px; }
  .newsletterContainer .newsletter {
    padding-right: 30px; }
    .newsletterContainer .newsletter form {
      border: 1px solid #2b4144;
      padding: 15px 20px;
      display: flex;
      align-content: center; }
    .newsletterContainer .newsletter .textIntro {
      color: #2b4144;
      padding: 20px 0px; }
  .newsletterContainer .heroIntro {
    height: 100%; }
  .newsletterContainer .heroIntro::before {
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 15%;
    z-index: 0; }
  .newsletterContainer .newsletterInput {
    font-size: 0.9em;
    background: none;
    outline: 0;
    border: 0;
    width: 320px; }
    .newsletterContainer .newsletterInput::placeholder {
      /* Chrome, Firefox, Opera, Safari 10.1+ */
      color: #2b4144;
      opacity: 1;
      /* Firefox */ }
    .newsletterContainer .newsletterInput:-ms-input-placeholder {
      /* Internet Explorer 10-11 */
      color: #aaa; }
    .newsletterContainer .newsletterInput::-ms-input-placeholder {
      /* Microsoft Edge */
      color: #aaa; }
  @media screen and (max-width: 950px) {
    .newsletterContainer .contentContainer {
      align-items: center; } }
  @media screen and (max-width: 501px) {
    .newsletterContainer h1 {
      font-size: 2em !important; }
    .newsletterContainer button {
      font-size: 1em !important; }
    .newsletterContainer form {
      padding: 15px 15px !important; }
    .newsletterContainer .newsletterInput {
      font-size: 0.8em !important; } }

.socialMedia {
  display: flex;
  padding: 60px 0px 120px 0px; }
  .socialMedia .socialMediaLink {
    margin-right: 35px;
    font-size: 1.5em; }
    .socialMedia .socialMediaLink .path {
      transition-duration: 0.15s;
      fill: #2b4144; }
    .socialMedia .socialMediaLink:hover .path {
      fill: #6c967e; }

/* ---FOOTER--- */
.mainFooter {
  background: none;
  color: #2b4144; }
  .mainFooter .bottomFooter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 30px 0px 25px 0px;
    justify-content: space-between; }
    .mainFooter .bottomFooter .footerLinks,
    .mainFooter .bottomFooter .footerCol,
    .mainFooter .bottomFooter ul {
      display: flex; }
    .mainFooter .bottomFooter li {
      font-size: 12px; }
    .mainFooter .bottomFooter .footerTitle {
      font-size: 0.75em;
      font-weight: 500;
      margin: 0px;
      padding: 0px 10px; }
    .mainFooter .bottomFooter .footerCol {
      align-items: center; }
    .mainFooter .bottomFooter .footerLinks li {
      padding: 0px 10px; }
    .mainFooter .bottomFooter .footerLine {
      padding: 15px 5px; }
      .mainFooter .bottomFooter .footerLine ul {
        justify-content: flex-end; }
      .mainFooter .bottomFooter .footerLine li {
        border-right: 1px solid #58595b;
        padding: 0px 9px; }
      .mainFooter .bottomFooter .footerLine li:last-child {
        border: none; }
  .mainFooter .footerLogo {
    padding: 0px 25px; }
    .mainFooter .footerLogo img {
      height: 100%;
      max-width: 100%;
      width: 225px; }
  .mainFooter .footerNav {
    padding: 0px 20px; }
  .mainFooter .disclaimer {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center; }
  @media screen and (max-width: 1100px) {
    .mainFooter .contentContainer {
      width: 100%; } }
  @media screen and (max-width: 675px) {
    .mainFooter .contentContainer {
      justify-content: center;
      align-items: center; }
    .mainFooter .footerCol {
      flex-wrap: wrap;
      align-content: flex-start; }
    .mainFooter .newsletter {
      padding-right: 0px; } }
  @media screen and (max-width: 950px) {
    .mainFooter .footerCol {
      align-items: flex-start; }
    .mainFooter .footerLinks ul {
      padding: 5px 0px;
      flex-wrap: wrap; }
      .mainFooter .footerLinks ul li {
        padding: 3px 10px !important; }
    .mainFooter .footerLogo {
      padding: 20px 10px 15px 10px; }
    .mainFooter .bottomFooter {
      justify-content: center; }
    .mainFooter .footerLine ul {
      justify-content: center !important;
      text-align: center; }
    .mainFooter .newsletter .textIntro {
      color: white; }
    .mainFooter form {
      background: white;
      border-color: #ccc !important;
      box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.1); }
    .mainFooter .heroIntro::before {
      background-position-x: 15%;
      -webkit-filter: brightness(65%);
      filter: brightness(65%); }
    .mainFooter .socialMedia .socialMediaLink .path {
      fill: white; }
    .mainFooter .socialMedia .socialMediaLink:hover .path {
      fill: #6c967e; } }
  @media screen and (max-width: 625px) {
    .mainFooter .bottomFooter, .mainFooter .footerLine ul {
      justify-content: flex-start !important; }
    .mainFooter .footerLogo {
      padding: 20px 10px 15px 30px; }
      .mainFooter .footerLogo img {
        width: 150px; }
    .mainFooter .footerLine li:first-child {
      padding-left: 0px; } }

/* ---PRODUCT PAGE--- */
.productPageLoading {
  display: flex;
  justify-content: center;
  align-items: center; }

.productPage {
  color: #2b4144; }
  .productPage h1 {
    font-weight: 500; }
  .productPage small {
    color: #58595b;
    padding-top: 10px; }
  .productPage .extra-content {
    padding-top: 50px;
    padding-bottom: 50px; }
    .productPage .extra-content .content {
      padding-right: 20px;
      padding-left: 20px; }
      .productPage .extra-content .content .header {
        padding-top: 80px; }
      .productPage .extra-content .content img {
        margin: 50px 0px;
        max-width: 100%; }
      .productPage .extra-content .content h1 {
        padding: 30px 0px;
        text-align: center; }
      .productPage .extra-content .content small {
        width: 675px;
        max-width: 100%; }
  @media screen and (max-width: 950px) {
    .productPage h1 {
      font-size: 2em; } }

.dropdownBuyNow {
  color: #424242;
  font-size: 12px;
  border-radius: 3px;
  background: #fafafa;
  box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.3);
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif; }
  .dropdownBuyNow ul {
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px; }
    .dropdownBuyNow ul > li {
      cursor: pointer;
      padding: 10px 15px;
      border-bottom: 1px solid #eee;
      font-size: 12px;
      font-weight: 500; }
    .dropdownBuyNow ul > li:first-child {
      border-top-left-radius: 3px;
      border-top-right-radius: 3px; }
    .dropdownBuyNow ul > li:last-child {
      border-bottom: none;
      border-bottom-left-radius: 3px;
      border-bottom-right-radius: 3px; }
    .dropdownBuyNow ul > li:hover {
      background: linear-gradient(-180deg, #2b4144 0%, #3b575a 100%);
      color: white; }

.productNav .dropdownBuyNow {
  position: fixed;
  margin-top: 15px;
  z-index: 3; }

.productBanner .buyNowButton {
  padding: 10px 1px; }
  .productBanner .buyNowButton button {
    margin-top: 0px; }
  @media screen and (max-width: 950px) {
    .productBanner .buyNowButton {
      padding: 10px 20px; } }

ul {
  list-style-type: none;
  padding: 0px; }

.productNavContainer {
  border-top: 1px solid #ddd;
  padding: 10px 0px 10px 0px;
  z-index: 2;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
  background: #f3f4f6; }

.productNav {
  margin: 0 auto;
  width: 1300px;
  max-width: 100%; }
  .productNav .buyNowButton button {
    margin: 0px;
    padding: 5px 20px;
    transition-duration: 0.3s; }
  .productNav .buyNowButton button:hover {
    background: linear-gradient(-180deg, #324f45 0%, #2b4144 100%); }
  .productNav .title {
    font-weight: 500;
    font-size: 18px;
    display: flex;
    align-items: center; }
  .productNav > ul {
    display: flex;
    justify-content: space-between;
    padding: 0px 20px;
    align-items: center; }
  @media screen and (max-width: 950px) {
    .productNav .buyNowButton {
      opacity: 1 !important; }
    .productNav .title {
      font-size: 13px; }
    .productNav .buyNowButton button {
      width: auto !important;
      padding: 5px 20px !important;
      font-size: 14px !important; } }
  @media screen and (max-width: 501px) {
    .productNav .buyNowButton button {
      padding: 5px 10px !important; }
    .productNav .title {
      font-size: 12px; } }

.imageSideContainer {
  width: 48%;
  padding: 10px 0px;
  height: 400px;
  margin-right: 10px;
  background-size: contain;
  margin-top: 27px;
  /* margin-top: 50px; */
  position: absolute;
  z-index: -3;
  background-repeat: no-repeat;
  right: 0; }
  @media screen and (max-width: 1150px) {
    .imageSideContainer {
      background-size: cover; } }

.productBannerContainer {
  margin-bottom: 140px;
  margin-top: 60px; }
  @media screen and (max-width: 950px) {
    .productBannerContainer {
      padding-top: 50px;
      margin-bottom: 0px; } }

.productBannerContainer.productNavReached {
  padding-top: 50px; }
  @media screen and (max-width: 950px) {
    .productBannerContainer.productNavReached {
      padding-top: 50px; } }

.productBanner {
  margin: 0px auto 0px auto;
  width: 1300px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  height: 500px; }
  .productBanner .image {
    background-size: contain;
    background-repeat: no-repeat;
    width: 400px;
    margin: 0px 25px;
    margin-right: 194px; }
  @media screen and (max-width: 1300px) {
    .productBanner .image {
      margin: 0 auto; } }
  .productBanner .mainImageContainer {
    outline: none;
    height: 350px;
    display: flex !important;
    justify-content: center !important;
    /* justify-content: center; */
    align-items: center;
    cursor: -moz-zoom-in;
    cursor: -webkit-zoom-in;
    cursor: zoom-in; }
    @media screen and (max-width: 950px) {
      .productBanner .mainImageContainer {
        cursor: default; } }
  .productBanner .hide {
    display: none; }
  .productBanner .imageController.mobileflex .hide {
    display: block; }
  .productBanner .mainImage {
    max-height: 100%;
    max-width: 352px; }
  .productBanner .imageController {
    padding-top: 80px;
    display: flex;
    height: 80px;
    justify-content: center; }
    .productBanner .imageController.mobile {
      display: none; }
    .productBanner .imageController .imageControllerItem {
      width: auto;
      height: 100%;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center; }
    .productBanner .imageController button {
      border: 0;
      padding: 0;
      margin: 0;
      background: none;
      outline: none;
      cursor: pointer;
      position: relative;
      line-height: 0;
      font-family: "Rubik", "Helvetica Neue", helvetica, arial, sans-serif;
      border: 1px solid #eee;
      border-width: 0px 1px 0px 0px;
      padding: 0px 10px;
      width: 30%;
      height: 100%; }
      .productBanner .imageController button:first-child {
        border-width: 0px 1px 0px 1px; }
      .productBanner .imageController button:last-child {
        border-right: none; }
      .productBanner .imageController button img {
        width: 100px;
        height: auto; }
    @media screen and (max-width: 950px) {
      .productBanner .imageController {
        padding-top: 20px; }
        .productBanner .imageController.mobile {
          display: flex; } }
  .productBanner .summaryContent,
  .productBanner .directionsContent {
    width: 500px; }
    @media screen and (max-width: 950px) {
      .productBanner .summaryContent,
      .productBanner .directionsContent {
        width: auto; } }
  @media screen and (max-width: 501px) {
    .productBanner .bannerTabs li {
      font-size: 18px; }
    .productBanner .image, .productBanner .mainImageContainer img {
      max-width: 100%; } }

.info {
  color: #2b4144;
  padding: 10px 0px 25px 15px; }
  .info .bannerTabs {
    font-size: 19px;
    display: flex;
    font-weight: 500;
    padding-top: 30px;
    padding-left: 5px; }
    .info .bannerTabs li {
      font-weight: 500;
      padding-bottom: 4px;
      margin-right: 20px;
      cursor: pointer;
      color: #aaa; }
    .info .bannerTabs li.active {
      border-bottom: 3px solid #2b4144;
      color: #2b4144;
      transition-duration: 0.1s; }
    .info .bannerTabs li:hover {
      color: #2b4144; }

.directionsContent {
  padding: 0px 0px 10px 0px; }
  .directionsContent .quickLook p {
    margin: 7px 0px;
    font-weight: 500; }
  .directionsContent p {
    margin: 0px; }
  .directionsContent img {
    height: 25px;
    width: auto; }
  .directionsContent .inDetail .inDetailContent {
    transition-duration: 0.2s; }
    .directionsContent .inDetail .inDetailContent p {
      font-size: 16px; }
  .directionsContent .moreButton {
    cursor: pointer;
    font-size: 14px;
    color: #aaa; }
  .directionsContent .moreButton:hover + .inDetailContent {
    opacity: 1; }
  .directionsContent .moreButton:hover {
    border-bottom: 2px solid #2b4144;
    color: #2b4144; }

.productDetails,
.helpsWith,
.directions,
.supplementFacts {
  margin: 0px auto;
  padding: 50px 0px;
  width: 950px;
  max-width: 100%; }

.uniqueFeatures {
  max-width: 100%;
  background: #f6f4f4;
  margin-bottom: 50px;
  margin-top: 25px; }
  .uniqueFeatures .stripe {
    margin-top: -101px; }
  .uniqueFeatures .content1 h1 {
    padding-bottom: 20px; }
  .uniqueFeatures .content {
    display: flex;
    justify-content: space-between;
    padding: 75px 20px; }
    .uniqueFeatures .content .text,
    .uniqueFeatures .content .image {
      max-width: 100%; }
    .uniqueFeatures .content .text {
      padding-right: 40px; }
    .uniqueFeatures .content h3 {
      font-weight: 500; }
    .uniqueFeatures .content .keepListStyle {
      padding: 10px 0px 40px 0px; }
    .uniqueFeatures .content li {
      padding: 8px 0px; }
    .uniqueFeatures .content .icons {
      display: flex;
      justify-content: flex-start;
      align-items: center; }
      .uniqueFeatures .content .icons .icon {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100px;
        margin: 0px 50px 0px 30px;
        text-align: center; }
        .uniqueFeatures .content .icons .icon img {
          width: 100%;
          height: auto; }
    .uniqueFeatures .content .image img {
      width: auto;
      max-width: 100%; }
    .uniqueFeatures .content .full_image {
      height: 500px;
      width: 100%;
      background-size: cover;
      background-repeat: no-repeat; }
  @media screen and (max-width: 1200px) {
    .uniqueFeatures .content .icons .icon {
      width: 50px; } }
  @media screen and (max-width: 950px) {
    .uniqueFeatures {
      margin-bottom: 0px; }
      .uniqueFeatures .content {
        flex-wrap: wrap;
        padding: 0px; }
        .uniqueFeatures .content .full_image {
          background-position-y: center; }
        .uniqueFeatures .content .text {
          justify-content: flex-start;
          padding-right: 0px;
          font-size: 1em;
          padding: 35px 20px 30px 20px;
          width: 100%; }
        .uniqueFeatures .content .icons {
          width: auto;
          justify-content: space-around; }
          .uniqueFeatures .content .icons .icon {
            padding: 0px !important;
            margin: 0px !important;
            width: 100px; }
            .uniqueFeatures .content .icons .icon img {
              height: auto;
              width: 100%; } }
  @media screen and (max-width: 700px) {
    .uniqueFeatures .content .full_image {
      height: 375px; } }
  @media screen and (max-width: 501px) {
    .uniqueFeatures .icons .icon {
      width: 50px !important; }
      .uniqueFeatures .icons .icon h3 {
        font-size: 14px; } }

.ingredients h4 {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 10px; }

.relatedProducts {
  padding: 80px 0px; }
  .relatedProducts h3 {
    font-weight: normal; }
  .relatedProducts .item {
    outline: 0;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    .relatedProducts .item img {
      height: 250px; }
  .relatedProducts .slick-track {
    margin: 0 auto; }
  .relatedProducts .slick-arrow:before {
    color: black; }
  @media screen and (max-width: 1200px) and (min-width: 951px) {
    .relatedProducts h3 {
      font-size: 1em; }
    .relatedProducts .item img {
      height: 150px; } }

.productPage {
  padding-bottom: 100px; }
  .productPage h1 {
    font-weight: normal;
    padding: 10px 0px; }
  .productPage h4 {
    font-weight: 500; }
  .productPage li {
    font-weight: 300;
    line-height: 1.5em; }
  .productPage .stripe {
    background: url("/static/product/stripe3.png");
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    width: 400px;
    max-width: 100%;
    position: absolute; }
  .productPage .strikeBackground::before {
    width: 100%; }
  .productPage .prevnext {
    justify-content: flex-end;
    padding: 10px 20px;
    display: flex;
    font-weight: 300; }
  .productPage .relatedAndArticles {
    margin-top: 100px; }
    @media screen and (max-width: 501px) {
      .productPage .relatedAndArticles {
        margin-top: 50px; } }
  @media screen and (max-width: 501px) {
    .productPage {
      padding-bottom: 20px; } }

.productDetails {
  padding-top: 0px;
  width: 100%;
  margin: 0px; }
  .productDetails .content {
    padding: 30px 20px; }
    .productDetails .content p {
      margin: 30px 0px; }
  .productDetails .content {
    max-width: 100%; }
  .productDetails > h1 {
    width: 950px;
    margin: 0 auto;
    margin-bottom: 30px; }
  .productDetails .content {
    color: #2b4144; }
  .productDetails ul {
    padding-top: 15px; }
  .productDetails li {
    padding-bottom: 25px; }
  @media screen and (max-width: 1100px) {
    .productDetails .content {
      width: auto;
      padding: 10px 35px; } }
  @media screen and (max-width: 950px) {
    .productDetails {
      margin: 0px auto;
      width: 950px; }
      .productDetails h1 {
        width: auto; } }

.helpsWith {
  padding-bottom: 80px; }
  .helpsWith .featureList {
    padding: 50px 0px 0px 35px; }
  .helpsWith .productFeatureItem {
    padding: 10px 0px 30px 0px;
    width: 300px;
    max-width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .helpsWith img {
    width: auto;
    height: 100%; }

.directions .content {
  padding-top: 60px;
  padding-bottom: 60px;
  font-size: 24px;
  display: flex;
  flex-direction: column;
  align-items: center; }
  .directions .content img {
    height: 120px;
    width: auto; }

.ingredientsList {
  width: auto;
  display: flex;
  flex-wrap: wrap;
  font-weight: 300;
  padding: 5px 0px;
  justify-content: center; }
  .ingredientsList .ingredientItem {
    padding: 0px 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-width: 0px 0px 0px 1px; }
    .ingredientsList .ingredientItem:first-child {
      border-left: none; }
  @media screen and (max-width: 501px) {
    .ingredientsList {
      text-align: center;
      flex-direction: column; }
      .ingredientsList .ingredientItem {
        border-width: 0px; } }

.articles {
  margin-top: 25px;
  margin-bottom: 25px; }
  .articles .smallWidth {
    display: none; }
  .articles .normalWidth {
    display: block; }
  .articles > .content {
    padding-left: 0px; }
  .articles .slick-dots {
    height: 20px;
    display: block;
    margin-top: -35px;
    top: 0; }
  .articles .slick-track {
    margin: 0px; }
  .articles .slick-slider .slick-arrow::before {
    color: black; }
  .articles .slick-slide > div {
    margin: 0px 15px;
    outline: 0; }
  .articles .articleItem {
    outline: 0;
    height: auto;
    overflow: hidden; }
    .articles .articleItem a:hover .articleImage h2 {
      opacity: 1; }
    .articles .articleItem a:hover .articleImage:before {
      filter: brightness(75%); }
    .articles .articleItem .articleImage {
      transition-duration: 0.2s;
      background-position: center;
      background-size: cover;
      height: 250px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      position: relative; }
      .articles .articleItem .articleImage h2 {
        opacity: 0; }
    .articles .articleItem .articleImage:before {
      transition-duration: 0.2s;
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      bottom: 0;
      background-position: center;
      background-size: cover;
      overflow: hidden;
      z-index: -1; }
    .articles .articleItem .articleTitle {
      overflow: hidden;
      margin-bottom: 15px; }
    .articles .articleItem .articleIntro {
      overflow: hidden;
      height: 200px;
      padding-bottom: 20px;
      margin-top: 5px;
      color: #58595b; }
    .articles .articleItem .readMore {
      font-family: "Rubik", "Helvetica Neue", helvetica, arial, sans-serif;
      font-weight: 500;
      display: block;
      background: #2b4144;
      color: #fafafa;
      font-size: 1em;
      padding: 15px 20px;
      text-align: center;
      border-radius: 25px;
      margin: 40px 20px 0px 20px; }
    .articles .articleItem .clearbtn {
      display: inline-block; }
  @media screen and (max-width: 950px) {
    .articles .smallWidth {
      display: block; }
    .articles .normalWidth {
      display: none; }
    .articles .articleItem .articleIntro {
      height: 150px; } }
  @media screen and (max-width: 501px) {
    .articles .articleItem {
      font-size: 14px; } }

.reviewForm {
  display: flex;
  flex-direction: column;
  background: white;
  padding: 15px 20px;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  /*
  button {
    @include blueButton;
    margin-top: 10px;
    margin-bottom: 5px;
    border-radius: 4px;
    border-bottom: 2px solid #166530;
    border-right: 1px solid #166530;
    border-left: 1px solid #166530;
    border-top: 1px solid #166530;
  }
  */ }
  .reviewForm .inputName {
    position: absolute;
    margin-left: 10px;
    background: white;
    padding: 0px 3px;
    color: #aaa; }
  .reviewForm input {
    padding: 7px 7px;
    border-radius: 4px;
    border: 2px solid #ccc;
    font-size: 15px;
    width: 250px; }
  .reviewForm .headline {
    border-radius: 0px;
    border-width: 2px 2px 0px 2px;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px; }
  .reviewForm input:focus {
    border-color: #424242;
    color: #424242; }
  .reviewForm textarea {
    border: 1px solid #bbb;
    border-radius: 3px;
    width: 100%;
    max-width: 100%;
    outline: 0;
    padding: 10px 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 15px;
    width: 100%; }
    .reviewForm textarea:focus {
      border-color: #424242; }
  .reviewForm .star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-bottom: 15px;
    color: #ddd; }
    .reviewForm .star-rating label {
      cursor: pointer;
      font-size: 20px; }
  .reviewForm .star-rating :checked ~ label {
    color: #ffbc59; }
  .reviewForm .star-rating :hover ~ label {
    color: #ffbc59; }
  @media screen and (max-width: 501px) {
    .reviewForm input {
      width: auto; } }

.productReviews {
  padding: 15px; }
  .productReviews .reviewOpener {
    font-size: 15px;
    padding: 10px;
    background: #2b4144;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    transition-duration: 0.1s; }

.reviewsDisplay .reviewBlock {
  padding: 20px;
  background: #fcfcfc;
  border: 1px solid #f4f4f4;
  border-top: 2px solid #ddd;
  border-left: 2px solid #eee;
  margin-top: 10px;
  border-radius: 6px;
  box-shadow: 0 15px 30px -12px rgba(50, 50, 93, 0.15), 0 0px 16px -18px rgba(0, 0, 0, 0.1), 0 -12px 36px -8px rgba(0, 0, 0, 0.025); }

.reviewsDisplay .reviewName {
  color: #777;
  font-size: 14px;
  display: inline-block;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px; }
  .reviewsDisplay .reviewName .name {
    letter-spacing: 1.5px; }

.reviewsDisplay h3 {
  font-size: 1.25em;
  color: #424242;
  font-weight: 500;
  margin: 0px; }

.reviewsDisplay .reviewRating > svg {
  padding: 0px 5px 0px 0px; }

.reviewsDisplay .reviewContent {
  padding: 10px 0px;
  color: #424242;
  font-size: 15px; }

@media screen and (max-width: 950px) {
  .imageSideContainer {
    height: 100%;
    width: 400px;
    max-width: 100%;
    right: auto;
    background-size: contain; }
  .productBanner {
    flex-direction: column-reverse;
    align-items: center;
    height: auto;
    width: auto; }
    .productBanner .moreButton {
      display: none; }
    .productBanner .inDetail {
      padding-top: 0px; }
    .productBanner .inDetailContent p {
      margin: 0px; }
    .productBanner .image {
      margin: initial;
      padding-bottom: 20px; }
    .productBanner .info {
      padding: 0px;
      margin: 0px auto;
      padding: 25px 0px 0px 0px;
      width: 950px;
      max-width: 100%;
      border-top: 1px solid #eee;
      height: auto; }
      .productBanner .info > h1 {
        padding: 0px 20px; }
      .productBanner .info .bannerTabs {
        padding-left: 20px;
        padding-right: 20px; }
      .productBanner .info .summaryContent > p {
        padding-left: 20px;
        padding-right: 20px; }
      .productBanner .info .directionsContent {
        width: auto;
        padding-left: 20px;
        padding-right: 20px; }
    .productBanner .moreButton {
      border-bottom: 2px solid #2d2d2d;
      color: #2d2d2d; }
    .productBanner .inDetailContent {
      opacity: 1 !important; }
  .productDetails,
  .helpsWith,
  .directions,
  .supplementFacts {
    max-width: 100%; }
    .productDetails h1,
    .helpsWith h1,
    .directions h1,
    .supplementFacts h1 {
      padding: 0px 15px; } }

/* ---CONTACT PAGE--- */
.contactUsContainer {
  color: #2b4144;
  align-items: flex-start;
  padding-bottom: 100px; }
  .contactUsContainer:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    background: url(/static/slant.png);
    top: 50vh;
    top: calc(50vh + 48px + 22px);
    height: 1500px; }
  .contactUsContainer .heroIntro {
    height: 50vh; }
  .contactUsContainer .contactInfo {
    display: flex;
    padding: 50px 0px;
    justify-content: center; }
    .contactUsContainer .contactInfo img {
      height: 50px; }
    .contactUsContainer .contactInfo .item {
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      padding: 0px 100px;
      color: #2b4144; }
      .contactUsContainer .contactInfo .item h3 {
        font-weight: normal;
        margin-bottom: 5px; }
      .contactUsContainer .contactInfo .item h4 {
        font-weight: 300;
        margin-top: 0px;
        font-size: 1.1em; }
    .contactUsContainer .contactInfo .content {
      text-align: center; }
  .contactUsContainer .introText {
    text-align: center; }
    .contactUsContainer .introText h1, .contactUsContainer .introText p {
      padding: 0px 20px; }
    .contactUsContainer .introText h1 {
      margin: 10px 0px 35px 0px; }
    .contactUsContainer .introText small {
      font-weight: 300; }
  .contactUsContainer .formContainer {
    display: flex;
    margin-top: 50px; }
  .contactUsContainer .formContainer.backgroundSlant:before {
    top: 1075px;
    background: #f6f4f4;
    height: 820px; }
  .contactUsContainer .contactUsFormContainer {
    width: 100%; }
  .contactUsContainer .contactUsForm {
    width: 600px;
    padding: 0px 20px;
    margin: 0px 0px 50px 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-end; }
    .contactUsContainer .contactUsForm select {
      border: 1px solid #ddd;
      color: #333;
      height: 40px;
      font-size: 13px;
      width: 100%;
      outline: 0; }
    .contactUsContainer .contactUsForm input {
      border: 0;
      border-radius: 0;
      height: 40px;
      font-size: 15px;
      border-bottom: 1px solid #ccc;
      margin: 20px 3px;
      font-weight: 100;
      width: 100%;
      background: none; }
    .contactUsContainer .contactUsForm textarea {
      border: 1px solid #bbb;
      border-radius: 3px;
      width: 100%;
      max-width: 100%;
      outline: 0;
      padding: 10px 15px;
      font-size: 20px;
      margin-bottom: 20px;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box; }
    .contactUsContainer .contactUsForm input:focus {
      border-color: #424242; }
    .contactUsContainer .contactUsForm textarea:focus {
      box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1); }
    .contactUsContainer .contactUsForm .submitButton {
      margin-top: 15px;
      font-size: 17px;
      background: none;
      outline: 0;
      padding: 10px 10px;
      width: 100%;
      background: #0c8441;
      color: white;
      font-weight: 500;
      border-radius: 4px;
      cursor: pointer; }
    .contactUsContainer .contactUsForm .submitButton:hover {
      transition-duration: 0.4s;
      background: #1e753b;
      box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1); }
    .contactUsContainer .contactUsForm .captchaSubmitContainer {
      display: flex;
      flex-direction: column;
      align-items: flex-end; }
  .contactUsContainer .feedbackMessage {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 500px;
    max-height: 75vh;
    justify-content: center; }
  .contactUsContainer .messageSentBox {
    text-align: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 10px 20px; }
    .contactUsContainer .messageSentBox > p {
      color: #666; }
  @media screen and (max-width: 950px) {
    .contactUsContainer {
      padding-bottom: 0px; }
      .contactUsContainer .contactInfo {
        justify-content: space-around; }
        .contactUsContainer .contactInfo .item {
          padding: 0px 20px; }
      .contactUsContainer .formContainer {
        flex-direction: column; }
        .contactUsContainer .formContainer .contactUsForm {
          margin: 0px auto 50px auto;
          padding: 0px 20px;
          width: auto; }
      .contactUsContainer:before {
        background: none; } }
  @media screen and (max-width: 501px) {
    .contactUsContainer .contactInfo {
      display: flex;
      flex-direction: column; }
      .contactUsContainer .contactInfo .content {
        padding-bottom: 5px; }
    .contactUsContainer .introText h1 {
      font-size: 20px;
      margin-bottom: 0px; } }
  @media screen and (max-width: 330px) {
    .contactUsContainer .recaptcha > div > div {
      width: 290px !important; } }

/* ---BLOG PAGE--- */
.blogBanner {
  text-align: center;
  padding: 50px 0px 50px 0px;
  background: #f8f8f8; }

.blogFeedContainer {
  max-width: 100%;
  margin: 25px auto 0px auto; }
  .blogFeedContainer .blogFeedHeader {
    padding: 0px 40px 15px 40px; }
    .blogFeedContainer .blogFeedHeader a:hover small {
      transition-duration: 0.1s;
      color: #555; }
  @media screen and (max-width: 950px) {
    .blogFeedContainer .blogFeedHeader {
      padding: 20px 25px 10px 25px; } }

.blogList {
  display: flex;
  flex-wrap: wrap;
  margin-top: 7px;
  padding: 0px; }
  .blogList .blogListItem {
    outline: 0;
    height: 100%; }
    .blogList .blogListItem > div {
      padding: 10px 40px 30px 40px; }
  .blogList .blogListInfo {
    padding: 0px 25px; }
  .blogList .blogListContent {
    /*
    margin-top: 10px;
    height: 100px;
    background: #f5f5f5;
    box-shadow: 0 13px 27px -5px rgba(50,50,93,.25), 0 8px 16px -8px rgba(0,0,0,.3), 0 -6px 16px -6px rgba(0,0,0,.025);
    padding: 10px;
    p{
      margin: 0px;
    }
    */ }
  .blogList .blogTitle {
    font-weight: normal;
    color: #2b4144;
    padding: 0px 10px 0px 0px; }
  .blogList .blogAuthor {
    color: #555; }
    .blogList .blogAuthor .authorName {
      padding-left: 2px; }
    .blogList .blogAuthor .blogReadTime {
      font-weight: bold;
      font-size: 13px;
      color: #0c8441; }
  .blogList .blogIntro {
    padding: 5px 0px 5px 0px;
    margin-top: 15px;
    color: #555;
    height: auto;
    overflow: auto;
    font-size: 19px;
    line-height: 1.5; }
    .blogList .blogIntro p {
      margin: 0;
      font-weight: 300;
      color: #58595b; }
  .blogList a {
    height: 350px; }
    .blogList a .blogImage {
      height: 100%; }
  .blogList .blogImage {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 600px;
    margin-bottom: 15px;
    margin-right: 15px;
    box-shadow: 0 13px 27px -5px rgba(50, 50, 93, 0.25), 0 8px 16px -8px rgba(0, 0, 0, 0.3), 0 -6px 16px -6px rgba(0, 0, 0, 0.025);
    border-radius: 3px; }
  .blogList .slick-list {
    margin: 0px 0px; }
  .blogList .slick-slider {
    width: 100%; }
    .blogList .slick-slider .slick-arrow {
      background: red; }
  @media screen and (max-width: 1100px) {
    .blogList a {
      height: 450px; }
    .blogList .blogImage {
      height: 100%; } }
  @media screen and (max-width: 950px) {
    .blogList .blogFeedContainer {
      max-width: 100%; }
    .blogList .blogList {
      max-width: 100%; }
    .blogList .blogImage {
      width: 100%; }
    .blogList a {
      height: 350px; }
    .blogList .slick-list {
      margin: 0px; }
    .blogList .blogListItem {
      margin: 0px; }
      .blogList .blogListItem a {
        width: 100%; }
    .blogList .blogListItem > div {
      padding: 20px;
      flex-direction: column;
      align-items: center; }
    .blogList .blogListInfo {
      padding: 15px 0px; } }
  @media screen and (max-width: 501px) {
    .blogList .blogTitle {
      font-size: inherit; }
    .blogList .blogIntro {
      font-size: inherit; }
    .blogList a {
      height: 200px; } }

/* ---MISC--- */
.anchorLink {
  outline: 0;
  border: 0;
  color: #1c94e0;
  font-size: 13px;
  cursor: pointer; }

.anchorLink:hover {
  text-decoration: underline;
  color: #1c94e0; }

.strikeBackground span {
  /* to hide the lines from behind the text, you have to set the background color the same as the container */ }

.strikeBackground {
  position: relative;
  display: flex;
  justify-content: center;
  color: #2b4144; }
  .strikeBackground h1 {
    background: white;
    font-size: 40px;
    padding: 0px 40px; }
  @media screen and (max-width: 950px) {
    .strikeBackground h1 {
      font-size: 24px; } }
  .strikeBackground:before {
    content: '';
    margin: 0 auto;
    /* this centers the line to the full width specified */
    position: absolute;
    /* positioning must be absolute here, and relative positioning must be applied to the parent */
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    width: 95%;
    z-index: -1;
    border-top: 2px solid #c8c8c8; }
  .strikeBackground.noStrike:before {
    border-top: none; }

.line {
  border-top: 1px solid #e5e5e5;
  width: 1805px;
  max-width: 100%;
  margin: 0 auto; }

.lds-dual-ring {
  display: inline-block;
  width: 64px;
  height: 64px; }

.lds-dual-ring:after {
  content: ' ';
  display: block;
  width: 46px;
  height: 46px;
  margin: 1px;
  border-radius: 50%;
  border: 5px solid #0c8441;
  border-color: #0c8441 transparent #a4da22 transparent;
  animation: lds-dual-ring 1.2s linear infinite; }

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.lds-dual-ring.lineItemLoad {
  padding-top: 2px;
  padding-left: 8px;
  width: 16px;
  height: 16px; }
  .lds-dual-ring.lineItemLoad:after {
    width: 16px;
    height: 16px;
    border-width: 2px; }

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px; }

.lds-ellipsis div {
  position: absolute;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #2b4144;
  animation-timing-function: cubic-bezier(0, 1, 1, 0); }

.lds-ellipsis div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 0.6s infinite; }

.lds-ellipsis div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 0.6s infinite; }

.lds-ellipsis div:nth-child(3) {
  left: 26px;
  animation: lds-ellipsis2 0.6s infinite; }

.lds-ellipsis div:nth-child(4) {
  left: 45px;
  animation: lds-ellipsis3 0.6s infinite; }

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0); }
  100% {
    transform: scale(1); } }

@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(0); } }

@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0); }
  100% {
    transform: translate(19px, 0); } }

.aboutUs {
  padding: 50px 0px 50px 0px; }
  .aboutUs .heroIntro h1 {
    font-weight: 300; }
  .aboutUs .heroIntro:before {
    -webkit-filter: brightness(75%);
    filter: brightness(75%); }
  .aboutUs .intro {
    text-align: center;
    color: #2b4144; }
    .aboutUs .intro h1 {
      margin: 70px 0px;
      font-size: 2.5em;
      font-weight: normal; }
    .aboutUs .intro h2 {
      font-weight: 300;
      margin-bottom: 100px; }
  .aboutUs .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px 90px 20px; }
    .aboutUs .content h1 {
      font-size: 40px;
      color: #2b4144; }
    .aboutUs .content .images {
      padding: 0px 0px 0px 50px; }
  .aboutUs .content.reverse {
    flex-direction: row-reverse; }
    .aboutUs .content.reverse .images {
      padding: 0px 50px 0px 0px; }
  .aboutUs .content.profile {
    padding: 50px 50px;
    margin-bottom: 90px;
    background: #f6f4f4; }
  .aboutUs .images {
    display: flex; }
    .aboutUs .images img {
      height: 320px;
      max-width: 50vw; }
    .aboutUs .images .image1 {
      width: 550px;
      margin: 20px 0px; }
      @media screen and (max-width: 1000px) {
        .aboutUs .images .image1 {
          width: 450px; } }
  @media screen and (max-width: 950px) {
    .aboutUs {
      padding-top: 0px; }
      .aboutUs .content, .aboutUs .content.reverse {
        flex-direction: column; }
      .aboutUs .content {
        flex-wrap: wrap;
        align-items: flex-end;
        padding: 0px 20px 50px 20px; }
        .aboutUs .content .images {
          padding: 0px; }
          .aboutUs .content .images img {
            max-width: 100%; }
          .aboutUs .content .images .image1 {
            width: 550px; }
      .aboutUs .content.reverse {
        align-items: flex-start; }
      .aboutUs .intro {
        flex-wrap: wrap; }
        .aboutUs .intro h2 {
          font-size: 1.2em;
          padding: 20px 0px 0px 0px; }
      .aboutUs .content.profile {
        padding: 50px 20px;
        flex-wrap: nowrap;
        flex-direction: row-reverse; }
        .aboutUs .content.profile .header {
          margin-top: 0px; }
        .aboutUs .content.profile img {
          width: 200px;
          max-width: 50vw;
          height: 100%; } }
  @media screen and (max-width: 650px) {
    .aboutUs .content.profile {
      flex-wrap: wrap;
      flex-direction: column; } }
  @media screen and (max-width: 450px) {
    .aboutUs .content.profile {
      align-items: flex-start; }
      .aboutUs .content.profile .images {
        padding: 0px;
        width: 100%; }
      .aboutUs .content.profile img {
        width: 100%;
        max-width: 100%; } }

.policies {
  width: 1300px;
  margin: 0 auto;
  max-width: 100%;
  color: #2b4144; }
  .policies .content {
    padding: 0px 20px;
    color: #405261; }
  .policies h1 {
    margin-top: 50px; }
  .policies .header {
    border-bottom: 1px solid #e5e9ec;
    padding-bottom: 20px; }
  .policies .intro h1 {
    font-size: 4em;
    text-align: center;
    margin: 150px 0px; }
  .policies p {
    color: #405261;
    margin-top: 10px; }
  .policies ul {
    line-height: 1.6em;
    list-style-type: disc;
    margin: 20px; }
    .policies ul li {
      padding: 6px 9px; }
  @media screen and (max-width: 501px) {
    .policies .intro h1 {
      font-size: 2em; } }

/* --- Background Slant --- */
.backgroundSlant:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  background: #f6f6f6;
  -webkit-transform: skew(0, -11deg);
  transform: skew(0, -11deg);
  z-index: -1;
  border: 1px solid #eee; }

.quoteSlider {
  background: #fafafa;
  padding: 50px 0px;
  margin: 25px 0px;
  border: 1px solid #eee;
  border-width: 1px 0px; }
  .quoteSlider .slick-track {
    display: flex;
    align-items: center; }

.quote {
  padding: 10px 20px;
  display: flex !important;
  width: auto !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #2b4144; }
  .quote svg {
    font-size: 55px; }
  .quote .symbol .path {
    transition-duration: 0.15s;
    fill: #048542; }
  .quote .content {
    margin: 15px 0px; }
  .quote .bar {
    border: 1px solid #2b4144;
    margin: 5px;
    width: 15px;
    transition-duration: 0.15s;
    border-radius: 5px; }
  .quote .quoteBy {
    font-style: italic;
    font-weight: 300; }

.homePageContainer .quote .content {
  font-weight: 300;
  color: #58595b;
  line-height: 1.5em; }

.productPage .variantImageSelector ul {
  padding: 20px 0px;
  display: flex; }
  .productPage .variantImageSelector ul li {
    margin-right: 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center; }
  .productPage .variantImageSelector ul li:hover .bar, .productPage .variantImageSelector ul .selectedItem .bar {
    border-color: #0c8441;
    width: 45px; }
  .productPage .variantImageSelector ul .bar {
    border: 2px solid #fff;
    width: 25px;
    transition-duration: 0.15s;
    border-radius: 5px;
    margin-top: 5px; }
  .productPage .variantImageSelector ul .variantImageItem {
    border: 1px solid rgba(0, 0, 0, 0);
    width: 100px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center; }
  .productPage .variantImageSelector ul .title {
    text-align: center;
    font-weight: 500;
    margin: 5px 0px; }

@media screen and (max-width: 501px) {
  .productNav .buyNowButton button {
    width: 110px !important; } }

@media screen and (max-width: 950px) {
  nav {
    position: fixed;
    top: 0;
    z-index: 4;
    background: white;
    width: 100%;
    border-bottom: 1px solid #eee; }
    nav .dropdown.burger {
      z-index: -1; }
  .productNavContainer {
    position: fixed;
    top: 0;
    width: 100%;
    margin-top: 54px; }
  .mainPage {
    margin-top: 55px; } }

.chevronRight, .chevronLeft {
  color: #ccc;
  transition-duration: 0.2s; }
  .chevronRight:hover, .chevronLeft:hover {
    color: #2b4144; }
  .chevronRight.atLastImage:hover, .chevronRight.atFirstImage:hover, .chevronLeft.atLastImage:hover, .chevronLeft.atFirstImage:hover {
    color: #ccc; }
  .chevronRight.atLastImage, .chevronRight.atFirstImage, .chevronLeft.atLastImage, .chevronLeft.atFirstImage {
    visibility: hidden; }

.chatButton .chatSVG .path, .chatButton .chatSVG .stroke {
  transition-duration: 0.15s; }

.chatButton .chatSVG .path {
  fill: #2b4144; }

.chatButton:hover .chatSVG .path {
  fill: #6c967e; }

.chatButton:hover .chatSVG .stroke {
  stroke: #6c967e; }

.chatButton .loading {
  display: none; }

.chatButton.loading .chatSVG {
  display: none; }

.chatButton.loading .loading {
  display: block; }

#tidio-chat {
  transition-duration: 0.2s;
  visibility: hidden;
  opacity: 0; }

.banner {
  background: #9cafb8;
  box-shadow: inset 0px 0px 10px 5px rgba(205, 205, 205, 0.1); }
  .banner .inner-banner {
    color: #fff;
    transform: translateY(-65px);
    height: 0px;
    transition-duration: 0.5s;
    transition-timing-function: ease-in-out;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0; }
    .banner .inner-banner h3 {
      margin: 0px;
      font-weight: 500;
      font-size: 18px; }
    .banner .inner-banner small {
      color: #ddd; }
  .banner .timer {
    background: #fafafa;
    color: #424242;
    padding: 0px 5px;
    border-radius: 5px;
    font-family: Monaco, monospace;
    border: 1px solid #eee;
    transition-duration: 0.5s;
    transition-timing-function: ease-in-out;
    opacity: 0;
    font-size: 16px; }
  .banner .inner-banner.dropped {
    transform: translateY(0px);
    height: 65px;
    padding: 10px 20px;
    opacity: 1.0; }
    .banner .inner-banner.dropped .timer {
      opacity: 1.0; }

@media screen and (max-width: 950px) {
  .banner {
    z-index: 0;
    max-width: 100%; } }

@media screen and (max-width: 501px) {
  .banner .inner-banner h3 {
    font-size: 12px; }
  .banner .inner-banner .timer {
    font-size: 12px; } }

nav .dropdown.productsGridButton .dropdownContent {
  width: 1050px;
  max-width: 100%;
  margin: 0 auto;
  position: absolute;
  right: 0;
  left: 227px;
  background: none; }
  nav .dropdown.productsGridButton .dropdownContent .productsGrid {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #eee;
    gap: 0px 10px;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    max-width: 100%;
    justify-content: flex-end;
    margin-right: 0px; }
    nav .dropdown.productsGridButton .dropdownContent .productsGrid .productItem {
      padding-bottom: 25px;
      padding-top: 0px; }
      nav .dropdown.productsGridButton .dropdownContent .productsGrid .productItem img {
        height: 170px; }
      nav .dropdown.productsGridButton .dropdownContent .productsGrid .productItem .bar {
        margin-top: 0px; }
      nav .dropdown.productsGridButton .dropdownContent .productsGrid .productItem h4 {
        margin-top: 0px;
        margin-bottom: 0px; }
  @media screen and (max-width: 1300px) {
    nav .dropdown.productsGridButton .dropdownContent {
      left: auto;
      max-width: 100%; }
      nav .dropdown.productsGridButton .dropdownContent .productsGrid {
        position: absolute;
        right: 0;
        max-width: 1075px; } }

table {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  color: #666; }

table td, table th {
  border: 1px solid #ddd;
  padding: 8px; }

table tr:nth-child(even) {
  background-color: #f2f2f2; }

table tr:hover {
  background-color: #ddd; }

table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #424242;
  color: white; }

/* ---Shared across all landing pages--- */
/* --- BANNER --- */
.landingPage {
  font-family: "Rubik", sans-serif;
  color: #2b4144; }
  .landingPage h1 {
    font-family: "Rubik", sans-serif;
    font-weight: 300; }

.landingPage .heroIntro h1 {
  font-family: "Rubik", sans-serif;
  font-weight: 300; }

/* --- Internal Navigation --- */
.internalNav .productTitle h1,
.productStripeContainer .productTitle h1 {
  transition-duration: 0.3s;
  display: inline-block; }

.internalNav .productTitle a:hover span,
.productStripeContainer .productTitle a:hover span {
  color: #424242; }

.internalNav .productTitle a:hover h1,
.productStripeContainer .productTitle a:hover h1 {
  transform: translateX(2px); }

.internalNav .spacer,
.productStripeContainer .spacer {
  width: 100px; }

.internalNavContainer {
  padding: 100px 0px; }

.internalNav {
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around; }
  .internalNav .scrollBtn {
    cursor: pointer; }
    .internalNav .scrollBtn .name {
      transition-duration: 0.2s; }
  .internalNav .scrollBtn:hover .name {
    transform: translateX(5px); }
  .internalNav .productTitle {
    display: flex;
    align-items: center;
    padding-right: 5px;
    font-size: 0.75em; }
    .internalNav .productTitle .number {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      border-right: 3px solid #2b4144;
      padding: 15px 20px 15px 0px; }
    .internalNav .productTitle .number h1 {
      font-size: 3em;
      line-height: 35px; }
    .internalNav .productTitle .name {
      padding: 5px 5px 5px 10px; }
  @media screen and (max-width: 1300px) {
    .internalNav {
      padding-bottom: 0px;
      padding-left: 100px;
      flex-direction: column;
      align-items: center; }
      .internalNav .productTitle {
        width: 350px;
        max-width: 100%;
        padding-right: 0px;
        padding-bottom: 30px; }
        .internalNav .productTitle .number {
          width: 50px; } }

/* --- Category Summary --- */
.explain {
  margin: 100px 30px 370px 30px;
  transition-duration: 0.6s; }

/* --- Product Sections / Stripes --- */
.productStripeContainer {
  width: 1100px;
  margin: 0 auto;
  max-width: 100%;
  padding-top: 20px; }

.itemContainer {
  display: flex;
  justify-content: space-between;
  padding: 0px 20px; }
  .itemContainer .textPart {
    transition-duration: 0.2s;
    background: #f9f8f3;
    color: #2b4144;
    margin: 0px 5px 30px 5px;
    padding: 20px 60px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    border: 1px solid #f5f5f5;
    box-shadow: 0 15px 30px -12px rgba(50, 50, 93, 0.15), 0 0px 16px -18px rgba(0, 0, 0, 0.1), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
    padding-top: 20px; }
  .itemContainer .summary {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 2em;
    width: 450px; }
  .itemContainer .actionText {
    display: inline-block;
    margin-top: 0px;
    padding: 0px;
    font-family: "Rubik", sans-serif;
    font-weight: 500; }
  .itemContainer .textPart:hover {
    box-shadow: 0 10px 20px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
    transform: translateY(-2px); }
    .itemContainer .textPart:hover .arrow {
      opacity: 1; }
  .itemContainer .arrow {
    opacity: 0;
    vertical-align: top;
    font-size: 1.3em;
    padding-left: 10px; }

/* --- Includes Title & Features --- */
.productIntro {
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  padding: 0px 10px; }
  .productIntro .productTitle {
    margin: 0px; }
  .productIntro .featureList li {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
    color: #58595b;
    padding: 15px 5px;
    font-size: 1.2em;
    font-size: 20px; }
  .productIntro .check {
    padding-right: 10px;
    vertical-align: top;
    color: #237b40; }

.explain {
  display: flex;
  justify-content: center; }
  .explain h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: normal; }

/* --- Background Slant --- */
.backgroundSlant:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 1300px;
  height: 820px;
  background: #f6f6f6;
  -webkit-transform: skew(0, -11deg);
  transform: skew(0, -11deg);
  z-index: -1;
  border: 1px solid #eee; }

@media screen and (max-width: 950px) {
  .landingPage .internalNav {
    justify-content: flex-start; }
  .landingPage .itemContainer {
    flex-wrap: wrap;
    justify-content: center; }
    .landingPage .itemContainer .content {
      margin-right: 0px; }
    .landingPage .itemContainer .image {
      padding: 50px 0px; }
      .landingPage .itemContainer .image img {
        height: 300px; }
    .landingPage .itemContainer .nonmobile {
      display: none; }
    .landingPage .itemContainer .mobile {
      display: block; }
    .landingPage .itemContainer .textPart {
      font-size: 0.8em;
      padding: 5px 20px; }
    .landingPage .itemContainer .content,
    .landingPage .itemContainer .summary {
      width: auto; }
  .landingPage .backgroundSlant:before {
    height: 1200px; }
  .moodHealthLanding .explain {
    margin-bottom: 170px; } }

.productStripeContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 300;
  padding-top: 100px; }
  .productStripeContainer p {
    letter-spacing: 0.3px; }
  .productStripeContainer li {
    line-height: 1.5em;
    color: #58595b; }
  .productStripeContainer .item,
  .productStripeContainer .image {
    flex: 1; }
  .productStripeContainer .item {
    padding: 0px 60px 0px 20px; }
    .productStripeContainer .item .featureList {
      margin-left: 20px;
      list-style-type: disc; }
      .productStripeContainer .item .featureList li {
        padding: 5px 0px; }
  .productStripeContainer .buyButton {
    display: inline-block;
    font-weight: 500;
    margin-top: 15px;
    padding-bottom: 5px; }
    .productStripeContainer .buyButton a {
      transition-duration: 0.2s;
      color: #2b4144;
      border-bottom: 2px solid rgba(0, 0, 0, 0); }
    .productStripeContainer .buyButton .arrow {
      padding-left: 5px;
      vertical-align: middle; }
  .productStripeContainer .buyButton a:hover {
    border-bottom-color: #2b4144; }
  .productStripeContainer .image {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f6f4f4;
    padding: 0px 40px; }
    .productStripeContainer .image img {
      max-height: 500px;
      max-width: 100%; }

.productStripeContainer.reverse {
  flex-direction: row-reverse; }
  .productStripeContainer.reverse .item {
    padding: 0px 20px 0px 60px; }

@media screen and (max-width: 850px) {
  .productStripeContainer,
  .productStripeContainer.reverse {
    flex-direction: column-reverse; }
    .productStripeContainer .image,
    .productStripeContainer.reverse .image {
      width: 100%;
      margin-bottom: 20px;
      padding: 0px; }
    .productStripeContainer .item,
    .productStripeContainer.reverse .item {
      padding: 0px 20px; } }

@media screen and (max-width: 500px) {
  .internalNav {
    padding-left: 20px; } }

.imageZoom {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; }
  .imageZoom > figure {
    display: flex;
    justify-content: center;
    margin: 0;
    z-index: 5;
    background-repeat: no-repeat; }
  .imageZoom > figure:hover .imageZoomImg {
    opacity: 0; }
  .imageZoom .imageZoomImg {
    display: block;
    max-height: 350px;
    width: auto;
    pointer-events: none; }

.noscroll {
  overflow: hidden; }

.modal-view-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: fixed;
  padding-top: 50px;
  box-sizing: border-box;
  z-index: 10;
  pointer-events: none;
  top: 0;
  left: 0; }
  .modal-view-container .imageController .hide {
    display: none; }
  .modal-view-container .imageControllerItem {
    height: 90px;
    width: 90px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; }
    @media screen and (max-height: 550px) {
      .modal-view-container .imageControllerItem {
        height: 70px;
        width: 70px; } }
    @media screen and (max-height: 450px) {
      .modal-view-container .imageControllerItem {
        height: 50px;
        width: 50px; } }
  .modal-view-container .view.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transform: scale(1.15);
    transition: transform 0.1s cubic-bezier(0.465, 0.183, 0.153, 0.946), opacity 0.1s cubic-bezier(0.465, 0.183, 0.153, 0.946);
    pointer-events: none;
    opacity: 0;
    will-change: transform, opacity; }
  .modal-view-container .view.modal.visible {
    pointer-events: auto;
    opacity: 1 !important;
    transform: scale(1);
    transition: transform 0.3s cubic-bezier(0.465, 0.183, 0.153, 0.946), opacity 0.3s cubic-bezier(0.465, 0.183, 0.153, 0.946); }
  .modal-view-container .modal-view-details {
    background: #FFF;
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
    z-index: 2;
    position: fixed;
    border-radius: 2px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column; }
  .modal-view-container .modal-view-details h1 {
    margin: 0.2em 0 0.4em 0;
    padding: 0;
    line-height: 1;
    font-size: 24px;
    color: #111; }
  .modal-view-container .modal-view-details .modalbody {
    padding: 0px 25px 0px 25px;
    height: 90vh; }
    .modal-view-container .modal-view-details .modalbody .mainImgContainer img {
      height: 60vh;
      width: auto; }
      @media screen and (max-height: 510px) {
        .modal-view-container .modal-view-details .modalbody .mainImgContainer img {
          height: 40vh; } }
  .modal-view-container .modal-view-details p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 1em 0;
    color: #666; }
  .modal-view-container .modal-view-details button {
    cursor: pointer;
    bottom: 10px;
    right: 10px;
    background: none;
    color: #3C78D8;
    outline: none;
    border-radius: 2px;
    border: none;
    font-size: 16px;
    padding: 6px 10px;
    text-transform: uppercase; }
  .modal-view-container .modal-view-details button:hover {
    color: #5993f1; }
  .modal-view-container .modal:after {
    position: fixed;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: block;
    content: ''; }
  .modal-view-container .modal .modalbutton {
    position: absolute;
    right: 20px;
    top: 20px; }
  @media screen and (max-width: 950px) {
    .modal-view-container .modal {
      display: none; } }
  .modal-view-container .imageContainer {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 90vh; }
    .modal-view-container .imageContainer .mainImgContainer {
      transition-duration: 0.4s; }
    .modal-view-container .imageContainer .mainImgContainer.hidden {
      opacity: 0;
      height: 0; }
    .modal-view-container .imageContainer .mainImgContainer.show {
      opacity: 1; }
    .modal-view-container .imageContainer img.hidden {
      height: 0 !important; }
    .modal-view-container .imageContainer .mainImgContainer {
      display: flex;
      justify-content: center; }

.noscroll {
  overflow: hidden; }

.asd {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 75vh; }

