@charset "UTF-8";
.element-input {
  padding-bottom: 20px;
  display: flex;
  align-items: center; }
  .element-input .input-title {
    padding-right: 10px; }
  .element-input .edy-editable {
    border: 2px solid black;
    border-radius: 10px;
    padding: 3px 10px; }

body {
  font-family: "Avenir"; }

@media screen and (max-width: 640px) {
  body h1 {
    font-size: 50px; }

  body h2 {
    font-size: 30px;
    margin: 0; }

  body h3 {
    font-size: 20px;
    margin: 0; } }
@media screen and (min-width: 641px) {
  body h1,
  body h1 a,
  body h1 a:hover {
    font-size: 40px; }

  body h2 {
    font-size: 36px;
    margin: 0; }

  body h3 {
    font-size: 24px;
    margin: 0; } }
p {
  font-size: 18px; }

a {
  transition: color .5s; }
  a:hover {
    transition: color .5s; }

.site-container {
  margin: 0 40px; }
  @media screen and (max-width: 768px) {
    .site-container {
      margin: 0; } }
  .site-container .site-header {
    display: flex;
    align-items: center; }
    .site-container .site-header .header-title {
      overflow: auto; }
  .site-container ol {
    list-style: none;
    position: relative;
    counter-reset: my-awesome-counter; }
    .site-container ol li {
      counter-increment: my-awesome-counter;
      padding-left: 24px; }
      .site-container ol li:before {
        content: counter(my-awesome-counter) ". ";
        color: #649945;
        position: absolute;
        left: 0; }
  .site-container ul:not(.menu) {
    position: relative;
    list-style: none; }
    .site-container ul:not(.menu) li {
      padding-left: 24px; }
      .site-container ul:not(.menu) li:before {
        content: "• ";
        color: #649945;
        position: absolute;
        left: 0; }

select.form_field_select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding: 8px 24px 8px 14px;
  font-size: 16px;
  color: #649945;
  background-color: white;
  border: 1px solid #649945;
  border-radius: 16px;
  background-image: url("../assets/arrow-down.svg");
  background-position: right 10px center;
  background-size: 9px;
  background-repeat: no-repeat;
  vertical-align: bottom;
  position: relative;
  font-weight: 300;
  outline: none;
  cursor: pointer; }
  select.form_field_select::-ms-expand {
    display: none; }

input.form_field_textfield,
input.form_submit_input,
textarea.form_field_textarea,
.edy-buy-button .custom-btn,
a.custom-btn,
div.custom-btn,
.comment-form-details .form_submit input {
  border: 1px solid #649945;
  border-radius: 16px;
  font-weight: 300; }
  input.form_field_textfield.light,
  input.form_submit_input.light,
  textarea.form_field_textarea.light,
  .edy-buy-button .custom-btn.light,
  a.custom-btn.light,
  div.custom-btn.light,
  .comment-form-details .form_submit input.light {
    border-color: white; }

input.form_field_textfield,
input.form_submit_input,
textarea.form_field_textarea {
  color: black;
  font-size: 16px;
  padding: 4px 10px; }

input.form_submit_input,
a.custom-btn,
div.custom-btn,
.comment-form-details .form_submit input {
  background-color: #649945;
  transition: background-color .5s;
  border: 1px solid #649945;
  color: white;
  cursor: pointer;
  outline: none;
  font-size: 16px;
  padding: 8px 14px; }
  input.form_submit_input.light,
  a.custom-btn.light,
  div.custom-btn.light,
  .comment-form-details .form_submit input.light {
    background-color: transparent; }
  input.form_submit_input.disabled, input.form_submit_input.custom-btn-disabled,
  a.custom-btn.disabled,
  a.custom-btn.custom-btn-disabled,
  div.custom-btn.disabled,
  div.custom-btn.custom-btn-disabled,
  .comment-form-details .form_submit input.disabled,
  .comment-form-details .form_submit input.custom-btn-disabled {
    color: black;
    cursor: default;
    border-color: #9d9d9d;
    background-color: #dfe2da63; }
  input.form_submit_input:hover,
  a.custom-btn:hover,
  div.custom-btn:hover,
  .comment-form-details .form_submit input:hover {
    transition: background-color .5s;
    border: 1px solid #649945;
    background-color: white;
    color: #649945; }

.publicmode .content-area .custom-btn-disabled {
  color: #649945;
  cursor: default;
  border-color: #dfe2da;
  background-color: #dfe2da; }

.columns-3 {
  display: flex;
  flex-wrap: wrap; }
  .columns-3 .col {
    display: flex;
    flex-direction: column;
    width: calc(33.33333% - 14px);
    margin-top: 20px;
    margin-right: 20px;
    align-items: center;
    justify-content: center; }
    @media only screen and (min-width: 1025px) {
      .columns-3 .col:not(.with-sibling):nth-child(3n) {
        margin-right: 0; }
      .columns-3 .col.with-sibling:nth-child(3n + 5) {
        margin-right: 0; } }
    @media only screen and (max-width: 1024px) {
      .columns-3 .col {
        width: calc(50% - 20px); }
        .columns-3 .col:nth-child(2n) {
          margin-right: 0; } }
    @media only screen and (max-width: 768px) {
      .columns-3 .col {
        width: 100%;
        margin-right: 0; }
        .columns-3 .col:first-child {
          margin-top: 0; } }
    .columns-3 .col.bg-gray {
      background-color: #dfe2da;
      transition: background-color .5s; }
      .columns-3 .col.bg-gray:hover {
        transition: background-color .5s;
        background-color: #d1d3cc; }

.columns-4 {
  display: flex;
  flex-wrap: wrap; }
  .columns-4 .col {
    display: flex;
    flex-direction: column;
    width: calc(33.33333% - 14px);
    margin-bottom: 20px;
    margin-right: 20px;
    align-items: center;
    justify-content: center; }
    @media only screen and (min-width: 1281px) {
      .columns-4 .col {
        width: calc(25% - 15px); }
        .columns-4 .col:not(.with-sibling):nth-child(4n) {
          margin-right: 0; }
        .columns-4 .col.with-sibling:nth-child(4n + 6) {
          margin-right: 0; } }
    @media only screen and (min-width: 769px) and (max-width: 1280px) {
      .columns-4 .col:nth-child(3n) {
        margin-right: 0; } }
    @media only screen and (min-width: 441px) and (max-width: 768px) {
      .columns-4 .col {
        width: calc(50% - 10px); }
        .columns-4 .col:nth-child(2n) {
          margin-right: 0; } }
    .columns-4 .col.bg-gray {
      background-color: #dfe2da;
      transition: background-color .5s; }
      .columns-4 .col.bg-gray:hover {
        transition: background-color .5s;
        background-color: #d1d3cc; }

.flx-center {
  display: flex;
  align-items: center;
  justify-content: center; }

.p-top-1 {
  padding-top: 60px; }
  @media only screen and (max-width: 768px) {
    .p-top-1 {
      padding-top: 40px; } }

.fixed-popup {
  height: 100%;
  position: fixed;
  top: 0;
  display: flex;
  padding: 20px;
  z-index: 10000000;
  background: #00000082;
  left: 0;
  right: 0;
  overflow: auto;
  box-sizing: border-box; }

.fixed-content-wrap {
  max-width: 840px;
  margin: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #649945;
  color: white;
  padding: 40px; }

.fixed-popup img {
  width: 100%;
  height: 100%; }

.fixed-popup-close {
  color: white;
  position: absolute;
  padding: 14px;
  font-size: 18px;
  right: 0;
  top: 0;
  line-height: 14px;
  cursor: pointer; }

.social-icons-wrap {
  display: flex;
  margin-right: 24px; }
  @media only screen and (max-width: 440px) {
    .social-icons-wrap {
      margin-right: 8px; } }
  .header-menu-wide .social-icons-wrap {
    margin-right: 0;
    margin-left: 24px; }
  .social-icons-wrap .social-icon {
    height: 25px;
    width: 25px;
    margin-left: 8px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; }
    .social-icons-wrap .social-icon:first-child {
      margin-left: 0; }
    .social-icons-wrap .social-icon.facebook {
      background-image: url("../assets/facebook-icon.svg"); }
      .social-icons-wrap .social-icon.facebook:hover {
        background-image: url("../assets/facebook-icon-hover.svg"); }
    .social-icons-wrap .social-icon.instagram {
      background-image: url("../assets/instagram-icon.svg"); }
      .social-icons-wrap .social-icon.instagram:hover {
        background-image: url("../assets/instagram-icon-hover.svg"); }

.site-footer {
  display: flex;
  align-items: center; }
  @media only screen and (max-width: 768px) {
    .site-footer {
      flex-direction: column-reverse; } }
  .site-footer .footer-logo {
    height: 60px;
    width: 60px;
    margin-right: 16px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../assets/ehtne-talutoit.svg"); }
  .site-footer .footer-body {
    display: flex; }
    .site-footer .footer-body .footer-left-content {
      width: 70%;
      text-align: left; }
    .site-footer .footer-body .footer-right-content {
      width: 30%;
      text-align: right; }
    @media only screen and (max-width: 768px) {
      .site-footer .footer-body {
        flex-direction: column; }
        .site-footer .footer-body .footer-left-content {
          width: 100%;
          text-align: center; }
        .site-footer .footer-body .footer-right-content {
          margin-top: 20px;
          width: 100%;
          text-align: center; } }

.product-element .element-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
  .product-element .element-image .content-wrap {
    padding: 20px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    opacity: 0;
    z-index: 1; }
    .product-element .element-image .content-wrap .content {
      color: white;
      padding: 20px;
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      color: white;
      background-color: transparent;
      transition: background-color .5s, opacity .5s;
      display: flex;
      flex-direction: column;
      justify-content: space-between; }
      .product-element .element-image .content-wrap .content.center {
        display: flex;
        align-items: center;
        justify-content: center; }
      .product-element .element-image .content-wrap .content .product-item-details {
        display: flex;
        box-sizing: border-box;
        justify-content: space-between;
        align-items: center; }
      .product-element .element-image .content-wrap .content .product-item-title {
        color: white;
        text-align: left; }
.product-element .edy-editable.edy-element-thumb-catcher.edy-accepts-assets {
  width: 100%;
  height: 100%; }
.product-element .edy-element-thumb-catcher .edy-element-thumb-catcher-image {
  display: inline-block;
  min-width: 100%;
  min-height: 100%;
  position: relative;
  object-fit: cover; }
.product-element .edy-element-thumb-catcher-title {
  display: none; }

.item-list-page .site-container .content-item-boxes .content-item-box:hover .item-title {
  transition: color .5s;
  color: #649945; }

.content-item-box:hover .content-wrap {
  opacity: 1;
  z-index: 1; }
  .content-item-box:hover .content-wrap .content {
    color: white;
    background-color: #649945c9;
    transition: background-color .5s; }

.question-item,
.question-item a {
  color: #649945;
  cursor: pointer;
  padding: 26px; }
