:root {
  --theme-dark: #043D32; /* Dark green */
  --theme-medium: #6B7D31; /* Sage green */
  --theme-light: #CCDD95; /* Sage tint */
  --theme-lightest: #EBECEC; /*#F2F4F4;*/
  --theme-contrast: #fcc84e; /* gold */
  --theme-contrast-tint: #f9e3af; /* light gold */
  --dark-grey: #484848; /* NFWI text grey */
  --med-dark-grey: #00ff00; /*#737573;  required? */
  --medium-grey: #9c9c9f;
  --light-grey: #d8d8db;
  --link-blue: #2B66B7; /*#214F8E; /*#0077cc;*/
  --danger: #c52827; /*dark red */
}
/* lato-regular - latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Lato Regular'),
    url('../fonts/lato-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/lato-v20-latin-regular.woff') format('woff'), /* Modern Browsers */
}
/* lato-italic - latin */
@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local('Lato Italic'),
    url('../fonts/lato-v20-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/lato-v20-latin-italic.woff') format('woff'), /* Modern Browsers */
}
/* custom font for a few general icons */
@font-face {
  font-family: "general";
  src: url("/templates/sfwi/fonts/general.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
[data-icon]:before {
  font-family: "general" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "general" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  display: block;
}
body {
  font-family: Arial;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0;
  background-color: #fff;
}
body{
  font-family: Lato,sans-serif;
  color: var(--dark-grey);
  line-height: 1.5;
  margin: 0;
  overflow-x:hidden;
  letter-spacing: 0;
  font-weight: 400;
}
body.user-is-tabbing button > a:focus {
  border: none;
}
body.user-is-tabbing #carousel-checkbox #checkbox1:focus ~ label,
body.user-is-tabbing .logo a:focus,
body.user-is-tabbing .sidenav-logo a:focus {
  outline-width: medium;
}
body.user-is-tabbing label.finder {
  color: #fff;
}
body:not(.user-is-tabbing) a:focus,
body:not(.user-is-tabbing) button:focus,
body:not(.user-is-tabbing) input:focus,
body:not(.user-is-tabbing) select:focus,
body:not(.user-is-tabbing) textarea:focus {
  outline: none;
}
.visually-hidden { 
  border: 0;
  padding: 0;
  margin: 0;
  position: absolute;
  height: 1px; 
  width: 1px;
  overflow: hidden;
  white-space: nowrap;
}
.visually-hidden .toggleText {
  width: 44px;
  top: -1.5rem;
  left: -1rem;
  height: 44px;
}
/* BASICS */
div,button,li,[class^="col-"] {
  box-sizing: border-box;
  max-width: 100%;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
p:last-child,
p:only-child {
  margin-bottom: 0;
}
h1 {
  font-size: 2.2rem;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.35rem;
}
h4 {
  font-size: 1.225rem;
}
h5 {
  font-size: 1.15rem;
}
h6 {
  font-size: 1rem;
}
h1, h2, h3, h4, h5, h6{
  color: var(--theme-medium);
  font-weight: 500;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}
h1, h3 {
  font-weight: 700;
}
address {
  font-style: normal;
}
a {
  color: var(--link-blue);
  text-decoration: none;
  background-color: transparent;
}
a {
  word-wrap:break-word;
}
button {
  font-family: inherit;
}
.blog,
.max,
.column-1{
  width: 100%;
}
.container-fluid,
.container {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}
.row-fluid,
.row{
  display: -webkit-flex;
  display: flex;
  width: 100%;
  margin: 0;
  flex-wrap: wrap;
}
.intro:empty,
.container-fluid:empty,
.container:empty,
.row-fluid:empty,
.row:empty{
  display: none;
}
.row > * {
  width: 100%;
  max-width: 100%;
}
table {
  width: 100%;
  margin-bottom: 16px;
  border-spacing: 0;
}
tr {
  padding: 4px 4px 8px;
}
.col,
[class^="col-"] {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 1px;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.col-auto {
  flex: 1 0 auto;
  width: auto;
}
.d-none {
display: none;
}
.d-block {
  display: block;
}
.d-inline {
  display: inline;
}
.d-inline-block {
  display: inline-block;
}
.d-flex {
  display: flex;
}
.p-0 {
  padding: 0;
}
.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 1rem;
}
.pt-0 {
  padding-top: 0;
}
.pr-0 {
  padding-right: 0;
}
.pb-0 {
  padding-bottom: 0;
}
.pl-0 {
  padding-left: 0;
}
.pt-1 {
  padding-top: 0.25rem;
}
.pr-1 {
  padding-right: 0.25rem;
}
.pb-1 {
  padding-bottom: 0.25rem;
}
.pl-1 {
  padding-left: 0.25rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pe-2,
.pr-2 {
  padding-right: 0.5rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pl-2 {
  padding-left: 0.5rem;
}
.pt-3 {
  padding-top: 1rem;
}
.pr-3 {
  padding-right: 1rem;
}
.pb-3 {
  padding-bottom: 1rem;
}
.pl-3 {
  padding-left: 1rem;
}
.m-0 {
  margin: 0;
}
.m-1 {
  margin: 0.25rem;
}
.m-2 {
  margin: 0.5rem;
}
.m-3 {
  margin: 1rem;
}
.mt-0 {
  margin-top: 0;
}
.mr-0 {
  margin-right: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.ml-0 {
  margin-left: 0;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.ml-1 {
  margin-left: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.mt-3 {
  margin-top: 1rem;
}
.mr-3 {
  margin-right: 1rem;
}
.mb-3 {
  margin-bottom: 1rem;
}
.ml-3 {
  margin-left: 1rem;
}
.float-left,
.float-xs-left,
.float-sm-left,
.float-md-left,
.float-lg-left,
.float-xl-left {
  float: left;
}
.float-end,
.float-right,
.float-xs-right,
.float-sm-right,
.float-md-right,
.float-lg-right,
.float-xl-right {
  float: right;
}
.float-none,
.float-xs-none,
.float-sm-none,
.float-md-none,
.float-lg-none,
.float-xl-none{
  float: none;
}
.text-left,
.text-xs-left,
.text-sm-left,
.text-md-left,
.text-lg-left,
.text-xl-left {
  text-align: left;
}
.text-right,
.text-xs-right,
.text-sm-right,
.text-md-right,
.text-lg-right,
.text-xl-right {
  text-align: right;
}
.text-centre,
.text-xs-centre,
.text-sm-centre,
.text-md-centre,
.text-lg-centre,
.text-xl-centre {
  text-align: center;
}
.text-justify,
.text-xs-justify,
.text-sm-justify,
.text-md-justify,
.text-lg-justify,
.text-xl-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.container{
  max-width: 575.999999px;
  }
.d-xs-none{
  display: none;
  }
.d-xs-block {
  display: block;
  }
.d-xs-inline-block {
  display: inline-block;
  }
.col,
.col-xs {
  flex: 1;
  max-width: 100%;
  }
.col-2,
.col-xs-2 {
  flex: 1 0 16.666667%;
  max-width: 16.666667%;
  }
.col-3,
.col-xs-3 {
  flex: 0 0 25%;
  max-width: 25%;
  }
.col-4,
.col-xs-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  }
.col-5,
.col-xs-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
  }
.col-6,
.col-xs-6 {
  flex: 0 0 50%;
  max-width: 50%;
  }
.col-7,
.col-xs-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
  }
.col-8,
.col-xs-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
  }
.col-9,
.col-xs-9 {
  flex: 0 0 75%;
  max-width: 75%;
  }
.col-10,
.col-xs-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
  }
.col-11,
.col-xs-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
  }
[class^="col-"] {
  padding: 0 0.5rem;
}
[class^="col-"]:first-child {
  padding-left: 0;
}
[class^="col-"]:last-child {
  padding-right: 0;
}
[class^="col-"]:only-child {
  padding-right: 0;
  padding-left: 0;
}
.com-content-article.item-page > .com-content-article__body > .row > [class^="col-"]:first-child {
  padding-left: 0;
}
.com-content-article.item-page > .com-content-article__body > .row > [class^="col-"]:last-child {
  padding-right: 0;
}
.col-12,
.col-xs-12 {
  flex: 0 0 100%;
  max-width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.w-100 {
  width: 100%;
}
.w-50 {
  width: 100%;
}
.w-25 {
  width: 100%;
}
.flex {
  white-space: nowrap;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}
img:-moz-loading {
  visibility: hidden;
}
.mod-custom {
  width: 100%;
  max-width: 100%;
}
/* END BASICS */
.sidenav {
  display: none;
}
.sidenav-opened {
  transition: width 0.5s;
  display: block;
  height: 100%;
  width: 0;
  width: 350px;
  position: fixed;
  z-index: 9996;
  top: 0;
  left: 0;
  background-color: #fff;
  overflow-x: hidden;
  padding: 16px 0 0;
  box-shadow: 2px 0 5px -2px #acaaaa;
}
.sidemenu {
  position: relative;
  z-index: 9997;
  padding: 0 16px 16px;
  background: #fff;
}
.search-sidenav {
  height: 50px;
  z-index: 9999;
  padding-right: 16px;
}
.search-sidenav .mod-finder {
  float: left;
  padding-left: 32px;
}
.mod-finder__search.input-group input {
  color: var(--dark-grey);
}
.mod-finder__search.input-group > button {
  display: inline-block;
}
.closenavbtn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--theme-dark);
  font-size: 3rem;
  margin: 0;
  position: absolute;
  top: -2rem;
  right: 0;
  z-index: 9998;
}
.icon-env:before {
  content: "\6d";
}
.icon-map-marker:before {
  content: "\73";
}
.icon-phone:before {
  content: "\74";
}
.icon-print:before {
  content: "\70";
}
.icon-edit:before {
  content: "\65";
}
.icon-eye:before {
  content: "\62";
}
.icon-eye-slash:before {
  content: "\64";
}
.icon-angle-double-left:before {
  content: "\61";
}
.icon-angle-double-right:before {
  content: "\66";
}
.icon-angle-left:before {
  content: "\67";
}
.icon-angle-right:before {
  content: "\68";
}
.icon-calendar:before {
  content: "\69";
}
.icon-user:before {
  content: "\6a";
}
.icon-folder-open:before {
  content: "\63";
}
.icon-angle-down:before {
  content: "\6b";
}
.icon-angle-up:before {
  content: "\6c";
}
.icon-search:before {
  content: "\6e";
}
.icon-check:before {
  content: "\6f";
}
.icon-times:before {
  content: "\71";
}
.icon-code-branch:before {
  content: "\72";
}
.icon-sort:before {
  content: "\75";
}
.icon-sort-alpha-asc:before {
  content: "\76";
}
.icon-sort-alpha-desc:before {
  content: "\77";
}
.icon-upload:before {
  content: "\78";
}
.icon-folder:before {
  content: "\79";
}
.icon-plus:before {
  content: "\7a";
}
.icon-minus:before {
  content: "\41";
}
.icon-arrows-alt:before {
  content: "\42";
}
.icon-refresh:before {
  content: "\43";
}
.icon-copy:before {
  content: "\44";
}
/* === Main Menu === */
.mm .has-submenu> div.ul {
  display: none;
}
.mm .has-submenu> div.ul.open {
  display: block;
}
.mm .menu-toggle {
  height: 44px;
  width: 44px;
  display: inline-block;
  line-height: 44px;
  font-size: 25px;
  text-align: center;
  text-decoration: none;
  margin: 0;
}
.mm {
  min-height: 44px;
}
.mm.editor {
  height: unset;
  width: 350px;
}
.mm .menucontent.menu-a,
.mm .menucontent.menu-a {
  list-style: none;
}
.mm .menucontent.menu-a {
  display: none;
}
.mm .menucontent.menu-b {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: normal;
  padding: 0;
  position: relative;
  top: 0;
  z-index: 9997;
  overflow-y: auto;
  }
.mm .li > [type="button"] {
  margin-left: 0;
  padding: 0;
}
.mm [type="button"] ~ div.ul {
  display: none;
}
.mm [type="button"].opened ~ div.ul {
  display: table;
  z-index: 99;
}
.mm [type="button"].opened,
.mm .li.current > a {
  color: var(--theme-medium);
}
.mm div[class^="ul level"] {
  list-style: none;
  background-color: transparent;
  position: relative;
  top: 100%;
  left: 0;
  padding: 0;
}
.mm div.ul.level-1 {
  padding-left: 16px;
}
.mm .li {
  display: block;
  position: relative;
  line-height: 1;
  border-top: 1px dotted var(--medium-grey);
  margin: 0;
  min-height: 44px;
}
.mm .menu-b > .li:first-child,
.mm .menu-b > .li:nth-child(2){
  border-top: none;
}
.mm .li:not(.top-level) a {
  padding: 12px 8px 0;
}
.mm .li:not(.top-level) a:hover {
  color: var(--theme-dark);
}
.mm .li.single.parent {
  padding-top: 0;
}
.mm .menucontent > li:last-child {
  border-bottom: 1px dotted var(--medium-grey);
}
.mm .li.separator-line {
  display: none;
}
.mm .li a,
.mm .li span {
  color: var(--theme-dark);
  display: inline-block;
  font-size: 1.1rem;
  position: relative;
  white-space: nowrap;
  vertical-align: middle;
}
.mm .li a {
  padding-top: 12px;
}
.mm .li.top-level:first-child {
  padding: 0;
}
.mm .li.top-level {
  padding: 0 12px 0;
  min-height: 44px;
}
.mm .li.top-level.heading {
  padding: 0 12px 0;
}
.mm .li.top-level > span {
  padding: 0;
}
.mm .li.top-level.parent {
  padding: 0 12px 0;
}
.mm .li.top-level.single.parent > a {
  padding: 0 0 8px 4px;
}
.mm span.v-open-icon {
  padding: 0 0 0 16px;
}
.mm button.linkmenu span.v-open-icon {
  padding: 0 0 4px 16px;
}
.mm button::before {
  color: var(--theme-dark);
}
.mm .li.active > a {
  font-weight: bold;
}
.mm .li.active.parent > a,
.mm .li.active span,
.mm .li.active.parent [type="button"]::after {
  color: var(--theme-medium);
  font-weight: normal;
}
.mm .li:not(.top-level) .current > a {
  font-weight: bold;
}
.mm [type="button"] {
  -webkit-appearance: none;
  min-width: 44px;
  min-height: 44px;
  position: relative;
  background: transparent;
  border: none;
  top: 0;
}
.mm [type="button"]:not(:disabled) {
  cursor: pointer;
}
.user-is-tabbing .mm [type="button"]:focus {
  outline: #bbb dotted 0.5px;
}
.mm .li.separator:hover > span,
.mm .li.heading:hover > span,
.mm .li > a:hover,
.mm button:hover > span,
.mm button:hover{
  color: var(--theme-medium);
}
.user-is-tabbing .mm .li > .separator:focus > span,
.user-is-tabbing .mm .li > .heading:focus > span,
.user-is-tabbing .mm .li a:focus,
.user-is-tabbing .mm .li > button.linkmenu:focus > span,
.user-is-tabbing .mm .li > button:focus {
  color: var(--theme-medium);
}
.mm .li.top-level > span.v-open-icon {
  padding-left: 16px;
  font-size: 24px;
}
.mm .li.single.parent.top-level > span.v-open-icon {
  padding-bottom: 12px;
}
.mm .li.top-level.single-heading > a {
  padding-top: 0;
}
.mm .li .h-open-icon {
  display: none;
}
.mm span.div-line {
  border-right: 1px solid var(--theme-dark);
  height: 1.5rem;
  width: 1.5rem;
}
.mm .li.divider,
.mm .li.separator-line {
  position: relative;
  min-height: unset;
  height: 1rem;
  display: inline-block;
  width: 100%;
  padding: 0 16px;
}
.mm .li.separator-line button {
  display: none;
}
ul.editor {
  list-style: none;
  padding-left: 0;
  width: 350px;
}
.editor li.divider {
  position: relative;
  margin: 8px 0;
  height: 1rem;
}
.editor li.divider span.separator,
.mm .li.separator-line a,
.mm .li.separator-line span,
.mm .li.divider span {
  display: none;
}
.editor li.divider::after,
.mm .li.divider::after,
.mm .li.separator-line::after {
  position: absolute;
  height: 0;
  top: 60%;
  width: 100%;
  border-top: 1px solid var(--medium-grey);
  border-bottom: 1px solid var(--light-grey);
  margin: 0 0;
  content: "";
}
.editor-info-red {
  color: #f00;
}
.fixed-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 990;
  height: 170px;
  background-color: #fff;
}
.fixed-header-inner-one,
.fixed-header-inner-two,
.pageh1textwrapper {
  margin: 0 auto;
}
.fixed-header-inner-one {
  height: 170px;
  border-bottom: 5px solid var(--theme-dark);
}
.fixed-header-inner-two {
  height: 3rem;
  background-color: var(--theme-dark);
}
.header-row {
  height: auto;
}
.mainmenu-row {
  height: 3rem;
}
.burger-outer{
  padding: 12px 0 0 16px;
  margin-bottom: 0;
}
.burger {
  position: absolute;
  border-top: 0.15rem solid var(--theme-dark);
  border-right: none;
  border-bottom: 0.15rem solid var(--theme-dark);
  border-left: none;
  background: transparent;
  cursor: pointer;
  height: 32px;
  padding: 0;
  width: 48px;
  top: 36px;
  left: 16px;
  z-index: 995;
}
.burger::before {
  position: absolute;
  content: "Menu";
  font-size: 1.2rem;
  top: -26px;
  left: 0;
  color: var(--theme-dark);
}
.burger::after {
  position: absolute;
  content: "";
  border-top: 0.15rem solid var(--theme-dark);
  top: 48%;
  left: 0;
  width: 3rem;
}
.logo {
  position: relative;
  left: 65px;
  width: 100%;
}
.no-logo {
  display: block;
  line-height: 1.2rem;
}
.logo-1,
.logo-2 {
  display: none;
}
.logo-text-1,
.logo-text-2 {
  position: absolute;
  left: 97px;
  top: 15px;
  font-size: 1rem;
  color: #fff;
  font-weight: bold;
  line-height: 1.2rem;
  width: 100%;
  }
.logo-text-2 {
  display: none;
}
.no-logo a,
.logo-text-1 a,
.logo-text-2 a {
  color: var(--theme-dark);
  font-weight: bold;
}
.search {
  margin: 0;
  width: 100%;
  padding-left: 84px;
}
.search .form-inline .inputbox {
  width: 100%;
}
.search .mod-finder__search.input-group {
 display: inline-block;
}
.search .mod-finder label.finder {
  color: #fff;
  background: #000;
  position: absolute;
  top: 3px;
}
.js-finder-search-query::placeholder {
 color: #222222;
 opacity: 1;
 font-style: italic;
}
.fbk-tw img {
  margin: 0 16px 0 0;
}
.col-xs.topheader {
  margin: 0;
  padding-top: 8px;
  padding-right: 16px;
}
.topheader {
  width: 100%;
  height: 60px;
}
.topheader .header-social {
  margin-top: 0;
  padding-top: 6px;
  padding-left: 84px;
}
.topheader .myWI a {
  color: #fff;
  text-decoration: none;
}
.top-spacer {
  height: 170px;
}
.shadowwrapper {
  background-color: #fff;
  margin: 0 auto;
  min-height: 500px;
  padding: 0 16px;
}
.banner {
  margin: 0 0 16px;
}
.banner .crop img {
  height: 248px;
  object-fit: cover;
}
.breadcrumbs .divider {
  margin-right: 12px;
}
.introduction {
  margin-bottom: 16px;
}
.image-gallery .introduction {
  margin-top: 16px;
}
.introduction p:last-child {
  margin-bottom: 0;
}
.sfwi-slideshowck {
  margin: 0 auto;
}
.camera_pie {
  display: none;
}
.home .com-content-article__body img {
  margin-top: 16px;
}
/* ==== Featuretop and bottom ==== */
.featuretop .mod-ft-header,
.featurebottom .mod-fb-header {
  padding: 8px 16px;
  margin-bottom: 0;
  background-color: var(--theme-medium);
}
.featuretop .mod-ft-header h3,
.featurebottom .mod-fb-header h3 {
  color: #fff;
  margin: 0;
}
.featuretop .mod-ft-content,
.featurebottom .mod-fb-content {
  padding: 8px 16px;
}
.featuretop .wrapper,
.featurebottom .wrapper {
  border: 1px solid var(--theme-medium);
}
.mod_slideshowck .wrapper {
  border: none;
}
.featuretop .mod-ft-content .newsflash-title,
.featurebottom .mod-fb-content .newsflash-title {
  padding: 8px 16px;
}
.featuretop .mod-fb-content .news-content,
.featurebottom .mod-fb-content .news-content {
  padding: 8px 16px 0;
}
.featuretop .mod-ft-content .news-read-more,
.featurebottom .mod-fb-content .news-read-more {
  padding: 8px 16px;
  margin-top: 8px;
}
.featuretop .mod-ft-content .news-read-more,
.featurebottom .mod-fb-content .news-read-more {
  background-color: var(--theme-lightest);
}
.home .featurebottom .mod-fb-header {
  margin-bottom: 0;
}
.home .mod-fb-content h4.newsflash-title {
  margin-bottom: 0;
}
.home .mod-fb-content h4.newsflash-title a:hover {
  font-weight: bold;
}
.home .mod-fb-header h2 {
  color: #fff;
  font-weight: bold;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  margin: 0 0 0;
}
/* === Sidebars and component area === */
.leftsidebar,
.rightsidebar,
.contentboth,
.contentleft,
.contentright {
  margin-bottom: 16px;
}
.leftsidebar,
.rightsidebar {
  padding-left: 0;
  padding-right: 0;
  margin: 0 0 16px 0;
}
.sidebarleft a {
  color: var(--theme-dark);
}
.sidebarleft a:hover {
  font-weight: bold;
}
.sidebarcontent {
  margin-bottom: 16px;
  padding: 16px 0;
}
.home .sidebarcontent {
  padding: 0;
}
.sidebarright .mod-header,
.sidebarleft .mod-header,
.sidebarright .mod-content,
.sidebarleft .mod-content {
 border-bottom: 3px double var(--theme-medium);
 padding-bottom: 8px;
}
.sidebarright .mod-content:last-child,
.sidebarleft .mod-content:last-child {
 border-bottom: none;
}
.sidebarright .mod-header h3,
.sidebarleft .mod-header h3 {
  font-weight: bold;
}
.contentboth {
  padding-left: 16px;
  padding-right: 16px;
}
[class^="col-"]:only-child.main-pl {
  padding-right: 0;
  padding-left: 0;
}
.contentleft,
.contentright {
  margin: 0 0 16px 0;
  padding: 0;
}
.lowermiddle {
  padding-bottom: 16px;
}
.lowermiddle:last-child {
  margin-bottom: 0;
}
.pageh1textouter {
  background-color: #fff;
  padding: 16px 0;
  border-bottom: 2px solid var(--theme-medium);
  margin-bottom: 16px;
}
.footer {
  color: #fff;
  text-align: center;
}
.footer a {
  color: #fff;
}
.footer-email:hover a {
  text-decoration: underline;
}
.footer-bg {
  background-color: var(--theme-dark);
}
.footer-wrapper {
  margin: 0 auto;
  padding: 16px 16px 0;
  background-color: var(--theme-dark);
}
/* Footer menu */
.footer-menu-row {
  columns: 2;
  column-rule: 1px dotted #fff;
  column-gap: 24px;
  gap: 24px;
  list-style-type: none;
  padding-bottom: 8px;
  margin: 0 0 16px;
}
.footer-menu-box {
  border-bottom: 1px dotted #fff;
}

.footer ul {
  padding-inline-start: 0;
}
.footer-menu-row li {
  break-inside: avoid-column;
}
.footer-menu-row li a:hover {
  font-weight: bold;
}
.footer-menu-box {
  text-align: center;
  padding: 8px 0;
  marker: none;
}
.footer-menu ul {
 margin: 0;
 padding-left: 0;
}
.footer-menu li {
  list-style: none;
}
.footer-menu li,
.footer-menu li a {
  font-size: 0.9rem;
}
.footer li a {
 color: #fff;
}
.footer-menu li a:hover {
  color: var(--theme-contrast);
  font-weight: bold;
}
.footer-menu .col-sm-4 {
  padding-right: 16px;
  padding-left: 0;
}
.top-link {
  animation-duration: 0.2s;
  visibility: visible;
  position: fixed;
  cursor: pointer;
  text-align: center;
  bottom: 0;
  right: 16px;
  color: white;
  background: var(--theme-medium);
  font-size: 2rem;
  margin: 0;
  padding: 4px 0;
  width: 50px;
  height: 50px;
  border: none;
  z-index: 9999;
}
.top-link.hide {
  background: var(--theme-dark);
}
.top-link:hover {
  padding-top: 0;
}
.copytext {
  text-align: center;
  font-style: italic;
  font-size: 0.85rem;
  margin: auto;
}
.copydate {
  width: 1.25rem;
  display: inline;
}
.copy {
  width: calc(100% - 1.5rem);
  display: inline;
}
.bottom {
  background-color: var(--theme-dark);
  color: #fff;
  padding: 16px 65px;
}
.hide {
  display: none;
}
.mod-preview-info {
  z-index: 999;
}
/* **** BLOGS **** */
.blog-item-row {
  padding: 0;
}
.blog .blog-item, 
.blog-featured .blog-item,
.blog__item.items-leading {
  margin: 0 0 16px;
  padding: 0 0 16px;
}
.contact-page h2,
.competitions h2,
.blog .item-content h2:first-child,
.com-content-article.item-page .page-header h2,
.blog-item .page-header h2,
.blog-featured .blog-item .item-content h2 {
  color: #fff;
  background-color: var(--theme-medium);
  padding: 4px 16px;
}
.competitions h2 {
  margin-bottom: 0;
}
figure {
  margin: 0 0 16px;
}
.teams .blog-items figcaption {
  display: none;
}
.teams h1 > a {
  text-decoration: none;
  color: var(--theme-medium);
}
.people-box {
  border: 1px solid var(--theme-medium);
  padding-bottom: 32px;
  position: relative;
}
.people-box .page-header h2,
.teams-box .page-header h2 {
  margin-bottom: 0;
  font-size: 1.5rem;
}
.teams-box .page-header h2 {
  font-size: 1.2rem;
}
.people-box-inner {
  padding: 16px;
  min-height: 240px;
}
.advisers .people-box-inner p:first-of-type {
  margin-top: 24px;
}
.teams-box-inner {
  padding: 0;
}
.blog-item .item-image {
  margin-bottom: 16px;
  margin-top: 3px;
  overflow: hidden;
}
.left.item-image {
  float: left;
}
.right.item-image {
  float: right;
}
.center.item-image {
  float: none;
  text-align: center;
  margin-top: 16px;
}
.people .center.item-image {
  float: left;
  margin: 0 16px 16px 0;
}
.whyjoin .blog figure.left.item-image,
.whyjoin .blog figure.right.item-image {
  float: none;
}
.home img.welcome,
.home .item-image img,
.people .item-image img {
  outline: 4px solid white;
  outline-offset: -6px;
  max-height: 200px;
  width: auto;
}
.feature-row,
.people .blog-item-row,
.shop .blog-item-row,
.teams .blog-item-row,
.shop-tree .com-content-categories__items,
.links .blog-item-row {
  background-color: white;
  display: grid;
  column-gap: 32px;
  row-gap: 32px;
  grid-template-columns: repeat( auto-fit, minmax(350px, 1fr) );
  margin: 0 0 16px;
}
.links .blog-item-row,
.teams .blog-item-row {
  column-gap: 24px;
  grid-template-columns: repeat( auto-fit, minmax(250px, 1fr) );
}
.links .blog .blog-item {
  padding: 0;
}
.item-page.people .page-header h2 {
  margin-bottom: 16px;
}
.people .com-content-article__body {
  min-height: 216px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--theme-dark);
}
.teams .people .com-content-article__body {
  min-height: 236px;
}
.people-article-body ul {
  list-style-position: inside;
}
.article-info-term {
  display: none;
}
.published {
  font-style: italic;
  color: #393939;
  font-size: 0.85rem;
}
ul.categories-module,
ul.category-module,
ul.latestnews {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}
.categories-module li,
.category-module li,
.latestnews li {
  border-bottom: solid 1px #cccccc;
  box-shadow: 0 0.125rem 0 #ffffff;
  color: var(--theme-dark);
  list-style: none;
  margin-bottom: 12px;
  padding-bottom: 12px;
  font-weight: bold;
}
.category-module li p {
  font-weight: normal;
}
.categories-module li:first-child,
.category-module li:first-child,
.latestnews li:first-child {
  margin: 0 0 12px;
  padding-top: 12px;
}
.categories-module li:last-child,
.category-module li:last-child,
.latestnews li:last-child {
  border-bottom: none;
  box-shadow: none;
  margin: 0;
}
.categories-module li > a,
.category-module li > a,
.latestnews li > a {
  display: block;
}
.blog-featured h2 a,
.page-header h2 a {
  color: #fff;
}
.category-desc .chairman-cat {
  min-height: 275px;
}
.newsflash-two-cols,
.two-cols,
.sfwi-news-two-cols .items-leading .item-content {
  columns: 2 375px;
  column-gap: 16px;
}
.newsflash .max-lines {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5; /* number of lines to show */
          line-clamp: 5;
  -webkit-box-orient: vertical;
}
.three-cols {
  columns: 3 400px;
  column-gap: 32px;
}
.four-cols {
  columns: 4 350px;
  column-gap: 16px;
}
.iframe-rwd  {
  position: relative;
  padding-bottom: 65.25%;
  height: 0;
}
.iframe-rwd iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.greybox,
.mediumgreybox {
  border: 2px solid var(--dark-grey);
  padding: 8px 16px;
  margin: 0 0 16px;
}
.home .greybox {
  border: none;
  padding: 0;
  margin: 0;
}
.mediumgreybox {
  border: 2px solid var(--medium-grey);
}
.greybox-lightbg {
  background: var(--theme-light);
}
.greybox-contrastbg {
  background: var(--theme-contrast);
}
.greybox-tintbg {
  background: var(--theme-contrast-tint);
}
.competitions-box {
  border: 2px solid var(--theme-medium);
  padding: 8px 16px;
}
td, th {
  vertical-align: middle;
}
.close-button {
  display: inline-block;
  border: 1px solid var(--theme-dark);
  border-radius: 5px;
  padding: 0 8px;
  font-style: italic;
  margin: 16px 0 0;
}
.toggle-btn {
  cursor: pointer;
}
.editor-tips.toggle-btn {
  font-size: 1.5rem;
  color: var(--theme-medium);
}
.toggle-content {
  display: none;
}
.toggle-content.content-revealed {
  display: block;
}
.toggle-content.content-revealed {
  margin-bottom: 16px;
}
.with-button {
  position: relative;
}
.with-button .find {
  position: absolute;
  right: 0;
  top: -8px;
}
.find-wi-link button {
  box-shadow: 2px 2px 2px #ccc;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 2px 8px 4px;
  margin-top: 16px;
}
.find-wi-link button a {
  color: var(--theme-dark);
}
.item-page {
  width: 100%;
}
.element-invisible {
  display: none;
}
.search .form-inline {
  display: flex;
}
.com-users-registration.registration {
  width: 100%;
}
.col-xs-6.header {
  padding-right: 16px;
}
.home .left.item-image,
figure.left.item-image,
figure.image-tint.item-image {
  margin: 0 16px 8px 0;
  text-align: center;
}
figure.right.item-image {
  margin: 0 0 16px 16px;
}
figure.image-tint img {
  opacity: 50%;
}
.diary figure.left.item-image,
.teams figure.left.item-image,
.teams figure.center.item-image {
  margin: 0;
}
.diary .item-page figure.left.item-image,
.diary .item-page figure.center.item-image,
.teams .item-page figure.left.item-image,
.teams .item-page figure.center.item-image {
  margin: 0 16px 16px 0;
}
figcaption {
  font-style: italic;
}
.people ul.content-list {
  padding-left: 16px;
}
.people li.content-links-a {
  list-style: none;
}
.people li.content-links-a:before {
  position: relative;
  content: "▶";
  left: -1rem;
}
.convertforms .cf-content-wrap {
  text-align: center;
}
#cf5.convertforms {
  max-width: 100%;
}
#cf5.convertforms .cf-form-wrap {
  padding: 0;
}
.print .cf-one-half {
  width: 40%;
  margin: 0 16px;
  display: inline-block;
}
.print .cf-control-label,
.print .cf-control-input {
  display: inline-block;
}
.print #form5_name {
  width: 100%;
}
/*Shack Locations */
#focalpoint {
  height: auto;
}
#focalpoint .zoom {
  width: 75%;
  float: right;
  padding: 0.5rem 1rem;
}
#focalpoint .zoom .col-md-5 p {
  margin-bottom: 0;
}
.row-fluid .fp_address [class*="span"] {
  margin-top: 0;
  margin-left: 0;
}
.row-fluid [class*="span"]:not(first-child) {
  margin-top: 16px !important;
}
#fp_googleMapContainer.fp_side #fp_searchAddress {
 width: 65% !important;
}
#fp_googleMapContainer.fp_side .fp_mapsearch button.btn {
 width: 25% !important;
 margin-left: 8px;
}
#fp_googleMapContainer,
#fp_googleMapSidebar,
.legend_left #fp_googleMapSidebar,
.legend_right #fp_googleMapSidebar {
  min-height: 0;
  height: auto !important;
}
#fp_googleMapSidebar ul.sidebar li a {
  font-size: 0.9rem;
}
.fp_side #fp_googleMapSidebar ul.sidebar {
  columns: 1;
}
.fp_side #fp_googleMapSidebar ul.sidebar li {
  break-inside: avoid-column;
}
#focalpoint #fp_toggle {
  margin-left: 12px;
}
#fp_googleMap {
  height: 500px !important;
}
#focalpoint .filtering {
  padding: 0.5rem 1rem;
}
#focalpoint .btn-group #fp_reset,
#focalpoint .btn-group #fp_toggle {
  margin-bottom: 8px;
}
.shropshire-federation-day-or-evening h4 {
  margin: 8px 0;
}
#fp_googleMapSidebar h4 {
  font-size: 1rem;
  line-height: 1;
}
.note {
  font-size: 0.9rem;
  color: var(--dark-grey);
}
ol {
  list-style: none;
  display: flex;
  flex-direction: row;
}
.com-content-article ol {
  overflow: hidden;
  padding-left: 32px;
  display: block;
  list-style-type: decimal;
  margin-block-start: 16px;
  margin-block-end: 16px;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
}
.com-content-article ol li {
  padding-left: 16px;
}
.reverse-double-line {
  border-bottom: solid 0.125rem #cccccc;
  box-shadow: 0px 0.15rem 0px #ffffff;
  margin-bottom: 12px;
}
/* Editor tips */
.editorintro {
  border-bottom: 2px solid var(--theme-medium);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.tips-button {
  color: var(--theme-dark);
  border: none;
  padding: 0;
  background: none;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
/* Front editor styles */
.category-list {
  width: 100%;
  padding: 0;
}
#com-content-formTabs.nav.nav-tabs {
  flex-direction: row;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
}
#com-content-formTabs,
.wf-editor-tabs {
  list-style: none;
}
#com-content-formTabs li,
.wf-editor-tabs li {
  padding: 0 5px;
  border-left: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
  border-top: 1px solid #dee2e6;
  padding-bottom: 2px;
  margin: 0;
  z-index: 999;
  background: #f1f1f1;
}
.wf-editor-tabs li {
  padding-bottom: 0;
}
#com-content-formTabs li:nth-child(3) {
  display: none;
}
#com-content-formTabs li a {
  display: inline !important; 
}
#com-content-formTabs .active,
.wf-editor-tabs .active {
  background: #ffffff;
}
#com-content-formTabs .active {
  box-shadow: 0 4px #ffffff;
}
.wf-editor-tabs {
  border-bottom: 2px solid #dee2e6;
  margin: 0;
}
.wf-editor-tabs .active {
  border-bottom: 2px solid #f1f1f1;
}
.wf-editor-header .wf-editor-tabs {
  position: relative;
}
.joomla4 .wf-editor-header joomla-tab div[role="tablist"] ul {
  margin: 0 0 0;
}
.list-title {
  pointer-events: none;
  color: red;
}
.list-title a {
  color: #212529;
}
.chzn-container,
.controls input {
  margin-bottom: 12px;
}
.control-label {
  margin-bottom: 6px;
}
.chzn-container-active.chzn-with-drop {
  background-color: red;
  width: 165px !important;
  border-radius: 5px;
}
.chzn-with-drop,
.chzn-container-active .chzn-single,
.chzn-container-single .chzn-single,
.chzn-container-multi .chzn-choices,
div.chzn-drop {
  width: 165px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.chzn-container .chzn-results {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  width: 163px;
}
.chzn-container-single .chzn-search,
.chzn-container-single .chzn-search input[type="text"] {
  width: 155px;
}
.chzn-single a {
  background-color: blue;
}
.hasPopover {
  margin-top: 12px;
}
.wf-editor-tabs li {
  padding: 0;
}
.wf-editor-tabs li a {
  font-size: 1.5rem;
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
#jform_title.inputbox {
  min-width: 300px;
  max-width: 400px;
}
#jform_profile_region-lbl,
#jform_profile_region {
  display: none;
}
/* this might sort chzn-drop not showing*/
#adminForm .tab-content {
  overflow: visible !important;
}
.editor-cat-list {
  text-align: left;
}
.editor-cat-list #adminForm {
  padding: 0 0 16px;
}
.editor-cat-list table {
  margin-top: 16px;
}
.editor-cat-list tbody tr {
  background-color: var(--lightest-grey);
}
.editor-cat-list .table-bordered thead th,
.editor-cat-list tbody th,
.editor-cat-list tbody td {
  border: 1px solid var(--light-grey);
  padding: 8px 4px;
}
.editor-cat-list .table-bordered thead th {
  border-bottom-width: 2px;
  text-align: left;
}
.editor-cat-list tbody tr:nth-child(2n) {
  background-color: #fff;
}
.editor-cat-list .table-striped tbody tr:nth-of-type(2n+1) {
  background-color: rgba(216,216,219,.25);
}
.container-component nav {
  position: relative;
}
.pagination {
  display: flex;
  list-style: none;
  margin: 16px 0;
  padding: 0;
}
.page-link {
  background-color: #fff;
  border: 1px solid var(--light-grey);
    border-top-color: rgb(223, 227, 231);
    border-right-color: rgb(223, 227, 231);
    border-bottom-color: rgb(223, 227, 231);
    border-left-color: rgb(223, 227, 231);
  display: block;
  height: 1.75rem;
  position: relative;
  text-decoration: none;
  padding: 4px 12px;
}
.page-link, .page-link:hover {
  color: var(--link-blue);
}
.page-link:hover {
  background: var(--light-grey);
}
.page-item.disabled .page-link {
  background-color: #fff;
  border-color: var(--light-grey);
  color: var(--dark-grey);
  pointer-events: none;
}
.page-item:first-child .page-link {
  border-bottom-left-radius: .25rem;
  border-top-left-radius: .25rem;
}
.page-item:last-child .page-link {
  border-bottom-right-radius: .25rem;
  border-top-right-radius: .25rem;
}
.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}
.page-item.active .page-link {
  background-color: var(--theme-dark);
  border-color: var(--theme-dark);
  color: #fff;
  z-index: 3;
}
.popover {
  background-color: white;
  border: 2px solid var(--theme-dark);
  border-radius: 5px;
  padding: 5px;
  position: absolute;
  max-width: 300px;
  top: 0;
  left: 0;
}
.popover-title {
  font-size: 1.2rem;
}
.btn.btn-secondary {
  border: none;
  background: transparent;
  padding: 0 8px;
}
.people-box .readmore {
  border-top: 1px solid var(--theme-medium);
  text-align: right;
  padding: 2px 8px;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  height: 2rem;
}
.readmore > .btn.btn-secondary {
  padding: 0 0;
}
.icons button.dropdown-toggle {
  display: none;
}
.icons ul.dropdown-menu {
  padding: 0;
}
.icons .dropdown-menu li {
  list-style: none;
}
.icons .dropdown-menu li > a,
#editor-xtd-buttons > a {
  border: 1px solid var(--medium-grey);
  background-color: var(--lightest-grey);
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  padding: 4px 12px;
}
.editor-tips.toggle-btn.image-prep[aria-expanded="false"]:after {
  position: relative;
  content: "Read article...";
}
.editor-tips.toggle-btn.image-prep[aria-expanded="true"]:after {
  position: relative;
  content: "Close article";
}
.tips-button ~ .tips {
  display: none;
}
.tips-button.form-opened ~ .tips {
  display: block;
  margin-bottom: 16px;
}
.editor th {
  text-align: left;
}
.editor tr:nth-child(even),
.editor thead {
  background-color: var(--theme-light);
}
.editor thead > tr > th {
  padding: 8px 0;
}
.editor tr > th:first-child,
.editor tr > td:first-child {
  padding-left: 16px;
}
.edit.item-page #adminForm {
    border-bottom: 2px solid var(--theme-dark);
    padding: 0;
}
.edit.item-page #adminForm .btn.btn-success,
.edit.item-page #adminForm .btn.btn-danger,
.edit.item-page #adminForm .controls input,
a.btn.btn-outline-secondary.wf-media-upload-button {
  margin: 0;
  border-radius: 0;
  border: 1px solid var(--medium-grey);
}
#editor,
#images,
#publishing,
#metadata {
  margin-bottom: 16px;
}
fieldset {
    border: 0;
    margin: 0;
    min-width: 0;
    padding: 0;
}
.field-media-wrapper {
    display: block;
    width: 100%;
}
.field-media-wrapper .field-media-preview {
    max-width: none;
    width: 100%;
}
#images .control-group {
  margin-top: 16px;
}
.controls {
  max-width: 100%;
}
.control-group {
  margin-bottom: 16px;
}
#adminForm .input-group {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
}
#adminForm .form-control {
  -webkit-appearance: none;
  appearance: none;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  color: #22262a;
  display: block;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  padding: .6rem 1rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  width: 100%;
  background-color: #fff;
  max-width: 100%;
  box-sizing: border-box;
}
.valid {
    border-color: var(--theme-medium);
}
joomla-field-media .field-media-input {
    border-top-left-radius: 0;
}
#adminForm .input-group>.custom-select, 
#adminForm .input-group>.form-control, 
#adminForm .input-group>.form-select {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
  width: 1%;
}
#adminForm .input-group.has-validation>.dropdown-toggle:nth-last-child(n+4), #adminForm .input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu), 
#adminForm .input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
#adminForm .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
#adminForm .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-left: -1px;
}
#adminForm .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-left: -1px;
}
a.btn.btn-outline-secondary.wf-media-upload-button {
  padding: .6rem 1rem;
}
.mb2 > .btn.btn-success, 
.mb2 > .btn.btn-danger, 
.mb2 > .btn.btn-primary, 
.mb2 > .btn.btn-secondary {
  padding: 9.6px 16px;
  margin-bottom: 16px;
}
.wf-editor-container, .wf-editor-container * {
  margin: 0;
  padding: 0;
  outline: 0;
  vertical-align: top;
  background: 0 0;
  text-decoration: none;
  color: #444;
  font-size: 13px;
  text-shadow: none;
  float: none;
  position: static;
  width: auto;
  height: auto;
  white-space: nowrap;
  cursor: inherit;
  -webkit-tap-highlight-color: transparent;
  line-height: normal;
  font-weight: 400;
  text-align: left;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  direction: ltr;
  max-width: none;
}
[class*=" icon-"],
[class^="icon-"] {
  font-family: "General";
  font-weight: 900;
}
[class^="icon-"]::before,
[class*=" icon-"]::before {
  font-family: "general" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cart_reload .icon-refresh::before {
  content: "\43";
}
#comjshop .btn {
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.5;
  padding: 10px 16px;
  text-align: center;
  text-decoration: none;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  user-select: none;
  vertical-align: middle;
}
#comjshop .btn-primary {
  background-color: var(--theme-contrast-tint);
  border-color: var(--theme-contrast-tint);
  color: var(--dark-grey);
}
#comjshop .btn-primary:focus,
#comjshop .btn-primary:hover {
  background-color: var(--theme-contrast);
  border-color: var(--theme-contrast);
  color: var(--dark-grey);
}
#comjshop .btn-secondary {
  background-color: #fff;
  border-color: var(--dark-grey);
  color: var(--dark-grey);
}
#comjshop .justify-content-between {
  justify-content: space-between !important;
}
#comjshop .btn-success {
  background-color: var(--theme-medium);
  border-color: var(--theme-medium);
  color: #fff;
}
#comjshop .btn-danger {
  background-color: var(--danger);
  border-color: var(--danger);
  color: #fff;
}
#comjshop .btn-danger:hover {
  background-color: #8c1a14;
  border-color: #8c1a14;
  color: #fff;
}
#comjshop .other_delivery_adress {
  display: none;
}
#comjshop .jshop_register .controls input {
  width: 100%;
}
#comjshop .btn-check:focus + .btn-success,
#comjshop .btn-success:focus,
#comjshop .btn-success:hover {
  background-color: var(--theme-dark);
  border-color: var(--theme-dark);
  color: #fff;
}
.jshop_subtotal .shipping .value:before {
  position: relative;
  content: "£";
}
.jshop .category_description {
  margin-bottom: 16px;
}
/* Products that are Available are hidden with JavaScript. Those that are "Not Available" will display in red*/
.shop .jshop .available {
  color: var(--danger);
}
.shop .introduction {
  margin-top: 16px;
}
#lightbox-image-details-caption {
  font-size: 1rem;
}
#jquery-lightbox {
  top: 160px !important;
}
table.module_cart_total {
  border-top: 1px solid var(--theme-medium);
  margin-top: 16px;
}
.mod_jshopping_cart_ext {
  margin-top: 16px;
}
.summ_product,
.even > .summ, 
.odd > .summ {
  text-align: right;  
}
.product_name .data,
.single_price .data,
.total_price .data {
  margin-top: 10px;
}
span.prod_attr_img img {
  height: 300px;
}
hr.prod-cats {
  border: 1px dotted var(--theme-medium);
}
.shop-important h2 {
  border-bottom: 1px solid var(--theme-dark);
  padding: 0 0 6px;
}
#table_shippings .name:nth-child(2) .shipping_price {
  display: none;
}
#mxcpr a {
  display: none;
}
[role=tooltip]:not(.show) {
  right: 5em;
  z-index: 1070;
  display: none;
  max-width: 100%;
  padding: 0.5em;
  margin: 0.5em;
  color: black;
  text-align: start;
  background: white;
  border: 1px solid #6d757e;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}
[role=tooltip]:not(.show)[id^=editarticle-] {
  right: auto;
  -webkit-margin-start: -10em;
          margin-inline-start: -10em;
}
[role=tooltip]:not(.show)[id^=editcontact-] {
  right: auto;
  -webkit-margin-start: -10em;
          margin-inline-start: -10em;
}
[role=tooltip]:not(.show)[id^=id-skip-] {
  right: auto;
}
[role=tooltip]:not(.show)[id^=cbunpublish] {
  right: auto;
}
:focus + [role=tooltip],
:hover + [role=tooltip] {
  position: absolute;
  display: block;
  z-index: 99999;
}
.wrap-image-left {
  float: left;
  margin: 0 16px 8px 0;
}
.editor-cat-list.fixed #adminForm .btn.btn-primary {
  display: none;
}
.editor-cat-list.fixed .edit.item-page #adminForm .btn.btn-primary {
  display: inline-block;
}
.text-green {
  color: var(--theme-medium);
}
/* EDITOR BUTTONS */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}
#adminForm  {
  border-bottom: 2px solid var(--theme-dark);
  padding: 0 16px 28px;
}
#adminForm .btn-toolbar {
  margin-top: 12px;
  margin-bottom: 16px;
}
#adminForm .btn {
  display: inline-block;
}
#adminForm .editor-xtd-buttons {
  margin-top: 16px;
}
#adminForm .editor-xtd-buttons .btn {
  margin-bottom: 5px;
}
#adminForm .btn.btn-success,
#adminForm .btn.btn-danger,
#adminForm .btn.btn-primary,
#adminForm .btn.btn-secondary {
  color: #353b41;
  background-color: var(--theme-medium);
  line-height: 1.5;
  color: #fff;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  padding: 8px 16px;
  font-size: 1rem;
  border: 1px solid transparent;
  border-color: var(--theme-medium);
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  margin-right: 8px;
}
#adminForm .btn.btn-primary:hover {
  background-color: var(--theme-light);
  color: var(--dark-grey);
}
#adminForm .btn.btn-success,
#adminForm .btn-check:focus + .btn-success, 
#adminForm .btn-success:focus,
#adminForm .btn-success:hover {
  background-color: #3a6f3a;
  color: #fff;
  margin-right: 16px;
  border: 1px solid transparent;
}
#adminForm .btn.btn-secondary {
  background-color: #fff;
  color: var(--theme-dark);
  margin-left: 8px;
}
#adminForm .btn.btn-secondary:focus,
#adminForm .btn.btn-secondary:hover {
  color: var(--dark-grey);
  background-color: var(--light-grey);
}
#adminForm .btn.btn-danger {
  background-color: var(--danger);
  color: #fff;
}
#adminForm .btn.btn-danger:hover {
  background-color: #fff;
  color: var(--danger);
  font-weight: bold;
}
.editor-cat-list #adminForm .btn.btn-primary {
  background-color: var(--theme-medium);
  color: #fff;
}
#adminForm .icon-vcard::before {
  content: "\f2bb";
}
#adminForm button[title='Convert Forms'],
#adminForm button[title='Menu'],
#adminForm button[title='Contact'],
#adminForm button[title='Article'],
#adminForm button[title='Field'],
#adminForm button[title='Media']{
  display: none;
}
#adminForm button.choices__button_joomla {
  margin-left: 16px;
}
#adminForm caption.sr-only {
 display: none;
}
#adminForm .btn-close.novalidate {
  box-sizing: content-box;
  width: 16px;
  height: 16px;
  padding: 4px;
  color: #000;
  background: transparent url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3E%3C/svg%3E") 50%/1em auto no-repeat;
  border: 0;
  border-radius: 4px;
  opacity: .5;
}
/* for Articles Anywhere dialog */
.modal-dialog {
  position: relative;
  width: auto;
  margin: 8px;
  pointer-events: none;
}
.modal-dialog {
  max-width: 500px;
  margin: 28px auto;
}
.modal-dialog.jviewport-width80 {
  width: 80vw;
  max-width: none;
}
.modal.fade .modal-dialog {
  transition: transform .3s ease-out,-webkit-transform .3s ease-out;
}
.modal.show .modal-dialog {
  transform: none;
}
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 5px;
  outline: 0;
}
.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid #dfe3e7;
  border-top-left-radius: calc(.3rem - 1px);
  border-top-right-radius: calc(.3rem - 1px);
}
.modal-header {
  padding: 0 15px;
}
.modal-title {
  font-weight: var(--cassiopeia-font-weight-normal,400);
  line-height: 3rem;
  margin-bottom: 0;
}
.modal-header .btn-close {
  padding: 8px;
  margin: -8px -.8px -.8px auto;
}
.jviewport-height70 {
  height: 70vh;
}
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 16px;
}
.modal iframe {
  width: 100%;
}
[class*="jviewport-height"] iframe {
  height: 100%;
}
iframe {
  border: 0;
}
.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 12px;
  border-top: 1px solid #dfe3e7;
  border-bottom-right-radius: calc(.3rem - 1px);
  border-bottom-left-radius: calc(.3rem - 1px);
}
.modal .fade {
  transition: opacity .15s linear;
}
#adminForm .choices[data-type*="select-one"] .choices__button_joomla {
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  padding: 0;
  margin-top: -10px;
  margin-right: 50px;
  border-radius: 10em;
  opacity: 1;
}
#adminForm .choices__item--selectable {
  cursor: pointer;
}
#adminForm .choices__list--single .choices__item {
  width: 100%;
}
#adminForm .choices[data-type*="select-one"] .choices__item {
  display: flex;
  justify-content: space-between;
}
#adminForm .choices__button_joomla::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  text-align: center;
  text-indent: 0;
  content: "×";
}
#adminForm .choices__button_joomla {
  text-indent: -9999px;
  background: none;
  border: 0;
  appearance: 0;
}
.modal .btn-primary:not([href]),
.modal .btn-primary:not([href]):hover,
.modal .btn-success:not([href]),
.modal .btn-success:not([href]):hover {
  color: #fff;
}
/* ***** MAX WIDTH 300px ***** */
@media only screen and (max-width: 300px) {
  .prev,
  .next,
  .text {
    font-size: 0.85rem;
    color: #fff;
  }
}
/* ***** MAX WIDTH 449.999999px ***** */
@media only screen and (max-width: 449.999999px){
  .fixed-header,
  .fixed-header-inner-one,
  .top-spacer {
    height: 130px;
  }  
  .burger-outer{
    padding: 0;
    height: 12px;
  }
  .burger {
    top: 25%;
  }
  .feature-row,
  .people .blog-item-row,
  .shop .blog-item-row {
    grid-template-columns: repeat( auto-fit, minmax(250px, 1fr) );
  }
}
/* ***** MIN WIDTH 450px ***** */
@media only screen and (min-width: 450px){
  .no-logo {
    display: none;
  }
  .logo-1 {
    display: block;
  }
}
/* ***** MIN WIDTH 576px ***** */
@media only screen and (min-width: 576px){
  .container{
    max-width: 767.999999px;
  }
  .col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .d-sm-none{
  display: none;
  }
  .d-sm-block {
    display: block;
  }
  .d-sm-inline {
    display: inline;
  }
  .d-sm-inline-block {
    display: inline-block;
  }
  .logo-text-1 {
    font-size: 1.25rem;
  }
  #newCarousel .textCopy1,
  #newCarousel .textCopy2 {
    font-size: 1rem;
    line-height: 1.2rem;
  }
  .center.item-image {
    margin-top: 0;
  }
  .fp_side #fp_googleMapSidebar ul.sidebar {
    columns: 2;
}
}
@media (min-width 576px and max-width: 767.999999px) {
  .zoom {
    width: 100% !important;
  }
}
/* ***** MIN WIDTH 768px ***** */
@media only screen and (min-width: 768px){
  .container {
    max-width: 991.999999px;
  }
  .d-md-none{
  display: none;
  }
  .d-md-block {
    display: block;
  }
  .d-md-inline {
    display: inline;
  }
  .d-md-inline-block {
    display: inline-block;
  }
  .col-md {
    flex: 1;
    max-width: 100%;
  }
  .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .w-50 {
    width: 50%;
  }
  .w-25 {
    width: 25%;
  }
  .fixed-header {
    height: auto;
  }
  .fixed-header-inner-one {
    height: 96px;
  }
  .d-md-block .logo-2 {
    display: none;
  }
  .search {
    padding-left: 0;
    margin: 0;
    height: 24px;
    position: relative;
    top: 0;
  }
  .search .mod-finder {
  float: right;
  }
  .search #mod-finder-searchword117,
  .search button .btn-primary {
    display: inline-block;
  }
  .social-header {
    padding-right: 16px;
  }
  .topheader .header-social {
    text-align: right;
    padding-left: 0;
    padding-top: 0;
    width: 100%;
    margin-top: 8px;
  }
  .top-spacer {
    height: 96px;
  }
  .shadowwrapper {
    border-bottom: none;
    min-height: 700px;
    margin: 0 auto 16px;
  }
  .featuretop,
  .featurebottom {
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
  }
  .featuretop>.wrapper,
  .featurebottom>.wrapper {
    flex: 1;
  }
  .contentboth {
    margin-left: 16px;
    margin-right: 16px;
  }
  .contentleft {
    margin-left: 16px;
  }
  .contentright {
    margin-right: 0;
  }
  .childonly .contentright {
    margin-right: 0;
  }
  .item-page.childonly {
    padding-right: 16px;
  }
  .leftsidebar {
    margin-right: 0;
    margin-left: 0; 
    padding: 8px 16px 0;
    background-color: var(--theme-lightest);
  }
  .rightsidebar {
    margin-left: 0;
    margin-right: 0; 
    padding: 8px 16px 0;
    background-color: var(--theme-lightest);
  }
   .col-md:last-child.contentleft {
    padding-right: 0;
  }
  .footer-menu-row {
    columns: 3;
  }
  .blog .blog-item,
  .blog-featured .blog-item {
    padding: 0 16px;
  }
  .blog__item.items-leading {
    padding: 0 0 16px;
}
  .blog .blog-item:only-child,
  .blog .blog-item.col-md-3:first-child,
  .blog-featured .blog-item.col-md-3:first-child,
  .blog .blog-item.col-md-3:nth-child(4n+1),
  .blog .blog-item.col-md-4:first-child,
  .blog-featured .blog-item.col-md-4:first-child,
  .blog .blog-item.col-md-4:nth-child(3n+1),
  .blog-item.col-md-6:first-child,
  .blog .blog-item.col-md-6:nth-child(2n+1) {
    padding-left: 0;
  }
  .blog .blog-item:only-child,
  .blog .blog-item.col-md-3:nth-child(4n),
  .blog-featured .blog-item.col-md-3:nth-child(4n),
  .blog .blog-item.col-md-4:nth-child(3n),
  .blog-featured .blog-item.col-md-4:nth-child(3n),
  .blog .blog-item.col-md-6:nth-child(2n),
  .blog-item.col-md-6:nth-child(2n) {
    padding-right: 0;
  }
  .news .blog-items,
  .diary .blog-items {
    background-color: white;
    display: grid;
    column-gap: 1rem;
    row-gap: 0;
    grid-template-columns: repeat( auto-fit, minmax(310px, 1fr) );
    margin-bottom: 0;
  }
  .news .blog .blog-item,
  .diary .blog .blog-item,
  .diary .blog-featured .blog-item {
    padding: 0;
    margin: 0 0 16px;
    border: 2px solid var(--theme-medium);
  }
  .news .greybox,
  .diary .greybox,
  .diary .blog-featured .greybox {
    border: none;
    padding: 0;
    margin: 0;
  }
  .news .blog .item-content,
  .diary .blog .item-content,
  .featured-content {
    padding: 16px;
  }
  .diary .blog-featured p.readmore {
    padding: 0 0 16px 16px;
  }
  .home .com-content-article__body img {
    margin-top: 0;
  }
  #cf_5.convertforms {
    text-align: center;
    margin: 0 auto;
  }
  .print #cf_5.convertforms {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
  }
  #cf5 {
    text-align: left;
  }
  .fp_side #fp_googleMapSidebar ul.sidebar {
    columns: 1;
  }
}
/* ***** MAX WIDTH 991.999999px ***** */
@media only screen and (max-width: 991.999999px){
  .search .js-finder-search-query.form-control {
    max-width: 118px;
  }
}
/* ***** MIN WIDTH 992px ***** */
@media only screen and (min-width: 992px){
  .container {
    max-width: 1199.999999px;
  }
  .col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .d-lg-none{
  display: none;
  }
  .d-lg-block {
    display: block;
  }
  .d-lg-inline-block {
    display: inline-block;
  }
  .d-lg-inline {
    display: inline;
  }
  .sidenav,
  .sidenav-opened,
  .closenavbtn {
    display: none;
    width: 0;
  }
/* MENU   =================================== */
  .footer [class^="col-"]:first-child,
  [class^="col-"].md-menu-outer:first-child {
    padding-left: 0;
  }
  .footer [class^="col-"]:last-child {
    padding-right: 0;
  }
  .main-menu {
    background-color: transparent;
    padding: 0;
  }
  .mm img {
    position: relative;
    top: 10%;
  }
  .mm span.div-line {
    display: none;
  }
  .mm .menucontent.menu-a {
    position: relative;
    padding: 0;
    margin: 0 auto;
    display: flex;
  }
  .mm .menucontent.menu-a,
  .mm .menucontent.menu-b {
    flex-direction: row;
  }
  .mm .menucontent.menu-b.e-menu {
    flex-direction: column;
  }
  .mm div [class^="ul level"] {
    background-color: #fff;
    margin-bottom: 0;
    padding: 0;
  }
  .mm .li a,
  .mm .li span {
    font-size: 0.9rem;
  }
  .mm div.ul.level-1 {
    position: absolute;
    top: 100%;
    left: 12px;
    margin-top: 0;
    box-shadow: 0 2px 5px #acaaaa;
    padding: 0 8px 8px;
  }
  .mm div.ul.level-2 {
    padding-left: 12px;
  }
  .mm [type="button"] {
    white-space: nowrap;
  }
  .mm .li {
    border-top: none;
  }
  .mm .menu-a > .li:first-child,
  .mm .menu-a > .li:nth-child(2) {
    display: none;
    width: 0;
  }
  .mm div.ul li:not(.top-level):last-child {
    padding-bottom: 8px;
  }
  .mm .li.top-level {
    display: flex;
    align-items: center;
    white-space: normal;
    padding: 0 14px 0;
  }
  .mm .li.top-level:nth-child(3) {
   padding-left: calc(156px + 1rem);
  }
  .mm .li.top-level:last-child > div.ul {
    float: right;
  }
  .mm .li.top-level > a {
    margin: auto;
    padding: 0;
  }
  .mm .li.top-level.active > a {
    font-weight: normal;
    text-decoration: underline;
  }
  .mm .li.top-level > span {
    padding: 9px 0 7px;
  }
  .mm .li.top-level.single.parent > a {
    padding: 8px 0 0 0;
  }
  .mm .li.top-level.single-heading {
    padding-right: 0;
  }
  .mm .li.top-level.single-heading .h-open-icon {
    padding-left: 8px;
    top: 0px;
  }
  .mm li:not(.top-level) {
    padding: 8px 16px;
  }
  .mm .li.separator-line {
    position: relative;
    min-height: unset;
    height: 1rem;
    display: inline-block;
    width: 100%;
    padding: 0 16px;
  }
  .mm .li.separator-line button {
    display: none;
  }
  .mm .li.separator-line a,
  .mm .li.separator-line span {
    display: none;
  }
  .mm .li.separator-line::after {
    position: absolute;
    height: 0;
    top: 60%;
    width: calc(100% - 2rem);
    border-top: 1px solid var(--medium-grey);
    border-bottom: 1px solid var(--light-grey);
    margin: 0 0;
    content: "";
  }
  .mm .li span.christmas-red,
  .mm .li span.christmas-red::after {
    color: red;
  }
  .mm .li a:hover + [type="button"]::after,
  .mm .li [type="button"]:hover::after,
  .mm .li a:hover {
    color: var(--theme-dark);
    transition: none;
  }
  .mm .li.top-level > a + [type="button"]::after,
  .mm .li.top-level > [type="button"]::after,
  .mm .li.top-level > [type="button"] span,
  .mm .li.top-level > a {
    color: #fff;
    transition: none;
  }
  .mm .li.top-level.active > [type="button"] span.h-open-icon,
  .mm [type="button"].opened,
  .mm .li.top-level > a:hover + [type="button"]::after,
  .mm .li.top-level > [type="button"]:hover::after,
  .mm .li.top-level > [type="button"]:hover span,
  .mm .li.top-level > a:hover,
  .mm .li.current > a,
  .mm .li.top-level.active > a {
    color: var(--theme-contrast);
    transition: none;
    text-decoration: none;
    font-weight: normal;
  }
  .mm .li:not(.top-level).current > a,
  .mm .li:not(.top-level).active > a {
  font-weight: bold;
  }
  .mm .menucontent > li:last-child {
    border-bottom: none;
  }
  .mm .li .h-open-icon {
    display: inline;
    font-size: 0.85rem;
    padding: 0 0 0 16px;
  }
  .mm .li.top-level > span.h-open-icon,
  .mm .li[class^="btn-level"] span.h-open-icon {
    display: inline;
    font-size: 16px;
    padding-left: 16px;
  }
  .mm .li div.ul .li button[class^="btn-level"] > .h-open-icon {
    padding-bottom: 12px;
  }
  .mm .li.top-level > button > span.h-open-icon {
    color: #fff;
  }
  .mm .li .linked .h-open-icon,
  .mm .li.top-level .linked > button > span.h-open-icon {
    top: 0;
    padding-bottom: 0;
  }
  .mm .li.top-level .h-open-icon {
    top: 1.5px;
  }
  .mm .li .v-open-icon {
    display: none;
  }
  .mm .li:not(.top-level) button {
    padding-left: 8px;
  }
  .mm .li:not(.top-level) a {
    color: var(--theme-medium);
  }
  .fixed-header-inner-one {
    border-bottom: none;
  }
  .burger-outer {
    padding: 0;
  }
  .logo {
    left: 0;
    padding-top: 16px;
    width: 100%;
  }
  .logo-1 {
    display: none;
  }
  .logo-2 {
    display: block;
    position: relative;
    left: 16px;
  }
  .logo-text-1 {
    display: none;
  }
  .logo-text-2 {
    display: unset;
    position: absolute;
    left: 156px;
    top: 35px;
    font-size: 1.75rem;
    color: #fff;
    font-weight: bold;
  }
  .topheader .mod-custom {
    width: 100%;
  }
  .top-spacer {
    height: 144px;
  }
  .shadowwrapper {
   min-height: 1000px;
  }
  .contentright {
    padding-right: 16px;
  }
  .child .contentright,
  .childonly .contentright {
    padding-right: 0;
  }
  .rightsidebar {
    margin-left: 16px;
  }
  .image-left .blog-item .item-image,
  .image-right .blog-item .item-image {
    flex: 1 0 40%;
  }
  .gallery {
    min-height: 232px;
  }
  .galleryck {
    padding: 0 150px;
  }
  .footer-menu-row {
    columns: 3;
    border-bottom: 1px dotted #fff;
  }
  .footer-menu-box {
    border-bottom: none;
  }
}
/* ***** MIN WIDTH 1200px ***** */
@media only screen and (min-width: 1200px){
  .container {
    max-width: 100%;
  }
    .col-xl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .d-xl-none {
  display: none;
  }
  .d-xl-block {
    display: block;
  }
  .d-xl-inline {
    display: inline;
  }
  .d-xl-inline-block {
    display: inline-block;
  }
  .mm .li a,
  .mm .li span {
    font-size: 1rem;
  }
  .mm .li.top-level {
    display: flex;
    align-items: center;
    white-space: normal;
  }
  .mm .li.top-level:last-child {
    padding: 0 0 0 12px;
  }
  .mm .li.top-level:nth-child(3) {
   padding-left: 156px;
  }
  .mm .li > [type="button"] {
   padding: 0;
  }
  .mm .menu-a > .li.top-level:last-child > button.opened + div.ul {
    position: absolute;
    right: 0;
    display: table;
    z-index: 99;
    margin-right: 0;
    margin-left: auto;
  }
/*  .mm .li.top-level .h-open-icon {
    top: 4px;
  }*/
  .mm .li.top-level.single-heading .h-open-icon {
    top: 1px;
  }
  .md-menu-outer {
    height: 2.75rem;
  }
  .mainmenu-row {
    width: 80%;
    max-width: 1300px; /*1332px; with border */
    padding: 0;
  }
  .row.mainmenu-row {
    margin-left: auto;
    margin-right: auto;
  }
  .fixed-header-inner-one,
  .menu-a {
    width: 80%;
    max-width: 1300px; /*1332px; with border */
    padding: 0;
  }
  .logo,
  .logo-2 {
    left: 0;
  }
  .logo {
    padding-left: 0;
  }
  .social-header {
    padding-right: 0;
  }
  .col-xs.topheader {
    padding-right: 0;
  }
  .topheader {
    margin-top: 0;
  }
  .topheader .mod-custom {
    margin-top: 0;
  }
  .shadowwrapper {
    width: 80%;
    max-width: 1300px; /*1332px; with border */
    padding: 0;
  }
  .footer-wrapper {
    padding: 16px 0 0;
    width: 80%;
    max-width: 1300px;
  }
  .bottom {
    padding: 16px 0;
  }
}
/* ***** MIN WIDTH 1400px ***** */
@media only screen and (min-width: 1400px) {
  .mm .li.top-level {
    padding: 0 16px 0;
  }
  .mm .li a,
  .mm .li span {
    font-size: 1.1rem;
  }
}
/* EDITOR LOGIN */
.mod-login .form-control,
.mod-login .input-group,
#com-users-login__form .form-control,
#com-users-login__form .input-group {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  position: relative;
  margin-bottom: 1rem;
}
.mod-login .form-control.validate-username,
#com-users-login__form .form-control.validate-username {
  width: 100%;
  box-sizing: border-box;
}
.mod-login .input-group > .form-control,
.mod-login .form-control.validate-username,
#com-users-login__form .input-group > .form-control,
#com-users-login__form .form-control.validate-username {
  flex: auto;
}
.mod-login .mod-login__username input,
.mod-login .mod-login__password input,
#com-users-login__form #username,
#com-users-login__form #password {
  border: 1px solid var(--light-grey);
  border-radius: 0.4rem;
  padding: 0.6rem 1rem;
  line-height: 1.5;
  margin-bottom: 0;
}
.mod-login .mod-login__username .input-group-text {
  display: none;
}
.mod-login #password,
#com-users-login__form #password {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.mod-login .input-password-toggle,
#com-users-login__form .input-password-toggle {
  border: 1px solid var(--light-grey);
  border-radius: 0.4rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
  line-height: 1.5;
  margin-left: -1;
  padding: 0rem 1rem;
}
.mod-login .com-users-login__submit .btn.btn-primary,
#com-users-login__form .com-users-login__submit .btn.btn-primary {
  margin: 1rem 0;
  font-size: 1.25rem;
  padding-bottom: 3px;
}
.btn.btn-secondary.plg_system_webauthn_login_button {
  border: 1px solid var(--light-grey);
  border-radius: .25rem;
  line-height: 1.5;
  margin: 1rem 0;
  text-align: center;
  vertical-align: middle;
}
.plg_system_webauthn_login_button svg {
  width: 30px;
  margin: 4px;
  vertical-align: middle;
}
.btn.btn-secondary.plg_system_webauthn_login_button {
    display: none;
}
.lb-outerContainer {
  width: 608px !important;
  height: 608px !important;
}
.lb-outerContainer img.lb-image {
  width: 600px !important;
  height: auto !important;
}
