figure.speaker {
  float: left;
  position: relative;
  width: 100%;
  margin: 0;
}

figure.speaker img {
  max-width: 100%;
  display: block;
  position: relative;
}

figure.speaker figcaption.spkr {
  position: relative;
  /*top: 0;*/
  right: 0px;
  padding: 0px;
  background-color: rgb(242, 242, 242);
  -webkit-transition: background-color 0.2s ease;
  -moz-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  color: #000000;
}

figure.speaker:hover figcaption.spkr {
  -webkit-transition: background-color 0.2s ease;
  -moz-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  background-color: rgb(255, 185, 0);
}

figcaption.spkr h3 {
  margin: 0;
  padding: 0;
  color: #000000;
  font-size: 20px;
}

/*figcaption span:before {
	content: 'by ';
}*/

figcaption.spkr a {
  text-align: center;
  padding: 5px 10px;
  display: inline-block;
  background: #ed4e6e;
  color: #fff;
}

.cs-style-1 figcaption.spkr {
}

.no-touch .cs-style-1 figure.speaker:hover figcaption.spkr,
.cs-style-1 figure.speaker.cs-hover figcaption.spkr {
  opacity: 1;
  /*	-webkit-transform: translate(0px, -15px);
	-moz-transform: translate(0px, -15px);
	-ms-transform: translate(0px, -15px);
	transform: translate(0px, -15px);*/
}

.cs-style-1 figcaption.spkr h3 {
}

.cs-style-1 figcaption span {
  display: block;
}

.cs-style-1 figcaption a {
}

/*filter*/

/* -------------------------------- 

Main Components 

-------------------------------- */
.cd-header {
  position: relative;
  height: 150px;
  background-color: #331d35;
}
.cd-header h1 {
  color: #ffffff;
  line-height: 150px;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 300;
}
@media only screen and (min-width: 1170px) {
  .cd-header {
    height: 180px;
  }
  .cd-header h1 {
    line-height: 180px;
  }
}

.cd-main-filter {
  position: relative;
  text-align: left;
}
.cd-main-filter:after {
  content: '';
  display: table;
  clear: both;
}
.cd-main-filter.is-fixed .cd-tab-filter-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.cd-main-filter.is-fixed .cd-gallery-news {
  padding-top: 76px;
}
.cd-main-filter.is-fixed .cd-filter-news {
  position: fixed;
  height: 100vh;
  overflow: hidden;
}
.cd-main-filter.is-fixed .cd-filter-news form {
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.cd-main-filter.is-fixed .cd-filter-news-trigger {
  position: fixed;
}
@media only screen and (min-width: 768px) {
  .cd-main-filter.is-fixed .cd-gallery-news {
    padding-top: 90px;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-main-filter.is-fixed .cd-gallery-news {
    padding-top: 100px;
  }
}

/* -------------------------------- 

xtab-filter 

-------------------------------- */
.cd-tab-filter-wrapper {
  z-index: 1;
  display: inline-block;
  float: left;
}
.cd-tab-filter-wrapper:after {
  content: '';
  display: table;
  clear: both;
}

.cd-tab-filter {
  /* tabbed navigation style on mobile - dropdown */
  position: relative;
  height: 50px;
  width: 140px;
  margin: 0 auto;
  z-index: 1;
}
.cd-tab-filter::after {
  /* small arrow icon */
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('../img/cd-icon-arrow.svg') no-repeat center center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
}
.cd-tab-filter ul {
  position: absolute;
  top: 0;
  left: 0;
}
.cd-tab-filter li {
  display: none;
}
.cd-tab-filter li:first-child {
  /* this way the placehodler is alway visible */
  display: block;
}
.cd-tab-filter a {
  display: block;
  /* set same size of the .cd-tab-filter */
  height: 50px;
  width: 140px;
  line-height: 50px;
  padding-left: 14px;
}
.cd-tab-filter a.selected {
  background: #41307c;
  color: #ffffff;
}
.cd-tab-filter.is-open::after {
  /* small arrow rotation */
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -moz-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  -o-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}
.cd-tab-filter.is-open ul {
  box-shadow: inset 0 -2px 0 #41307c, 0 2px 10px rgba(0, 0, 0, 0.2);
}
.cd-tab-filter.is-open ul li {
  display: block;
}
.cd-tab-filter.is-open .placeholder a {
  /* reduces the opacity of the placeholder on mobile when the menu is open */
  opacity: 0.4;
}
@media only screen and (min-width: 768px) {
  .cd-tab-filter {
    /* tabbed navigation style on medium devices */
    width: auto;
    cursor: auto;
  }
  .cd-tab-filter::after {
    /* hide the arrow */
    display: none;
  }
  .cd-tab-filter ul {
    background: transparent;
    position: static;
    box-shadow: none;
    text-align: left;
  }
  .cd-tab-filter li {
    display: inline-block;
  }
  .cd-tab-filter li.placeholder {
    display: none !important;
  }
  .cd-tab-filter a {
    display: inline-block;
    padding: 0 1em;
    width: auto;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.3rem;
  }
  .no-touch .cd-tab-filter a:hover {
    color: #005d56;
  }
  .cd-tab-filter a.selected {
    background: transparent;
    color: #005d56;
    /* create border bottom using box-shadow newsperty */
    box-shadow: inset 0 -2px 0 #005d56;
  }
  .cd-tab-filter.is-open ul li {
    display: inline-block;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-tab-filter {
    /* tabbed navigation on big devices */
    width: 100%;
    float: right;
    margin: 0;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    transition: width 0.3s;
  }
  .cd-tab-filter.filter-is-visible {
    /* reduce width when filter is visible */
    width: 80%;
  }
}

/* -------------------------------- 

xgallery 

-------------------------------- */
.cd-gallery-news {
  padding: 0;
  width: 100%;
}

.cd-gallery-news ul {
  width: 100%;
  margin: 0;
  text-align: justify;
}

a.news-link {
  overflow: hidden;
  display: block;
  border: none;
  padding: 0;
  background-color: #ffffff;
  border-radius: 0;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border: 1px solid #cdced0;
  transform: translate3d(0, 0, 0);
  min-height: 430px;
  margin-bottom: 25px;
}

.cd-gallery-news li {
  display: none;
  width: 100%;
}
.cd-gallery-news li.gap {
  /* used in combination with text-align: justify to align gallery elements */
  opacity: 0;
  height: 0;
  display: inline-block;
}

.xenon-news-img {
  background: center center/cover no-repeat;
  border-bottom: 10px solid #ffb900;
  padding-bottom: 65%;
  display: block;
  width: 100%;
  position: relative;
}

.x-news-bg {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
}

.x-news-bg:before,
.x-news-bg:after {
  display: block;
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.x-news-bg:before {
  margin: -25px 0 0 -20px;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  font-size: 32px;
  line-height: 60px;
  text-align: center;
  color: #fff;
  z-index: 2;
  font-family: 'FontAwesome' !important;
  font-style: normal !important;
  font-weight: normal !important;
  text-decoration: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.x-news-bg:before {
  content: '\f1ea';
}

a.news-link:hover .x-news-bg:before {
  opacity: 1;
}

a.news-link:hover .x-news-bg:after {
  opacity: 0.85;
}

a.news-link:hover .news_title_li {
  color: #ffb900;
}

/*a.news-link:hover .news-teaser {
	color: #000;
}*/

.x-news-bg:after {
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffb900;
  border-radius: 2px;
  z-index: 1;
}

h3.news_title_li {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  margin: -1px 0 5px;
  transition: color 0.3s ease;
  color: #272727;
  font-family: 'Lato', sans-serif;
  font-style: normal;
}

.xenon-news-content h3.news_title_li {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.xenon-news-content span.news-teaser {
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  color: #ffb900;
  font-weight: 700;
  margin-bottom: 9px;
  font-size: 12px;
  line-height: 18px;
}

.date_social {
  color: #70706f !important;
  font-weight: 700 !important;
}

.xenon-news-content {
  padding-top: 10px;
  padding-right: 2em;
  padding-left: 2em;
  padding-bottom: 4em;
  min-height: 235px;
  color: #000;
  text-align: center;
  text-align-last: center;
}

.xenon-news-excerpt {
  text-align: center;
}

.cd-gallery-news .news-fail-message {
  display: none;
  text-align: center;
  font-size: 16px;
}
@media only screen and (min-width: 768px) {
  .cd-gallery-news ul {
    text-align: justify;
    text-align-last: justify;
  }
  .cd-gallery-news ul:after {
    content: '';
    display: table;
    clear: both;
  }
  .cd-gallery-news li {
    width: 49%;
  }
}
@media only screen and (min-width: 979px) {
  .cd-gallery-news {
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    transition: width 0.3s;
  }
  .cd-gallery-news li {
    width: 23%;
  }
  .cd-gallery-news.filter-is-visible {
    /* reduce width when filter is visible */
    width: 80%;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-gallery-news {
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    transition: width 0.3s;
  }
  .cd-gallery-news li {
    width: 23%;
  }

  .cd-gallery-news li:nth-child(4n) {
    margin: 0 0% 0 0;
  }

  .cd-gallery-news.filter-is-visible {
    /* reduce width when filter is visible */
    width: 80%;
  }
}

/* -------------------------------- 

xfilter 

-------------------------------- */
.cd-filter-news {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: #ffffff;
  box-shadow: 4px 4px 20px transparent;
  z-index: 2;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s, box-shadow 0.3s;
  -moz-transition: -moz-transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cd-filter-news::before {
  /* top colored bar */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  background-color: #41307c;
  z-index: 2;
}
.cd-filter-news form {
  padding: 70px 20px;
}
.cd-filter-news .cd-close {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  line-height: 50px;
  width: 60px;
  color: #ffffff;
  font-size: 1.3rem;
  text-align: center;
  background: #37296a;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 3;
}
.no-touch .cd-filter-news .cd-close:hover {
  background: #32255f;
}
.cd-filter-news.filter-is-visible {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
}
.cd-filter-news.filter-is-visible .cd-close {
  opacity: 1;
}
@media only screen and (min-width: 1170px) {
  .cd-filter-news {
    width: 20%;
  }
  .cd-filter-news form {
    padding: 70px 10%;
  }
}

.cd-filter-news-trigger {
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  line-height: 50px;
  width: 60px;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  color: transparent;
  white-space: nowrap;
  background: transparent url('../img/cd-icon-filter.svg') no-repeat center center;
  z-index: 3;
}
.cd-filter-news-trigger.filter-is-visible {
  pointer-events: none;
}
@media only screen and (min-width: 1170px) {
  .cd-filter-news-trigger {
    width: auto;
    left: 2%;
    text-indent: 0;
    color: #9a9a9a;
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 700;
    padding-left: 24px;
    background-position: left center;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
  }
  .no-touch .cd-filter-news-trigger:hover {
    color: #41307c;
  }
  .cd-filter-news-trigger.filter-is-visible,
  .cd-filter-news-trigger.filter-is-visible:hover {
    color: #ffffff;
  }
}

/* -------------------------------- 

xcustom form elements 

-------------------------------- */
.cd-filter-news-block {
  display: inline-block;
  margin-bottom: 20px;
}
.cd-filter-news-block h4 {
  /* filter block title */
  position: relative;
  margin-bottom: 0.2em;
  color: #f2b001;
  font-weight: 700;
  font-size: 1.3rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

.cd-filter-news-block input,
.cd-filter-news-block select,
.cd-filter-news-block .radio-label::before,
.cd-filter-news-block .checkbox-label::before {
  /* shared style for input elements */
  font-family: 'Open Sans', sans-serif;
  border-radius: 0;
  background-color: transparent;
  border: 3px solid #707172;
}
.cd-filter-news-block input[type='search'],
.cd-filter-news-block input[type='text'],
.cd-filter-news-block select {
  width: 100%;
  padding: 0.5em 0.8em;
  padding-right: 35px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  box-shadow: none;
}
.cd-filter-news-block input[type='search']:focus,
.cd-filter-news-block input[type='text']:focus,
.cd-filter-news-block select:focus {
  outline: none;
  background-color: transparent;
  border-color: #707172;
}

.cd-filter-news-block select option {
  border: 3px solid #707172;
  background-color: rgb(255, 255, 255);
}

.cd-filter-news-block input[type='search'] {
  /* custom style for the search element */
  border-color: transparent;
  background-color: #ffffff;
  /* prevent jump - ios devices */
  font-size: 1.6rem !important;
}
.cd-filter-news-block input[type='search']::-webkit-search-cancel-button {
  display: none;
}
.cd-filter-news-block .cd-select-news {
  /* select element wrapper */
  position: relative;
}
.cd-filter-news-block .cd-select-news::after {
  /* switcher arrow for select element */
  content: '';
  position: absolute;
  z-index: 1;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 16px;
  background: url('../img/cd-icon-arrow.svg') no-repeat center center;
  pointer-events: none;
}
.cd-filter-news-block select {
  cursor: pointer;
  font-size: 16px;
  color: #000000;
}
.cd-filter-news-block select::-ms-expand {
  display: none;
}
.cd-filter-news-block .list li {
  position: relative;
  margin-bottom: 0.8em;
}
.cd-filter-news-block .list li:last-of-type {
  margin-bottom: 0;
}
.cd-filter-news-block input[type='radio'],
.cd-filter-news-block input[type='checkbox'] {
  /* hide original check and radio buttons */
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  z-index: 2;
}
.cd-filter-news-block .checkbox-label,
.cd-filter-news-block .radio-label {
  padding-left: 24px;
  font-size: 1.4rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cd-filter-news-block .checkbox-label::before,
.cd-filter-news-block .checkbox-label::after,
.cd-filter-news-block .radio-label::before,
.cd-filter-news-block .radio-label::after {
  /* custom radio and check boxes */
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cd-filter-news-block .checkbox-label::before,
.cd-filter-news-block .radio-label::before {
  width: 16px;
  height: 16px;
  left: 0;
}
.cd-filter-news-block .checkbox-label::after,
.cd-filter-news-block .radio-label::after {
  /* check mark - hidden */
  display: none;
}
.cd-filter-news-block .checkbox-label::after {
  /* check mark style for check boxes */
  width: 16px;
  height: 16px;
  background: url('../img/cd-icon-check.svg') no-repeat center center;
}
.cd-filter-news-block .radio-label::before,
.cd-filter-news-block .radio-label::after {
  border-radius: 50%;
}
.cd-filter-news-block .radio-label::after {
  /* check mark style for radio buttons */
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  left: 5px;
}
.cd-filter-news-block input[type='radio']:checked + label::before,
.cd-filter-news-block input[type='checkbox']:checked + label::before {
  border-color: #41307c;
  background-color: #41307c;
}
.cd-filter-news-block input[type='radio']:checked + label::after,
.cd-filter-news-block input[type='checkbox']:checked + label::after {
  display: block;
}

@-moz-document url-prefix() {
  /* hide custom arrow on Firefox - select element */
  .cd-filter-news-block .cd-select-news::after {
    display: none;
  }
}

.misha_loadmore {
  background-color: #ddd;
  border-radius: 2px;
  display: block;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 1px;
  cursor: pointer;
  text-transform: uppercase;
  padding: 10px 0;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
}
.misha_loadmore:hover {
  background-color: #767676;
  color: #fff;
}
