/* CSS Document */
/* Breakpoint Mixin
Source: http://www.sitepoint.com/sass-mixins-kickstart-project/
*/
/* Usage Example

 @include breakpoint(medium) {
    color: blue;
  }
}
*/
/*! normalize.css v3.0.0 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0; }

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8+, and Opera
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }


body {
  font-size: 16px !important;
  font-family: 'Open Sans', sans-serif !important;
  color: #646464;
  line-height: 1.5 !important; }

p {
  margin-bottom: 10px; }

@font-face {
  font-family: 'aphasiabtroman';
  src: url("fonts/aphasiabtroman-webfont.eot");
  /* IE9 Compat Modes */
  src: url("fonts/aphasiabtroman-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/aphasiabtroman-webfont.woff") format("woff"), url("fonts/aphasiabtroman-webfont.ttf") format("truetype"), url("fonts/aphasiabtroman-webfont.svg#svgFontName") format("svg");
  /* Legacy iOS */ }
h1 {
  font-size: 3.8em;
  font-family: 'AphasiaBtRoman', serif;
  color: #4144B7;
  letter-spacing: -0.03em;
  margin: 0; }

.pagination .pagination-list {
  display: block; }
  .pagination .pagination-list li {
    display: inline-block; }
    .pagination .pagination-list li a {
      background: #bbb;
      padding: 10px;
      margin: 0 5px;
      color: white;
      line-height: 1em;
      display: block;
      text-decoration: none; }
      .pagination .pagination-list li a span {
        line-height: 1em; }
      .pagination .pagination-list li a:hover {
        background: #aaa; }
  .pagination .pagination-list li.disabled a {
    color: #bbb;
    background: #f1f3f4; }
    .pagination .pagination-list li.disabled a:hover {
      background: #f1f3f4; }

html {
  box-sizing: border-box; }

* {
  margin: 0;
  padding: 0; }

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

body {
  width: 100%;
  padding: 0;
  margin: 0;
  background: white !important;
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  justify-content: space-between;
  flex-direction: column; }
  body .body {
    display: block;
    width: 100%; }

nav {
  display: block; }
  nav li {
    display: flex;
    border-right: 1px solid white;
    line-height: inherit;
    justify-content: center; }
    nav li:last-child {
      border-right: none; }
    nav li:first-child {
      padding-left: 0px; }
    nav li a,
    nav li span.mod-menu__heading{
      text-decoration: none;
      color: white;
      position: relative;
      padding: 8px 16px;
      flex-grow: 1;
      font-size: 1.2rem;
      text-align: center;
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      letter-spacing: 0.05rem; }
      nav li a:hover {
        background: white;
        color: #4144B7; }
    nav li.deeper.parent {
      position: relative; }
      nav li.deeper.parent ul {
        position: absolute;
        display: none;
        background: #4144B7 !important;
        z-index: 999;
        top: 100%;
        width: 220px;
        left: 0%; }
        nav li.deeper.parent ul li {
          list-style-type: none;
          display: block;
          border-bottom: 1px solid rgba(255, 255, 255, 0.2);
          border-left: none;
          padding: 0px;
          border-right: none; }
          nav li.deeper.parent ul li:last-child {
            border-bottom: none; }
          nav li.deeper.parent ul li.current a {
            text-decoration: underline; }
          nav li.deeper.parent ul li a {
            color: white;
            background: #4144B7;
            text-align: left;
            width: 100%;
            display: block; }
            nav li.deeper.parent ul li a:hover {
              background: white;
              color: #4144B7; }
          nav li.deeper.parent ul li.deeper.parent {
            position: relative; }
            nav li.deeper.parent ul li.deeper.parent ul {
              position: absolute;
              left: 100%;
              top: 20px;
              display: none;
              width: 150px; }
            nav li.deeper.parent ul li.deeper.parent:hover ul {
              display: block; }
      nav li.deeper.parent:hover ul {
        display: block; }
  nav .active a {
    text-decoration: underline;
    display: inline-block; }

#listings {
  overflow: hidden;
  margin-top: 10px; }
  #listings .pages-links {
    display: none; }
  #listings .lsrow {
    width: 100%;
    float: left;
    margin-right: 10px; }
    #listings .lsrow:nth-child(even) .listing-summary {
      background-color: rgba(236, 197, 111, 0.125); }
    #listings .lsrow .listing-summary {
      background: white;
      margin-bottom: 0px;
      padding: 12px 24px; }
      #listings .lsrow .listing-summary .header {
        border-bottom: 0; }
      #listings .lsrow .listing-summary h3 {
        font-size: 1.25rem;
        font-family: 'Open Sans', sans-serif;
        margin-bottom: 0;
        width: 100%;
        float: none; }
      #listings .lsrow .listing-summary .content {
        display: flex;
        flex-direction: column; }
        #listings .lsrow .listing-summary .content a {
        align-self: center;}
        @media (min-width: 768px) {
          #listings .lsrow .listing-summary .content {
            flex-direction: row; } }
        #listings .lsrow .listing-summary .content .fields .row-fluid {
          display: flex;
          flex-direction: column; }
          #listings .lsrow .listing-summary .content .fields .row-fluid .caption {
            font-family: 'Lato', sans-serif;
            color: #646464; }
            #listings .lsrow .listing-summary .content .fields .row-fluid .caption:after {
              content: ':'; }
      #listings .lsrow .listing-summary .inner_content {
        margin-left: 15px;
        width: 100%; }
        #listings .lsrow .listing-summary .inner_content .content_wrapper {
          display: flex;
          flex-direction: column; }
          @media (min-width: 992px) {
            #listings .lsrow .listing-summary .inner_content .content_wrapper {
              flex-direction: row; } }
          #listings .lsrow .listing-summary .inner_content .content_wrapper .fields {
            width: 60%; }
          #listings .lsrow .listing-summary .inner_content .content_wrapper p.test {
            width: 100%; }
  #listings .pagination {
    float: left; }

#jevents_header ul.actions {
  display: none; }

#eventlist .event_header {
  padding: 5px 10px;
  background: #4144B7;
  color: white;
  font-family: 'aphasiabtroman';
  font-size: 1.75rem; }
#eventlist .event_time {
  font-size: 1.25rem;
  color: #646464; }
  #eventlist .event_time p {
    margin-bottom: 0px; }
#eventlist .event_title a {
  color: #4144B7;
  font-family: 'aphasiabtroman';
  font-size: 1.75rem;
  text-decoration: none; }
#eventlist .event_description {
  font-size: 1.1rem; }

header {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  background: #4144B7;
  min-height: 50px;
  padding: 20px 25px;
  position: initial; }
  @media (min-width: 992px) {
    header {
      padding: 20px 50px; } }
  @media (min-width: 1200px) {
    header {
   /*   position: absolute; */
      z-index: 999;
      top: 1.5%;
      padding: 20px 100px; } }
  @media (min-width: 1600px) {
    header {
      flex-direction: row; } }
  header .custom {
    display: flex;
    flex-direction: row;
    align-items: center; }
    header .logo {
      border: 1px solid white;
      padding: 4px 8px;
      border-radius: 4px;
      width: fit-content;
      max-width: 100%; }
      @media (min-width: 992px) {
        header .custom.logo {
          margin: 0 auto; } }
      header .custom.logo p {
        margin-bottom: 0; }
      header .custom.logo a {
        text-decoration: none;
        display: flex;
        flex-direction: row;
        align-items: center; }
      header .custom.logo img {
        height: 75px; }
        @media (min-width: 992px) {
          header .custom.logo img {
            height: 125px; } }
    header .custom img {
      margin-right: 15px; }
    header .custom h1 {
      font-size: 3.5rem;
      letter-spacing: -0.03em;
      font-family: 'aphasiabtroman';
      color: white;
      font-weight: 100;
      margin-top: -15px;
      margin-bottom: -15px;
      line-height: inherit; }
    header .custom h2 {
      font-size: 1.4rem;
      letter-spacing: -0.03em;
      font-family: 'aphasiabtroman';
      color: white;
      font-weight: 100;
      margin: 0;
      line-height: inherit; }
    header .custom h3 {
      font-family: 'Open Sans', sans-serif;
      font-weight: 400;
      color: white;
      font-size: 0.9rem;
      margin: 0;
      line-height: inherit;
      font-style: italic;
      text-transform: uppercase; }
  header .menu_social_wrapper {
    display: flex;
    margin: 10px 0 0;
    flex-direction: column;
    justify-content: flex-end;
    flex-grow: 1; }
    @media (min-width: 1600px) {
      header .menu_social_wrapper {
        align-items: flex-end;
        margin: 0px; } }
    header .menu_social_wrapper .menu {
      float: none;
      margin: 0 auto; }
      @media (min-width: 1200px) {
        header .menu_social_wrapper .menu {
          width: 99%;
          justify-content: center; } }
      @media (min-width: 1600px) {
        header .menu_social_wrapper .menu {
          width: 99%;
          justify-content: flex-end; } }
    header .menu_social_wrapper .social {
      margin-bottom: 0px; }
      @media (min-width: 992px) {
        header .menu_social_wrapper .social {
          margin-bottom: 10px; } }
      header .menu_social_wrapper .social .custom {
        display: flex;
        flex-direction: column;
        align-items: flex-start; }
        @media (min-width: 992px) {
          header .menu_social_wrapper .social .custom {
            flex-direction: row;
            align-items: center;
            justify-content: center; } }
        header .menu_social_wrapper .social .custom .social_media_icon_holder {
          display: flex;
          flex-direction: row;
          margin-top: 10px; }
          @media (min-width: 992px) {
            header .menu_social_wrapper .social .custom .social_media_icon_holder {
              margin-top: 0px; } }
          header .menu_social_wrapper .social .custom .social_media_icon_holder p {
            margin: 0; }
  header .social_media_icon {
    height: 25px; }
  header [id^=mod_mt_search] {
    display: flex;
    margin: 0;
    position: relative;
    margin-right: 10px; }
    header [id^=mod_mt_search] input {
      padding: 10px;
      font-family: 'Open Sans', sans-serif;
      font-size: 0.95rem;
      width: 75px;
      transition: all 0.2s ease-in-out;
      border: none;
      border-radius: 15px; }
      header [id^=mod_mt_search] input:focus {
        width: 200px;
        border: none; }
      header [id^=mod_mt_search] input:focus-visible {
        outline: none; }
    header [id^=mod_mt_search] button {
      background: transparent;
      border: none;
      position: absolute;
      right: 15px;
      top: 10px;
      padding: 0px; }
      header [id^=mod_mt_search] button img {
        margin-right: 0px;
        height: 20px;
        width: auto; }
    header [id^=mod_mt_search] .control-group {
      display: flex;
      flex-direction: row;
      align-items: center;
      position: relative; }

nav {
  display: block;
  width: 100%;
  max-height: 300px;
  background: #4144B7; }
  nav .nav {
    display: none; }
    @media (min-width: 992px) {
      nav .nav {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-bottom: 0;
        line-height: inherit; } }
  nav .accordeonck {
    height: 0; }
    nav .accordeonck ul li {
      width: 100%; }
    @media (min-width: 992px) {
      nav .accordeonck {
        display: none; } }
    nav .accordeonck #accordeonck94 {
      box-shadow: none !important;
      display: none; }
      nav .accordeonck #accordeonck94 li {
        border: none; }

.menucontrolbox {
  	/* width: 50px;
      text-align: right;
  	padding: 0 20px 10px; */
  display: flex;
  align-items: center; }
  .menucontrolbox svg {
    width: 50px; }
  @media (min-width: 452px) {
    .menucontrolbox {
      /* padding: 0 20px; */
      z-index: 40;
      height: 40px; } }
  @media (min-width: 992px) {
    .menucontrolbox {
      padding: 10px 0;
      text-align: center;
      width: 20%; } }
  @media (min-width: 992px) {
    .menucontrolbox {
      width: 50px;
      display: none; } }

#menucontrol:checked ~ nav {
  display: block;
  position: relative;
  overflow: visible;
  height: auto; }
  #menucontrol:checked ~ nav .accordeonck {
    z-index: 999;
    display: block;
    background: #4144B7;
    border: none;
    height: auto; }
  #menucontrol:checked ~ nav .accordeonck:not(.accordeonck) {
    height: auto;
    position: relative;
    border: none; }
  #menucontrol:checked ~ nav #accordeonck94 {
    display: block;
    border-bottom: 1px dotted #bbb;
    padding: 0;
    box-shadow: none !important; }
  #menucontrol:checked ~ nav li {
    width: 100%;
    display: block;
    position: relative;
    padding: 5px 0; }
    #menucontrol:checked ~ nav li a {
      color: white; }
      #menucontrol:checked ~ nav li a:hover {
        background: white !important;
        color: #4144B7 !important; }
    @media (min-width: 768px) {
      #menucontrol:checked ~ nav li {
        display: inline-block;
        padding: 0; } }
    @media (min-width: 992px) {
      #menucontrol:checked ~ nav li {
        padding: 0 2.5px 0;
        margin-left: 0; } }
  @media (min-width: 992px) {
    #menucontrol:checked ~ nav {
      position: absolute;
      left: calc(3% + 152px);
      width: calc(97% - 152px);
      padding: 11px 10px;
      margin-top: 39px;
      z-index: 40;
      border-bottom: none;
      overflow: hidden; } }
  @media (min-width: 992px) {
    #menucontrol:checked ~ nav {
      position: relative;
      width: auto;
      display: flex;
      margin-top: 14px;
      border-bottom: none;
      height: auto;
      padding: 0;
      right: 0;
      left: 0;
      background: none; } }
  @media (min-width: 1200px) {
    #menucontrol:checked ~ nav {
      margin-top: 30px; } }

.menucontrolbutton {
  margin: 20px 0;
  cursor: pointer;
  /* width:50px; */
  font-size: 1em;
  -webkit-transition: color 0.8s ease;
  -moz-transition: color 0.8s ease;
  -ms-transition: color 0.8s ease;
  -o-transition: color 0.8s ease;
  transition: color 0.8s ease;
  color: #646464; }
  @media (min-width: 768px) {
    .menucontrolbutton:hover, .menucontrolbutton:active, .menucontrolbutton:focus {
      color: white; } }
  .menucontrolbutton svg {
    height: 20px;
    width: 20px;
    margin: 0 10px -3px 0;
    fill: white;
    max-width: inherit; }
  @media (min-width: 992px) {
    .menucontrolbutton {
      color: white; } }

#menucontrol, #menucontrol2 {
  display: none; }

#menucontrol2:checked ~ #sub-aside {
  display: block;
  position: relative;
  overflow: visible;
  height: auto;
  padding: 10px;
  border-top: 5px solid white; }
  #menucontrol2:checked ~ #sub-aside li {
    border-color: white; }
    #menucontrol2:checked ~ #sub-aside li a {
      color: white; }
      @media (min-width: 992px) {
        #menucontrol2:checked ~ #sub-aside li a {
          color: black; } }
    @media (min-width: 992px) {
      #menucontrol2:checked ~ #sub-aside li {
        border-color: black; } }
  @media (min-width: 452px) {
    #menucontrol2:checked ~ #sub-aside {
      padding: 0 10px 0 0; } }
  @media (min-width: 768px) {
    #menucontrol2:checked ~ #sub-aside {
      border-bottom: none;
      overflow: hidden; } }
  @media (min-width: 992px) {
    #menucontrol2:checked ~ #sub-aside {
      border-bottom: none;
      height: auto;
      background: none;
      padding-right: 70px; } }

#menucontrol2 {
  display: none; }

.sector-menu {
  padding: 10px 20px;
  text-align: left; }
  .sector-menu label {
    color: white; }
  @media (min-width: 768px) {
    .sector-menu {
      width: 100%;
      display: none; } }

div[id^="accordeonck"] li.parent > span span.toggler_icon {
  z-index: 9999; }

.hero {
  position: relative; }
  .hero p {
    margin: 0; }

.top {
  display: block;
  width: 100%;
  max-height: 300px;
  background: #eee; }

main {
  display: flex;
  padding: 5px 25px;
 /*  flex-direction: column;  */}
  @media (min-width: 992px) {
    main {
      padding: 20px 100px; } }
  main .left-column {
    width: 100%; }
    @media (min-width: 992px) {
      main .left-column {
        width: 66%; }
        main .left-column.full-width {
          width: 100%; } }
    main .left-column h2 {
      font-size: 3rem;
      font-family: 'aphasiabtroman';
      color: #4144B7;
      font-weight: 100; }
    main .left-column h3 {
      letter-spacing: -0.03em;
      font-family: 'aphasiabtroman';
      font-size: 1.5rem;
      color: #4144B7;
      margin-bottom: 10px; }
    main .left-column ul,
    main .left-column ol {
      margin-left: 20px; }
      main .left-column ul li,
      main .left-column ol li {
        margin-bottom: 10px; }
        main .left-column ul li:last-child,
        main .left-column ol li:last-child {
          margin-bottom: 0px; }
    main .left-column .image_wrapper {
      display: flex;
      flex-direction: column; }
      @media (min-width: 992px) {
        main .left-column .image_wrapper {
          flex-direction: row; } }
      main .left-column .image_wrapper img {
        width: auto;
        margin-right: 10px; }
        main .left-column .image_wrapper img:last-child {
          margin-right: 0px; }
    main .left-column .blog p.no-items {
      text-align: center;
      font-size: 1.1rem; }
    main .left-column .blog .item .blog_item_wrapper .title h3 a {
      text-decoration: none;
      color: #4144B7; }
    main .left-column .blog .item .blog_item_wrapper .content_wrap {
      display: flex;
      flex-direction: column; }
      @media (min-width: 992px) {
        main .left-column .blog .item .blog_item_wrapper .content_wrap {
          flex-direction: row; } }
      @media (min-width: 992px) {
        main .left-column .blog .item .blog_item_wrapper .content_wrap .image {
          width: 20%;
          margin-right: 10px; } }
    main .left-column .member_benefit_btn {
      background: #333;
      padding: 10px 20px;
      display: inline-flex;
      align-items: center;
      color: white;
      text-transform: uppercase;
      font-size: 1.3rem;
      text-decoration: none;
      font-family: 'Lato', sans-serif;
      font-weight: 300; }
      main .left-column .member_benefit_btn img {
        margin-right: 10px; }
      main .left-column .member_benefit_btn span.benefits {
        font-style: italic;
        font-weight: 900;
        margin-left: 5px; }

        .next_event a {
            color:#FFF;
        }

        .next_event a:hover {
            color:#ECC56F;
        }


    main .left-column .next_event {
      background: #4144B7;
      color: white;
      padding: 10px 25px;
      margin: 15px 0px; }
      main .left-column .next_event h3 {
        color: white;
        margin-bottom: 0px; }
      main .left-column .next_event tr {
        border-bottom: 0; }
      main .left-column .next_event .upcoming_event {
        display: flex;
        flex-direction: column;
        align-items: center; }
        @media (min-width: 992px) {
          main .left-column .next_event .upcoming_event {
            flex-direction: row; } }
        main .left-column .next_event .upcoming_event .event_date_holder {
          margin-right: 50px; }
          main .left-column .next_event .upcoming_event .event_date_holder .event_day {
            background: white;
            padding: 4px 10px;
            font-size: 1.25rem;
            font-weight: bold;
            color: #4144B7;
            margin-bottom: 2px;
            text-align: center; }
            main .left-column .next_event .upcoming_event .event_date_holder .event_day .mod_events_latest_date {
              line-height: 1;
              vertical-align: middle; }
          main .left-column .next_event .upcoming_event .event_date_holder .event_month {
            background: white;
            padding: 4px 10px;
            font-size: 1.25rem;
            font-weight: bold;
            color: #4144B7;
            margin-top: 2px; }
            main .left-column .next_event .upcoming_event .event_date_holder .event_month .mod_events_latest_date {
              line-height: 1;
              vertical-align: middle; }
        main .left-column .next_event .upcoming_event .next_event_text h3 {
          font-size: 3rem;
          text-transform: uppercase;
          font-weight: 100; }
        main .left-column .next_event .upcoming_event .content_holder {
          margin-left: 50px; }
          main .left-column .next_event .upcoming_event .content_holder .mod_events_latest_date {
            line-height: 1;
            vertical-align: middle;
            margin-top: 7px;
            font-size: 0.9rem; }
          main .left-column .next_event .upcoming_event .content_holder .event_title {
            display: flex;
            flex-direction: row;
            align-items: center; }
            main .left-column .next_event .upcoming_event .content_holder .event_title h3 {
              margin-right: 15px; }
            main .left-column .next_event .upcoming_event .content_holder .event_title a {
              text-decoration: none;
              color: white;
              font-family: 'Lato', sans-serif;
              font-weight: 400; }
    main .left-column .social_media {
      display: flex;
      flex-direction: column; }
      @media (min-width: 992px) {
        main .left-column .social_media {
          flex-direction: row;
          justify-content: space-evenly; } }
      main .left-column .social_media .facebook_widget {
        max-width: 500px;
        width: 100%; }
      main .left-column .social_media .moduletable {
        width: 100%; }
        @media (min-width: 992px) {
          main .left-column .social_media .moduletable {
            width: 33%; } }
        main .left-column .social_media .moduletable .custom.information {
          display: none;
          flex-direction: column;
          justify-content: space-between;
          height: 100%;
          text-align: center;
          font-size: 1.2rem; }
          @media (min-width: 992px) {
            main .left-column .social_media .moduletable .custom.information {
              display: flex; } }
          main .left-column .social_media .moduletable .custom.information .facebook_title {
            text-align: left;
            font-size: 1.7rem;
            color: #4144B7;
            margin-top: 30px; }
          main .left-column .social_media .moduletable .custom.information .twitter_title {
            text-align: right;
            font-size: 1.7rem;
            color: #4144B7;
            margin-bottom: 30px; }
    main .left-column #listing {
      display: flex;
      flex-direction: column; }
      main .left-column #listing .first {
        width: 100%; }
      main .left-column #listing .second {
        width: 100%; }
      @media (min-width: 992px) {
        main .left-column #listing {
          flex-direction: row; }
          main .left-column #listing .first {
            width: 60%; }
          main .left-column #listing .second {
            width: 40%; } }
    main .left-column #index h1 {
      font-family: 'aphasiabtroman';
      color: #4144B7;
      font-size: 3rem;
      font-weight: 100; }
  main .right-column {
    width: 100%;
    display: flex;
    justify-content: flex-end; }
    @media (min-width: 992px) {
      main .right-column {
        width: 33%; } }
  main #system-message-container #system-message {
    padding: 10px 20px; }
    main #system-message-container #system-message .alert {
      display: flex;
      align-items: center;
      padding: 10px;
      border: 1px solid #999;
      border-radius: 10px;
      background: lavender;
      margin-bottom: 5px;
        
    }
      main #system-message-container #system-message .alert .close,
      main #system-message-container #system-message .alert .alert-heading {
        margin-right: 10px; }
  @media (min-width: 768px) {
    main .section {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      width: 100%; }
      main .section .item {
        width: 48%; } }
  @media (min-width: 992px) {
    main .section .item {
      width: 30%; } }
  main img {
  /*  width: 100%; */
    height: auto; }
  @media (min-width: 992px) {
    main .side {
      width: 30%;
      margin-left: 20px;
      float: right; }
      main .side h3 {
        margin-top: 0; } }
  main .img-fulltext-none {
    display: inline-block; }
  main .img-fulltext-left {
    float: left;
    display: block; }
  main .img-fulltext-right {
    float: right;
    display: block; }

.bottom {
  display: block;
  width: 100%;
  padding: 15px 0px; }
  .bottom .creativecontactform_wrapper {
    width: 100% !important; }
    @media (min-width: 992px) {
      .bottom .creativecontactform_wrapper {
        width: 75% !important; } }
    @media (min-width: 1200px) {
      .bottom .creativecontactform_wrapper {
        width: 50% !important; } }
  @media (min-width: 992px) {
    .bottom .social {
      width: 50%;
      float: left; } }
  .bottom .member-spotlight .member_focus {
    display: flex;
    flex-direction: column;
    background: #4144B7;
    padding: 10px 25px; }
    @media (min-width: 992px) {
      .bottom .member-spotlight .member_focus {
        flex-direction: row; } }
    .bottom .member-spotlight .member_focus .image {
      width: 25%; }
      @media (min-width: 992px) {
        .bottom .member-spotlight .member_focus .image {
          margin-right: 25px; } }
    .bottom .member-spotlight .member_focus .content {
      width: 100%;
      color: white; }
      @media (min-width: 992px) {
        .bottom .member-spotlight .member_focus .content {
          width: 80%; } }
      .bottom .member-spotlight .member_focus .content .title {
        background: #4144B7;
        font-family: 'aphasiabtroman';
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-bottom: 10px; }
        .bottom .member-spotlight .member_focus .content .title img {
          width: 75px;
          margin-right: 20px; }
        .bottom .member-spotlight .member_focus .content .title h3 {
          margin: 0px;
          color: white;
          font-size: 2.75rem;
          font-weight: 100;
          text-transform: uppercase; }
      .bottom .member-spotlight .member_focus .content .read_more_btn {
        margin-top: 25px; }
        .bottom .member-spotlight .member_focus .content .read_more_btn a {
          display: inline-block;
          padding: 5px 10px;
          background: white;
          color: #333;
          font-family: 'Lato', sans-serif;
          text-transform: uppercase;
          font-size: 1rem; }
      .bottom .member-spotlight .member_focus .content a {
        display: block;
        color: white;
        font-family: 'Lato', sans-serif;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.2rem; }

.anseve_form fieldset {
  border: none; }
  .anseve_form fieldset input, .anseve_form fieldset textarea {
    width: 50%;
    margin: 5px 0;
    border: 1px dotted #ccc;
    padding: 5px 10px;
    line-height: 1em; }
  .anseve_form fieldset button {
    display: block;
    background: #f1f3f4;
    border: 1px dotted #ccc;
    padding: 5px; }
    @media (min-width: 992px) {
      .anseve_form fieldset button {
        width: 30%;
        margin: 0;
        margin-left: auto; } }

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  .gallery .jg_row .jg_photo {
    border: none; }
  @media (min-width: 452px) {
    .gallery .jg_row {
      width: 48%; } }
  @media (min-width: 992px) {
    .gallery .jg_row {
      width: 30%; } }
  @media (min-width: 992px) {
    .gallery .jg_row:last-child:nth-child(2), .gallery .jg_row:last-child:nth-child(5), .gallery .jg_row:last-child:nth-child(8) {
      margin: 0 auto 0 5%; } }
  .gallery .jg_back, .gallery .jg_category, .gallery .pagination {
    width: 100%; }

#adminForm {
  width: 100%; }
  #adminForm .tab-content #editor {
    margin-top: 25px; }
  #adminForm .tab-content #images {
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 15px 0;
    width: 100%; }
    #adminForm .tab-content #images .control-group {
      width: 100%; }
    @media (min-width: 992px) {
      #adminForm .tab-content #images .control-group {
        width: 20%;
        padding: 10px 0; }
        #adminForm .tab-content #images .control-group .inputbox {
          width: 100%; }
        #adminForm .tab-content #images .control-group .media-preview {
          width: 30px; }
        #adminForm .tab-content #images .control-group #jform_images_image_intro, #adminForm .tab-content #images .control-group #jform_images_image_fulltext {
          width: calc(100% - 120px); }
        #adminForm .tab-content #images .control-group .input-prepend {
          display: flex;
          flex-wrap: wrap; }
          #adminForm .tab-content #images .control-group .input-prepend .btn {
            margin-left: 5px; }
        #adminForm .tab-content #images .control-group .control-label {
          padding-bottom: 5px; }
      #adminForm .tab-content #images .control-group:first-child, #adminForm .tab-content #images .control-group:nth-child(5) {
        width: 32%; } }
  #adminForm .tab-content #publishing {
    display: none;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 10px; }
    #adminForm .tab-content #publishing .control-group {
      width: 100%; }
    @media (min-width: 992px) {
      #adminForm .tab-content #publishing .control-group {
        width: 20%; }
      #adminForm .tab-content #publishing .control-group:first-child {
        width: 32%; } }
  #adminForm .tab-content #metadata {
    display: none;
    justify-content: space-between;
    padding-top: 10px; }
    #adminForm .tab-content #metadata .control-group {
      width: 48%; }
      #adminForm .tab-content #metadata .control-group textarea {
        width: 100%; }
  #adminForm .tab-content #attrib-fields-0 {
    display: none; }
  #adminForm .tab-content a:not(.tab-pane a) {
    color: white;
    display: inline-block; }
  #adminForm .tab-content select {
    width: 100%; }
  #adminForm fieldset {
    padding: 30px;
    border: none; }
  #adminForm .btn-toolbar {
    margin: 25px;
    display: block;
    padding-left: 30px;
    position: relative; }
    #adminForm .btn-toolbar .btn-group {
      width: auto;
      display: inline-block;
      margin: 0 auto 0 0 !important; }
      #adminForm .btn-toolbar .btn-group button {
        border: none;
        background: #6e6f72;
        padding: 10px;
        color: white; }
        #adminForm .btn-toolbar .btn-group button i {
          color: white; }
        #adminForm .btn-toolbar .btn-group button:hover {
          background: #184885; }
        #adminForm .btn-toolbar .btn-group button span {
          margin-right: 10px; }
    #adminForm .btn-toolbar .btn-group:nth-child(3) {
      display: block; }
  #adminForm .chzn-single {
    border: 1px solid #6e6f72;
    padding: 5px 10px;
    background: white !important;
    border-radius: 0 !important;
    height: 33px;
    border-radius: 0;
    width: 200px; }
    #adminForm .chzn-single div b {
      margin-top: 5px; }
  #adminForm .chzn-drop {
    width: 200px; }
  #adminForm .chzn-results {
    padding-left: 0 !important; }
    #adminForm .chzn-results .active-result {
      font-size: 16px !important; }
  #adminForm #filter-bar {
    display: flex;
    justify-content: space-between;
    width: 100%; }
    #adminForm #filter-bar .btn-group {
      width: inherit; }
  #adminForm .pagination li {
    display: inline-block; }

.jg_userpanelview {
  width: 100%; }
  .jg_userpanelview .jg-quick-edit-row .row-fluid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    .jg_userpanelview .jg-quick-edit-row .row-fluid .span3 {
      width: 175px; }
      .jg_userpanelview .jg-quick-edit-row .row-fluid .span3 .img-polaroid {
        margin: 20px; }
      .jg_userpanelview .jg-quick-edit-row .row-fluid .span3 a {
        margin: 20px;
        display: block; }
        .jg_userpanelview .jg-quick-edit-row .row-fluid .span3 a .img-polaroid {
          margin: 0; }
    .jg_userpanelview .jg-quick-edit-row .row-fluid .span9 {
      width: calc(100% - 175px);
      margin-top: 20px; }
      .jg_userpanelview .jg-quick-edit-row .row-fluid .span9 label, .jg_userpanelview .jg-quick-edit-row .row-fluid .span9 .jg-editor-wrapper {
        width: 100%; }
      .jg_userpanelview .jg-quick-edit-row .row-fluid .span9 .span3, .jg_userpanelview .jg-quick-edit-row .row-fluid .span9 .span9 {
        margin: 5px 0; }
        .jg_userpanelview .jg-quick-edit-row .row-fluid .span9 .span3 input, .jg_userpanelview .jg-quick-edit-row .row-fluid .span9 .span9 input {
          width: 100%; }
  .jg_userpanelview .jg_up_head .btn-group {
    display: flex;
    flex-direction: row; }

[id^="jg-title-row"] td {
  width: 10%; }
[id^="jg-title-row"] td:first-child {
  width: 2%; }
[id^="jg-title-row"] td:nth-child(2) {
  width: 11%; }
[id^="jg-title-row"] td:nth-child(3) {
  width: 4%; }
[id^="jg-title-row"] td:nth-child(4) {
  width: 45%; }
[id^="jg-title-row"] td:nth-child(5) {
  width: 20%; }
[id^="jg-title-row"] td:nth-child(6) {
  width: 20%; }
  [id^="jg-title-row"] td:nth-child(6) .pull-left {
    width: 30px;
    display: inline-block; }

#imageList thead th {
  width: 10%; }
#imageList thead th:first-child {
  width: 2%; }
#imageList thead th:nth-child(2) {
  width: 11%;
  text-align: left; }
#imageList thead th:nth-child(3) {
  width: 4%; }
#imageList thead th:nth-child(4) {
  width: 45%;
  text-align: left; }
#imageList thead th:nth-child(5) {
  width: 20%;
  text-align: left; }
#imageList thead th:nth-child(6) {
  width: 10%;
  text-align: left; }

#editor .span6 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 10px; }
#editor #jform_title {
  width: 45%; }

#jform_publish_up, #jform_publish_down {
  width: calc(100% - 40px); }

.icon-cog {
  display: none; }
  .icon-cog:before {
    display: none; }

.dropdown-menu {
  list-style-type: none;
  padding-left: 0 !important; }
  .dropdown-menu .edit-icon span {
    margin-right: 15px; }

#versionsModal {
  width: 100%; }

#editor-xtd-buttons {
  width: 100%; }

.mceLayout, .wf-editor-container {
  width: 100% !important; }

#jform_articletext {
  width: 100% !important; }

#editor-xtd-buttons {
  margin: 5px;
  padding-left: 0 !important;
  margin-left: 0px !important;}
  #editor-xtd-buttons a {
    background: #184885;
    padding: 10px;
    color: white !important;
    margin-right: 5px;
    text-decoration: none; }
    #editor-xtd-buttons a:hover {
      background: #6e6f72; }
    #editor-xtd-buttons a:not(:last-child) {
        display: none; }

.edit-icon {
  margin-left: 0 !important;
  list-style: none;
  margin: 10px 0px; }
  .edit-icon:before {
    display: none; }

.wf-editor-tabs li {
  margin-left: 0 !important; }
  .wf-editor-tabs li:before {
    display: none; }

.tab-content .tab-pane:not(#editor) a {
  color: #6e6f72;
  text-decoration: none; }
  .tab-content .tab-pane:not(#editor) a:hover {
    color: #185885; }

.nav-tabs {
  display: block;
  padding: 0;
  margin-left: 0px !important; }
  .nav-tabs li {
    display: inline-block;
    padding: 0 5px; }
    .nav-tabs li a {
      background: #184885;
      color: white;
      padding: 10px;
      text-decoration: none; }
      .nav-tabs li a:hover {
        background: #6e6f72; }
  .nav-tabs .active a {
    background: #f7c116; }

.media-preview {
  display: none; }

.gallery #imageList {
  display: block;
  width: 100%; }
  .gallery #imageList thead {
    background: #184885;
    color: white;
    padding: 5px;
    display: block; }
    .gallery #imageList thead a {
      color: white;
      text-decoration: none; }

.cms {
  z-index: 9999;
  padding: 15px 30px;
  background: #646464;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 0; }
  .cms .nav {
    display: block;
    list-style-type: none;
    margin-bottom: 0; }
    .cms .nav li {
      display: inline-block; }
      .cms .nav li a {
        padding: 0 10px;
        border-left: 2px solid #eee;
        text-decoration: none;
        color: #eee; }
        .cms .nav li a:hover {
          color: #c8c8c8; }
    .cms .nav li:first-child a {
      border-left: none;
      padding-left: 0; }

form fieldset {
  border: 1px solid #4144B7;
  margin-bottom: 10px;}
form input[type="text"],
form input[type="password"],
form button {
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid #CCC;
 /* margin-bottom: 10px; */
    
}

footer {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 100px;
  max-height: 300px;
  background: #333;
  color: white;
  padding: 10px 20px; }
  @media (min-width: 992px) {
    footer {
      flex-direction: row; } }
  @media (min-width: 992px) {
    footer {
      padding: 25px 100px; } }
  footer .custom {
    width: 100%; }
    @media (min-width: 992px) {
      footer .custom {
        width: 50%; } }
    footer .custom .icon_holder {
      display: flex; }
      footer .custom .icon_holder img {
        height: 25px;
        width: auto;
        margin-right: 10px; }
        footer .custom .icon_holder img:last-child {
          margin-right: 0px; }
  footer p {
    margin-bottom: 0px;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.7); }
  footer a {
    text-decoration: none;
    color: #ECC56F; }
  footer ul {
    list-style-type: none;
    width: 100%; }
    @media (min-width: 992px) {
      footer ul {
        width: 50%; } }
    footer ul li {
      margin-bottom: 10px;
      line-height: inherit; }
      footer ul li:last-child {
        margin-bottom: 0px; }
      footer ul li a {
        color: #ECC56F;
        text-decoration: none; }
        footer ul li a.with-image {
          display: flex;
          flex-direction: row; }
          footer ul li a.with-image img {
            margin-right: 5px; }

/*# sourceMappingURL=style.css.map */

#jevents_body {
  border: none !important;
  background-color: transparent !important;
}
#jevents_body .new-navigation {
  display: none;
}
#jevents_body .jev_evdt .jev_evdt_hits,
#jevents_body .jev_evdt .jev_evdt_creator {
  display: none;
}

.bottom .member-spotlight .member_focus .image {
	display: flex;
	justify-content: center;
	align-items: center;
}
@media screen and (min-width: 992px) {
	.bottom .member-spotlight .member_focus .image img {
		width: initial;
		margin: 0 auto;
		display: block;
	}
}

main .left-column #listing .second img {
	width: initial;
}

.blog.committee {
  display: flex;
  flex-flow: row wrap;
  margin-top: 10px;
}
.blog.committee .item {
  width: 100%;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  text-align: center;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  padding: 5px 10px;
}
@media screen and (min-width: 768px) {
  .blog.committee .item {
    width: 50%;
  }
}
@media screen and (min-width: 992px) {
  .blog.committee .item {
    width: 33%;
  }
}
@media screen and (min-width: 1200px) {
  .blog.committee .item {
    width: 25%;
  }
}
.blog.committee .committee_item_wrapper .image {
  width: 200px;
  margin: 0 auto;
  display: block;
}
.blog.committee .committee_item_wrapper .image img {
  border-radius: 50%;
}
@media (max-width: 992px) {
    header .menu_social_wrapper .menu {
        margin: 0;
    }
}

[id^="accordeonck"] {
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0px !important;
}

[id^="accordeonck"] li a {
    margin: 0;
    text-align: left;
    color: white !important;
}

.acyheader {
    margin-left: 0px !important;
    padding-left: 0px !important;
    line-height: 1.5 !important;
    color: #4144B7 !important;
}
.acyheader h1 {
    margin: 0;
    font-size: 2.5rem;
}

#editor .mceBranding {
    display: none !important;
}

#jevents fieldset legend.ev_fieldset {
    display: none;
}

.ev_adminpanel form {
    display: none;
}

.ev_adminpanel div.nav_bar_cell {
    background: none;
}

.ev_adminpanel div.nav_bar_cell a {
    color: #4144B7;
    text-decoration: none;
    font-size: 1.2rem;
}

header#top-head {
    padding: 0px 0px 20px 0px !important;
    background: none !important;
    color: white;
}

.wf-editor-tabs {
    display: none !important;
}

#jform_alias-lbl,
#jform_alias {
    display: none;
}

div#input_35 img {
    width: auto;
}

ul#tagul {
    display: none;
}

div[id^="attach_"] img {
    width: auto;
}

main div[class^="img-fulltext"] {
	float: none;
	width: 33%;
}

div#editor_body_tbl .mceBranding{
    display: none;
}

.listing-summary .content .image_holder {
	width: 250px;
	display: flex;
}

.listing-summary .content .image_holder img {
	width: auto !important;
	height: auto;
}

.mceBranding {
    display: none !important;
}

select#filter_creator {
    display: none;
}

div#mail_receivers {
    display: block;
    margin-top: 35px;
}

div#mail_receivers .acy_filter_mail {
    display: none;
}

span.acystatsbutton a img {
    width: 16px;
}
ul#statistics_tab #statistics_clickoverview_tabli {
    display: none;
}

/* Blog styles */
.blog{
  .blog-items{
    display: flex;
    flex-direction: column;
    gap:20px;
    .blog-item{
      border-bottom: 1px solid rgba(0, 149, 255, 0.639);
      padding-bottom: 20px;
      .title .label-warning{
        display: none;
      }
      .blog_item_wrapper .content_wrap {
        display: flex;
        flex-direction: column;
        @media (min-width: 768px) {
          flex-direction: row;
        }
       .image{
          width: 100%;
          flex: 1;
        }
        .content{
          flex: 2;
        }
      }
    }
    .blog-item:last-child{
      border-bottom: none;
    }
  }
  .nav-tabs li a{
    display: inline-block;
  }
} 
.pagination{
  display: flex;
  .fa-angle-right, .fa-angle-left,
  .fa-angle-double-right, .fa-angle-double-left{
    font-family: "Font Awesome 5 Free";
  }
}
.bottom .member_focus {
  display: flex;
  flex-direction: row;
  background: #4144B7;
  padding: 10px 25px;
  .image {
    width: 25%;
    max-height: 200px;
    img{
      width: auto;
    }
  }
  .content{
    width: 80%;
    color: #fff;
    a{
      color: #fff;
    }
    .title{
      display:flex;
      color: #fff;
      h3{color:#fff;}
      img{
        width: 75px;
        margin-right: 20px;
      }
    }
  }
}

.social_media > div{
  width:100%;
  @media (min-width: 992px) {
    width: 33%;
  }
}

#mtFormAllListings .mt-listings .mt-listings-flyout-btn-container{
  display: none;
}

header #mod-custom96{
  display: flex;
  flex-direction: column;
  @media(min-width: 410px){
    flex-direction: row;
  }
}

/*Mobile nav*/
@media only screen and (max-width: 990px) {
  #mobilemenuck-1-mobile-bar, #mobilemenuck-1-mobile-bar-wrap-topfixed {
    display: block!important;
    flex: 1;
  }
}

#mobilemenuck-1-mobile .mobilemenuck-item > .level1{
  background:#4144B7;
  margin: 1px;
  border-radius: 0;
}

[data-id="mobilemenuck-1"] .mobilemenuck-bar-title,
[data-id="mobilemenuck-1"] .mobilemenuck-title
{
  background:#1f18ae !important;
}

[data-id="mobilemenuck-1"] .mobilemenuck-bar-button{
  background:#171276 !important;
}

[data-id="mobilemenuck-1"].mobilemenuck{
  background: #fff !important;
  padding-bottom: 0 !important;
  a{
    font-weight: normal !important;
  }
}

/* Events page timeline */

main .eb-event-container img,
main .eb-event-image-modal img.img_preview,
main .eb-event-large-image{
  width: auto;
}

main .left-column .eb-event-container{
  padding-top: 20px;
}

main .left-column .eb-event-date-info{
  margin: 10px auto;
}

main .left-column #eb-upcoming-events-page-timeline .bg-primary{
 /* border-radius: 5px; */
}

main .left-column #eb-upcoming-events-page-timeline .eb-event-date-container .bg-primary{
  border-radius: inherit;
}

main .left-column .eb-even-title-container{
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  font-weight: bold;
  a,a:visited,a:hover{
    color: #4144B7;
    text-decoration: none;
  }
}

#eb-upcoming-events-page-timeline .bg-primary,
#eb-upcoming-events-page-timeline .btn-primary{
  background: #4144B7;
  border: none;
}

#eb-upcoming-events-page-timeline .btn.btn-primary{
  background: green;
  border: none;
  &:hover{
    background: #404391;
  }
} 

.btn{
  border-radius: 5px;
  color: #fff;
  padding: 5px 10px;
  background: #4144B7;
  border: none;
  &:hover{
    background: #404391;
  }
}

.eb-event-price-container .eb-individual-price{
  padding: 0 10px!important;
}

#eb-upcoming-events-page-timeline .btn.btn-secondary {
  background: #999;
  border-color: #999;
  color: #fff;
  &:hover{
    background: #888;
  }
}

#eb-upcoming-events-page-timeline .eb-event-date{
  height: 70px;
  width: 70px;
}

.eb-events-timeline .eb-taskbar {
  padding: 20px 20px 20px 0;
  border-bottom: 2px dotted #a5a5a5 !important;
  > ul {
    display: inline-flex;
  }
}


#eb-individual-registration-page{
  .form-actions{
    text-align: center;
  }
    input[type="submit"],
    .eb-individual-registration-button{
    background:green;
    text-align: center;  
    font-weight: bold;
    font-size: 1.2em;
    padding: 10px 20px;
    border: 0;
  } 
}

table.sc{
  th,td{
    padding: 5px;
    border: 1px solid #999;
  th{
    background: lightblue;
  }
  }
}

/* ACYMailing Frontend */
.frontcampaigns_campaigns ul.tabs,
#acym_wrapper button[data-task="newEmail"]{
    display: none;
}

/* CMS Menu children */
li.nav-item.deeper.parent ul{
  display: none;
}

li.nav-item.deeper.parent ul.show-menu{
  display: block;
  position:absolute;
  background: gray;
  padding: 10px;
}

:root .btn-primary{
    --bs-btn-bg: #4144b7 !important;
}

joomla-tab#event button[aria-expanded="true"]::after{
  background-color: #4144b7;
}

joomla-tab#event > joomla-tab-element[name="Ticket Types"] > .control-group{
  display: none;
}

.choices__list--multiple .choices__item{
    border-radius: 0 !important;
    border: none !important;
    background-color: #8e8e8e !important;
    button{
        margin:3px !important;
        background-color: #dc3545;
    }
}
    
:root .btn{
   --bs-btn-border-radius: 0;
}

#eb-amount-container #total_amount{
    order: 2;
    margin-bottom: 0;
}

#eb-amount-container .input-group-text{
    border-radius: 0;
}

.sid-regbut .eb-register-button{
    background:green;
    text-align: center;  
    font-weight: bold;
    font-size: 1.2em;
    padding: 10px 20px;
    border: none;
}

@media (min-width: 482px) {
    .sq-card-iframe-container{
      height: 50px !important;
    }
}
