/* CSS Document */


:root,
::after,
::before {
  --mr-color-background: #ffffff;
  --mr-color-text: #333333;

  --mr-color-primary: #161616;
  --mr-color-primary-tint: #272727;
  --mr-color-primary-shade: #000000;
  --mr-color-primary-murky: #000000b6;
  --mr-color-primary-hazy: #0000003f;
  --mr-color-primary-contrast: #fff;

  --mr-color-secondary: #51c3e6;
  --mr-color-secondary-tint: #84e2ff;
  --mr-color-secondary-shade: #44aac9;  
  --mr-color-secondary-murky: #51c3e6bb;
  --mr-color-secondary-hazy: #51c3e646;
  --mr-color-secondary-contrast: #000000;

  --mr-color-tertiary: #797979;
  --mr-color-tertiary-tint: #929292;
  --mr-color-tertiary-shade: #646464;
  --mr-color-tertiary-murky: #797979b9;
  --mr-color-tertiary-hazy: #79797950;
  --mr-color-tertiary-contrast: #000000;

  --mr-color-quaternary: #f8ed22;
  --mr-color-quaternary-tint: #fff202;
  --mr-color-quaternary-shade: #ffd752;
  --mr-color-quaternary-murky: #f8ed22b7;
  --mr-color-quaternary-hazy: #f8ed2246;
  --mr-color-tertiary-contrast: #000000;

  --mr-color-accent: #51c3e6;
  --mr-color-accent-tint: #84e2ff;
  --mr-color-accent-shade: #44aac9;
  --mr-color-accent-murky: #51c3e6c0;
  --mr-color-accent-hazy: #51c3e652;
  --mr-color-accent-contrast: rgb(0, 0, 0);

  --mr-color-light: rgb(255, 255, 255);
  --mr-color-medium: rgb(129, 129, 129);
  --mr-color-dark: #313531;

  --mr-color-form-border: #dee2e6;

  --mr-color-green: #2c843d;
  --mr-color-yellow: #fff202;
  --mr-color-red: #b50837;

  --mr-color-contrast: #000000;

  --mr-font-main: "poppins", sans-serif;
  --mr-font-heading: "vollkorn sc", sans-serif;
  --mr-font-accent: "vollkorn sc", sans-serif;

  --mr-body-font-size: 16px;

  --mr-fontawesome: "FontAwesome";
  --mr-fontawesome-brands: "FontAwesomeBrands";
}

.bg_dark {
  --mr-color-contrast: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--mr-font-main);
  font-size: var(--mr-body-font-size);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25;
}

h6,
h5,
h4,
h3,
h2,
h1 {
  font-family: var(--mr-font-heading);
  position: relative;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 900;
  line-height: 1.2;
}

h1 {
  font-size: 1.375rem;
  /* Minimum size */
  color: var(--mr-color-contrast);
  pointer-events: all;
}

@media screen and (min-width: 770px) {
  h1 {
    font-size: 2.8vw;
    /* Preferred size */
  }
}
@media screen and (min-width: 992px) {
  
  body { font-size: 22px;}
}
@media screen and (min-width: 1200px) {
  h1 {
    font-size: 2.5rem;
    /* Maximum size */
  }
}

h2 {
  font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1.25rem;
  word-wrap: break-word;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

mark {
  padding: 0.1875em;
  background-color: var(--bs-highlight-bg);
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: var(--mr-color-accent-shade);
  text-decoration: none;
}

a:hover {
  color: var(--mr-color-accent);
  text-decoration: underline;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: var(--bs-code-color);
  word-wrap: break-word;
}

a>code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: 0.25rem;
}

kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  /*  aspect-ratio: attr(width) / attr(height); */
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}



table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
  max-width: 100%;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  /* color: var(--bs-body-color); */
  /* background-color: var(--bs-form-control-bg); */
  background-clip: padding-box;
  border: 1px solid var(--mr-color-form-border);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.375rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
input:focus,button:focus,
select:focus,
optgroup:focus,
textarea:focus  {
  border-color: var(--mr-color-medium);
  outline: 0;
  box-shadow: 0 0 0 0.25rem #00000029;
}
input.active,button.active,
select.active,
optgroup.active,
textarea.active  {
  border-color: var(--mr-color-medium);
  outline: 0;
  box-shadow: 0 0 0 0.25rem var(--mr-color-accent-hazy);
}
input:hover,button:hover,
select:hover,
optgroup:hover,
textarea:hover  {
  border-color: var(--mr-color-medium);
}


button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}

@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}

legend+* {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

/*----------------------
      Components
------------------------*/

/* ==== Pager ==== */

.mr_pager a {
  background: var(--mr-color-accent);
  color: var(--mr-color-accent-contrast);
  padding: .5em 1em;
  border-radius: 5px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  display: inline-block;
  text-decoration: none;
  margin: 0 .25em 1em;
}

.mr_pager .back:before,
.mr_pager .prev:before {
  content: '\f0a8';
  font-family: var(--mr-fontawesome);
  font-weight: 900;
  padding-right: .3em;
}

.mr_pager .next:after {
  content: '\f0a9';
  font-family: var(--mr-fontawesome);
  font-weight: 900;
  padding-left: .3em;
}



div#loading, .loading_spinner {
  position: absolute;
  top: 0;
  /* fallback */
  right: 0;
  /* fallback */
  bottom: 0;
  /* fallback */
  left: 0;
  /* fallback */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  width: 100%;
  text-align: center;
  padding-top: 4rem;
  height: 100%;
}

/*----------------------
         Styles
------------------------*/
.disable {
  opacity: .5;
  pointer-events: none;
}

.lazy {
  background-image: none !important;
  background-color: #616161;
}

.padding {
  padding: 1.5rem 6px 1.5rem;
}

.padding-v {
  padding: 2vw 0;
}

.padding-h {
  padding: 0 4vw;
}

.text-center {
  text-align: center;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.bg_light {
  background: #eeeded;
}

.bg-grey {
  background-color: whitesmoke;
}

.centered {
  text-align: center;
}

textarea {
  min-height: 80px;
  padding: 15px 9px;
}

/* @media (min-width: 1200px) {

    html {
        font-size: 1.2em;
        line-height: 1.3;
    }
}

@media (min-width: 1400px) {
    html {
        font-size: 1.3em;
        line-height: 1.3;
    }
}

@media (min-width: 1600px) {
    html {
        font-size: 1.4em;
        line-height: 1.3;
    }

    h1,
    .h1 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1800px) {
    html {
        font-size: 1.3vw;
        line-height: 1.3;
    }

    h1,
    .h1 {
        font-size: 3vw;

    }
} */


.wrapper {
  width: 80%;
  min-width: 320px;
  max-width: 900px;
}

.mediabox {
  position: relative;
  display: block;
  height: 0;
  width: 100%;
  padding-bottom: 66.6667%;
}

.mediabox-img.ls-blur-up-is-loading,
.mediabox-img.lazyload:not([src]) {
  visibility: hidden;
}

.ls-blur-up-img,
.mediabox-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;

  /* only if you want to change the blur-up option from always to auto or want to use blur up effect without a lowsrc image. */
  font-family: "blur-up: auto", "object-fit: cover";

  object-fit: cover;
}

.ls-blur-up-img {
  filter: blur(10px);
  opacity: 1;
  transition: opacity 1000ms, filter 1500ms;
}

.ls-blur-up-img.ls-inview.ls-original-loaded {
  opacity: 0;
  filter: blur(5px);
}

@media (max-width: 566px) {
  .xs-hide {
    display: none;
  }
}

@media (min-width: 567px) {
  .xs-show {
    display: none;
  }
}

h2 .new {
  background: radial-gradient(#fbeb1e, #faae55);
  border-radius: 50%;
  color: #b51e39;
  text-transform: uppercase;
  padding: 1rem;
  font-size: 1rem;
  transform: rotate(-12deg) translate(0px, -10px);
  display: inline-block;
  box-shadow: -0.2em 0.4em 0 0 #00000014;
}


.search_result_details h2 {
  padding: 0;
}

.easyedit-editable img[float] {
  clear: both;
}

.easyedit_editable article {
  clear: both;
  float: none;
  margin-bottom: 4rem;
}

.easyedit_editable img[style*="right"] {
  margin-left: 1rem;
}

.easyedit_editable img[style*="left"] {
  margin-right: 1rem;
}

.easyedit_editable img[style*="float"] {
  max-width: 50%;
}

@media (max-width:574px) {
  .easyedit_editable img[style*="float"] {
    max-width: 100%;
    width: 100%;
    margin: 0 !important;
  }
}

.edit_feature_overlay {
  position: absolute;
  inset: 0;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  border: 3px dashed white;
  z-index: 9999999;
  margin: 0.5rem;
  background: #00000038;
  box-shadow: 0 0 0 0.5rem #00000038;
  pointer-events: none;
}

.edit_feature {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9999999999999;
  background: #77b9e5;
  border-radius: 2rem;
  padding: 1rem;
  border: 3px solid;
  color: white;
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 0 10rem black;
  cursor: pointer;
  min-width: fit-content;
  white-space: nowrap;
  pointer-events: all;
}

.edit_feature::before {
  content: '\f303';
  font-family: 'FontAwesome';
  font-weight: 900;
  margin-right: 1rem;
}
.edit_feature:hover {
  transition: .2s all ease;
  transform: translate(-50%, -50%) scale(1.05);
}

.search_result_img {
  max-width: 280px;
  height: 100%;
  margin: 0;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

.search_result_details {
  flex-grow: 1;
  padding-right: 20%;
  position: relative;
}

.search_result_img::before {
  content: '';
  background-image: linear-gradient(90deg, #f0f0f0, transparent);
  position: absolute;
  left: 0;
  height: 100%;
  display: block;
  width: 100%;
}


.youtubewrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}


.youtubewrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.youtubewrapper_outer {
  width: 100%;
  max-width: 100%;
}.loading_spinner {padding:0 !important}


.form_row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0.6rem;
}

.form_item {
  flex-grow: 1;
  min-width: 200px;
}

.form_item input[type] {}

.form_item.shrink {
  flex-grow: 0;
}

.form_item .value input {
  width: 100%;
}

.form_item .label {
  font-size: 1rem;
  margin: 0 0.3rem 0.1rem;
}



.loading[data-title]::after {
  content: 'Loading 'attr(data-title) '...';
}

.loading::after {
  content: '';
  position: absolute;
  inset: 1rem;
  border: .5rem solid #cccccc67;
  color: #cccccc67;
  visibility: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading {
  visibility: hidden;
  position: relative;

}