/*
 * Minimal theme compatibility layer for the Tazemiz homepage and custom
 * information pages. These routes render their own complete components, so
 * they do not need Flatsome's full public stylesheet.
 */
:root {
  --fs-color-base: #121111;
  --fs-color-primary: #245f32;
  --fs-experimental-link-color: #245f32;
  --fs-experimental-link-color-hover: #123f27;
}

html {
  box-sizing: border-box;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  background: #fff;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  background: #fff;
  color: var(--fs-color-base);
  font: 400 16px/1.6 Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

#wrapper,
#main {
  position: relative;
  width: 100%;
  background: #fff;
}

.container,
.row {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-flow: row wrap;
}

.row > div:not(.col):not([class^="col-"]):not([class*=" col-"]) {
  width: 100%;
}

.col,
.columns {
  position: relative;
  width: 100%;
  min-height: auto;
  margin: 0;
  padding: 0 15px 30px;
}

.large-12 {
  flex-basis: 100%;
  max-width: 100%;
}

.col-inner {
  position: relative;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

a {
  background: transparent;
  color: var(--fs-experimental-link-color);
  text-decoration: none;
  touch-action: manipulation;
}

button,
input,
select,
textarea {
  margin: 0;
  color: inherit;
  font: inherit;
}

button,
input,
select {
  overflow: visible;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}

input,
select,
textarea {
  max-width: 100%;
}

textarea {
  overflow: auto;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: middle;
}

figure {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
}

p:empty {
  display: none;
}

ol,
ul {
  margin-top: 0;
  padding: 0;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.screen-reader-text:focus {
  position: fixed !important;
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 13px 18px;
  border-radius: 8px;
  background: #fff;
  color: #123f27;
  box-shadow: 0 4px 18px rgba(18, 63, 39, .24);
  font-size: 14px;
  font-weight: 700;
}

[hidden] {
  display: none !important;
}

/* Flatsome keeps its legacy mobile menu in the document for popup use. The
 * custom Tazemiz header has its own drawer, so this dormant copy stays hidden. */
.mfp-hide {
  display: none !important;
}

@media (max-width: 640px) {
  .col,
  .columns {
    padding-right: 0;
    padding-left: 0;
  }
}
